From 5afabaea0e62604ed9df840b2b51f61d02efc54d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20F=C3=B6rster?= Date: Mon, 11 Apr 2022 20:41:35 +0200 Subject: [PATCH] Add starred commands for theorem definitions See #36 --- grammar.js | 10 +- src/grammar.json | 8 + src/node-types.json | 16 + src/parser.c | 823748 +++++++++++++++++++++-------------------- 4 files changed, 413509 insertions(+), 410273 deletions(-) diff --git a/grammar.js b/grammar.js index 736e41e44..5837025c0 100644 --- a/grammar.js +++ b/grammar.js @@ -969,7 +969,15 @@ module.exports = grammar({ theorem_definition: $ => prec.right( seq( - field('command', choice('\\newtheorem', '\\declaretheorem')), + field( + 'command', + choice( + '\\newtheorem', + '\\newtheorem*', + '\\declaretheorem', + '\\declaretheorem*' + ) + ), optional(field('options', $.brack_group_key_value)), field('name', $.curly_group_text), optional( diff --git a/src/grammar.json b/src/grammar.json index 52a9fe2df..d8a25a0f4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4444,9 +4444,17 @@ "type": "STRING", "value": "\\newtheorem" }, + { + "type": "STRING", + "value": "\\newtheorem*" + }, { "type": "STRING", "value": "\\declaretheorem" + }, + { + "type": "STRING", + "value": "\\declaretheorem*" } ] } diff --git a/src/node-types.json b/src/node-types.json index 89346b9f3..92f36f4f9 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -6055,9 +6055,17 @@ "type": "\\declaretheorem", "named": false }, + { + "type": "\\declaretheorem*", + "named": false + }, { "type": "\\newtheorem", "named": false + }, + { + "type": "\\newtheorem*", + "named": false } ] }, @@ -6982,6 +6990,10 @@ "type": "\\declaretheorem", "named": false }, + { + "type": "\\declaretheorem*", + "named": false + }, { "type": "\\def", "named": false @@ -7242,6 +7254,10 @@ "type": "\\newtheorem", "named": false }, + { + "type": "\\newtheorem*", + "named": false + }, { "type": "\\nocite", "named": false diff --git a/src/parser.c b/src/parser.c index 18c4d9549..d4e910b11 100644 --- a/src/parser.c +++ b/src/parser.c @@ -16,9 +16,9 @@ #define LANGUAGE_VERSION 13 #define STATE_COUNT 2479 #define LARGE_STATE_COUNT 1577 -#define SYMBOL_COUNT 416 +#define SYMBOL_COUNT 418 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 290 +#define TOKEN_COUNT 292 #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -296,150 +296,152 @@ enum { anon_sym_BSLASHglsentryfullpl = 269, anon_sym_BSLASHGlsentryfullpl = 270, anon_sym_BSLASHnewtheorem = 271, - anon_sym_BSLASHdeclaretheorem = 272, - anon_sym_BSLASHdefinecolor = 273, - anon_sym_BSLASHdefinecolorset = 274, - anon_sym_BSLASHcolor = 275, - anon_sym_BSLASHcolorbox = 276, - anon_sym_BSLASHtextcolor = 277, - anon_sym_BSLASHpagecolor = 278, - anon_sym_BSLASHusepgflibrary = 279, - anon_sym_BSLASHusetikzlibrary = 280, - anon_sym_BSLASHtext = 281, - anon_sym_BSLASHintertext = 282, - anon_sym_shortintertext = 283, - sym__trivia_raw_fi = 284, - sym__trivia_raw_env_comment = 285, - sym__trivia_raw_env_verbatim = 286, - sym__trivia_raw_env_listing = 287, - sym__trivia_raw_env_minted = 288, - sym__trivia_raw_env_pycode = 289, - sym_source_file = 290, - sym_block_comment = 291, - sym__root_content = 292, - sym__flat_content = 293, - sym__text_with_env_content = 294, - sym__text_content = 295, - sym__section = 296, - sym__part_declaration = 297, - sym_part = 298, - sym__chapter_declaration = 299, - sym_chapter = 300, - sym__section_declaration = 301, - sym_section = 302, - sym__subsection_declaration = 303, - sym_subsection = 304, - sym__subsubsection_declaration = 305, - sym_subsubsection = 306, - sym__paragraph_declaration = 307, - sym_paragraph = 308, - sym__subparagraph_declaration = 309, - sym_subparagraph = 310, - sym__enum_itemdeclaration = 311, - sym_enum_item = 312, - sym_curly_group = 313, - sym_curly_group_text = 314, - sym_curly_group_text_list = 315, - sym_curly_group_path = 316, - sym_curly_group_path_list = 317, - sym_curly_group_command_name = 318, - sym_curly_group_key_value = 319, - sym_curly_group_glob_pattern = 320, - sym_curly_group_impl = 321, - sym_brack_group = 322, - sym_brack_group_text = 323, - sym_brack_group_argc = 324, - sym_brack_group_key_value = 325, - sym_mixed_group = 326, - sym_text = 327, - sym_glob_pattern = 328, - sym__glob_pattern_fragment = 329, - sym_operator = 330, - sym_key_value_pair = 331, - sym_value = 332, - sym_displayed_equation = 333, - sym_inline_formula = 334, - sym_math_set = 335, - sym_begin = 336, - sym_end = 337, - sym_generic_environment = 338, - sym_comment_environment = 339, - sym__trivia_begin_comment = 340, - sym__trivia_end_comment = 341, - sym__trivia_curly_group_comment = 342, - sym__trivia_text_comment = 343, - sym_verbatim_environment = 344, - sym__trivia_begin_verbatim = 345, - sym__trivia_end_verbatim = 346, - sym__trivia_curly_group_verbatim = 347, - sym__trivia_text_verbatim = 348, - sym_listing_environment = 349, - sym__trivia_begin_listing = 350, - sym__trivia_end_listing = 351, - sym__trivia_curly_group_listing = 352, - sym__trivia_text_listing = 353, - sym_minted_environment = 354, - sym__trivia_begin_minted = 355, - sym__trivia_end_minted = 356, - sym__trivia_curly_group_minted = 357, - sym__trivia_text_minted = 358, - sym_pycode_environment = 359, - sym__trivia_begin_pycode = 360, - sym__trivia_end_pycode = 361, - sym__trivia_curly_group_pycode = 362, - sym__trivia_text_pycode = 363, - sym__command = 364, - sym_generic_command = 365, - sym_package_include = 366, - sym_class_include = 367, - sym_latex_include = 368, - sym_biblatex_include = 369, - sym_bibtex_include = 370, - sym_graphics_include = 371, - sym_svg_include = 372, - sym_inkscape_include = 373, - sym_verbatim_include = 374, - sym_import_include = 375, - sym_caption = 376, - sym_citation = 377, - sym_label_definition = 378, - sym_label_reference = 379, - sym_label_reference_range = 380, - sym_label_number = 381, - sym_new_command_definition = 382, - sym_old_command_definition = 383, - sym_let_command_definition = 384, - sym_environment_definition = 385, - sym_glossary_entry_definition = 386, - sym_glossary_entry_reference = 387, - sym_acronym_definition = 388, - sym_acronym_reference = 389, - sym_theorem_definition = 390, - sym_color_definition = 391, - sym_color_set_definition = 392, - sym_color_reference = 393, - sym_tikz_library_import = 394, - sym_text_mode = 395, - aux_sym_source_file_repeat1 = 396, - aux_sym__section_repeat1 = 397, - aux_sym__section_repeat2 = 398, - aux_sym__section_repeat3 = 399, - aux_sym__section_repeat4 = 400, - aux_sym__section_repeat5 = 401, - aux_sym__section_repeat6 = 402, - aux_sym__section_repeat7 = 403, - aux_sym__section_repeat8 = 404, - aux_sym_part_repeat1 = 405, - aux_sym_curly_group_text_list_repeat1 = 406, - aux_sym_curly_group_path_list_repeat1 = 407, - aux_sym_curly_group_key_value_repeat1 = 408, - aux_sym_curly_group_impl_repeat1 = 409, - aux_sym_brack_group_repeat1 = 410, - aux_sym_mixed_group_repeat1 = 411, - aux_sym_text_repeat1 = 412, - aux_sym_glob_pattern_repeat1 = 413, - aux_sym_value_repeat1 = 414, - aux_sym_generic_command_repeat1 = 415, + anon_sym_BSLASHnewtheorem_STAR = 272, + anon_sym_BSLASHdeclaretheorem = 273, + anon_sym_BSLASHdeclaretheorem_STAR = 274, + anon_sym_BSLASHdefinecolor = 275, + anon_sym_BSLASHdefinecolorset = 276, + anon_sym_BSLASHcolor = 277, + anon_sym_BSLASHcolorbox = 278, + anon_sym_BSLASHtextcolor = 279, + anon_sym_BSLASHpagecolor = 280, + anon_sym_BSLASHusepgflibrary = 281, + anon_sym_BSLASHusetikzlibrary = 282, + anon_sym_BSLASHtext = 283, + anon_sym_BSLASHintertext = 284, + anon_sym_shortintertext = 285, + sym__trivia_raw_fi = 286, + sym__trivia_raw_env_comment = 287, + sym__trivia_raw_env_verbatim = 288, + sym__trivia_raw_env_listing = 289, + sym__trivia_raw_env_minted = 290, + sym__trivia_raw_env_pycode = 291, + sym_source_file = 292, + sym_block_comment = 293, + sym__root_content = 294, + sym__flat_content = 295, + sym__text_with_env_content = 296, + sym__text_content = 297, + sym__section = 298, + sym__part_declaration = 299, + sym_part = 300, + sym__chapter_declaration = 301, + sym_chapter = 302, + sym__section_declaration = 303, + sym_section = 304, + sym__subsection_declaration = 305, + sym_subsection = 306, + sym__subsubsection_declaration = 307, + sym_subsubsection = 308, + sym__paragraph_declaration = 309, + sym_paragraph = 310, + sym__subparagraph_declaration = 311, + sym_subparagraph = 312, + sym__enum_itemdeclaration = 313, + sym_enum_item = 314, + sym_curly_group = 315, + sym_curly_group_text = 316, + sym_curly_group_text_list = 317, + sym_curly_group_path = 318, + sym_curly_group_path_list = 319, + sym_curly_group_command_name = 320, + sym_curly_group_key_value = 321, + sym_curly_group_glob_pattern = 322, + sym_curly_group_impl = 323, + sym_brack_group = 324, + sym_brack_group_text = 325, + sym_brack_group_argc = 326, + sym_brack_group_key_value = 327, + sym_mixed_group = 328, + sym_text = 329, + sym_glob_pattern = 330, + sym__glob_pattern_fragment = 331, + sym_operator = 332, + sym_key_value_pair = 333, + sym_value = 334, + sym_displayed_equation = 335, + sym_inline_formula = 336, + sym_math_set = 337, + sym_begin = 338, + sym_end = 339, + sym_generic_environment = 340, + sym_comment_environment = 341, + sym__trivia_begin_comment = 342, + sym__trivia_end_comment = 343, + sym__trivia_curly_group_comment = 344, + sym__trivia_text_comment = 345, + sym_verbatim_environment = 346, + sym__trivia_begin_verbatim = 347, + sym__trivia_end_verbatim = 348, + sym__trivia_curly_group_verbatim = 349, + sym__trivia_text_verbatim = 350, + sym_listing_environment = 351, + sym__trivia_begin_listing = 352, + sym__trivia_end_listing = 353, + sym__trivia_curly_group_listing = 354, + sym__trivia_text_listing = 355, + sym_minted_environment = 356, + sym__trivia_begin_minted = 357, + sym__trivia_end_minted = 358, + sym__trivia_curly_group_minted = 359, + sym__trivia_text_minted = 360, + sym_pycode_environment = 361, + sym__trivia_begin_pycode = 362, + sym__trivia_end_pycode = 363, + sym__trivia_curly_group_pycode = 364, + sym__trivia_text_pycode = 365, + sym__command = 366, + sym_generic_command = 367, + sym_package_include = 368, + sym_class_include = 369, + sym_latex_include = 370, + sym_biblatex_include = 371, + sym_bibtex_include = 372, + sym_graphics_include = 373, + sym_svg_include = 374, + sym_inkscape_include = 375, + sym_verbatim_include = 376, + sym_import_include = 377, + sym_caption = 378, + sym_citation = 379, + sym_label_definition = 380, + sym_label_reference = 381, + sym_label_reference_range = 382, + sym_label_number = 383, + sym_new_command_definition = 384, + sym_old_command_definition = 385, + sym_let_command_definition = 386, + sym_environment_definition = 387, + sym_glossary_entry_definition = 388, + sym_glossary_entry_reference = 389, + sym_acronym_definition = 390, + sym_acronym_reference = 391, + sym_theorem_definition = 392, + sym_color_definition = 393, + sym_color_set_definition = 394, + sym_color_reference = 395, + sym_tikz_library_import = 396, + sym_text_mode = 397, + aux_sym_source_file_repeat1 = 398, + aux_sym__section_repeat1 = 399, + aux_sym__section_repeat2 = 400, + aux_sym__section_repeat3 = 401, + aux_sym__section_repeat4 = 402, + aux_sym__section_repeat5 = 403, + aux_sym__section_repeat6 = 404, + aux_sym__section_repeat7 = 405, + aux_sym__section_repeat8 = 406, + aux_sym_part_repeat1 = 407, + aux_sym_curly_group_text_list_repeat1 = 408, + aux_sym_curly_group_path_list_repeat1 = 409, + aux_sym_curly_group_key_value_repeat1 = 410, + aux_sym_curly_group_impl_repeat1 = 411, + aux_sym_brack_group_repeat1 = 412, + aux_sym_mixed_group_repeat1 = 413, + aux_sym_text_repeat1 = 414, + aux_sym_glob_pattern_repeat1 = 415, + aux_sym_value_repeat1 = 416, + aux_sym_generic_command_repeat1 = 417, }; static const char * const ts_symbol_names[] = { @@ -715,7 +717,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_BSLASHglsentryfullpl] = "\\glsentryfullpl", [anon_sym_BSLASHGlsentryfullpl] = "\\Glsentryfullpl", [anon_sym_BSLASHnewtheorem] = "\\newtheorem", + [anon_sym_BSLASHnewtheorem_STAR] = "\\newtheorem*", [anon_sym_BSLASHdeclaretheorem] = "\\declaretheorem", + [anon_sym_BSLASHdeclaretheorem_STAR] = "\\declaretheorem*", [anon_sym_BSLASHdefinecolor] = "\\definecolor", [anon_sym_BSLASHdefinecolorset] = "\\definecolorset", [anon_sym_BSLASHcolor] = "\\color", @@ -1134,7 +1138,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BSLASHglsentryfullpl] = anon_sym_BSLASHglsentryfullpl, [anon_sym_BSLASHGlsentryfullpl] = anon_sym_BSLASHGlsentryfullpl, [anon_sym_BSLASHnewtheorem] = anon_sym_BSLASHnewtheorem, + [anon_sym_BSLASHnewtheorem_STAR] = anon_sym_BSLASHnewtheorem_STAR, [anon_sym_BSLASHdeclaretheorem] = anon_sym_BSLASHdeclaretheorem, + [anon_sym_BSLASHdeclaretheorem_STAR] = anon_sym_BSLASHdeclaretheorem_STAR, [anon_sym_BSLASHdefinecolor] = anon_sym_BSLASHdefinecolor, [anon_sym_BSLASHdefinecolorset] = anon_sym_BSLASHdefinecolorset, [anon_sym_BSLASHcolor] = anon_sym_BSLASHcolor, @@ -2369,10 +2375,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_BSLASHnewtheorem_STAR] = { + .visible = true, + .named = false, + }, [anon_sym_BSLASHdeclaretheorem] = { .visible = true, .named = false, }, + [anon_sym_BSLASHdeclaretheorem_STAR] = { + .visible = true, + .named = false, + }, [anon_sym_BSLASHdefinecolor] = { .visible = true, .named = false, @@ -4661,7 +4675,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 102: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(1216); + if (lookahead == 't') ADVANCE(1218); if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 103: @@ -9988,7 +10002,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 636: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1205); + if (lookahead == 'm') ADVANCE(1206); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -11214,7 +11228,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 771: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1208); + if (lookahead == 'r') ADVANCE(1210); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -11250,7 +11264,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 775: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1211); + if (lookahead == 'r') ADVANCE(1213); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -11259,7 +11273,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 776: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1210); + if (lookahead == 'r') ADVANCE(1212); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -11295,7 +11309,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 780: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1206); + if (lookahead == 'r') ADVANCE(1208); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12060,7 +12074,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 865: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1214); + if (lookahead == 't') ADVANCE(1216); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12186,7 +12200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 879: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1215); + if (lookahead == 't') ADVANCE(1217); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12258,7 +12272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 887: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1207); + if (lookahead == 't') ADVANCE(1209); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13059,7 +13073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 976: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(1209); + if (lookahead == 'x') ADVANCE(1211); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13158,7 +13172,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 987: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(1212); + if (lookahead == 'y') ADVANCE(1214); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13167,7 +13181,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 988: ACCEPT_TOKEN(sym_command_name); if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(1213); + if (lookahead == 'y') ADVANCE(1215); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14960,21 +14974,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1204: ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(1205); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1205: + ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem_STAR); + END_STATE(); + case 1206: ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(1207); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1206: + case 1207: + ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem_STAR); + END_STATE(); + case 1208: ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); if (lookahead == '*') ADVANCE(143); if (lookahead == 's') ADVANCE(405); @@ -14983,7 +15003,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1207: + case 1209: ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -14991,7 +15011,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1208: + case 1210: ACCEPT_TOKEN(anon_sym_BSLASHcolor); if (lookahead == '*') ADVANCE(143); if (lookahead == 'b') ADVANCE(691); @@ -15000,7 +15020,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1209: + case 1211: ACCEPT_TOKEN(anon_sym_BSLASHcolorbox); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -15008,7 +15028,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1210: + case 1212: ACCEPT_TOKEN(anon_sym_BSLASHtextcolor); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -15016,7 +15036,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1211: + case 1213: ACCEPT_TOKEN(anon_sym_BSLASHpagecolor); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -15024,7 +15044,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1212: + case 1214: ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -15032,7 +15052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1213: + case 1215: ACCEPT_TOKEN(anon_sym_BSLASHusetikzlibrary); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -15040,7 +15060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1214: + case 1216: ACCEPT_TOKEN(anon_sym_BSLASHtext); if (lookahead == '*') ADVANCE(143); if (lookahead == 'c') ADVANCE(531); @@ -15049,7 +15069,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1215: + case 1217: ACCEPT_TOKEN(anon_sym_BSLASHintertext); if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || @@ -15057,7 +15077,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1216: + case 1218: ACCEPT_TOKEN(anon_sym_shortintertext); if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); @@ -17879,7 +17899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1), [anon_sym_BSLASHnewtheorem] = ACTIONS(1), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1), [anon_sym_BSLASHdefinecolor] = ACTIONS(1), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1), [anon_sym_BSLASHcolor] = ACTIONS(1), @@ -18240,18 +18262,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [2] = { [sym_block_comment] = STATE(58), @@ -18336,278 +18360,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [3] = { [sym_block_comment] = STATE(58), @@ -18692,278 +18718,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [ts_builtin_sym_end] = ACTIONS(137), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_RBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [ts_builtin_sym_end] = ACTIONS(139), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [4] = { [sym_block_comment] = STATE(65), @@ -19048,278 +19076,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [ts_builtin_sym_end] = ACTIONS(143), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [5] = { [sym_block_comment] = STATE(65), @@ -19404,278 +19434,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [6] = { [sym_block_comment] = STATE(65), @@ -19760,277 +19792,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(151), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [7] = { [sym_block_comment] = STATE(65), @@ -20115,277 +20149,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_BSLASH_RBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [8] = { [sym_block_comment] = STATE(117), @@ -20471,276 +20507,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(239), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(241), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [9] = { [sym_block_comment] = STATE(58), @@ -20825,277 +20863,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHend] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHend] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [10] = { [sym_block_comment] = STATE(65), @@ -21180,277 +21220,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHend] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [11] = { [sym_block_comment] = STATE(15), @@ -21536,276 +21578,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_RBRACK] = ACTIONS(309), - [anon_sym_COMMA] = ACTIONS(309), - [anon_sym_EQ] = ACTIONS(309), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(311), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(315), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [12] = { [sym_block_comment] = STATE(58), @@ -21890,277 +21934,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_RPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_RPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [13] = { [sym_block_comment] = STATE(58), @@ -22245,277 +22291,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASH_RBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASH_RBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [14] = { [sym_block_comment] = STATE(65), @@ -22600,277 +22648,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(151), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [15] = { [sym_block_comment] = STATE(117), @@ -22956,276 +23006,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(311), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(315), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [16] = { [sym_block_comment] = STATE(58), @@ -23310,277 +23362,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [17] = { [sym_block_comment] = STATE(58), @@ -23665,277 +23719,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = ACTIONS(139), - [anon_sym_BSLASHend] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHend] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [18] = { [sym_block_comment] = STATE(58), @@ -24020,277 +24076,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASH_RBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASH_RBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [19] = { [sym_block_comment] = STATE(23), @@ -24376,276 +24434,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(347), - [anon_sym_RPAREN] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_RBRACK] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_RBRACK] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(349), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(353), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [20] = { [sym_block_comment] = STATE(58), @@ -24730,277 +24790,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_RBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), [anon_sym_BSLASHbegin] = ACTIONS(61), - [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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [21] = { [sym_block_comment] = STATE(37), @@ -25086,276 +25148,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(351), - [anon_sym_LBRACK] = ACTIONS(351), - [anon_sym_RBRACK] = ACTIONS(351), - [anon_sym_COMMA] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(351), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_RPAREN] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_RBRACK] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(355), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(353), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(357), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [22] = { [sym_block_comment] = STATE(22), @@ -25440,277 +25504,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(273), [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(355), - [sym_command_name] = ACTIONS(357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(360), - [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(366), - [anon_sym_BSLASHpart_STAR] = ACTIONS(369), - [anon_sym_BSLASHaddpart] = ACTIONS(366), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(369), - [anon_sym_BSLASHchapter] = ACTIONS(372), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(375), - [anon_sym_BSLASHaddchap] = ACTIONS(372), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(375), - [anon_sym_BSLASHsection] = ACTIONS(378), - [anon_sym_BSLASHsection_STAR] = ACTIONS(381), - [anon_sym_BSLASHaddsec] = ACTIONS(378), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(381), - [anon_sym_BSLASHsubsection] = ACTIONS(384), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(387), - [anon_sym_BSLASHsubsubsection] = ACTIONS(390), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(393), - [anon_sym_BSLASHparagraph] = ACTIONS(396), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(402), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(405), - [anon_sym_BSLASHitem] = ACTIONS(408), - [anon_sym_BSLASHitem_STAR] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(355), - [sym_word] = ACTIONS(417), - [sym_placeholder] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym__] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(426), - [anon_sym_BSLASH_LBRACK] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(432), - [anon_sym_BSLASH_LBRACE] = ACTIONS(435), - [anon_sym_BSLASHbegin] = ACTIONS(438), - [anon_sym_BSLASHusepackage] = ACTIONS(441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(444), - [anon_sym_BSLASHinclude] = ACTIONS(447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(447), - [anon_sym_BSLASHinput] = ACTIONS(447), - [anon_sym_BSLASHsubfile] = ACTIONS(447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(450), - [anon_sym_BSLASHbibliography] = ACTIONS(453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(456), - [anon_sym_BSLASHincludesvg] = ACTIONS(459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(462), - [anon_sym_BSLASHverbatiminput] = ACTIONS(465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(465), - [anon_sym_BSLASHimport] = ACTIONS(468), - [anon_sym_BSLASHsubimport] = ACTIONS(468), - [anon_sym_BSLASHinputfrom] = ACTIONS(468), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(468), - [anon_sym_BSLASHincludefrom] = ACTIONS(468), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(468), - [anon_sym_BSLASHcaption] = ACTIONS(471), - [anon_sym_BSLASHcite] = ACTIONS(474), - [anon_sym_BSLASHcite_STAR] = ACTIONS(477), - [anon_sym_BSLASHCite] = ACTIONS(474), - [anon_sym_BSLASHnocite] = ACTIONS(474), - [anon_sym_BSLASHcitet] = ACTIONS(474), - [anon_sym_BSLASHcitep] = ACTIONS(474), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(477), - [anon_sym_BSLASHciteauthor] = ACTIONS(474), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(474), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(477), - [anon_sym_BSLASHcitetitle] = ACTIONS(474), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(477), - [anon_sym_BSLASHciteyear] = ACTIONS(474), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(477), - [anon_sym_BSLASHcitedate] = ACTIONS(474), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(477), - [anon_sym_BSLASHciteurl] = ACTIONS(474), - [anon_sym_BSLASHfullcite] = ACTIONS(474), - [anon_sym_BSLASHciteyearpar] = ACTIONS(474), - [anon_sym_BSLASHcitealt] = ACTIONS(474), - [anon_sym_BSLASHcitealp] = ACTIONS(474), - [anon_sym_BSLASHcitetext] = ACTIONS(474), - [anon_sym_BSLASHparencite] = ACTIONS(474), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(477), - [anon_sym_BSLASHParencite] = ACTIONS(474), - [anon_sym_BSLASHfootcite] = ACTIONS(474), - [anon_sym_BSLASHfootfullcite] = ACTIONS(474), - [anon_sym_BSLASHfootcitetext] = ACTIONS(474), - [anon_sym_BSLASHtextcite] = ACTIONS(474), - [anon_sym_BSLASHTextcite] = ACTIONS(474), - [anon_sym_BSLASHsmartcite] = ACTIONS(474), - [anon_sym_BSLASHSmartcite] = ACTIONS(474), - [anon_sym_BSLASHsupercite] = ACTIONS(474), - [anon_sym_BSLASHautocite] = ACTIONS(474), - [anon_sym_BSLASHAutocite] = ACTIONS(474), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(477), - [anon_sym_BSLASHvolcite] = ACTIONS(474), - [anon_sym_BSLASHVolcite] = ACTIONS(474), - [anon_sym_BSLASHpvolcite] = ACTIONS(474), - [anon_sym_BSLASHPvolcite] = ACTIONS(474), - [anon_sym_BSLASHfvolcite] = ACTIONS(474), - [anon_sym_BSLASHftvolcite] = ACTIONS(474), - [anon_sym_BSLASHsvolcite] = ACTIONS(474), - [anon_sym_BSLASHSvolcite] = ACTIONS(474), - [anon_sym_BSLASHtvolcite] = ACTIONS(474), - [anon_sym_BSLASHTvolcite] = ACTIONS(474), - [anon_sym_BSLASHavolcite] = ACTIONS(474), - [anon_sym_BSLASHAvolcite] = ACTIONS(474), - [anon_sym_BSLASHnotecite] = ACTIONS(474), - [anon_sym_BSLASHNotecite] = ACTIONS(474), - [anon_sym_BSLASHpnotecite] = ACTIONS(474), - [anon_sym_BSLASHPnotecite] = ACTIONS(474), - [anon_sym_BSLASHfnotecite] = ACTIONS(474), - [anon_sym_BSLASHlabel] = ACTIONS(480), - [anon_sym_BSLASHref] = ACTIONS(483), - [anon_sym_BSLASHeqref] = ACTIONS(483), - [anon_sym_BSLASHvref] = ACTIONS(483), - [anon_sym_BSLASHVref] = ACTIONS(483), - [anon_sym_BSLASHautoref] = ACTIONS(483), - [anon_sym_BSLASHpageref] = ACTIONS(483), - [anon_sym_BSLASHcref] = ACTIONS(483), - [anon_sym_BSLASHCref] = ACTIONS(483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(486), - [anon_sym_BSLASHCref_STAR] = ACTIONS(486), - [anon_sym_BSLASHnamecref] = ACTIONS(483), - [anon_sym_BSLASHnameCref] = ACTIONS(483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(483), - [anon_sym_BSLASHlabelcref] = ACTIONS(483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(483), - [anon_sym_BSLASHcrefrange] = ACTIONS(489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(492), - [anon_sym_BSLASHCrefrange] = ACTIONS(489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(492), - [anon_sym_BSLASHnewlabel] = ACTIONS(495), - [anon_sym_BSLASHnewcommand] = ACTIONS(498), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(501), - [anon_sym_BSLASHrenewcommand] = ACTIONS(498), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(501), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(498), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(501), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(498), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(501), - [anon_sym_BSLASHdef] = ACTIONS(504), - [anon_sym_BSLASHlet] = ACTIONS(507), - [anon_sym_BSLASHnewenvironment] = ACTIONS(510), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(513), - [anon_sym_BSLASHgls] = ACTIONS(516), - [anon_sym_BSLASHGls] = ACTIONS(516), - [anon_sym_BSLASHGLS] = ACTIONS(516), - [anon_sym_BSLASHglspl] = ACTIONS(516), - [anon_sym_BSLASHGlspl] = ACTIONS(516), - [anon_sym_BSLASHGLSpl] = ACTIONS(516), - [anon_sym_BSLASHglsdisp] = ACTIONS(516), - [anon_sym_BSLASHglslink] = ACTIONS(516), - [anon_sym_BSLASHglstext] = ACTIONS(516), - [anon_sym_BSLASHGlstext] = ACTIONS(516), - [anon_sym_BSLASHGLStext] = ACTIONS(516), - [anon_sym_BSLASHglsfirst] = ACTIONS(516), - [anon_sym_BSLASHGlsfirst] = ACTIONS(516), - [anon_sym_BSLASHGLSfirst] = ACTIONS(516), - [anon_sym_BSLASHglsplural] = ACTIONS(516), - [anon_sym_BSLASHGlsplural] = ACTIONS(516), - [anon_sym_BSLASHGLSplural] = ACTIONS(516), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(516), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(516), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(516), - [anon_sym_BSLASHglsname] = ACTIONS(516), - [anon_sym_BSLASHGlsname] = ACTIONS(516), - [anon_sym_BSLASHGLSname] = ACTIONS(516), - [anon_sym_BSLASHglssymbol] = ACTIONS(516), - [anon_sym_BSLASHGlssymbol] = ACTIONS(516), - [anon_sym_BSLASHglsdesc] = ACTIONS(516), - [anon_sym_BSLASHGlsdesc] = ACTIONS(516), - [anon_sym_BSLASHGLSdesc] = ACTIONS(516), - [anon_sym_BSLASHglsuseri] = ACTIONS(516), - [anon_sym_BSLASHGlsuseri] = ACTIONS(516), - [anon_sym_BSLASHGLSuseri] = ACTIONS(516), - [anon_sym_BSLASHglsuserii] = ACTIONS(516), - [anon_sym_BSLASHGlsuserii] = ACTIONS(516), - [anon_sym_BSLASHGLSuserii] = ACTIONS(516), - [anon_sym_BSLASHglsuseriii] = ACTIONS(516), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(516), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(516), - [anon_sym_BSLASHglsuseriv] = ACTIONS(516), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(516), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(516), - [anon_sym_BSLASHglsuserv] = ACTIONS(516), - [anon_sym_BSLASHGlsuserv] = ACTIONS(516), - [anon_sym_BSLASHGLSuserv] = ACTIONS(516), - [anon_sym_BSLASHglsuservi] = ACTIONS(516), - [anon_sym_BSLASHGlsuservi] = ACTIONS(516), - [anon_sym_BSLASHGLSuservi] = ACTIONS(516), - [anon_sym_BSLASHnewacronym] = ACTIONS(519), - [anon_sym_BSLASHacrshort] = ACTIONS(522), - [anon_sym_BSLASHAcrshort] = ACTIONS(522), - [anon_sym_BSLASHACRshort] = ACTIONS(522), - [anon_sym_BSLASHacrshortpl] = ACTIONS(522), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(522), - [anon_sym_BSLASHACRshortpl] = ACTIONS(522), - [anon_sym_BSLASHacrlong] = ACTIONS(522), - [anon_sym_BSLASHAcrlong] = ACTIONS(522), - [anon_sym_BSLASHACRlong] = ACTIONS(522), - [anon_sym_BSLASHacrlongpl] = ACTIONS(522), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(522), - [anon_sym_BSLASHACRlongpl] = ACTIONS(522), - [anon_sym_BSLASHacrfull] = ACTIONS(522), - [anon_sym_BSLASHAcrfull] = ACTIONS(522), - [anon_sym_BSLASHACRfull] = ACTIONS(522), - [anon_sym_BSLASHacrfullpl] = ACTIONS(522), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(522), - [anon_sym_BSLASHACRfullpl] = ACTIONS(522), - [anon_sym_BSLASHacs] = ACTIONS(522), - [anon_sym_BSLASHAcs] = ACTIONS(522), - [anon_sym_BSLASHacsp] = ACTIONS(522), - [anon_sym_BSLASHAcsp] = ACTIONS(522), - [anon_sym_BSLASHacl] = ACTIONS(522), - [anon_sym_BSLASHAcl] = ACTIONS(522), - [anon_sym_BSLASHaclp] = ACTIONS(522), - [anon_sym_BSLASHAclp] = ACTIONS(522), - [anon_sym_BSLASHacf] = ACTIONS(522), - [anon_sym_BSLASHAcf] = ACTIONS(522), - [anon_sym_BSLASHacfp] = ACTIONS(522), - [anon_sym_BSLASHAcfp] = ACTIONS(522), - [anon_sym_BSLASHac] = ACTIONS(522), - [anon_sym_BSLASHAc] = ACTIONS(522), - [anon_sym_BSLASHacp] = ACTIONS(522), - [anon_sym_BSLASHglsentrylong] = ACTIONS(522), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(522), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(522), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(522), - [anon_sym_BSLASHglsentryshort] = ACTIONS(522), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(522), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(522), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(522), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(522), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(522), - [anon_sym_BSLASHnewtheorem] = ACTIONS(525), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(525), - [anon_sym_BSLASHdefinecolor] = ACTIONS(528), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(531), - [anon_sym_BSLASHcolor] = ACTIONS(534), - [anon_sym_BSLASHcolorbox] = ACTIONS(534), - [anon_sym_BSLASHtextcolor] = ACTIONS(534), - [anon_sym_BSLASHpagecolor] = ACTIONS(534), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(537), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(537), - [anon_sym_BSLASHtext] = ACTIONS(540), - [anon_sym_BSLASHintertext] = ACTIONS(540), - [anon_sym_shortintertext] = ACTIONS(540), + [ts_builtin_sym_end] = ACTIONS(359), + [sym_command_name] = ACTIONS(361), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(364), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_RBRACK] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(367), + [anon_sym_EQ] = ACTIONS(367), + [anon_sym_BSLASHpart] = ACTIONS(370), + [anon_sym_BSLASHpart_STAR] = ACTIONS(373), + [anon_sym_BSLASHaddpart] = ACTIONS(370), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(373), + [anon_sym_BSLASHchapter] = ACTIONS(376), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(379), + [anon_sym_BSLASHaddchap] = ACTIONS(376), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(379), + [anon_sym_BSLASHsection] = ACTIONS(382), + [anon_sym_BSLASHsection_STAR] = ACTIONS(385), + [anon_sym_BSLASHaddsec] = ACTIONS(382), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(385), + [anon_sym_BSLASHsubsection] = ACTIONS(388), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(391), + [anon_sym_BSLASHsubsubsection] = ACTIONS(394), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(397), + [anon_sym_BSLASHparagraph] = ACTIONS(400), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(403), + [anon_sym_BSLASHsubparagraph] = ACTIONS(406), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(409), + [anon_sym_BSLASHitem] = ACTIONS(412), + [anon_sym_BSLASHitem_STAR] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(359), + [sym_word] = ACTIONS(421), + [sym_placeholder] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym__] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(430), + [anon_sym_BSLASH_LBRACK] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(436), + [anon_sym_BSLASH_LBRACE] = ACTIONS(439), + [anon_sym_BSLASHbegin] = ACTIONS(442), + [anon_sym_BSLASHusepackage] = ACTIONS(445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(448), + [anon_sym_BSLASHinclude] = ACTIONS(451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(451), + [anon_sym_BSLASHinput] = ACTIONS(451), + [anon_sym_BSLASHsubfile] = ACTIONS(451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(454), + [anon_sym_BSLASHbibliography] = ACTIONS(457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(460), + [anon_sym_BSLASHincludesvg] = ACTIONS(463), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(466), + [anon_sym_BSLASHverbatiminput] = ACTIONS(469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(469), + [anon_sym_BSLASHimport] = ACTIONS(472), + [anon_sym_BSLASHsubimport] = ACTIONS(472), + [anon_sym_BSLASHinputfrom] = ACTIONS(472), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(472), + [anon_sym_BSLASHincludefrom] = ACTIONS(472), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(472), + [anon_sym_BSLASHcaption] = ACTIONS(475), + [anon_sym_BSLASHcite] = ACTIONS(478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(481), + [anon_sym_BSLASHCite] = ACTIONS(478), + [anon_sym_BSLASHnocite] = ACTIONS(478), + [anon_sym_BSLASHcitet] = ACTIONS(478), + [anon_sym_BSLASHcitep] = ACTIONS(478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(481), + [anon_sym_BSLASHciteauthor] = ACTIONS(478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(481), + [anon_sym_BSLASHcitetitle] = ACTIONS(478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(481), + [anon_sym_BSLASHciteyear] = ACTIONS(478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(481), + [anon_sym_BSLASHcitedate] = ACTIONS(478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(481), + [anon_sym_BSLASHciteurl] = ACTIONS(478), + [anon_sym_BSLASHfullcite] = ACTIONS(478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(478), + [anon_sym_BSLASHcitealt] = ACTIONS(478), + [anon_sym_BSLASHcitealp] = ACTIONS(478), + [anon_sym_BSLASHcitetext] = ACTIONS(478), + [anon_sym_BSLASHparencite] = ACTIONS(478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(481), + [anon_sym_BSLASHParencite] = ACTIONS(478), + [anon_sym_BSLASHfootcite] = ACTIONS(478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(478), + [anon_sym_BSLASHtextcite] = ACTIONS(478), + [anon_sym_BSLASHTextcite] = ACTIONS(478), + [anon_sym_BSLASHsmartcite] = ACTIONS(478), + [anon_sym_BSLASHSmartcite] = ACTIONS(478), + [anon_sym_BSLASHsupercite] = ACTIONS(478), + [anon_sym_BSLASHautocite] = ACTIONS(478), + [anon_sym_BSLASHAutocite] = ACTIONS(478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(481), + [anon_sym_BSLASHvolcite] = ACTIONS(478), + [anon_sym_BSLASHVolcite] = ACTIONS(478), + [anon_sym_BSLASHpvolcite] = ACTIONS(478), + [anon_sym_BSLASHPvolcite] = ACTIONS(478), + [anon_sym_BSLASHfvolcite] = ACTIONS(478), + [anon_sym_BSLASHftvolcite] = ACTIONS(478), + [anon_sym_BSLASHsvolcite] = ACTIONS(478), + [anon_sym_BSLASHSvolcite] = ACTIONS(478), + [anon_sym_BSLASHtvolcite] = ACTIONS(478), + [anon_sym_BSLASHTvolcite] = ACTIONS(478), + [anon_sym_BSLASHavolcite] = ACTIONS(478), + [anon_sym_BSLASHAvolcite] = ACTIONS(478), + [anon_sym_BSLASHnotecite] = ACTIONS(478), + [anon_sym_BSLASHNotecite] = ACTIONS(478), + [anon_sym_BSLASHpnotecite] = ACTIONS(478), + [anon_sym_BSLASHPnotecite] = ACTIONS(478), + [anon_sym_BSLASHfnotecite] = ACTIONS(478), + [anon_sym_BSLASHlabel] = ACTIONS(484), + [anon_sym_BSLASHref] = ACTIONS(487), + [anon_sym_BSLASHeqref] = ACTIONS(487), + [anon_sym_BSLASHvref] = ACTIONS(487), + [anon_sym_BSLASHVref] = ACTIONS(487), + [anon_sym_BSLASHautoref] = ACTIONS(487), + [anon_sym_BSLASHpageref] = ACTIONS(487), + [anon_sym_BSLASHcref] = ACTIONS(487), + [anon_sym_BSLASHCref] = ACTIONS(487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(490), + [anon_sym_BSLASHCref_STAR] = ACTIONS(490), + [anon_sym_BSLASHnamecref] = ACTIONS(487), + [anon_sym_BSLASHnameCref] = ACTIONS(487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(487), + [anon_sym_BSLASHlabelcref] = ACTIONS(487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(487), + [anon_sym_BSLASHcrefrange] = ACTIONS(493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(496), + [anon_sym_BSLASHCrefrange] = ACTIONS(493), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(496), + [anon_sym_BSLASHnewlabel] = ACTIONS(499), + [anon_sym_BSLASHnewcommand] = ACTIONS(502), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(502), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(502), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(502), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(505), + [anon_sym_BSLASHdef] = ACTIONS(508), + [anon_sym_BSLASHlet] = ACTIONS(511), + [anon_sym_BSLASHnewenvironment] = ACTIONS(514), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(517), + [anon_sym_BSLASHgls] = ACTIONS(520), + [anon_sym_BSLASHGls] = ACTIONS(520), + [anon_sym_BSLASHGLS] = ACTIONS(520), + [anon_sym_BSLASHglspl] = ACTIONS(520), + [anon_sym_BSLASHGlspl] = ACTIONS(520), + [anon_sym_BSLASHGLSpl] = ACTIONS(520), + [anon_sym_BSLASHglsdisp] = ACTIONS(520), + [anon_sym_BSLASHglslink] = ACTIONS(520), + [anon_sym_BSLASHglstext] = ACTIONS(520), + [anon_sym_BSLASHGlstext] = ACTIONS(520), + [anon_sym_BSLASHGLStext] = ACTIONS(520), + [anon_sym_BSLASHglsfirst] = ACTIONS(520), + [anon_sym_BSLASHGlsfirst] = ACTIONS(520), + [anon_sym_BSLASHGLSfirst] = ACTIONS(520), + [anon_sym_BSLASHglsplural] = ACTIONS(520), + [anon_sym_BSLASHGlsplural] = ACTIONS(520), + [anon_sym_BSLASHGLSplural] = ACTIONS(520), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(520), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(520), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(520), + [anon_sym_BSLASHglsname] = ACTIONS(520), + [anon_sym_BSLASHGlsname] = ACTIONS(520), + [anon_sym_BSLASHGLSname] = ACTIONS(520), + [anon_sym_BSLASHglssymbol] = ACTIONS(520), + [anon_sym_BSLASHGlssymbol] = ACTIONS(520), + [anon_sym_BSLASHglsdesc] = ACTIONS(520), + [anon_sym_BSLASHGlsdesc] = ACTIONS(520), + [anon_sym_BSLASHGLSdesc] = ACTIONS(520), + [anon_sym_BSLASHglsuseri] = ACTIONS(520), + [anon_sym_BSLASHGlsuseri] = ACTIONS(520), + [anon_sym_BSLASHGLSuseri] = ACTIONS(520), + [anon_sym_BSLASHglsuserii] = ACTIONS(520), + [anon_sym_BSLASHGlsuserii] = ACTIONS(520), + [anon_sym_BSLASHGLSuserii] = ACTIONS(520), + [anon_sym_BSLASHglsuseriii] = ACTIONS(520), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(520), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(520), + [anon_sym_BSLASHglsuseriv] = ACTIONS(520), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(520), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(520), + [anon_sym_BSLASHglsuserv] = ACTIONS(520), + [anon_sym_BSLASHGlsuserv] = ACTIONS(520), + [anon_sym_BSLASHGLSuserv] = ACTIONS(520), + [anon_sym_BSLASHglsuservi] = ACTIONS(520), + [anon_sym_BSLASHGlsuservi] = ACTIONS(520), + [anon_sym_BSLASHGLSuservi] = ACTIONS(520), + [anon_sym_BSLASHnewacronym] = ACTIONS(523), + [anon_sym_BSLASHacrshort] = ACTIONS(526), + [anon_sym_BSLASHAcrshort] = ACTIONS(526), + [anon_sym_BSLASHACRshort] = ACTIONS(526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(526), + [anon_sym_BSLASHacrlong] = ACTIONS(526), + [anon_sym_BSLASHAcrlong] = ACTIONS(526), + [anon_sym_BSLASHACRlong] = ACTIONS(526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(526), + [anon_sym_BSLASHacrfull] = ACTIONS(526), + [anon_sym_BSLASHAcrfull] = ACTIONS(526), + [anon_sym_BSLASHACRfull] = ACTIONS(526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(526), + [anon_sym_BSLASHacs] = ACTIONS(526), + [anon_sym_BSLASHAcs] = ACTIONS(526), + [anon_sym_BSLASHacsp] = ACTIONS(526), + [anon_sym_BSLASHAcsp] = ACTIONS(526), + [anon_sym_BSLASHacl] = ACTIONS(526), + [anon_sym_BSLASHAcl] = ACTIONS(526), + [anon_sym_BSLASHaclp] = ACTIONS(526), + [anon_sym_BSLASHAclp] = ACTIONS(526), + [anon_sym_BSLASHacf] = ACTIONS(526), + [anon_sym_BSLASHAcf] = ACTIONS(526), + [anon_sym_BSLASHacfp] = ACTIONS(526), + [anon_sym_BSLASHAcfp] = ACTIONS(526), + [anon_sym_BSLASHac] = ACTIONS(526), + [anon_sym_BSLASHAc] = ACTIONS(526), + [anon_sym_BSLASHacp] = ACTIONS(526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(529), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(532), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(529), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(532), + [anon_sym_BSLASHdefinecolor] = ACTIONS(535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(538), + [anon_sym_BSLASHcolor] = ACTIONS(541), + [anon_sym_BSLASHcolorbox] = ACTIONS(541), + [anon_sym_BSLASHtextcolor] = ACTIONS(541), + [anon_sym_BSLASHpagecolor] = ACTIONS(541), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(544), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(544), + [anon_sym_BSLASHtext] = ACTIONS(547), + [anon_sym_BSLASHintertext] = ACTIONS(547), + [anon_sym_shortintertext] = ACTIONS(547), }, [23] = { [sym_block_comment] = STATE(117), @@ -25796,276 +25862,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(349), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(353), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [24] = { [sym_block_comment] = STATE(65), @@ -26150,277 +26218,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHend] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [25] = { [sym_block_comment] = STATE(35), @@ -26506,276 +26576,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_RBRACK] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(545), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(552), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [26] = { [sym_block_comment] = STATE(117), @@ -26861,276 +26933,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(547), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(554), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [27] = { [sym_block_comment] = STATE(58), @@ -27215,277 +27289,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_RPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_RPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [28] = { [sym_block_comment] = STATE(65), @@ -27570,277 +27646,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASH_RBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [29] = { [sym_block_comment] = STATE(26), @@ -27926,276 +28004,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(556), + [anon_sym_RBRACK] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(547), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(554), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [30] = { [sym_block_comment] = STATE(65), @@ -28280,277 +28360,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [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(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [31] = { [sym_block_comment] = STATE(58), @@ -28635,277 +28717,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_RPAREN] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_RBRACK] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [32] = { [sym_block_comment] = STATE(65), @@ -28990,277 +29074,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [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(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [33] = { [sym_block_comment] = STATE(65), @@ -29345,277 +29431,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_BSLASH_RBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [34] = { [sym_block_comment] = STATE(58), @@ -29700,277 +29788,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_RPAREN] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_RBRACK] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_RBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), [anon_sym_BSLASHbegin] = ACTIONS(61), - [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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [35] = { [sym_block_comment] = STATE(117), @@ -30056,276 +30146,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(545), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(552), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [36] = { [sym_block_comment] = STATE(8), @@ -30411,276 +30503,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_RBRACK] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(239), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(241), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [37] = { [sym_block_comment] = STATE(117), @@ -30766,276 +30860,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(353), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(357), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [38] = { [sym_block_comment] = STATE(65), @@ -31120,277 +31216,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASH_RBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [39] = { [sym_block_comment] = STATE(79), @@ -31475,276 +31573,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(573), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(580), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [40] = { [sym_block_comment] = STATE(115), @@ -31829,276 +31929,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(699), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(708), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [41] = { [sym_block_comment] = STATE(70), @@ -32187,12 +32289,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_EQ] = ACTIONS(780), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -32216,7 +32318,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(771), + [anon_sym_RBRACE] = ACTIONS(782), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -32441,18 +32543,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [42] = { [sym_block_comment] = STATE(103), @@ -32541,12 +32645,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_RBRACK] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(784), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -32570,7 +32674,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(775), + [anon_sym_RBRACE] = ACTIONS(786), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -32795,18 +32899,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [43] = { [sym_block_comment] = STATE(65), @@ -32891,276 +32997,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [44] = { [sym_block_comment] = STATE(58), @@ -33245,276 +33353,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [45] = { [sym_block_comment] = STATE(58), @@ -33599,276 +33709,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [46] = { [sym_block_comment] = STATE(115), @@ -33953,276 +34065,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(777), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(788), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [47] = { [sym_block_comment] = STATE(79), @@ -34307,276 +34421,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(781), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(792), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [48] = { [sym_block_comment] = STATE(104), @@ -34661,276 +34777,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(797), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(808), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [49] = { [sym_block_comment] = STATE(22), @@ -35019,12 +35137,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -35048,7 +35166,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(879), + [anon_sym_RBRACE] = ACTIONS(892), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -35273,18 +35391,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [50] = { [sym_block_comment] = STATE(46), @@ -35369,276 +35489,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_EQ] = ACTIONS(881), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(883), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_RBRACK] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(896), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [51] = { [sym_block_comment] = STATE(47), @@ -35723,276 +35845,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_EQ] = ACTIONS(885), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_RBRACK] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(900), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [52] = { [sym_block_comment] = STATE(48), @@ -36077,276 +36201,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(893), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_RBRACK] = ACTIONS(904), + [anon_sym_COMMA] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(904), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [53] = { [sym_block_comment] = STATE(49), @@ -36435,12 +36561,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_RPAREN] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_RBRACK] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_RBRACK] = ACTIONS(910), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(910), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -36464,7 +36590,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(899), + [anon_sym_RBRACE] = ACTIONS(912), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -36689,18 +36815,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [54] = { [sym_block_comment] = STATE(65), @@ -36785,276 +36913,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [55] = { [sym_block_comment] = STATE(58), @@ -37139,276 +37269,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_RPAREN] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_RBRACK] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(901), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(914), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [56] = { [sym_block_comment] = STATE(115), @@ -37493,276 +37625,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(903), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(916), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [57] = { [sym_block_comment] = STATE(79), @@ -37847,276 +37981,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(920), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [58] = { [sym_block_comment] = STATE(104), @@ -38201,276 +38337,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(922), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(924), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [59] = { [sym_block_comment] = STATE(22), @@ -38559,12 +38697,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -38588,7 +38726,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(913), + [anon_sym_RBRACE] = ACTIONS(926), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -38813,18 +38951,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [60] = { [sym_block_comment] = STATE(72), @@ -38913,12 +39053,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_COMMA] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(928), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -38942,7 +39082,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(917), + [anon_sym_RBRACE] = ACTIONS(930), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -39167,18 +39307,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [61] = { [sym_block_comment] = STATE(115), @@ -39263,276 +39405,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(919), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(932), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [62] = { [sym_block_comment] = STATE(114), @@ -39621,12 +39765,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_RBRACK] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_EQ] = ACTIONS(934), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -39650,7 +39794,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(923), + [anon_sym_RBRACE] = ACTIONS(936), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -39875,18 +40019,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [63] = { [sym_block_comment] = STATE(104), @@ -39971,276 +40117,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(925), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(938), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [64] = { [sym_block_comment] = STATE(22), @@ -40325,17 +40473,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(273), [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(929), + [ts_builtin_sym_end] = ACTIONS(942), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -40583,18 +40731,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [65] = { [sym_block_comment] = STATE(79), @@ -40679,276 +40829,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [66] = { [sym_block_comment] = STATE(75), @@ -41033,276 +41185,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_RBRACK] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(950), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [67] = { [sym_block_comment] = STATE(74), @@ -41387,276 +41541,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_EQ] = ACTIONS(941), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RBRACK] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [68] = { [sym_block_comment] = STATE(80), @@ -41741,276 +41897,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(962), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [69] = { [sym_block_comment] = STATE(40), @@ -42095,276 +42253,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [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(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(953), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_RBRACK] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(966), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [70] = { [sym_block_comment] = STATE(22), @@ -42453,12 +42613,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -42482,7 +42642,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(955), + [anon_sym_RBRACE] = ACTIONS(968), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -42707,18 +42867,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [71] = { [sym_block_comment] = STATE(104), @@ -42803,276 +42965,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [72] = { [sym_block_comment] = STATE(22), @@ -43161,12 +43325,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -43190,7 +43354,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(959), + [anon_sym_RBRACE] = ACTIONS(972), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -43415,18 +43579,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [73] = { [sym_block_comment] = STATE(58), @@ -43511,276 +43677,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), [anon_sym_BSLASHbegin] = ACTIONS(61), - [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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [74] = { [sym_block_comment] = STATE(79), @@ -43865,276 +44033,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(781), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(792), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [75] = { [sym_block_comment] = STATE(104), @@ -44219,276 +44389,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(976), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [76] = { [sym_block_comment] = STATE(65), @@ -44573,276 +44745,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [77] = { [sym_block_comment] = STATE(58), @@ -44927,276 +45101,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [78] = { [sym_block_comment] = STATE(65), @@ -45281,276 +45457,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [79] = { [sym_block_comment] = STATE(79), @@ -45635,276 +45813,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(967), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_BSLASHpart] = ACTIONS(976), - [anon_sym_BSLASHpart_STAR] = ACTIONS(979), - [anon_sym_BSLASHaddpart] = ACTIONS(976), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(979), - [anon_sym_BSLASHchapter] = ACTIONS(982), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(985), - [anon_sym_BSLASHaddchap] = ACTIONS(982), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(985), - [anon_sym_BSLASHsection] = ACTIONS(988), - [anon_sym_BSLASHsection_STAR] = ACTIONS(991), - [anon_sym_BSLASHaddsec] = ACTIONS(988), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(991), - [anon_sym_BSLASHsubsection] = ACTIONS(994), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1000), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1003), - [anon_sym_BSLASHparagraph] = ACTIONS(1006), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1012), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1015), - [anon_sym_BSLASHitem] = ACTIONS(1018), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_word] = ACTIONS(1027), - [sym_placeholder] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym__] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1036), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1042), - [anon_sym_BSLASH_RPAREN] = ACTIONS(355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1045), - [anon_sym_BSLASHbegin] = ACTIONS(438), - [anon_sym_BSLASHusepackage] = ACTIONS(1048), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1048), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1051), - [anon_sym_BSLASHinclude] = ACTIONS(1054), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1054), - [anon_sym_BSLASHinput] = ACTIONS(1054), - [anon_sym_BSLASHsubfile] = ACTIONS(1054), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1057), - [anon_sym_BSLASHbibliography] = ACTIONS(1060), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1063), - [anon_sym_BSLASHincludesvg] = ACTIONS(1066), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1072), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1072), - [anon_sym_BSLASHimport] = ACTIONS(1075), - [anon_sym_BSLASHsubimport] = ACTIONS(1075), - [anon_sym_BSLASHinputfrom] = ACTIONS(1075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1075), - [anon_sym_BSLASHincludefrom] = ACTIONS(1075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1075), - [anon_sym_BSLASHcaption] = ACTIONS(1078), - [anon_sym_BSLASHcite] = ACTIONS(1081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1084), - [anon_sym_BSLASHCite] = ACTIONS(1081), - [anon_sym_BSLASHnocite] = ACTIONS(1081), - [anon_sym_BSLASHcitet] = ACTIONS(1081), - [anon_sym_BSLASHcitep] = ACTIONS(1081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1084), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1084), - [anon_sym_BSLASHciteauthor] = ACTIONS(1081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1084), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1084), - [anon_sym_BSLASHcitetitle] = ACTIONS(1081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1084), - [anon_sym_BSLASHciteyear] = ACTIONS(1081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1084), - [anon_sym_BSLASHcitedate] = ACTIONS(1081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1084), - [anon_sym_BSLASHciteurl] = ACTIONS(1081), - [anon_sym_BSLASHfullcite] = ACTIONS(1081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1081), - [anon_sym_BSLASHcitealt] = ACTIONS(1081), - [anon_sym_BSLASHcitealp] = ACTIONS(1081), - [anon_sym_BSLASHcitetext] = ACTIONS(1081), - [anon_sym_BSLASHparencite] = ACTIONS(1081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1084), - [anon_sym_BSLASHParencite] = ACTIONS(1081), - [anon_sym_BSLASHfootcite] = ACTIONS(1081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1081), - [anon_sym_BSLASHtextcite] = ACTIONS(1081), - [anon_sym_BSLASHTextcite] = ACTIONS(1081), - [anon_sym_BSLASHsmartcite] = ACTIONS(1081), - [anon_sym_BSLASHSmartcite] = ACTIONS(1081), - [anon_sym_BSLASHsupercite] = ACTIONS(1081), - [anon_sym_BSLASHautocite] = ACTIONS(1081), - [anon_sym_BSLASHAutocite] = ACTIONS(1081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1084), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1084), - [anon_sym_BSLASHvolcite] = ACTIONS(1081), - [anon_sym_BSLASHVolcite] = ACTIONS(1081), - [anon_sym_BSLASHpvolcite] = ACTIONS(1081), - [anon_sym_BSLASHPvolcite] = ACTIONS(1081), - [anon_sym_BSLASHfvolcite] = ACTIONS(1081), - [anon_sym_BSLASHftvolcite] = ACTIONS(1081), - [anon_sym_BSLASHsvolcite] = ACTIONS(1081), - [anon_sym_BSLASHSvolcite] = ACTIONS(1081), - [anon_sym_BSLASHtvolcite] = ACTIONS(1081), - [anon_sym_BSLASHTvolcite] = ACTIONS(1081), - [anon_sym_BSLASHavolcite] = ACTIONS(1081), - [anon_sym_BSLASHAvolcite] = ACTIONS(1081), - [anon_sym_BSLASHnotecite] = ACTIONS(1081), - [anon_sym_BSLASHNotecite] = ACTIONS(1081), - [anon_sym_BSLASHpnotecite] = ACTIONS(1081), - [anon_sym_BSLASHPnotecite] = ACTIONS(1081), - [anon_sym_BSLASHfnotecite] = ACTIONS(1081), - [anon_sym_BSLASHlabel] = ACTIONS(1087), - [anon_sym_BSLASHref] = ACTIONS(1090), - [anon_sym_BSLASHeqref] = ACTIONS(1090), - [anon_sym_BSLASHvref] = ACTIONS(1090), - [anon_sym_BSLASHVref] = ACTIONS(1090), - [anon_sym_BSLASHautoref] = ACTIONS(1090), - [anon_sym_BSLASHpageref] = ACTIONS(1090), - [anon_sym_BSLASHcref] = ACTIONS(1090), - [anon_sym_BSLASHCref] = ACTIONS(1090), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1093), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1093), - [anon_sym_BSLASHnamecref] = ACTIONS(1090), - [anon_sym_BSLASHnameCref] = ACTIONS(1090), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1090), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1090), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1090), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1090), - [anon_sym_BSLASHlabelcref] = ACTIONS(1090), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1090), - [anon_sym_BSLASHcrefrange] = ACTIONS(1096), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1099), - [anon_sym_BSLASHCrefrange] = ACTIONS(1096), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1099), - [anon_sym_BSLASHnewlabel] = ACTIONS(1102), - [anon_sym_BSLASHnewcommand] = ACTIONS(1105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1108), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1108), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1108), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1108), - [anon_sym_BSLASHdef] = ACTIONS(1111), - [anon_sym_BSLASHlet] = ACTIONS(1114), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1120), - [anon_sym_BSLASHgls] = ACTIONS(1123), - [anon_sym_BSLASHGls] = ACTIONS(1123), - [anon_sym_BSLASHGLS] = ACTIONS(1123), - [anon_sym_BSLASHglspl] = ACTIONS(1123), - [anon_sym_BSLASHGlspl] = ACTIONS(1123), - [anon_sym_BSLASHGLSpl] = ACTIONS(1123), - [anon_sym_BSLASHglsdisp] = ACTIONS(1123), - [anon_sym_BSLASHglslink] = ACTIONS(1123), - [anon_sym_BSLASHglstext] = ACTIONS(1123), - [anon_sym_BSLASHGlstext] = ACTIONS(1123), - [anon_sym_BSLASHGLStext] = ACTIONS(1123), - [anon_sym_BSLASHglsfirst] = ACTIONS(1123), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1123), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1123), - [anon_sym_BSLASHglsplural] = ACTIONS(1123), - [anon_sym_BSLASHGlsplural] = ACTIONS(1123), - [anon_sym_BSLASHGLSplural] = ACTIONS(1123), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1123), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1123), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1123), - [anon_sym_BSLASHglsname] = ACTIONS(1123), - [anon_sym_BSLASHGlsname] = ACTIONS(1123), - [anon_sym_BSLASHGLSname] = ACTIONS(1123), - [anon_sym_BSLASHglssymbol] = ACTIONS(1123), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1123), - [anon_sym_BSLASHglsdesc] = ACTIONS(1123), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1123), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1123), - [anon_sym_BSLASHglsuseri] = ACTIONS(1123), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1123), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1123), - [anon_sym_BSLASHglsuserii] = ACTIONS(1123), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1123), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1123), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1123), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1123), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1123), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1123), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1123), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1123), - [anon_sym_BSLASHglsuserv] = ACTIONS(1123), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1123), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1123), - [anon_sym_BSLASHglsuservi] = ACTIONS(1123), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1123), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1123), - [anon_sym_BSLASHnewacronym] = ACTIONS(1126), - [anon_sym_BSLASHacrshort] = ACTIONS(1129), - [anon_sym_BSLASHAcrshort] = ACTIONS(1129), - [anon_sym_BSLASHACRshort] = ACTIONS(1129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1129), - [anon_sym_BSLASHacrlong] = ACTIONS(1129), - [anon_sym_BSLASHAcrlong] = ACTIONS(1129), - [anon_sym_BSLASHACRlong] = ACTIONS(1129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1129), - [anon_sym_BSLASHacrfull] = ACTIONS(1129), - [anon_sym_BSLASHAcrfull] = ACTIONS(1129), - [anon_sym_BSLASHACRfull] = ACTIONS(1129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1129), - [anon_sym_BSLASHacs] = ACTIONS(1129), - [anon_sym_BSLASHAcs] = ACTIONS(1129), - [anon_sym_BSLASHacsp] = ACTIONS(1129), - [anon_sym_BSLASHAcsp] = ACTIONS(1129), - [anon_sym_BSLASHacl] = ACTIONS(1129), - [anon_sym_BSLASHAcl] = ACTIONS(1129), - [anon_sym_BSLASHaclp] = ACTIONS(1129), - [anon_sym_BSLASHAclp] = ACTIONS(1129), - [anon_sym_BSLASHacf] = ACTIONS(1129), - [anon_sym_BSLASHAcf] = ACTIONS(1129), - [anon_sym_BSLASHacfp] = ACTIONS(1129), - [anon_sym_BSLASHAcfp] = ACTIONS(1129), - [anon_sym_BSLASHac] = ACTIONS(1129), - [anon_sym_BSLASHAc] = ACTIONS(1129), - [anon_sym_BSLASHacp] = ACTIONS(1129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1132), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1132), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1138), - [anon_sym_BSLASHcolor] = ACTIONS(1141), - [anon_sym_BSLASHcolorbox] = ACTIONS(1141), - [anon_sym_BSLASHtextcolor] = ACTIONS(1141), - [anon_sym_BSLASHpagecolor] = ACTIONS(1141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1144), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1144), - [anon_sym_BSLASHtext] = ACTIONS(1147), - [anon_sym_BSLASHintertext] = ACTIONS(1147), - [anon_sym_shortintertext] = ACTIONS(1147), + [sym_command_name] = ACTIONS(980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(986), + [anon_sym_BSLASHpart] = ACTIONS(989), + [anon_sym_BSLASHpart_STAR] = ACTIONS(992), + [anon_sym_BSLASHaddpart] = ACTIONS(989), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(992), + [anon_sym_BSLASHchapter] = ACTIONS(995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(998), + [anon_sym_BSLASHaddchap] = ACTIONS(995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(998), + [anon_sym_BSLASHsection] = ACTIONS(1001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1004), + [anon_sym_BSLASHaddsec] = ACTIONS(1001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1004), + [anon_sym_BSLASHsubsection] = ACTIONS(1007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1010), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1013), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1016), + [anon_sym_BSLASHparagraph] = ACTIONS(1019), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1022), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1028), + [anon_sym_BSLASHitem] = ACTIONS(1031), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1037), + [sym_word] = ACTIONS(1040), + [sym_placeholder] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1046), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1049), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1055), + [anon_sym_BSLASH_RPAREN] = ACTIONS(359), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1058), + [anon_sym_BSLASHbegin] = ACTIONS(442), + [anon_sym_BSLASHusepackage] = ACTIONS(1061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1064), + [anon_sym_BSLASHinclude] = ACTIONS(1067), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1067), + [anon_sym_BSLASHinput] = ACTIONS(1067), + [anon_sym_BSLASHsubfile] = ACTIONS(1067), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1070), + [anon_sym_BSLASHbibliography] = ACTIONS(1073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1076), + [anon_sym_BSLASHincludesvg] = ACTIONS(1079), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1085), + [anon_sym_BSLASHimport] = ACTIONS(1088), + [anon_sym_BSLASHsubimport] = ACTIONS(1088), + [anon_sym_BSLASHinputfrom] = ACTIONS(1088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1088), + [anon_sym_BSLASHincludefrom] = ACTIONS(1088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1088), + [anon_sym_BSLASHcaption] = ACTIONS(1091), + [anon_sym_BSLASHcite] = ACTIONS(1094), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1097), + [anon_sym_BSLASHCite] = ACTIONS(1094), + [anon_sym_BSLASHnocite] = ACTIONS(1094), + [anon_sym_BSLASHcitet] = ACTIONS(1094), + [anon_sym_BSLASHcitep] = ACTIONS(1094), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1097), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1097), + [anon_sym_BSLASHciteauthor] = ACTIONS(1094), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1097), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1094), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1097), + [anon_sym_BSLASHcitetitle] = ACTIONS(1094), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1097), + [anon_sym_BSLASHciteyear] = ACTIONS(1094), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1097), + [anon_sym_BSLASHcitedate] = ACTIONS(1094), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1097), + [anon_sym_BSLASHciteurl] = ACTIONS(1094), + [anon_sym_BSLASHfullcite] = ACTIONS(1094), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1094), + [anon_sym_BSLASHcitealt] = ACTIONS(1094), + [anon_sym_BSLASHcitealp] = ACTIONS(1094), + [anon_sym_BSLASHcitetext] = ACTIONS(1094), + [anon_sym_BSLASHparencite] = ACTIONS(1094), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1097), + [anon_sym_BSLASHParencite] = ACTIONS(1094), + [anon_sym_BSLASHfootcite] = ACTIONS(1094), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1094), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1094), + [anon_sym_BSLASHtextcite] = ACTIONS(1094), + [anon_sym_BSLASHTextcite] = ACTIONS(1094), + [anon_sym_BSLASHsmartcite] = ACTIONS(1094), + [anon_sym_BSLASHSmartcite] = ACTIONS(1094), + [anon_sym_BSLASHsupercite] = ACTIONS(1094), + [anon_sym_BSLASHautocite] = ACTIONS(1094), + [anon_sym_BSLASHAutocite] = ACTIONS(1094), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1097), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1097), + [anon_sym_BSLASHvolcite] = ACTIONS(1094), + [anon_sym_BSLASHVolcite] = ACTIONS(1094), + [anon_sym_BSLASHpvolcite] = ACTIONS(1094), + [anon_sym_BSLASHPvolcite] = ACTIONS(1094), + [anon_sym_BSLASHfvolcite] = ACTIONS(1094), + [anon_sym_BSLASHftvolcite] = ACTIONS(1094), + [anon_sym_BSLASHsvolcite] = ACTIONS(1094), + [anon_sym_BSLASHSvolcite] = ACTIONS(1094), + [anon_sym_BSLASHtvolcite] = ACTIONS(1094), + [anon_sym_BSLASHTvolcite] = ACTIONS(1094), + [anon_sym_BSLASHavolcite] = ACTIONS(1094), + [anon_sym_BSLASHAvolcite] = ACTIONS(1094), + [anon_sym_BSLASHnotecite] = ACTIONS(1094), + [anon_sym_BSLASHNotecite] = ACTIONS(1094), + [anon_sym_BSLASHpnotecite] = ACTIONS(1094), + [anon_sym_BSLASHPnotecite] = ACTIONS(1094), + [anon_sym_BSLASHfnotecite] = ACTIONS(1094), + [anon_sym_BSLASHlabel] = ACTIONS(1100), + [anon_sym_BSLASHref] = ACTIONS(1103), + [anon_sym_BSLASHeqref] = ACTIONS(1103), + [anon_sym_BSLASHvref] = ACTIONS(1103), + [anon_sym_BSLASHVref] = ACTIONS(1103), + [anon_sym_BSLASHautoref] = ACTIONS(1103), + [anon_sym_BSLASHpageref] = ACTIONS(1103), + [anon_sym_BSLASHcref] = ACTIONS(1103), + [anon_sym_BSLASHCref] = ACTIONS(1103), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1106), + [anon_sym_BSLASHnamecref] = ACTIONS(1103), + [anon_sym_BSLASHnameCref] = ACTIONS(1103), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1103), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1103), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1103), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1103), + [anon_sym_BSLASHlabelcref] = ACTIONS(1103), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1103), + [anon_sym_BSLASHcrefrange] = ACTIONS(1109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1112), + [anon_sym_BSLASHCrefrange] = ACTIONS(1109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1112), + [anon_sym_BSLASHnewlabel] = ACTIONS(1115), + [anon_sym_BSLASHnewcommand] = ACTIONS(1118), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1118), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1118), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1118), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1121), + [anon_sym_BSLASHdef] = ACTIONS(1124), + [anon_sym_BSLASHlet] = ACTIONS(1127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1133), + [anon_sym_BSLASHgls] = ACTIONS(1136), + [anon_sym_BSLASHGls] = ACTIONS(1136), + [anon_sym_BSLASHGLS] = ACTIONS(1136), + [anon_sym_BSLASHglspl] = ACTIONS(1136), + [anon_sym_BSLASHGlspl] = ACTIONS(1136), + [anon_sym_BSLASHGLSpl] = ACTIONS(1136), + [anon_sym_BSLASHglsdisp] = ACTIONS(1136), + [anon_sym_BSLASHglslink] = ACTIONS(1136), + [anon_sym_BSLASHglstext] = ACTIONS(1136), + [anon_sym_BSLASHGlstext] = ACTIONS(1136), + [anon_sym_BSLASHGLStext] = ACTIONS(1136), + [anon_sym_BSLASHglsfirst] = ACTIONS(1136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1136), + [anon_sym_BSLASHglsplural] = ACTIONS(1136), + [anon_sym_BSLASHGlsplural] = ACTIONS(1136), + [anon_sym_BSLASHGLSplural] = ACTIONS(1136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1136), + [anon_sym_BSLASHglsname] = ACTIONS(1136), + [anon_sym_BSLASHGlsname] = ACTIONS(1136), + [anon_sym_BSLASHGLSname] = ACTIONS(1136), + [anon_sym_BSLASHglssymbol] = ACTIONS(1136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1136), + [anon_sym_BSLASHglsdesc] = ACTIONS(1136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1136), + [anon_sym_BSLASHglsuseri] = ACTIONS(1136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1136), + [anon_sym_BSLASHglsuserii] = ACTIONS(1136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1136), + [anon_sym_BSLASHglsuserv] = ACTIONS(1136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1136), + [anon_sym_BSLASHglsuservi] = ACTIONS(1136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1136), + [anon_sym_BSLASHnewacronym] = ACTIONS(1139), + [anon_sym_BSLASHacrshort] = ACTIONS(1142), + [anon_sym_BSLASHAcrshort] = ACTIONS(1142), + [anon_sym_BSLASHACRshort] = ACTIONS(1142), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1142), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1142), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1142), + [anon_sym_BSLASHacrlong] = ACTIONS(1142), + [anon_sym_BSLASHAcrlong] = ACTIONS(1142), + [anon_sym_BSLASHACRlong] = ACTIONS(1142), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1142), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1142), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1142), + [anon_sym_BSLASHacrfull] = ACTIONS(1142), + [anon_sym_BSLASHAcrfull] = ACTIONS(1142), + [anon_sym_BSLASHACRfull] = ACTIONS(1142), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1142), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1142), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1142), + [anon_sym_BSLASHacs] = ACTIONS(1142), + [anon_sym_BSLASHAcs] = ACTIONS(1142), + [anon_sym_BSLASHacsp] = ACTIONS(1142), + [anon_sym_BSLASHAcsp] = ACTIONS(1142), + [anon_sym_BSLASHacl] = ACTIONS(1142), + [anon_sym_BSLASHAcl] = ACTIONS(1142), + [anon_sym_BSLASHaclp] = ACTIONS(1142), + [anon_sym_BSLASHAclp] = ACTIONS(1142), + [anon_sym_BSLASHacf] = ACTIONS(1142), + [anon_sym_BSLASHAcf] = ACTIONS(1142), + [anon_sym_BSLASHacfp] = ACTIONS(1142), + [anon_sym_BSLASHAcfp] = ACTIONS(1142), + [anon_sym_BSLASHac] = ACTIONS(1142), + [anon_sym_BSLASHAc] = ACTIONS(1142), + [anon_sym_BSLASHacp] = ACTIONS(1142), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1142), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1142), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1142), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1142), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1142), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1142), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1142), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1142), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1142), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1142), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1154), + [anon_sym_BSLASHcolor] = ACTIONS(1157), + [anon_sym_BSLASHcolorbox] = ACTIONS(1157), + [anon_sym_BSLASHtextcolor] = ACTIONS(1157), + [anon_sym_BSLASHpagecolor] = ACTIONS(1157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1160), + [anon_sym_BSLASHtext] = ACTIONS(1163), + [anon_sym_BSLASHintertext] = ACTIONS(1163), + [anon_sym_shortintertext] = ACTIONS(1163), }, [80] = { [sym_block_comment] = STATE(79), @@ -45989,276 +46169,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1152), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1166), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1168), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [81] = { [sym_block_comment] = STATE(58), @@ -46343,276 +46525,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [82] = { [sym_block_comment] = STATE(71), @@ -46697,276 +46881,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_RBRACK] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_EQ] = ACTIONS(1154), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1156), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_RBRACK] = ACTIONS(1170), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1170), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1172), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [83] = { [sym_block_comment] = STATE(22), @@ -47055,12 +47241,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -47084,7 +47270,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(1158), + [anon_sym_RBRACE] = ACTIONS(1174), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -47309,18 +47495,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [84] = { [sym_block_comment] = STATE(119), @@ -47405,276 +47593,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_RBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1160), - [anon_sym_EQ] = ACTIONS(1160), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1162), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [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_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [85] = { [sym_block_comment] = STATE(65), @@ -47759,276 +47949,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1166), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1182), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [86] = { [sym_block_comment] = STATE(22), @@ -48117,12 +48309,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -48146,7 +48338,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(1168), + [anon_sym_RBRACE] = ACTIONS(1184), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -48371,18 +48563,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [87] = { [sym_block_comment] = STATE(120), @@ -48467,276 +48661,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), + [sym_command_name] = ACTIONS(654), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_RBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1172), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_RPAREN] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_RBRACK] = ACTIONS(1186), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1188), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [88] = { [sym_block_comment] = STATE(56), @@ -48821,276 +49017,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_EQ] = ACTIONS(1174), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1176), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(1190), + [anon_sym_COMMA] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1190), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1192), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [89] = { [sym_block_comment] = STATE(104), @@ -49175,276 +49373,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1178), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1180), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [90] = { [sym_block_comment] = STATE(96), @@ -49529,276 +49729,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1184), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [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(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1200), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [91] = { [sym_block_comment] = STATE(57), @@ -49883,276 +50085,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1190), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1202), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1206), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [92] = { [sym_block_comment] = STATE(79), @@ -50237,276 +50441,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1208), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1210), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [93] = { [sym_block_comment] = STATE(101), @@ -50591,276 +50797,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_RBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_RBRACK] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [94] = { [sym_block_comment] = STATE(115), @@ -50945,276 +51153,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1200), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1216), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [95] = { [sym_block_comment] = STATE(65), @@ -51299,276 +51509,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [96] = { [sym_block_comment] = STATE(104), @@ -51653,276 +51865,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1202), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1218), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [97] = { [sym_block_comment] = STATE(61), @@ -52007,276 +52221,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1204), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1206), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_RBRACK] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1222), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [98] = { [sym_block_comment] = STATE(39), @@ -52361,276 +52577,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1208), - [anon_sym_RBRACK] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1212), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_RBRACK] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1224), + [anon_sym_EQ] = ACTIONS(1224), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1226), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1228), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [99] = { [sym_block_comment] = STATE(63), @@ -52715,276 +52933,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_RBRACK] = ACTIONS(1214), - [anon_sym_COMMA] = ACTIONS(1214), - [anon_sym_EQ] = ACTIONS(1214), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1216), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_RBRACK] = ACTIONS(1230), + [anon_sym_COMMA] = ACTIONS(1230), + [anon_sym_EQ] = ACTIONS(1230), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1232), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [100] = { [sym_block_comment] = STATE(83), @@ -53073,12 +53293,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_RBRACK] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1236), + [anon_sym_COMMA] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1236), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -53102,7 +53322,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(1222), + [anon_sym_RBRACE] = ACTIONS(1238), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -53327,18 +53547,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [101] = { [sym_block_comment] = STATE(79), @@ -53423,276 +53645,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(781), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(792), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [102] = { [sym_block_comment] = STATE(112), @@ -53777,276 +54001,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1226), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1228), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_RBRACK] = ACTIONS(1242), + [anon_sym_COMMA] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1244), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1246), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [103] = { [sym_block_comment] = STATE(22), @@ -54135,12 +54361,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -54164,7 +54390,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(1232), + [anon_sym_RBRACE] = ACTIONS(1248), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -54389,18 +54615,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [104] = { [sym_block_comment] = STATE(104), @@ -54485,276 +54713,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(1234), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_BSLASHpart] = ACTIONS(1243), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1246), - [anon_sym_BSLASHaddpart] = ACTIONS(1243), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1246), - [anon_sym_BSLASHchapter] = ACTIONS(1249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1252), - [anon_sym_BSLASHaddchap] = ACTIONS(1249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1252), - [anon_sym_BSLASHsection] = ACTIONS(1255), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1258), - [anon_sym_BSLASHaddsec] = ACTIONS(1255), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1258), - [anon_sym_BSLASHsubsection] = ACTIONS(1261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1264), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1267), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1270), - [anon_sym_BSLASHparagraph] = ACTIONS(1273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1276), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1279), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1282), - [anon_sym_BSLASHitem] = ACTIONS(1285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1291), - [sym_word] = ACTIONS(1294), - [sym_placeholder] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1300), - [anon_sym__] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1303), - [anon_sym_BSLASH_RBRACK] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1312), - [anon_sym_BSLASHbegin] = ACTIONS(438), - [anon_sym_BSLASHusepackage] = ACTIONS(1315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1318), - [anon_sym_BSLASHinclude] = ACTIONS(1321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1321), - [anon_sym_BSLASHinput] = ACTIONS(1321), - [anon_sym_BSLASHsubfile] = ACTIONS(1321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1324), - [anon_sym_BSLASHbibliography] = ACTIONS(1327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1330), - [anon_sym_BSLASHincludesvg] = ACTIONS(1333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1336), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1339), - [anon_sym_BSLASHimport] = ACTIONS(1342), - [anon_sym_BSLASHsubimport] = ACTIONS(1342), - [anon_sym_BSLASHinputfrom] = ACTIONS(1342), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1342), - [anon_sym_BSLASHincludefrom] = ACTIONS(1342), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1342), - [anon_sym_BSLASHcaption] = ACTIONS(1345), - [anon_sym_BSLASHcite] = ACTIONS(1348), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1351), - [anon_sym_BSLASHCite] = ACTIONS(1348), - [anon_sym_BSLASHnocite] = ACTIONS(1348), - [anon_sym_BSLASHcitet] = ACTIONS(1348), - [anon_sym_BSLASHcitep] = ACTIONS(1348), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1351), - [anon_sym_BSLASHciteauthor] = ACTIONS(1348), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1348), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1351), - [anon_sym_BSLASHcitetitle] = ACTIONS(1348), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1351), - [anon_sym_BSLASHciteyear] = ACTIONS(1348), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1351), - [anon_sym_BSLASHcitedate] = ACTIONS(1348), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1351), - [anon_sym_BSLASHciteurl] = ACTIONS(1348), - [anon_sym_BSLASHfullcite] = ACTIONS(1348), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1348), - [anon_sym_BSLASHcitealt] = ACTIONS(1348), - [anon_sym_BSLASHcitealp] = ACTIONS(1348), - [anon_sym_BSLASHcitetext] = ACTIONS(1348), - [anon_sym_BSLASHparencite] = ACTIONS(1348), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1351), - [anon_sym_BSLASHParencite] = ACTIONS(1348), - [anon_sym_BSLASHfootcite] = ACTIONS(1348), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1348), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1348), - [anon_sym_BSLASHtextcite] = ACTIONS(1348), - [anon_sym_BSLASHTextcite] = ACTIONS(1348), - [anon_sym_BSLASHsmartcite] = ACTIONS(1348), - [anon_sym_BSLASHSmartcite] = ACTIONS(1348), - [anon_sym_BSLASHsupercite] = ACTIONS(1348), - [anon_sym_BSLASHautocite] = ACTIONS(1348), - [anon_sym_BSLASHAutocite] = ACTIONS(1348), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1351), - [anon_sym_BSLASHvolcite] = ACTIONS(1348), - [anon_sym_BSLASHVolcite] = ACTIONS(1348), - [anon_sym_BSLASHpvolcite] = ACTIONS(1348), - [anon_sym_BSLASHPvolcite] = ACTIONS(1348), - [anon_sym_BSLASHfvolcite] = ACTIONS(1348), - [anon_sym_BSLASHftvolcite] = ACTIONS(1348), - [anon_sym_BSLASHsvolcite] = ACTIONS(1348), - [anon_sym_BSLASHSvolcite] = ACTIONS(1348), - [anon_sym_BSLASHtvolcite] = ACTIONS(1348), - [anon_sym_BSLASHTvolcite] = ACTIONS(1348), - [anon_sym_BSLASHavolcite] = ACTIONS(1348), - [anon_sym_BSLASHAvolcite] = ACTIONS(1348), - [anon_sym_BSLASHnotecite] = ACTIONS(1348), - [anon_sym_BSLASHNotecite] = ACTIONS(1348), - [anon_sym_BSLASHpnotecite] = ACTIONS(1348), - [anon_sym_BSLASHPnotecite] = ACTIONS(1348), - [anon_sym_BSLASHfnotecite] = ACTIONS(1348), - [anon_sym_BSLASHlabel] = ACTIONS(1354), - [anon_sym_BSLASHref] = ACTIONS(1357), - [anon_sym_BSLASHeqref] = ACTIONS(1357), - [anon_sym_BSLASHvref] = ACTIONS(1357), - [anon_sym_BSLASHVref] = ACTIONS(1357), - [anon_sym_BSLASHautoref] = ACTIONS(1357), - [anon_sym_BSLASHpageref] = ACTIONS(1357), - [anon_sym_BSLASHcref] = ACTIONS(1357), - [anon_sym_BSLASHCref] = ACTIONS(1357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1360), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1360), - [anon_sym_BSLASHnamecref] = ACTIONS(1357), - [anon_sym_BSLASHnameCref] = ACTIONS(1357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1357), - [anon_sym_BSLASHlabelcref] = ACTIONS(1357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1357), - [anon_sym_BSLASHcrefrange] = ACTIONS(1363), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1366), - [anon_sym_BSLASHCrefrange] = ACTIONS(1363), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1366), - [anon_sym_BSLASHnewlabel] = ACTIONS(1369), - [anon_sym_BSLASHnewcommand] = ACTIONS(1372), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1372), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1372), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1372), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1375), - [anon_sym_BSLASHdef] = ACTIONS(1378), - [anon_sym_BSLASHlet] = ACTIONS(1381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1384), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1387), - [anon_sym_BSLASHgls] = ACTIONS(1390), - [anon_sym_BSLASHGls] = ACTIONS(1390), - [anon_sym_BSLASHGLS] = ACTIONS(1390), - [anon_sym_BSLASHglspl] = ACTIONS(1390), - [anon_sym_BSLASHGlspl] = ACTIONS(1390), - [anon_sym_BSLASHGLSpl] = ACTIONS(1390), - [anon_sym_BSLASHglsdisp] = ACTIONS(1390), - [anon_sym_BSLASHglslink] = ACTIONS(1390), - [anon_sym_BSLASHglstext] = ACTIONS(1390), - [anon_sym_BSLASHGlstext] = ACTIONS(1390), - [anon_sym_BSLASHGLStext] = ACTIONS(1390), - [anon_sym_BSLASHglsfirst] = ACTIONS(1390), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1390), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1390), - [anon_sym_BSLASHglsplural] = ACTIONS(1390), - [anon_sym_BSLASHGlsplural] = ACTIONS(1390), - [anon_sym_BSLASHGLSplural] = ACTIONS(1390), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1390), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1390), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1390), - [anon_sym_BSLASHglsname] = ACTIONS(1390), - [anon_sym_BSLASHGlsname] = ACTIONS(1390), - [anon_sym_BSLASHGLSname] = ACTIONS(1390), - [anon_sym_BSLASHglssymbol] = ACTIONS(1390), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1390), - [anon_sym_BSLASHglsdesc] = ACTIONS(1390), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1390), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1390), - [anon_sym_BSLASHglsuseri] = ACTIONS(1390), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1390), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1390), - [anon_sym_BSLASHglsuserii] = ACTIONS(1390), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1390), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1390), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1390), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1390), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1390), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1390), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1390), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1390), - [anon_sym_BSLASHglsuserv] = ACTIONS(1390), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1390), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1390), - [anon_sym_BSLASHglsuservi] = ACTIONS(1390), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1390), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1390), - [anon_sym_BSLASHnewacronym] = ACTIONS(1393), - [anon_sym_BSLASHacrshort] = ACTIONS(1396), - [anon_sym_BSLASHAcrshort] = ACTIONS(1396), - [anon_sym_BSLASHACRshort] = ACTIONS(1396), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1396), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1396), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1396), - [anon_sym_BSLASHacrlong] = ACTIONS(1396), - [anon_sym_BSLASHAcrlong] = ACTIONS(1396), - [anon_sym_BSLASHACRlong] = ACTIONS(1396), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1396), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1396), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1396), - [anon_sym_BSLASHacrfull] = ACTIONS(1396), - [anon_sym_BSLASHAcrfull] = ACTIONS(1396), - [anon_sym_BSLASHACRfull] = ACTIONS(1396), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1396), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1396), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1396), - [anon_sym_BSLASHacs] = ACTIONS(1396), - [anon_sym_BSLASHAcs] = ACTIONS(1396), - [anon_sym_BSLASHacsp] = ACTIONS(1396), - [anon_sym_BSLASHAcsp] = ACTIONS(1396), - [anon_sym_BSLASHacl] = ACTIONS(1396), - [anon_sym_BSLASHAcl] = ACTIONS(1396), - [anon_sym_BSLASHaclp] = ACTIONS(1396), - [anon_sym_BSLASHAclp] = ACTIONS(1396), - [anon_sym_BSLASHacf] = ACTIONS(1396), - [anon_sym_BSLASHAcf] = ACTIONS(1396), - [anon_sym_BSLASHacfp] = ACTIONS(1396), - [anon_sym_BSLASHAcfp] = ACTIONS(1396), - [anon_sym_BSLASHac] = ACTIONS(1396), - [anon_sym_BSLASHAc] = ACTIONS(1396), - [anon_sym_BSLASHacp] = ACTIONS(1396), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1396), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1396), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1396), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1396), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1396), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1396), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1396), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1396), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1396), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1396), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1402), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1405), - [anon_sym_BSLASHcolor] = ACTIONS(1408), - [anon_sym_BSLASHcolorbox] = ACTIONS(1408), - [anon_sym_BSLASHtextcolor] = ACTIONS(1408), - [anon_sym_BSLASHpagecolor] = ACTIONS(1408), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1411), - [anon_sym_BSLASHtext] = ACTIONS(1414), - [anon_sym_BSLASHintertext] = ACTIONS(1414), - [anon_sym_shortintertext] = ACTIONS(1414), + [sym_command_name] = ACTIONS(1250), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_RBRACK] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_BSLASHpart] = ACTIONS(1259), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1262), + [anon_sym_BSLASHaddpart] = ACTIONS(1259), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1262), + [anon_sym_BSLASHchapter] = ACTIONS(1265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1268), + [anon_sym_BSLASHaddchap] = ACTIONS(1265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1268), + [anon_sym_BSLASHsection] = ACTIONS(1271), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1274), + [anon_sym_BSLASHaddsec] = ACTIONS(1271), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1274), + [anon_sym_BSLASHsubsection] = ACTIONS(1277), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1280), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1286), + [anon_sym_BSLASHparagraph] = ACTIONS(1289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1292), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1295), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1298), + [anon_sym_BSLASHitem] = ACTIONS(1301), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1307), + [sym_word] = ACTIONS(1310), + [sym_placeholder] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym__] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_COLON] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1319), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1319), + [anon_sym_BSLASH_RBRACK] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1328), + [anon_sym_BSLASHbegin] = ACTIONS(442), + [anon_sym_BSLASHusepackage] = ACTIONS(1331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1334), + [anon_sym_BSLASHinclude] = ACTIONS(1337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1337), + [anon_sym_BSLASHinput] = ACTIONS(1337), + [anon_sym_BSLASHsubfile] = ACTIONS(1337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1340), + [anon_sym_BSLASHbibliography] = ACTIONS(1343), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1346), + [anon_sym_BSLASHincludesvg] = ACTIONS(1349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1355), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1355), + [anon_sym_BSLASHimport] = ACTIONS(1358), + [anon_sym_BSLASHsubimport] = ACTIONS(1358), + [anon_sym_BSLASHinputfrom] = ACTIONS(1358), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1358), + [anon_sym_BSLASHincludefrom] = ACTIONS(1358), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1358), + [anon_sym_BSLASHcaption] = ACTIONS(1361), + [anon_sym_BSLASHcite] = ACTIONS(1364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1367), + [anon_sym_BSLASHCite] = ACTIONS(1364), + [anon_sym_BSLASHnocite] = ACTIONS(1364), + [anon_sym_BSLASHcitet] = ACTIONS(1364), + [anon_sym_BSLASHcitep] = ACTIONS(1364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1367), + [anon_sym_BSLASHciteauthor] = ACTIONS(1364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1367), + [anon_sym_BSLASHcitetitle] = ACTIONS(1364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1367), + [anon_sym_BSLASHciteyear] = ACTIONS(1364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1367), + [anon_sym_BSLASHcitedate] = ACTIONS(1364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1367), + [anon_sym_BSLASHciteurl] = ACTIONS(1364), + [anon_sym_BSLASHfullcite] = ACTIONS(1364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1364), + [anon_sym_BSLASHcitealt] = ACTIONS(1364), + [anon_sym_BSLASHcitealp] = ACTIONS(1364), + [anon_sym_BSLASHcitetext] = ACTIONS(1364), + [anon_sym_BSLASHparencite] = ACTIONS(1364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1367), + [anon_sym_BSLASHParencite] = ACTIONS(1364), + [anon_sym_BSLASHfootcite] = ACTIONS(1364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1364), + [anon_sym_BSLASHtextcite] = ACTIONS(1364), + [anon_sym_BSLASHTextcite] = ACTIONS(1364), + [anon_sym_BSLASHsmartcite] = ACTIONS(1364), + [anon_sym_BSLASHSmartcite] = ACTIONS(1364), + [anon_sym_BSLASHsupercite] = ACTIONS(1364), + [anon_sym_BSLASHautocite] = ACTIONS(1364), + [anon_sym_BSLASHAutocite] = ACTIONS(1364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1367), + [anon_sym_BSLASHvolcite] = ACTIONS(1364), + [anon_sym_BSLASHVolcite] = ACTIONS(1364), + [anon_sym_BSLASHpvolcite] = ACTIONS(1364), + [anon_sym_BSLASHPvolcite] = ACTIONS(1364), + [anon_sym_BSLASHfvolcite] = ACTIONS(1364), + [anon_sym_BSLASHftvolcite] = ACTIONS(1364), + [anon_sym_BSLASHsvolcite] = ACTIONS(1364), + [anon_sym_BSLASHSvolcite] = ACTIONS(1364), + [anon_sym_BSLASHtvolcite] = ACTIONS(1364), + [anon_sym_BSLASHTvolcite] = ACTIONS(1364), + [anon_sym_BSLASHavolcite] = ACTIONS(1364), + [anon_sym_BSLASHAvolcite] = ACTIONS(1364), + [anon_sym_BSLASHnotecite] = ACTIONS(1364), + [anon_sym_BSLASHNotecite] = ACTIONS(1364), + [anon_sym_BSLASHpnotecite] = ACTIONS(1364), + [anon_sym_BSLASHPnotecite] = ACTIONS(1364), + [anon_sym_BSLASHfnotecite] = ACTIONS(1364), + [anon_sym_BSLASHlabel] = ACTIONS(1370), + [anon_sym_BSLASHref] = ACTIONS(1373), + [anon_sym_BSLASHeqref] = ACTIONS(1373), + [anon_sym_BSLASHvref] = ACTIONS(1373), + [anon_sym_BSLASHVref] = ACTIONS(1373), + [anon_sym_BSLASHautoref] = ACTIONS(1373), + [anon_sym_BSLASHpageref] = ACTIONS(1373), + [anon_sym_BSLASHcref] = ACTIONS(1373), + [anon_sym_BSLASHCref] = ACTIONS(1373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1376), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1376), + [anon_sym_BSLASHnamecref] = ACTIONS(1373), + [anon_sym_BSLASHnameCref] = ACTIONS(1373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1373), + [anon_sym_BSLASHlabelcref] = ACTIONS(1373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1373), + [anon_sym_BSLASHcrefrange] = ACTIONS(1379), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1382), + [anon_sym_BSLASHCrefrange] = ACTIONS(1379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1382), + [anon_sym_BSLASHnewlabel] = ACTIONS(1385), + [anon_sym_BSLASHnewcommand] = ACTIONS(1388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1391), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1391), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1391), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1391), + [anon_sym_BSLASHdef] = ACTIONS(1394), + [anon_sym_BSLASHlet] = ACTIONS(1397), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1400), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1403), + [anon_sym_BSLASHgls] = ACTIONS(1406), + [anon_sym_BSLASHGls] = ACTIONS(1406), + [anon_sym_BSLASHGLS] = ACTIONS(1406), + [anon_sym_BSLASHglspl] = ACTIONS(1406), + [anon_sym_BSLASHGlspl] = ACTIONS(1406), + [anon_sym_BSLASHGLSpl] = ACTIONS(1406), + [anon_sym_BSLASHglsdisp] = ACTIONS(1406), + [anon_sym_BSLASHglslink] = ACTIONS(1406), + [anon_sym_BSLASHglstext] = ACTIONS(1406), + [anon_sym_BSLASHGlstext] = ACTIONS(1406), + [anon_sym_BSLASHGLStext] = ACTIONS(1406), + [anon_sym_BSLASHglsfirst] = ACTIONS(1406), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1406), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1406), + [anon_sym_BSLASHglsplural] = ACTIONS(1406), + [anon_sym_BSLASHGlsplural] = ACTIONS(1406), + [anon_sym_BSLASHGLSplural] = ACTIONS(1406), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1406), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1406), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1406), + [anon_sym_BSLASHglsname] = ACTIONS(1406), + [anon_sym_BSLASHGlsname] = ACTIONS(1406), + [anon_sym_BSLASHGLSname] = ACTIONS(1406), + [anon_sym_BSLASHglssymbol] = ACTIONS(1406), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1406), + [anon_sym_BSLASHglsdesc] = ACTIONS(1406), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1406), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1406), + [anon_sym_BSLASHglsuseri] = ACTIONS(1406), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1406), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1406), + [anon_sym_BSLASHglsuserii] = ACTIONS(1406), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1406), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1406), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1406), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1406), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1406), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1406), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1406), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1406), + [anon_sym_BSLASHglsuserv] = ACTIONS(1406), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1406), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1406), + [anon_sym_BSLASHglsuservi] = ACTIONS(1406), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1406), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1406), + [anon_sym_BSLASHnewacronym] = ACTIONS(1409), + [anon_sym_BSLASHacrshort] = ACTIONS(1412), + [anon_sym_BSLASHAcrshort] = ACTIONS(1412), + [anon_sym_BSLASHACRshort] = ACTIONS(1412), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1412), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1412), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1412), + [anon_sym_BSLASHacrlong] = ACTIONS(1412), + [anon_sym_BSLASHAcrlong] = ACTIONS(1412), + [anon_sym_BSLASHACRlong] = ACTIONS(1412), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1412), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1412), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1412), + [anon_sym_BSLASHacrfull] = ACTIONS(1412), + [anon_sym_BSLASHAcrfull] = ACTIONS(1412), + [anon_sym_BSLASHACRfull] = ACTIONS(1412), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1412), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1412), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1412), + [anon_sym_BSLASHacs] = ACTIONS(1412), + [anon_sym_BSLASHAcs] = ACTIONS(1412), + [anon_sym_BSLASHacsp] = ACTIONS(1412), + [anon_sym_BSLASHAcsp] = ACTIONS(1412), + [anon_sym_BSLASHacl] = ACTIONS(1412), + [anon_sym_BSLASHAcl] = ACTIONS(1412), + [anon_sym_BSLASHaclp] = ACTIONS(1412), + [anon_sym_BSLASHAclp] = ACTIONS(1412), + [anon_sym_BSLASHacf] = ACTIONS(1412), + [anon_sym_BSLASHAcf] = ACTIONS(1412), + [anon_sym_BSLASHacfp] = ACTIONS(1412), + [anon_sym_BSLASHAcfp] = ACTIONS(1412), + [anon_sym_BSLASHac] = ACTIONS(1412), + [anon_sym_BSLASHAc] = ACTIONS(1412), + [anon_sym_BSLASHacp] = ACTIONS(1412), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1412), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1412), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1412), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1412), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1412), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1412), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1412), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1412), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1412), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1412), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1415), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1418), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1415), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1418), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1424), + [anon_sym_BSLASHcolor] = ACTIONS(1427), + [anon_sym_BSLASHcolorbox] = ACTIONS(1427), + [anon_sym_BSLASHtextcolor] = ACTIONS(1427), + [anon_sym_BSLASHpagecolor] = ACTIONS(1427), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1430), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1430), + [anon_sym_BSLASHtext] = ACTIONS(1433), + [anon_sym_BSLASHintertext] = ACTIONS(1433), + [anon_sym_shortintertext] = ACTIONS(1433), }, [105] = { [sym_block_comment] = STATE(94), @@ -54839,276 +55069,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [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(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1419), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1438), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [106] = { [sym_block_comment] = STATE(92), @@ -55193,276 +55425,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1444), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [107] = { [sym_block_comment] = STATE(115), @@ -55547,276 +55781,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1427), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1446), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [108] = { [sym_block_comment] = STATE(65), @@ -55901,276 +56137,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [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(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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [109] = { [sym_block_comment] = STATE(79), @@ -56255,276 +56493,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1450), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [110] = { [sym_block_comment] = STATE(58), @@ -56609,276 +56849,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [111] = { [sym_block_comment] = STATE(89), @@ -56963,276 +57205,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1437), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1454), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [112] = { [sym_block_comment] = STATE(104), @@ -57317,276 +57561,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1458), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [113] = { [sym_block_comment] = STATE(59), @@ -57675,12 +57921,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [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_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -57704,7 +57950,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(1445), + [anon_sym_RBRACE] = ACTIONS(1464), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -57929,18 +58175,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [114] = { [sym_block_comment] = STATE(22), @@ -58029,12 +58277,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -58058,7 +58306,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(1466), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -58283,18 +58531,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [115] = { [sym_block_comment] = STATE(115), @@ -58379,276 +58629,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(1449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACK] = ACTIONS(1455), - [anon_sym_COMMA] = ACTIONS(1455), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_BSLASHpart] = ACTIONS(1458), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1461), - [anon_sym_BSLASHaddpart] = ACTIONS(1458), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1461), - [anon_sym_BSLASHchapter] = ACTIONS(1464), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1467), - [anon_sym_BSLASHaddchap] = ACTIONS(1464), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1467), - [anon_sym_BSLASHsection] = ACTIONS(1470), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1473), - [anon_sym_BSLASHaddsec] = ACTIONS(1470), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1473), - [anon_sym_BSLASHsubsection] = ACTIONS(1476), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1479), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1482), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1485), - [anon_sym_BSLASHparagraph] = ACTIONS(1488), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1494), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1497), - [anon_sym_BSLASHitem] = ACTIONS(1500), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1506), - [sym_word] = ACTIONS(1509), - [sym_placeholder] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym__] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_COLON] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1518), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1524), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1527), - [anon_sym_BSLASH_RBRACE] = ACTIONS(355), - [anon_sym_BSLASHbegin] = ACTIONS(438), - [anon_sym_BSLASHusepackage] = ACTIONS(1530), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1530), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1533), - [anon_sym_BSLASHinclude] = ACTIONS(1536), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1536), - [anon_sym_BSLASHinput] = ACTIONS(1536), - [anon_sym_BSLASHsubfile] = ACTIONS(1536), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1539), - [anon_sym_BSLASHbibliography] = ACTIONS(1542), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1545), - [anon_sym_BSLASHincludesvg] = ACTIONS(1548), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1554), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1554), - [anon_sym_BSLASHimport] = ACTIONS(1557), - [anon_sym_BSLASHsubimport] = ACTIONS(1557), - [anon_sym_BSLASHinputfrom] = ACTIONS(1557), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1557), - [anon_sym_BSLASHincludefrom] = ACTIONS(1557), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1557), - [anon_sym_BSLASHcaption] = ACTIONS(1560), - [anon_sym_BSLASHcite] = ACTIONS(1563), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1566), - [anon_sym_BSLASHCite] = ACTIONS(1563), - [anon_sym_BSLASHnocite] = ACTIONS(1563), - [anon_sym_BSLASHcitet] = ACTIONS(1563), - [anon_sym_BSLASHcitep] = ACTIONS(1563), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1566), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1566), - [anon_sym_BSLASHciteauthor] = ACTIONS(1563), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1566), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1563), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1566), - [anon_sym_BSLASHcitetitle] = ACTIONS(1563), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1566), - [anon_sym_BSLASHciteyear] = ACTIONS(1563), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1566), - [anon_sym_BSLASHcitedate] = ACTIONS(1563), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1566), - [anon_sym_BSLASHciteurl] = ACTIONS(1563), - [anon_sym_BSLASHfullcite] = ACTIONS(1563), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1563), - [anon_sym_BSLASHcitealt] = ACTIONS(1563), - [anon_sym_BSLASHcitealp] = ACTIONS(1563), - [anon_sym_BSLASHcitetext] = ACTIONS(1563), - [anon_sym_BSLASHparencite] = ACTIONS(1563), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1566), - [anon_sym_BSLASHParencite] = ACTIONS(1563), - [anon_sym_BSLASHfootcite] = ACTIONS(1563), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1563), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1563), - [anon_sym_BSLASHtextcite] = ACTIONS(1563), - [anon_sym_BSLASHTextcite] = ACTIONS(1563), - [anon_sym_BSLASHsmartcite] = ACTIONS(1563), - [anon_sym_BSLASHSmartcite] = ACTIONS(1563), - [anon_sym_BSLASHsupercite] = ACTIONS(1563), - [anon_sym_BSLASHautocite] = ACTIONS(1563), - [anon_sym_BSLASHAutocite] = ACTIONS(1563), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1566), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1566), - [anon_sym_BSLASHvolcite] = ACTIONS(1563), - [anon_sym_BSLASHVolcite] = ACTIONS(1563), - [anon_sym_BSLASHpvolcite] = ACTIONS(1563), - [anon_sym_BSLASHPvolcite] = ACTIONS(1563), - [anon_sym_BSLASHfvolcite] = ACTIONS(1563), - [anon_sym_BSLASHftvolcite] = ACTIONS(1563), - [anon_sym_BSLASHsvolcite] = ACTIONS(1563), - [anon_sym_BSLASHSvolcite] = ACTIONS(1563), - [anon_sym_BSLASHtvolcite] = ACTIONS(1563), - [anon_sym_BSLASHTvolcite] = ACTIONS(1563), - [anon_sym_BSLASHavolcite] = ACTIONS(1563), - [anon_sym_BSLASHAvolcite] = ACTIONS(1563), - [anon_sym_BSLASHnotecite] = ACTIONS(1563), - [anon_sym_BSLASHNotecite] = ACTIONS(1563), - [anon_sym_BSLASHpnotecite] = ACTIONS(1563), - [anon_sym_BSLASHPnotecite] = ACTIONS(1563), - [anon_sym_BSLASHfnotecite] = ACTIONS(1563), - [anon_sym_BSLASHlabel] = ACTIONS(1569), - [anon_sym_BSLASHref] = ACTIONS(1572), - [anon_sym_BSLASHeqref] = ACTIONS(1572), - [anon_sym_BSLASHvref] = ACTIONS(1572), - [anon_sym_BSLASHVref] = ACTIONS(1572), - [anon_sym_BSLASHautoref] = ACTIONS(1572), - [anon_sym_BSLASHpageref] = ACTIONS(1572), - [anon_sym_BSLASHcref] = ACTIONS(1572), - [anon_sym_BSLASHCref] = ACTIONS(1572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1575), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1575), - [anon_sym_BSLASHnamecref] = ACTIONS(1572), - [anon_sym_BSLASHnameCref] = ACTIONS(1572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1572), - [anon_sym_BSLASHlabelcref] = ACTIONS(1572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1572), - [anon_sym_BSLASHcrefrange] = ACTIONS(1578), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1581), - [anon_sym_BSLASHCrefrange] = ACTIONS(1578), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1581), - [anon_sym_BSLASHnewlabel] = ACTIONS(1584), - [anon_sym_BSLASHnewcommand] = ACTIONS(1587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1590), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1590), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1590), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1590), - [anon_sym_BSLASHdef] = ACTIONS(1593), - [anon_sym_BSLASHlet] = ACTIONS(1596), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1599), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1602), - [anon_sym_BSLASHgls] = ACTIONS(1605), - [anon_sym_BSLASHGls] = ACTIONS(1605), - [anon_sym_BSLASHGLS] = ACTIONS(1605), - [anon_sym_BSLASHglspl] = ACTIONS(1605), - [anon_sym_BSLASHGlspl] = ACTIONS(1605), - [anon_sym_BSLASHGLSpl] = ACTIONS(1605), - [anon_sym_BSLASHglsdisp] = ACTIONS(1605), - [anon_sym_BSLASHglslink] = ACTIONS(1605), - [anon_sym_BSLASHglstext] = ACTIONS(1605), - [anon_sym_BSLASHGlstext] = ACTIONS(1605), - [anon_sym_BSLASHGLStext] = ACTIONS(1605), - [anon_sym_BSLASHglsfirst] = ACTIONS(1605), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1605), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1605), - [anon_sym_BSLASHglsplural] = ACTIONS(1605), - [anon_sym_BSLASHGlsplural] = ACTIONS(1605), - [anon_sym_BSLASHGLSplural] = ACTIONS(1605), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1605), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1605), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1605), - [anon_sym_BSLASHglsname] = ACTIONS(1605), - [anon_sym_BSLASHGlsname] = ACTIONS(1605), - [anon_sym_BSLASHGLSname] = ACTIONS(1605), - [anon_sym_BSLASHglssymbol] = ACTIONS(1605), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1605), - [anon_sym_BSLASHglsdesc] = ACTIONS(1605), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1605), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1605), - [anon_sym_BSLASHglsuseri] = ACTIONS(1605), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1605), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1605), - [anon_sym_BSLASHglsuserii] = ACTIONS(1605), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1605), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1605), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1605), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1605), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1605), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1605), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1605), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1605), - [anon_sym_BSLASHglsuserv] = ACTIONS(1605), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1605), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1605), - [anon_sym_BSLASHglsuservi] = ACTIONS(1605), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1605), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1605), - [anon_sym_BSLASHnewacronym] = ACTIONS(1608), - [anon_sym_BSLASHacrshort] = ACTIONS(1611), - [anon_sym_BSLASHAcrshort] = ACTIONS(1611), - [anon_sym_BSLASHACRshort] = ACTIONS(1611), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1611), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1611), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1611), - [anon_sym_BSLASHacrlong] = ACTIONS(1611), - [anon_sym_BSLASHAcrlong] = ACTIONS(1611), - [anon_sym_BSLASHACRlong] = ACTIONS(1611), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1611), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1611), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1611), - [anon_sym_BSLASHacrfull] = ACTIONS(1611), - [anon_sym_BSLASHAcrfull] = ACTIONS(1611), - [anon_sym_BSLASHACRfull] = ACTIONS(1611), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1611), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1611), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1611), - [anon_sym_BSLASHacs] = ACTIONS(1611), - [anon_sym_BSLASHAcs] = ACTIONS(1611), - [anon_sym_BSLASHacsp] = ACTIONS(1611), - [anon_sym_BSLASHAcsp] = ACTIONS(1611), - [anon_sym_BSLASHacl] = ACTIONS(1611), - [anon_sym_BSLASHAcl] = ACTIONS(1611), - [anon_sym_BSLASHaclp] = ACTIONS(1611), - [anon_sym_BSLASHAclp] = ACTIONS(1611), - [anon_sym_BSLASHacf] = ACTIONS(1611), - [anon_sym_BSLASHAcf] = ACTIONS(1611), - [anon_sym_BSLASHacfp] = ACTIONS(1611), - [anon_sym_BSLASHAcfp] = ACTIONS(1611), - [anon_sym_BSLASHac] = ACTIONS(1611), - [anon_sym_BSLASHAc] = ACTIONS(1611), - [anon_sym_BSLASHacp] = ACTIONS(1611), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1611), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1611), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1611), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1611), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1611), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1611), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1611), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1611), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1611), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1611), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1614), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1614), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1617), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1620), - [anon_sym_BSLASHcolor] = ACTIONS(1623), - [anon_sym_BSLASHcolorbox] = ACTIONS(1623), - [anon_sym_BSLASHtextcolor] = ACTIONS(1623), - [anon_sym_BSLASHpagecolor] = ACTIONS(1623), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1626), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1626), - [anon_sym_BSLASHtext] = ACTIONS(1629), - [anon_sym_BSLASHintertext] = ACTIONS(1629), - [anon_sym_shortintertext] = ACTIONS(1629), + [sym_command_name] = ACTIONS(1468), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_BSLASHpart] = ACTIONS(1477), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1480), + [anon_sym_BSLASHaddpart] = ACTIONS(1477), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1480), + [anon_sym_BSLASHchapter] = ACTIONS(1483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1486), + [anon_sym_BSLASHaddchap] = ACTIONS(1483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1486), + [anon_sym_BSLASHsection] = ACTIONS(1489), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1492), + [anon_sym_BSLASHaddsec] = ACTIONS(1489), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1492), + [anon_sym_BSLASHsubsection] = ACTIONS(1495), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1498), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1501), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1504), + [anon_sym_BSLASHparagraph] = ACTIONS(1507), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1510), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1513), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1516), + [anon_sym_BSLASHitem] = ACTIONS(1519), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1525), + [sym_word] = ACTIONS(1528), + [sym_placeholder] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_COLON] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1546), + [anon_sym_BSLASH_RBRACE] = ACTIONS(359), + [anon_sym_BSLASHbegin] = ACTIONS(442), + [anon_sym_BSLASHusepackage] = ACTIONS(1549), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1549), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1552), + [anon_sym_BSLASHinclude] = ACTIONS(1555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1555), + [anon_sym_BSLASHinput] = ACTIONS(1555), + [anon_sym_BSLASHsubfile] = ACTIONS(1555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1558), + [anon_sym_BSLASHbibliography] = ACTIONS(1561), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1564), + [anon_sym_BSLASHincludesvg] = ACTIONS(1567), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1573), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1573), + [anon_sym_BSLASHimport] = ACTIONS(1576), + [anon_sym_BSLASHsubimport] = ACTIONS(1576), + [anon_sym_BSLASHinputfrom] = ACTIONS(1576), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1576), + [anon_sym_BSLASHincludefrom] = ACTIONS(1576), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1576), + [anon_sym_BSLASHcaption] = ACTIONS(1579), + [anon_sym_BSLASHcite] = ACTIONS(1582), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHCite] = ACTIONS(1582), + [anon_sym_BSLASHnocite] = ACTIONS(1582), + [anon_sym_BSLASHcitet] = ACTIONS(1582), + [anon_sym_BSLASHcitep] = ACTIONS(1582), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1585), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1585), + [anon_sym_BSLASHciteauthor] = ACTIONS(1582), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1585), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1582), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1585), + [anon_sym_BSLASHcitetitle] = ACTIONS(1582), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1585), + [anon_sym_BSLASHciteyear] = ACTIONS(1582), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1585), + [anon_sym_BSLASHcitedate] = ACTIONS(1582), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1585), + [anon_sym_BSLASHciteurl] = ACTIONS(1582), + [anon_sym_BSLASHfullcite] = ACTIONS(1582), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1582), + [anon_sym_BSLASHcitealt] = ACTIONS(1582), + [anon_sym_BSLASHcitealp] = ACTIONS(1582), + [anon_sym_BSLASHcitetext] = ACTIONS(1582), + [anon_sym_BSLASHparencite] = ACTIONS(1582), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHParencite] = ACTIONS(1582), + [anon_sym_BSLASHfootcite] = ACTIONS(1582), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1582), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1582), + [anon_sym_BSLASHtextcite] = ACTIONS(1582), + [anon_sym_BSLASHTextcite] = ACTIONS(1582), + [anon_sym_BSLASHsmartcite] = ACTIONS(1582), + [anon_sym_BSLASHSmartcite] = ACTIONS(1582), + [anon_sym_BSLASHsupercite] = ACTIONS(1582), + [anon_sym_BSLASHautocite] = ACTIONS(1582), + [anon_sym_BSLASHAutocite] = ACTIONS(1582), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHvolcite] = ACTIONS(1582), + [anon_sym_BSLASHVolcite] = ACTIONS(1582), + [anon_sym_BSLASHpvolcite] = ACTIONS(1582), + [anon_sym_BSLASHPvolcite] = ACTIONS(1582), + [anon_sym_BSLASHfvolcite] = ACTIONS(1582), + [anon_sym_BSLASHftvolcite] = ACTIONS(1582), + [anon_sym_BSLASHsvolcite] = ACTIONS(1582), + [anon_sym_BSLASHSvolcite] = ACTIONS(1582), + [anon_sym_BSLASHtvolcite] = ACTIONS(1582), + [anon_sym_BSLASHTvolcite] = ACTIONS(1582), + [anon_sym_BSLASHavolcite] = ACTIONS(1582), + [anon_sym_BSLASHAvolcite] = ACTIONS(1582), + [anon_sym_BSLASHnotecite] = ACTIONS(1582), + [anon_sym_BSLASHNotecite] = ACTIONS(1582), + [anon_sym_BSLASHpnotecite] = ACTIONS(1582), + [anon_sym_BSLASHPnotecite] = ACTIONS(1582), + [anon_sym_BSLASHfnotecite] = ACTIONS(1582), + [anon_sym_BSLASHlabel] = ACTIONS(1588), + [anon_sym_BSLASHref] = ACTIONS(1591), + [anon_sym_BSLASHeqref] = ACTIONS(1591), + [anon_sym_BSLASHvref] = ACTIONS(1591), + [anon_sym_BSLASHVref] = ACTIONS(1591), + [anon_sym_BSLASHautoref] = ACTIONS(1591), + [anon_sym_BSLASHpageref] = ACTIONS(1591), + [anon_sym_BSLASHcref] = ACTIONS(1591), + [anon_sym_BSLASHCref] = ACTIONS(1591), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1594), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1594), + [anon_sym_BSLASHnamecref] = ACTIONS(1591), + [anon_sym_BSLASHnameCref] = ACTIONS(1591), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1591), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1591), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1591), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1591), + [anon_sym_BSLASHlabelcref] = ACTIONS(1591), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1591), + [anon_sym_BSLASHcrefrange] = ACTIONS(1597), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1600), + [anon_sym_BSLASHCrefrange] = ACTIONS(1597), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1600), + [anon_sym_BSLASHnewlabel] = ACTIONS(1603), + [anon_sym_BSLASHnewcommand] = ACTIONS(1606), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1609), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1606), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1609), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1606), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1609), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1606), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1609), + [anon_sym_BSLASHdef] = ACTIONS(1612), + [anon_sym_BSLASHlet] = ACTIONS(1615), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1618), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1621), + [anon_sym_BSLASHgls] = ACTIONS(1624), + [anon_sym_BSLASHGls] = ACTIONS(1624), + [anon_sym_BSLASHGLS] = ACTIONS(1624), + [anon_sym_BSLASHglspl] = ACTIONS(1624), + [anon_sym_BSLASHGlspl] = ACTIONS(1624), + [anon_sym_BSLASHGLSpl] = ACTIONS(1624), + [anon_sym_BSLASHglsdisp] = ACTIONS(1624), + [anon_sym_BSLASHglslink] = ACTIONS(1624), + [anon_sym_BSLASHglstext] = ACTIONS(1624), + [anon_sym_BSLASHGlstext] = ACTIONS(1624), + [anon_sym_BSLASHGLStext] = ACTIONS(1624), + [anon_sym_BSLASHglsfirst] = ACTIONS(1624), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1624), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1624), + [anon_sym_BSLASHglsplural] = ACTIONS(1624), + [anon_sym_BSLASHGlsplural] = ACTIONS(1624), + [anon_sym_BSLASHGLSplural] = ACTIONS(1624), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1624), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1624), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1624), + [anon_sym_BSLASHglsname] = ACTIONS(1624), + [anon_sym_BSLASHGlsname] = ACTIONS(1624), + [anon_sym_BSLASHGLSname] = ACTIONS(1624), + [anon_sym_BSLASHglssymbol] = ACTIONS(1624), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1624), + [anon_sym_BSLASHglsdesc] = ACTIONS(1624), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1624), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1624), + [anon_sym_BSLASHglsuseri] = ACTIONS(1624), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1624), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1624), + [anon_sym_BSLASHglsuserii] = ACTIONS(1624), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1624), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1624), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1624), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1624), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1624), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1624), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1624), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1624), + [anon_sym_BSLASHglsuserv] = ACTIONS(1624), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1624), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1624), + [anon_sym_BSLASHglsuservi] = ACTIONS(1624), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1624), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1624), + [anon_sym_BSLASHnewacronym] = ACTIONS(1627), + [anon_sym_BSLASHacrshort] = ACTIONS(1630), + [anon_sym_BSLASHAcrshort] = ACTIONS(1630), + [anon_sym_BSLASHACRshort] = ACTIONS(1630), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1630), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1630), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1630), + [anon_sym_BSLASHacrlong] = ACTIONS(1630), + [anon_sym_BSLASHAcrlong] = ACTIONS(1630), + [anon_sym_BSLASHACRlong] = ACTIONS(1630), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1630), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1630), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1630), + [anon_sym_BSLASHacrfull] = ACTIONS(1630), + [anon_sym_BSLASHAcrfull] = ACTIONS(1630), + [anon_sym_BSLASHACRfull] = ACTIONS(1630), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1630), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1630), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1630), + [anon_sym_BSLASHacs] = ACTIONS(1630), + [anon_sym_BSLASHAcs] = ACTIONS(1630), + [anon_sym_BSLASHacsp] = ACTIONS(1630), + [anon_sym_BSLASHAcsp] = ACTIONS(1630), + [anon_sym_BSLASHacl] = ACTIONS(1630), + [anon_sym_BSLASHAcl] = ACTIONS(1630), + [anon_sym_BSLASHaclp] = ACTIONS(1630), + [anon_sym_BSLASHAclp] = ACTIONS(1630), + [anon_sym_BSLASHacf] = ACTIONS(1630), + [anon_sym_BSLASHAcf] = ACTIONS(1630), + [anon_sym_BSLASHacfp] = ACTIONS(1630), + [anon_sym_BSLASHAcfp] = ACTIONS(1630), + [anon_sym_BSLASHac] = ACTIONS(1630), + [anon_sym_BSLASHAc] = ACTIONS(1630), + [anon_sym_BSLASHacp] = ACTIONS(1630), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1630), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1630), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1630), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1630), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1630), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1630), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1630), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1630), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1630), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1630), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1633), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1636), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1633), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1636), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1639), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1642), + [anon_sym_BSLASHcolor] = ACTIONS(1645), + [anon_sym_BSLASHcolorbox] = ACTIONS(1645), + [anon_sym_BSLASHtextcolor] = ACTIONS(1645), + [anon_sym_BSLASHpagecolor] = ACTIONS(1645), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1648), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1648), + [anon_sym_BSLASHtext] = ACTIONS(1651), + [anon_sym_BSLASHintertext] = ACTIONS(1651), + [anon_sym_shortintertext] = ACTIONS(1651), }, [116] = { [sym_block_comment] = STATE(86), @@ -58737,12 +58989,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_RBRACK] = ACTIONS(1632), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1654), + [anon_sym_RPAREN] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACK] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -58766,7 +59018,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(1634), + [anon_sym_RBRACE] = ACTIONS(1656), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -58991,18 +59243,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [117] = { [sym_block_comment] = STATE(117), @@ -59087,276 +59341,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(534), [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(1636), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_RBRACK] = ACTIONS(1642), - [anon_sym_COMMA] = ACTIONS(1642), - [anon_sym_EQ] = ACTIONS(1642), - [anon_sym_BSLASHpart] = ACTIONS(1645), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1648), - [anon_sym_BSLASHaddpart] = ACTIONS(1645), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1648), - [anon_sym_BSLASHchapter] = ACTIONS(1651), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1654), - [anon_sym_BSLASHaddchap] = ACTIONS(1651), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1654), - [anon_sym_BSLASHsection] = ACTIONS(1657), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1660), - [anon_sym_BSLASHaddsec] = ACTIONS(1657), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1660), - [anon_sym_BSLASHsubsection] = ACTIONS(1663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1666), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1669), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1672), - [anon_sym_BSLASHparagraph] = ACTIONS(1675), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1681), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1684), - [anon_sym_BSLASHitem] = ACTIONS(1687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1693), - [sym_word] = ACTIONS(1696), - [sym_placeholder] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym__] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_COLON] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1711), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1714), - [anon_sym_BSLASHbegin] = ACTIONS(438), - [anon_sym_BSLASHend] = ACTIONS(1717), - [anon_sym_BSLASHusepackage] = ACTIONS(1719), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1719), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1722), - [anon_sym_BSLASHinclude] = ACTIONS(1725), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1725), - [anon_sym_BSLASHinput] = ACTIONS(1725), - [anon_sym_BSLASHsubfile] = ACTIONS(1725), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1728), - [anon_sym_BSLASHbibliography] = ACTIONS(1731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1734), - [anon_sym_BSLASHincludesvg] = ACTIONS(1737), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1740), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1743), - [anon_sym_BSLASHimport] = ACTIONS(1746), - [anon_sym_BSLASHsubimport] = ACTIONS(1746), - [anon_sym_BSLASHinputfrom] = ACTIONS(1746), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1746), - [anon_sym_BSLASHincludefrom] = ACTIONS(1746), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1746), - [anon_sym_BSLASHcaption] = ACTIONS(1749), - [anon_sym_BSLASHcite] = ACTIONS(1752), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1755), - [anon_sym_BSLASHCite] = ACTIONS(1752), - [anon_sym_BSLASHnocite] = ACTIONS(1752), - [anon_sym_BSLASHcitet] = ACTIONS(1752), - [anon_sym_BSLASHcitep] = ACTIONS(1752), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1755), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1755), - [anon_sym_BSLASHciteauthor] = ACTIONS(1752), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1755), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1752), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1755), - [anon_sym_BSLASHcitetitle] = ACTIONS(1752), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1755), - [anon_sym_BSLASHciteyear] = ACTIONS(1752), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1755), - [anon_sym_BSLASHcitedate] = ACTIONS(1752), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1755), - [anon_sym_BSLASHciteurl] = ACTIONS(1752), - [anon_sym_BSLASHfullcite] = ACTIONS(1752), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1752), - [anon_sym_BSLASHcitealt] = ACTIONS(1752), - [anon_sym_BSLASHcitealp] = ACTIONS(1752), - [anon_sym_BSLASHcitetext] = ACTIONS(1752), - [anon_sym_BSLASHparencite] = ACTIONS(1752), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1755), - [anon_sym_BSLASHParencite] = ACTIONS(1752), - [anon_sym_BSLASHfootcite] = ACTIONS(1752), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1752), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1752), - [anon_sym_BSLASHtextcite] = ACTIONS(1752), - [anon_sym_BSLASHTextcite] = ACTIONS(1752), - [anon_sym_BSLASHsmartcite] = ACTIONS(1752), - [anon_sym_BSLASHSmartcite] = ACTIONS(1752), - [anon_sym_BSLASHsupercite] = ACTIONS(1752), - [anon_sym_BSLASHautocite] = ACTIONS(1752), - [anon_sym_BSLASHAutocite] = ACTIONS(1752), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1755), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1755), - [anon_sym_BSLASHvolcite] = ACTIONS(1752), - [anon_sym_BSLASHVolcite] = ACTIONS(1752), - [anon_sym_BSLASHpvolcite] = ACTIONS(1752), - [anon_sym_BSLASHPvolcite] = ACTIONS(1752), - [anon_sym_BSLASHfvolcite] = ACTIONS(1752), - [anon_sym_BSLASHftvolcite] = ACTIONS(1752), - [anon_sym_BSLASHsvolcite] = ACTIONS(1752), - [anon_sym_BSLASHSvolcite] = ACTIONS(1752), - [anon_sym_BSLASHtvolcite] = ACTIONS(1752), - [anon_sym_BSLASHTvolcite] = ACTIONS(1752), - [anon_sym_BSLASHavolcite] = ACTIONS(1752), - [anon_sym_BSLASHAvolcite] = ACTIONS(1752), - [anon_sym_BSLASHnotecite] = ACTIONS(1752), - [anon_sym_BSLASHNotecite] = ACTIONS(1752), - [anon_sym_BSLASHpnotecite] = ACTIONS(1752), - [anon_sym_BSLASHPnotecite] = ACTIONS(1752), - [anon_sym_BSLASHfnotecite] = ACTIONS(1752), - [anon_sym_BSLASHlabel] = ACTIONS(1758), - [anon_sym_BSLASHref] = ACTIONS(1761), - [anon_sym_BSLASHeqref] = ACTIONS(1761), - [anon_sym_BSLASHvref] = ACTIONS(1761), - [anon_sym_BSLASHVref] = ACTIONS(1761), - [anon_sym_BSLASHautoref] = ACTIONS(1761), - [anon_sym_BSLASHpageref] = ACTIONS(1761), - [anon_sym_BSLASHcref] = ACTIONS(1761), - [anon_sym_BSLASHCref] = ACTIONS(1761), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1764), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1764), - [anon_sym_BSLASHnamecref] = ACTIONS(1761), - [anon_sym_BSLASHnameCref] = ACTIONS(1761), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1761), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1761), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1761), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1761), - [anon_sym_BSLASHlabelcref] = ACTIONS(1761), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1761), - [anon_sym_BSLASHcrefrange] = ACTIONS(1767), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1770), - [anon_sym_BSLASHCrefrange] = ACTIONS(1767), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1770), - [anon_sym_BSLASHnewlabel] = ACTIONS(1773), - [anon_sym_BSLASHnewcommand] = ACTIONS(1776), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1776), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1776), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1776), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1779), - [anon_sym_BSLASHdef] = ACTIONS(1782), - [anon_sym_BSLASHlet] = ACTIONS(1785), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1788), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1791), - [anon_sym_BSLASHgls] = ACTIONS(1794), - [anon_sym_BSLASHGls] = ACTIONS(1794), - [anon_sym_BSLASHGLS] = ACTIONS(1794), - [anon_sym_BSLASHglspl] = ACTIONS(1794), - [anon_sym_BSLASHGlspl] = ACTIONS(1794), - [anon_sym_BSLASHGLSpl] = ACTIONS(1794), - [anon_sym_BSLASHglsdisp] = ACTIONS(1794), - [anon_sym_BSLASHglslink] = ACTIONS(1794), - [anon_sym_BSLASHglstext] = ACTIONS(1794), - [anon_sym_BSLASHGlstext] = ACTIONS(1794), - [anon_sym_BSLASHGLStext] = ACTIONS(1794), - [anon_sym_BSLASHglsfirst] = ACTIONS(1794), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1794), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1794), - [anon_sym_BSLASHglsplural] = ACTIONS(1794), - [anon_sym_BSLASHGlsplural] = ACTIONS(1794), - [anon_sym_BSLASHGLSplural] = ACTIONS(1794), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1794), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1794), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1794), - [anon_sym_BSLASHglsname] = ACTIONS(1794), - [anon_sym_BSLASHGlsname] = ACTIONS(1794), - [anon_sym_BSLASHGLSname] = ACTIONS(1794), - [anon_sym_BSLASHglssymbol] = ACTIONS(1794), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1794), - [anon_sym_BSLASHglsdesc] = ACTIONS(1794), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1794), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1794), - [anon_sym_BSLASHglsuseri] = ACTIONS(1794), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1794), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1794), - [anon_sym_BSLASHglsuserii] = ACTIONS(1794), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1794), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1794), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1794), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1794), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1794), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1794), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1794), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1794), - [anon_sym_BSLASHglsuserv] = ACTIONS(1794), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1794), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1794), - [anon_sym_BSLASHglsuservi] = ACTIONS(1794), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1794), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1794), - [anon_sym_BSLASHnewacronym] = ACTIONS(1797), - [anon_sym_BSLASHacrshort] = ACTIONS(1800), - [anon_sym_BSLASHAcrshort] = ACTIONS(1800), - [anon_sym_BSLASHACRshort] = ACTIONS(1800), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1800), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1800), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1800), - [anon_sym_BSLASHacrlong] = ACTIONS(1800), - [anon_sym_BSLASHAcrlong] = ACTIONS(1800), - [anon_sym_BSLASHACRlong] = ACTIONS(1800), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1800), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1800), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1800), - [anon_sym_BSLASHacrfull] = ACTIONS(1800), - [anon_sym_BSLASHAcrfull] = ACTIONS(1800), - [anon_sym_BSLASHACRfull] = ACTIONS(1800), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1800), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1800), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1800), - [anon_sym_BSLASHacs] = ACTIONS(1800), - [anon_sym_BSLASHAcs] = ACTIONS(1800), - [anon_sym_BSLASHacsp] = ACTIONS(1800), - [anon_sym_BSLASHAcsp] = ACTIONS(1800), - [anon_sym_BSLASHacl] = ACTIONS(1800), - [anon_sym_BSLASHAcl] = ACTIONS(1800), - [anon_sym_BSLASHaclp] = ACTIONS(1800), - [anon_sym_BSLASHAclp] = ACTIONS(1800), - [anon_sym_BSLASHacf] = ACTIONS(1800), - [anon_sym_BSLASHAcf] = ACTIONS(1800), - [anon_sym_BSLASHacfp] = ACTIONS(1800), - [anon_sym_BSLASHAcfp] = ACTIONS(1800), - [anon_sym_BSLASHac] = ACTIONS(1800), - [anon_sym_BSLASHAc] = ACTIONS(1800), - [anon_sym_BSLASHacp] = ACTIONS(1800), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1800), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1800), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1800), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1800), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1800), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1800), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1800), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1800), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1800), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1800), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1803), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1803), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1806), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1809), - [anon_sym_BSLASHcolor] = ACTIONS(1812), - [anon_sym_BSLASHcolorbox] = ACTIONS(1812), - [anon_sym_BSLASHtextcolor] = ACTIONS(1812), - [anon_sym_BSLASHpagecolor] = ACTIONS(1812), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1815), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1815), - [anon_sym_BSLASHtext] = ACTIONS(1818), - [anon_sym_BSLASHintertext] = ACTIONS(1818), - [anon_sym_shortintertext] = ACTIONS(1818), + [sym_command_name] = ACTIONS(1658), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1664), + [anon_sym_BSLASHpart] = ACTIONS(1667), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1670), + [anon_sym_BSLASHaddpart] = ACTIONS(1667), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1670), + [anon_sym_BSLASHchapter] = ACTIONS(1673), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1676), + [anon_sym_BSLASHaddchap] = ACTIONS(1673), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1676), + [anon_sym_BSLASHsection] = ACTIONS(1679), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1682), + [anon_sym_BSLASHaddsec] = ACTIONS(1679), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1682), + [anon_sym_BSLASHsubsection] = ACTIONS(1685), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1688), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1691), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1694), + [anon_sym_BSLASHparagraph] = ACTIONS(1697), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1700), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1703), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1706), + [anon_sym_BSLASHitem] = ACTIONS(1709), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1715), + [sym_word] = ACTIONS(1718), + [sym_placeholder] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym__] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_COLON] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1727), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1730), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1733), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1736), + [anon_sym_BSLASHbegin] = ACTIONS(442), + [anon_sym_BSLASHend] = ACTIONS(1739), + [anon_sym_BSLASHusepackage] = ACTIONS(1741), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1741), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1744), + [anon_sym_BSLASHinclude] = ACTIONS(1747), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1747), + [anon_sym_BSLASHinput] = ACTIONS(1747), + [anon_sym_BSLASHsubfile] = ACTIONS(1747), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1750), + [anon_sym_BSLASHbibliography] = ACTIONS(1753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1756), + [anon_sym_BSLASHincludesvg] = ACTIONS(1759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1762), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1765), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1765), + [anon_sym_BSLASHimport] = ACTIONS(1768), + [anon_sym_BSLASHsubimport] = ACTIONS(1768), + [anon_sym_BSLASHinputfrom] = ACTIONS(1768), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1768), + [anon_sym_BSLASHincludefrom] = ACTIONS(1768), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1768), + [anon_sym_BSLASHcaption] = ACTIONS(1771), + [anon_sym_BSLASHcite] = ACTIONS(1774), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1777), + [anon_sym_BSLASHCite] = ACTIONS(1774), + [anon_sym_BSLASHnocite] = ACTIONS(1774), + [anon_sym_BSLASHcitet] = ACTIONS(1774), + [anon_sym_BSLASHcitep] = ACTIONS(1774), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1777), + [anon_sym_BSLASHciteauthor] = ACTIONS(1774), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1774), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1777), + [anon_sym_BSLASHcitetitle] = ACTIONS(1774), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1777), + [anon_sym_BSLASHciteyear] = ACTIONS(1774), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1777), + [anon_sym_BSLASHcitedate] = ACTIONS(1774), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1777), + [anon_sym_BSLASHciteurl] = ACTIONS(1774), + [anon_sym_BSLASHfullcite] = ACTIONS(1774), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1774), + [anon_sym_BSLASHcitealt] = ACTIONS(1774), + [anon_sym_BSLASHcitealp] = ACTIONS(1774), + [anon_sym_BSLASHcitetext] = ACTIONS(1774), + [anon_sym_BSLASHparencite] = ACTIONS(1774), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1777), + [anon_sym_BSLASHParencite] = ACTIONS(1774), + [anon_sym_BSLASHfootcite] = ACTIONS(1774), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1774), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1774), + [anon_sym_BSLASHtextcite] = ACTIONS(1774), + [anon_sym_BSLASHTextcite] = ACTIONS(1774), + [anon_sym_BSLASHsmartcite] = ACTIONS(1774), + [anon_sym_BSLASHSmartcite] = ACTIONS(1774), + [anon_sym_BSLASHsupercite] = ACTIONS(1774), + [anon_sym_BSLASHautocite] = ACTIONS(1774), + [anon_sym_BSLASHAutocite] = ACTIONS(1774), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1777), + [anon_sym_BSLASHvolcite] = ACTIONS(1774), + [anon_sym_BSLASHVolcite] = ACTIONS(1774), + [anon_sym_BSLASHpvolcite] = ACTIONS(1774), + [anon_sym_BSLASHPvolcite] = ACTIONS(1774), + [anon_sym_BSLASHfvolcite] = ACTIONS(1774), + [anon_sym_BSLASHftvolcite] = ACTIONS(1774), + [anon_sym_BSLASHsvolcite] = ACTIONS(1774), + [anon_sym_BSLASHSvolcite] = ACTIONS(1774), + [anon_sym_BSLASHtvolcite] = ACTIONS(1774), + [anon_sym_BSLASHTvolcite] = ACTIONS(1774), + [anon_sym_BSLASHavolcite] = ACTIONS(1774), + [anon_sym_BSLASHAvolcite] = ACTIONS(1774), + [anon_sym_BSLASHnotecite] = ACTIONS(1774), + [anon_sym_BSLASHNotecite] = ACTIONS(1774), + [anon_sym_BSLASHpnotecite] = ACTIONS(1774), + [anon_sym_BSLASHPnotecite] = ACTIONS(1774), + [anon_sym_BSLASHfnotecite] = ACTIONS(1774), + [anon_sym_BSLASHlabel] = ACTIONS(1780), + [anon_sym_BSLASHref] = ACTIONS(1783), + [anon_sym_BSLASHeqref] = ACTIONS(1783), + [anon_sym_BSLASHvref] = ACTIONS(1783), + [anon_sym_BSLASHVref] = ACTIONS(1783), + [anon_sym_BSLASHautoref] = ACTIONS(1783), + [anon_sym_BSLASHpageref] = ACTIONS(1783), + [anon_sym_BSLASHcref] = ACTIONS(1783), + [anon_sym_BSLASHCref] = ACTIONS(1783), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1786), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1786), + [anon_sym_BSLASHnamecref] = ACTIONS(1783), + [anon_sym_BSLASHnameCref] = ACTIONS(1783), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1783), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1783), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1783), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1783), + [anon_sym_BSLASHlabelcref] = ACTIONS(1783), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1783), + [anon_sym_BSLASHcrefrange] = ACTIONS(1789), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1792), + [anon_sym_BSLASHCrefrange] = ACTIONS(1789), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1792), + [anon_sym_BSLASHnewlabel] = ACTIONS(1795), + [anon_sym_BSLASHnewcommand] = ACTIONS(1798), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1798), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1798), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1798), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1801), + [anon_sym_BSLASHdef] = ACTIONS(1804), + [anon_sym_BSLASHlet] = ACTIONS(1807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1810), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1813), + [anon_sym_BSLASHgls] = ACTIONS(1816), + [anon_sym_BSLASHGls] = ACTIONS(1816), + [anon_sym_BSLASHGLS] = ACTIONS(1816), + [anon_sym_BSLASHglspl] = ACTIONS(1816), + [anon_sym_BSLASHGlspl] = ACTIONS(1816), + [anon_sym_BSLASHGLSpl] = ACTIONS(1816), + [anon_sym_BSLASHglsdisp] = ACTIONS(1816), + [anon_sym_BSLASHglslink] = ACTIONS(1816), + [anon_sym_BSLASHglstext] = ACTIONS(1816), + [anon_sym_BSLASHGlstext] = ACTIONS(1816), + [anon_sym_BSLASHGLStext] = ACTIONS(1816), + [anon_sym_BSLASHglsfirst] = ACTIONS(1816), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), + [anon_sym_BSLASHglsplural] = ACTIONS(1816), + [anon_sym_BSLASHGlsplural] = ACTIONS(1816), + [anon_sym_BSLASHGLSplural] = ACTIONS(1816), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), + [anon_sym_BSLASHglsname] = ACTIONS(1816), + [anon_sym_BSLASHGlsname] = ACTIONS(1816), + [anon_sym_BSLASHGLSname] = ACTIONS(1816), + [anon_sym_BSLASHglssymbol] = ACTIONS(1816), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), + [anon_sym_BSLASHglsdesc] = ACTIONS(1816), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), + [anon_sym_BSLASHglsuseri] = ACTIONS(1816), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), + [anon_sym_BSLASHglsuserii] = ACTIONS(1816), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), + [anon_sym_BSLASHglsuserv] = ACTIONS(1816), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), + [anon_sym_BSLASHglsuservi] = ACTIONS(1816), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), + [anon_sym_BSLASHnewacronym] = ACTIONS(1819), + [anon_sym_BSLASHacrshort] = ACTIONS(1822), + [anon_sym_BSLASHAcrshort] = ACTIONS(1822), + [anon_sym_BSLASHACRshort] = ACTIONS(1822), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1822), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1822), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1822), + [anon_sym_BSLASHacrlong] = ACTIONS(1822), + [anon_sym_BSLASHAcrlong] = ACTIONS(1822), + [anon_sym_BSLASHACRlong] = ACTIONS(1822), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1822), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1822), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1822), + [anon_sym_BSLASHacrfull] = ACTIONS(1822), + [anon_sym_BSLASHAcrfull] = ACTIONS(1822), + [anon_sym_BSLASHACRfull] = ACTIONS(1822), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1822), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1822), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1822), + [anon_sym_BSLASHacs] = ACTIONS(1822), + [anon_sym_BSLASHAcs] = ACTIONS(1822), + [anon_sym_BSLASHacsp] = ACTIONS(1822), + [anon_sym_BSLASHAcsp] = ACTIONS(1822), + [anon_sym_BSLASHacl] = ACTIONS(1822), + [anon_sym_BSLASHAcl] = ACTIONS(1822), + [anon_sym_BSLASHaclp] = ACTIONS(1822), + [anon_sym_BSLASHAclp] = ACTIONS(1822), + [anon_sym_BSLASHacf] = ACTIONS(1822), + [anon_sym_BSLASHAcf] = ACTIONS(1822), + [anon_sym_BSLASHacfp] = ACTIONS(1822), + [anon_sym_BSLASHAcfp] = ACTIONS(1822), + [anon_sym_BSLASHac] = ACTIONS(1822), + [anon_sym_BSLASHAc] = ACTIONS(1822), + [anon_sym_BSLASHacp] = ACTIONS(1822), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1822), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1822), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1822), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1822), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1822), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1822), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1822), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1822), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1822), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1822), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1825), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1828), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1825), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1828), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1831), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1834), + [anon_sym_BSLASHcolor] = ACTIONS(1837), + [anon_sym_BSLASHcolorbox] = ACTIONS(1837), + [anon_sym_BSLASHtextcolor] = ACTIONS(1837), + [anon_sym_BSLASHpagecolor] = ACTIONS(1837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1840), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1840), + [anon_sym_BSLASHtext] = ACTIONS(1843), + [anon_sym_BSLASHintertext] = ACTIONS(1843), + [anon_sym_shortintertext] = ACTIONS(1843), }, [118] = { [sym_block_comment] = STATE(107), @@ -59441,276 +59697,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_EQ] = ACTIONS(1821), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1823), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(1846), + [anon_sym_COMMA] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1848), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [119] = { [sym_block_comment] = STATE(104), @@ -59795,276 +60053,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(435), [aux_sym__section_repeat8] = STATE(436), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1825), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1850), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [120] = { [sym_block_comment] = STATE(115), @@ -60149,276 +60409,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(409), [aux_sym__section_repeat8] = STATE(410), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(649), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1829), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1854), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [121] = { [sym_block_comment] = STATE(109), @@ -60503,276 +60765,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat7] = STATE(638), [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1833), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_RBRACK] = ACTIONS(1856), + [anon_sym_COMMA] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1856), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1860), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [122] = { [sym_block_comment] = STATE(193), @@ -60852,21 +61116,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(288), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), @@ -60886,7 +61150,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(1837), + [anon_sym_RBRACE] = ACTIONS(1862), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -61111,18 +61375,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [123] = { [sym_block_comment] = STATE(122), @@ -61202,21 +61468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(315), [aux_sym_part_repeat1] = STATE(122), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1868), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_RBRACK] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_BSLASHpart] = ACTIONS(1847), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHaddpart] = ACTIONS(1847), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_RBRACK] = ACTIONS(1870), + [anon_sym_COMMA] = ACTIONS(1870), + [anon_sym_EQ] = ACTIONS(1870), + [anon_sym_BSLASHpart] = ACTIONS(1872), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHaddpart] = ACTIONS(1872), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1868), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), @@ -61236,7 +61502,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(1843), + [anon_sym_RBRACE] = ACTIONS(1868), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -61461,18 +61727,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [124] = { [sym_block_comment] = STATE(206), @@ -61552,276 +61820,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(391), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [125] = { [sym_block_comment] = STATE(128), @@ -61901,276 +62171,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(482), [aux_sym_part_repeat1] = STATE(128), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_RBRACK] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_EQ] = ACTIONS(1853), - [anon_sym_BSLASHpart] = ACTIONS(1847), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHaddpart] = ACTIONS(1847), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_RBRACK] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_BSLASHpart] = ACTIONS(1872), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHaddpart] = ACTIONS(1872), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [126] = { [sym_block_comment] = STATE(127), @@ -62250,276 +62522,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(470), [aux_sym_part_repeat1] = STATE(127), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_RBRACK] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_BSLASHpart] = ACTIONS(1847), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHaddpart] = ACTIONS(1847), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1880), + [anon_sym_COMMA] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1880), + [anon_sym_BSLASHpart] = ACTIONS(1872), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHaddpart] = ACTIONS(1872), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1847), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1872), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [127] = { [sym_block_comment] = STATE(205), @@ -62599,276 +62873,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(370), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [128] = { [sym_block_comment] = STATE(198), @@ -62948,276 +63224,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(559), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [129] = { [sym_block_comment] = STATE(124), @@ -63297,276 +63575,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(546), [aux_sym_part_repeat1] = STATE(124), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_RBRACK] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_BSLASHpart] = ACTIONS(1847), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHaddpart] = ACTIONS(1847), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1843), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_BSLASHpart] = ACTIONS(1872), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHaddpart] = ACTIONS(1872), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1868), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [130] = { [sym_block_comment] = STATE(200), @@ -63646,276 +63926,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(620), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [131] = { [sym_block_comment] = STATE(130), @@ -63995,276 +64277,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(425), [aux_sym_part_repeat1] = STATE(130), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_RBRACK] = ACTIONS(1865), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym_BSLASHpart] = ACTIONS(1847), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHaddpart] = ACTIONS(1847), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1843), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_BSLASHpart] = ACTIONS(1872), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHaddpart] = ACTIONS(1872), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1868), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1868), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [132] = { [sym_block_comment] = STATE(193), @@ -64341,25 +64625,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(295), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), @@ -64375,7 +64659,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(1867), + [anon_sym_RBRACE] = ACTIONS(1892), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -64600,18 +64884,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [133] = { [sym_block_comment] = STATE(132), @@ -64688,25 +64974,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(321), [aux_sym_part_repeat1] = STATE(132), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1896), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_RBRACK] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1873), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_BSLASHpart] = ACTIONS(1875), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddpart] = ACTIONS(1875), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHchapter] = ACTIONS(1875), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddchap] = ACTIONS(1875), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1898), + [anon_sym_BSLASHpart] = ACTIONS(1900), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddpart] = ACTIONS(1900), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHchapter] = ACTIONS(1900), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddchap] = ACTIONS(1900), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), @@ -64722,7 +65008,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(1871), + [anon_sym_RBRACE] = ACTIONS(1896), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -64947,18 +65233,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [134] = { [sym_block_comment] = STATE(198), @@ -65035,276 +65323,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(566), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [135] = { [sym_block_comment] = STATE(136), @@ -65381,276 +65671,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(583), [aux_sym_part_repeat1] = STATE(136), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_EQ] = ACTIONS(1877), - [anon_sym_BSLASHpart] = ACTIONS(1875), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddpart] = ACTIONS(1875), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHchapter] = ACTIONS(1875), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddchap] = ACTIONS(1875), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1871), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_COMMA] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_BSLASHpart] = ACTIONS(1900), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddpart] = ACTIONS(1900), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHchapter] = ACTIONS(1900), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddchap] = ACTIONS(1900), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1896), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [136] = { [sym_block_comment] = STATE(200), @@ -65727,276 +66019,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(612), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [137] = { [sym_block_comment] = STATE(134), @@ -66073,276 +66367,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(489), [aux_sym_part_repeat1] = STATE(134), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_RPAREN] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1879), - [anon_sym_BSLASHpart] = ACTIONS(1875), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddpart] = ACTIONS(1875), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHchapter] = ACTIONS(1875), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddchap] = ACTIONS(1875), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_BSLASHpart] = ACTIONS(1900), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddpart] = ACTIONS(1900), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHchapter] = ACTIONS(1900), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddchap] = ACTIONS(1900), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [138] = { [sym_block_comment] = STATE(206), @@ -66419,276 +66715,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(380), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [139] = { [sym_block_comment] = STATE(138), @@ -66765,276 +67063,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(532), [aux_sym_part_repeat1] = STATE(138), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_RBRACK] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_BSLASHpart] = ACTIONS(1875), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddpart] = ACTIONS(1875), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHchapter] = ACTIONS(1875), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddchap] = ACTIONS(1875), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1871), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1906), + [anon_sym_BSLASHpart] = ACTIONS(1900), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddpart] = ACTIONS(1900), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHchapter] = ACTIONS(1900), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddchap] = ACTIONS(1900), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1896), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [140] = { [sym_block_comment] = STATE(205), @@ -67111,276 +67411,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(354), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [141] = { [sym_block_comment] = STATE(140), @@ -67457,276 +67759,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(463), [aux_sym_part_repeat1] = STATE(140), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_RPAREN] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_COMMA] = ACTIONS(1883), - [anon_sym_EQ] = ACTIONS(1883), - [anon_sym_BSLASHpart] = ACTIONS(1875), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddpart] = ACTIONS(1875), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), - [anon_sym_BSLASHchapter] = ACTIONS(1875), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), - [anon_sym_BSLASHaddchap] = ACTIONS(1875), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_RBRACK] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1908), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_BSLASHpart] = ACTIONS(1900), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddpart] = ACTIONS(1900), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), + [anon_sym_BSLASHchapter] = ACTIONS(1900), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), + [anon_sym_BSLASHaddchap] = ACTIONS(1900), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1875), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1900), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [142] = { [sym_block_comment] = STATE(143), @@ -67800,29 +68104,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(342), [aux_sym_part_repeat1] = STATE(143), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1885), + [ts_builtin_sym_end] = ACTIONS(1910), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [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(1889), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddpart] = ACTIONS(1889), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHchapter] = ACTIONS(1889), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddchap] = ACTIONS(1889), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsection] = ACTIONS(1889), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddsec] = ACTIONS(1889), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1912), + [anon_sym_COMMA] = ACTIONS(1912), + [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_BSLASHpart] = ACTIONS(1914), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddpart] = ACTIONS(1914), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHchapter] = ACTIONS(1914), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddchap] = ACTIONS(1914), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsection] = ACTIONS(1914), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddsec] = ACTIONS(1914), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1910), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), @@ -67834,7 +68138,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(1885), + [anon_sym_RBRACE] = ACTIONS(1910), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -68059,18 +68363,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [143] = { [sym_block_comment] = STATE(193), @@ -68144,29 +68450,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(300), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1916), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), @@ -68178,7 +68484,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(1891), + [anon_sym_RBRACE] = ACTIONS(1916), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -68403,18 +68709,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [144] = { [sym_block_comment] = STATE(146), @@ -68488,276 +68796,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(588), [aux_sym_part_repeat1] = STATE(146), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [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(1889), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddpart] = ACTIONS(1889), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHchapter] = ACTIONS(1889), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddchap] = ACTIONS(1889), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsection] = ACTIONS(1889), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddsec] = ACTIONS(1889), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1885), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_RBRACK] = ACTIONS(1920), + [anon_sym_COMMA] = ACTIONS(1920), + [anon_sym_EQ] = ACTIONS(1920), + [anon_sym_BSLASHpart] = ACTIONS(1914), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddpart] = ACTIONS(1914), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHchapter] = ACTIONS(1914), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddchap] = ACTIONS(1914), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsection] = ACTIONS(1914), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddsec] = ACTIONS(1914), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1910), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [145] = { [sym_block_comment] = STATE(147), @@ -68831,276 +69141,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(457), [aux_sym_part_repeat1] = STATE(147), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_RBRACK] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1897), - [anon_sym_BSLASHpart] = ACTIONS(1889), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddpart] = ACTIONS(1889), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHchapter] = ACTIONS(1889), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddchap] = ACTIONS(1889), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsection] = ACTIONS(1889), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddsec] = ACTIONS(1889), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1922), + [anon_sym_BSLASHpart] = ACTIONS(1914), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddpart] = ACTIONS(1914), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHchapter] = ACTIONS(1914), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddchap] = ACTIONS(1914), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsection] = ACTIONS(1914), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddsec] = ACTIONS(1914), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1889), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1914), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [146] = { [sym_block_comment] = STATE(200), @@ -69174,276 +69486,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(606), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1916), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [147] = { [sym_block_comment] = STATE(205), @@ -69517,276 +69831,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(347), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [148] = { [sym_block_comment] = STATE(150), @@ -69860,276 +70176,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(525), [aux_sym_part_repeat1] = STATE(150), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(1889), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddpart] = ACTIONS(1889), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHchapter] = ACTIONS(1889), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddchap] = ACTIONS(1889), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsection] = ACTIONS(1889), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddsec] = ACTIONS(1889), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_RBRACK] = ACTIONS(1924), + [anon_sym_COMMA] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_BSLASHpart] = ACTIONS(1914), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddpart] = ACTIONS(1914), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHchapter] = ACTIONS(1914), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddchap] = ACTIONS(1914), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsection] = ACTIONS(1914), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddsec] = ACTIONS(1914), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1910), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [149] = { [sym_block_comment] = STATE(198), @@ -70203,276 +70521,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(571), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [150] = { [sym_block_comment] = STATE(206), @@ -70546,276 +70866,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(368), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [151] = { [sym_block_comment] = STATE(149), @@ -70889,276 +71211,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(495), [aux_sym_part_repeat1] = STATE(149), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(1889), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddpart] = ACTIONS(1889), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), - [anon_sym_BSLASHchapter] = ACTIONS(1889), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddchap] = ACTIONS(1889), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsection] = ACTIONS(1889), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), - [anon_sym_BSLASHaddsec] = ACTIONS(1889), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_COMMA] = ACTIONS(1926), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_BSLASHpart] = ACTIONS(1914), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddpart] = ACTIONS(1914), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1910), + [anon_sym_BSLASHchapter] = ACTIONS(1914), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddchap] = ACTIONS(1914), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsection] = ACTIONS(1914), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1910), + [anon_sym_BSLASHaddsec] = ACTIONS(1914), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1910), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [152] = { [sym_block_comment] = STATE(153), @@ -71229,31 +71553,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(338), [aux_sym_part_repeat1] = STATE(153), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1903), + [ts_builtin_sym_end] = ACTIONS(1928), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [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(1907), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddpart] = ACTIONS(1907), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHchapter] = ACTIONS(1907), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddchap] = ACTIONS(1907), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsection] = ACTIONS(1907), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddsec] = ACTIONS(1907), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsection] = ACTIONS(1907), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_RBRACK] = ACTIONS(1930), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1930), + [anon_sym_BSLASHpart] = ACTIONS(1932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddpart] = ACTIONS(1932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHchapter] = ACTIONS(1932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddchap] = ACTIONS(1932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsection] = ACTIONS(1932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddsec] = ACTIONS(1932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsection] = ACTIONS(1932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1928), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(33), @@ -71263,7 +71587,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(1903), + [anon_sym_RBRACE] = ACTIONS(1928), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -71488,18 +71812,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [153] = { [sym_block_comment] = STATE(193), @@ -71570,31 +71896,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(304), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1934), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(33), @@ -71604,7 +71930,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(1909), + [anon_sym_RBRACE] = ACTIONS(1934), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -71829,18 +72155,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [154] = { [sym_block_comment] = STATE(155), @@ -71911,276 +72239,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(511), [aux_sym_part_repeat1] = STATE(155), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(1907), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddpart] = ACTIONS(1907), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHchapter] = ACTIONS(1907), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddchap] = ACTIONS(1907), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsection] = ACTIONS(1907), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddsec] = ACTIONS(1907), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsection] = ACTIONS(1907), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_BSLASHpart] = ACTIONS(1932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddpart] = ACTIONS(1932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHchapter] = ACTIONS(1932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddchap] = ACTIONS(1932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsection] = ACTIONS(1932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddsec] = ACTIONS(1932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsection] = ACTIONS(1932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1928), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [155] = { [sym_block_comment] = STATE(206), @@ -72251,276 +72581,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(362), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [156] = { [sym_block_comment] = STATE(159), @@ -72591,276 +72923,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(450), [aux_sym_part_repeat1] = STATE(159), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(1907), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddpart] = ACTIONS(1907), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHchapter] = ACTIONS(1907), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddchap] = ACTIONS(1907), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsection] = ACTIONS(1907), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddsec] = ACTIONS(1907), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsection] = ACTIONS(1907), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_BSLASHpart] = ACTIONS(1932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddpart] = ACTIONS(1932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHchapter] = ACTIONS(1932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddchap] = ACTIONS(1932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsection] = ACTIONS(1932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddsec] = ACTIONS(1932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsection] = ACTIONS(1932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1907), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1932), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [157] = { [sym_block_comment] = STATE(198), @@ -72931,276 +73265,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(575), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [158] = { [sym_block_comment] = STATE(161), @@ -73271,276 +73607,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(593), [aux_sym_part_repeat1] = STATE(161), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [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(1907), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddpart] = ACTIONS(1907), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHchapter] = ACTIONS(1907), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddchap] = ACTIONS(1907), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsection] = ACTIONS(1907), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddsec] = ACTIONS(1907), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsection] = ACTIONS(1907), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1903), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_RBRACK] = ACTIONS(1942), + [anon_sym_COMMA] = ACTIONS(1942), + [anon_sym_EQ] = ACTIONS(1942), + [anon_sym_BSLASHpart] = ACTIONS(1932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddpart] = ACTIONS(1932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHchapter] = ACTIONS(1932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddchap] = ACTIONS(1932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsection] = ACTIONS(1932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddsec] = ACTIONS(1932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsection] = ACTIONS(1932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1928), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [159] = { [sym_block_comment] = STATE(205), @@ -73611,276 +73949,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(421), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [160] = { [sym_block_comment] = STATE(157), @@ -73951,276 +74291,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(500), [aux_sym_part_repeat1] = STATE(157), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_RBRACK] = ACTIONS(1919), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1919), - [anon_sym_BSLASHpart] = ACTIONS(1907), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddpart] = ACTIONS(1907), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), - [anon_sym_BSLASHchapter] = ACTIONS(1907), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddchap] = ACTIONS(1907), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsection] = ACTIONS(1907), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHaddsec] = ACTIONS(1907), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsection] = ACTIONS(1907), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_RBRACK] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1944), + [anon_sym_BSLASHpart] = ACTIONS(1932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddpart] = ACTIONS(1932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1928), + [anon_sym_BSLASHchapter] = ACTIONS(1932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddchap] = ACTIONS(1932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsection] = ACTIONS(1932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHaddsec] = ACTIONS(1932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsection] = ACTIONS(1932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1928), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [161] = { [sym_block_comment] = STATE(200), @@ -74291,276 +74633,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(602), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1934), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [162] = { [sym_block_comment] = STATE(193), @@ -74628,33 +74972,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(307), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1946), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), @@ -74662,7 +75006,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(1946), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -74887,18 +75231,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [163] = { [sym_block_comment] = STATE(162), @@ -74966,33 +75312,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(335), [aux_sym_part_repeat1] = STATE(162), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1925), + [ts_builtin_sym_end] = ACTIONS(1950), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [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(1929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddpart] = ACTIONS(1929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHchapter] = ACTIONS(1929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddchap] = ACTIONS(1929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsection] = ACTIONS(1929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddsec] = ACTIONS(1929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_RBRACK] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_BSLASHpart] = ACTIONS(1954), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddpart] = ACTIONS(1954), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHchapter] = ACTIONS(1954), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddchap] = ACTIONS(1954), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsection] = ACTIONS(1954), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddsec] = ACTIONS(1954), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), @@ -75000,7 +75346,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(1925), + [anon_sym_RBRACE] = ACTIONS(1950), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -75225,18 +75571,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [164] = { [sym_block_comment] = STATE(206), @@ -75304,276 +75652,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(358), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [165] = { [sym_block_comment] = STATE(168), @@ -75641,276 +75991,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(504), [aux_sym_part_repeat1] = STATE(168), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(1929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddpart] = ACTIONS(1929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHchapter] = ACTIONS(1929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddchap] = ACTIONS(1929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsection] = ACTIONS(1929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddsec] = ACTIONS(1929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_RBRACK] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_EQ] = ACTIONS(1956), + [anon_sym_BSLASHpart] = ACTIONS(1954), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddpart] = ACTIONS(1954), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHchapter] = ACTIONS(1954), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddchap] = ACTIONS(1954), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsection] = ACTIONS(1954), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddsec] = ACTIONS(1954), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [166] = { [sym_block_comment] = STATE(205), @@ -75978,276 +76330,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(426), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [167] = { [sym_block_comment] = STATE(166), @@ -76315,276 +76669,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(445), [aux_sym_part_repeat1] = STATE(166), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(1929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddpart] = ACTIONS(1929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHchapter] = ACTIONS(1929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddchap] = ACTIONS(1929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsection] = ACTIONS(1929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddsec] = ACTIONS(1929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_BSLASHpart] = ACTIONS(1954), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddpart] = ACTIONS(1954), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHchapter] = ACTIONS(1954), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddchap] = ACTIONS(1954), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsection] = ACTIONS(1954), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddsec] = ACTIONS(1954), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1929), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1954), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [168] = { [sym_block_comment] = STATE(198), @@ -76652,276 +77008,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(578), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [169] = { [sym_block_comment] = STATE(171), @@ -76989,276 +77347,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(611), [aux_sym_part_repeat1] = STATE(171), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_RBRACK] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1935), - [anon_sym_EQ] = ACTIONS(1935), - [anon_sym_BSLASHpart] = ACTIONS(1929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddpart] = ACTIONS(1929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHchapter] = ACTIONS(1929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddchap] = ACTIONS(1929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsection] = ACTIONS(1929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddsec] = ACTIONS(1929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1925), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_RBRACK] = ACTIONS(1960), + [anon_sym_COMMA] = ACTIONS(1960), + [anon_sym_EQ] = ACTIONS(1960), + [anon_sym_BSLASHpart] = ACTIONS(1954), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddpart] = ACTIONS(1954), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHchapter] = ACTIONS(1954), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddchap] = ACTIONS(1954), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsection] = ACTIONS(1954), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddsec] = ACTIONS(1954), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1950), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [170] = { [sym_block_comment] = STATE(164), @@ -77326,276 +77686,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(505), [aux_sym_part_repeat1] = STATE(164), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(1929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddpart] = ACTIONS(1929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), - [anon_sym_BSLASHchapter] = ACTIONS(1929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddchap] = ACTIONS(1929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsection] = ACTIONS(1929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHaddsec] = ACTIONS(1929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1925), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_RBRACK] = ACTIONS(1962), + [anon_sym_COMMA] = ACTIONS(1962), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_BSLASHpart] = ACTIONS(1954), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddpart] = ACTIONS(1954), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), + [anon_sym_BSLASHchapter] = ACTIONS(1954), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddchap] = ACTIONS(1954), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsection] = ACTIONS(1954), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHaddsec] = ACTIONS(1954), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1954), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1950), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [171] = { [sym_block_comment] = STATE(200), @@ -77663,276 +78025,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(599), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1946), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [172] = { [sym_block_comment] = STATE(173), @@ -77997,41 +78361,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(333), [aux_sym_part_repeat1] = STATE(173), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1939), + [ts_builtin_sym_end] = ACTIONS(1964), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [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(1939), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1966), + [anon_sym_BSLASHpart] = ACTIONS(1968), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddpart] = ACTIONS(1968), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHchapter] = ACTIONS(1968), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddchap] = ACTIONS(1968), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsection] = ACTIONS(1968), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddsec] = ACTIONS(1968), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHparagraph] = ACTIONS(1968), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1964), [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(1939), + [anon_sym_RBRACE] = ACTIONS(1964), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -78256,18 +78620,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [173] = { [sym_block_comment] = STATE(193), @@ -78332,41 +78698,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(309), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1945), + [ts_builtin_sym_end] = ACTIONS(1970), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), [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), + [anon_sym_RBRACE] = ACTIONS(1970), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -78591,18 +78957,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [174] = { [sym_block_comment] = STATE(205), @@ -78667,276 +79035,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(396), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [175] = { [sym_block_comment] = STATE(176), @@ -79001,276 +79371,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(507), [aux_sym_part_repeat1] = STATE(176), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_RBRACK] = ACTIONS(1974), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1974), + [anon_sym_BSLASHpart] = ACTIONS(1968), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddpart] = ACTIONS(1968), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHchapter] = ACTIONS(1968), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddchap] = ACTIONS(1968), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsection] = ACTIONS(1968), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddsec] = ACTIONS(1968), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHparagraph] = ACTIONS(1968), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1964), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [176] = { [sym_block_comment] = STATE(198), @@ -79335,276 +79707,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(580), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [177] = { [sym_block_comment] = STATE(206), @@ -79669,276 +80043,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(353), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [178] = { [sym_block_comment] = STATE(181), @@ -80003,276 +80379,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(619), [aux_sym_part_repeat1] = STATE(181), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [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(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1939), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_RBRACK] = ACTIONS(1976), + [anon_sym_COMMA] = ACTIONS(1976), + [anon_sym_EQ] = ACTIONS(1976), + [anon_sym_BSLASHpart] = ACTIONS(1968), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddpart] = ACTIONS(1968), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHchapter] = ACTIONS(1968), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddchap] = ACTIONS(1968), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsection] = ACTIONS(1968), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddsec] = ACTIONS(1968), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHparagraph] = ACTIONS(1968), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1964), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [179] = { [sym_block_comment] = STATE(174), @@ -80337,276 +80715,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(442), [aux_sym_part_repeat1] = STATE(174), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_RBRACK] = ACTIONS(1953), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_EQ] = ACTIONS(1953), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_RBRACK] = ACTIONS(1978), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_EQ] = ACTIONS(1978), + [anon_sym_BSLASHpart] = ACTIONS(1968), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddpart] = ACTIONS(1968), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHchapter] = ACTIONS(1968), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddchap] = ACTIONS(1968), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsection] = ACTIONS(1968), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddsec] = ACTIONS(1968), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHparagraph] = ACTIONS(1968), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1968), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [180] = { [sym_block_comment] = STATE(177), @@ -80671,276 +81051,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(496), [aux_sym_part_repeat1] = STATE(177), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_RBRACK] = ACTIONS(1980), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(1980), + [anon_sym_BSLASHpart] = ACTIONS(1968), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddpart] = ACTIONS(1968), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1964), + [anon_sym_BSLASHchapter] = ACTIONS(1968), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddchap] = ACTIONS(1968), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsection] = ACTIONS(1968), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHaddsec] = ACTIONS(1968), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1968), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1964), + [anon_sym_BSLASHparagraph] = ACTIONS(1968), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [181] = { [sym_block_comment] = STATE(200), @@ -81005,276 +81387,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(597), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1945), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1970), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [182] = { [sym_block_comment] = STATE(183), @@ -81336,41 +81720,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(332), [aux_sym_part_repeat1] = STATE(183), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1982), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [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(1957), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_RBRACK] = ACTIONS(1984), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_BSLASHpart] = ACTIONS(1986), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddpart] = ACTIONS(1986), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHchapter] = ACTIONS(1986), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddchap] = ACTIONS(1986), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsection] = ACTIONS(1986), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddsec] = ACTIONS(1986), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHparagraph] = ACTIONS(1986), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1986), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1982), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1982), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -81595,18 +81979,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [183] = { [sym_block_comment] = STATE(193), @@ -81668,41 +82054,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(310), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1963), + [ts_builtin_sym_end] = ACTIONS(1988), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1988), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -81927,18 +82313,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [184] = { [sym_block_comment] = STATE(198), @@ -82000,276 +82388,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(581), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [185] = { [sym_block_comment] = STATE(206), @@ -82331,276 +82721,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(349), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [186] = { [sym_block_comment] = STATE(205), @@ -82662,276 +83054,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(437), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1965), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [187] = { [sym_block_comment] = STATE(184), @@ -82993,276 +83387,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(509), [aux_sym_part_repeat1] = STATE(184), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [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(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_RBRACK] = ACTIONS(1992), + [anon_sym_COMMA] = ACTIONS(1992), + [anon_sym_EQ] = ACTIONS(1992), + [anon_sym_BSLASHpart] = ACTIONS(1986), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddpart] = ACTIONS(1986), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHchapter] = ACTIONS(1986), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddchap] = ACTIONS(1986), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsection] = ACTIONS(1986), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddsec] = ACTIONS(1986), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHparagraph] = ACTIONS(1986), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1986), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [188] = { [sym_block_comment] = STATE(191), @@ -83324,276 +83720,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(627), [aux_sym_part_repeat1] = STATE(191), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [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(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1957), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_RBRACK] = ACTIONS(1994), + [anon_sym_COMMA] = ACTIONS(1994), + [anon_sym_EQ] = ACTIONS(1994), + [anon_sym_BSLASHpart] = ACTIONS(1986), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddpart] = ACTIONS(1986), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHchapter] = ACTIONS(1986), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddchap] = ACTIONS(1986), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsection] = ACTIONS(1986), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddsec] = ACTIONS(1986), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHparagraph] = ACTIONS(1986), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1986), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1982), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [189] = { [sym_block_comment] = STATE(186), @@ -83655,276 +84053,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(440), [aux_sym_part_repeat1] = STATE(186), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [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(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_RPAREN] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(1996), + [anon_sym_COMMA] = ACTIONS(1996), + [anon_sym_EQ] = ACTIONS(1996), + [anon_sym_BSLASHpart] = ACTIONS(1986), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddpart] = ACTIONS(1986), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHchapter] = ACTIONS(1986), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddchap] = ACTIONS(1986), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsection] = ACTIONS(1986), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddsec] = ACTIONS(1986), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHparagraph] = ACTIONS(1986), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1986), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(1986), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [190] = { [sym_block_comment] = STATE(185), @@ -83986,276 +84386,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(490), [aux_sym_part_repeat1] = STATE(185), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [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(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_RBRACK] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1998), + [anon_sym_BSLASHpart] = ACTIONS(1986), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddpart] = ACTIONS(1986), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1982), + [anon_sym_BSLASHchapter] = ACTIONS(1986), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddchap] = ACTIONS(1986), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsection] = ACTIONS(1986), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHaddsec] = ACTIONS(1986), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1986), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1982), + [anon_sym_BSLASHparagraph] = ACTIONS(1986), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1986), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1982), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [191] = { [sym_block_comment] = STATE(200), @@ -84317,276 +84719,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__section_repeat8] = STATE(596), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1963), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1988), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [192] = { [sym_block_comment] = STATE(193), @@ -84645,41 +85049,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(193), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(2000), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BSLASHpart] = ACTIONS(1977), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddpart] = ACTIONS(1977), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHchapter] = ACTIONS(1977), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddchap] = ACTIONS(1977), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsection] = ACTIONS(1977), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddsec] = ACTIONS(1977), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHparagraph] = ACTIONS(1977), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHitem] = ACTIONS(1977), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_BSLASHpart] = ACTIONS(2002), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddpart] = ACTIONS(2002), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHchapter] = ACTIONS(2002), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddchap] = ACTIONS(2002), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsection] = ACTIONS(2002), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddsec] = ACTIONS(2002), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHparagraph] = ACTIONS(2002), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2002), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHitem] = ACTIONS(2002), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2000), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(2000), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -84904,18 +85308,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [193] = { [sym_block_comment] = STATE(193), @@ -84974,277 +85380,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(193), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1979), - [sym_command_name] = ACTIONS(1981), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1984), - [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(1990), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddpart] = ACTIONS(1990), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHchapter] = ACTIONS(1990), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddchap] = ACTIONS(1990), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsection] = ACTIONS(1990), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddsec] = ACTIONS(1990), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHparagraph] = ACTIONS(1990), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHitem] = ACTIONS(1990), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1979), - [sym_word] = ACTIONS(1995), - [sym_placeholder] = ACTIONS(1998), - [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(2004), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2004), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2010), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(2016), - [anon_sym_BSLASHusepackage] = ACTIONS(2019), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2019), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2022), - [anon_sym_BSLASHinclude] = ACTIONS(2025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), - [anon_sym_BSLASHinput] = ACTIONS(2025), - [anon_sym_BSLASHsubfile] = ACTIONS(2025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2028), - [anon_sym_BSLASHbibliography] = ACTIONS(2031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2034), - [anon_sym_BSLASHincludesvg] = ACTIONS(2037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2040), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), - [anon_sym_BSLASHimport] = ACTIONS(2046), - [anon_sym_BSLASHsubimport] = ACTIONS(2046), - [anon_sym_BSLASHinputfrom] = ACTIONS(2046), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2046), - [anon_sym_BSLASHincludefrom] = ACTIONS(2046), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2046), - [anon_sym_BSLASHcaption] = ACTIONS(2049), - [anon_sym_BSLASHcite] = ACTIONS(2052), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2055), - [anon_sym_BSLASHCite] = ACTIONS(2052), - [anon_sym_BSLASHnocite] = ACTIONS(2052), - [anon_sym_BSLASHcitet] = ACTIONS(2052), - [anon_sym_BSLASHcitep] = ACTIONS(2052), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2055), - [anon_sym_BSLASHciteauthor] = ACTIONS(2052), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2052), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2055), - [anon_sym_BSLASHcitetitle] = ACTIONS(2052), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2055), - [anon_sym_BSLASHciteyear] = ACTIONS(2052), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2055), - [anon_sym_BSLASHcitedate] = ACTIONS(2052), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2055), - [anon_sym_BSLASHciteurl] = ACTIONS(2052), - [anon_sym_BSLASHfullcite] = ACTIONS(2052), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2052), - [anon_sym_BSLASHcitealt] = ACTIONS(2052), - [anon_sym_BSLASHcitealp] = ACTIONS(2052), - [anon_sym_BSLASHcitetext] = ACTIONS(2052), - [anon_sym_BSLASHparencite] = ACTIONS(2052), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2055), - [anon_sym_BSLASHParencite] = ACTIONS(2052), - [anon_sym_BSLASHfootcite] = ACTIONS(2052), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2052), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2052), - [anon_sym_BSLASHtextcite] = ACTIONS(2052), - [anon_sym_BSLASHTextcite] = ACTIONS(2052), - [anon_sym_BSLASHsmartcite] = ACTIONS(2052), - [anon_sym_BSLASHSmartcite] = ACTIONS(2052), - [anon_sym_BSLASHsupercite] = ACTIONS(2052), - [anon_sym_BSLASHautocite] = ACTIONS(2052), - [anon_sym_BSLASHAutocite] = ACTIONS(2052), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2055), - [anon_sym_BSLASHvolcite] = ACTIONS(2052), - [anon_sym_BSLASHVolcite] = ACTIONS(2052), - [anon_sym_BSLASHpvolcite] = ACTIONS(2052), - [anon_sym_BSLASHPvolcite] = ACTIONS(2052), - [anon_sym_BSLASHfvolcite] = ACTIONS(2052), - [anon_sym_BSLASHftvolcite] = ACTIONS(2052), - [anon_sym_BSLASHsvolcite] = ACTIONS(2052), - [anon_sym_BSLASHSvolcite] = ACTIONS(2052), - [anon_sym_BSLASHtvolcite] = ACTIONS(2052), - [anon_sym_BSLASHTvolcite] = ACTIONS(2052), - [anon_sym_BSLASHavolcite] = ACTIONS(2052), - [anon_sym_BSLASHAvolcite] = ACTIONS(2052), - [anon_sym_BSLASHnotecite] = ACTIONS(2052), - [anon_sym_BSLASHNotecite] = ACTIONS(2052), - [anon_sym_BSLASHpnotecite] = ACTIONS(2052), - [anon_sym_BSLASHPnotecite] = ACTIONS(2052), - [anon_sym_BSLASHfnotecite] = ACTIONS(2052), - [anon_sym_BSLASHlabel] = ACTIONS(2058), - [anon_sym_BSLASHref] = ACTIONS(2061), - [anon_sym_BSLASHeqref] = ACTIONS(2061), - [anon_sym_BSLASHvref] = ACTIONS(2061), - [anon_sym_BSLASHVref] = ACTIONS(2061), - [anon_sym_BSLASHautoref] = ACTIONS(2061), - [anon_sym_BSLASHpageref] = ACTIONS(2061), - [anon_sym_BSLASHcref] = ACTIONS(2061), - [anon_sym_BSLASHCref] = ACTIONS(2061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2064), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2064), - [anon_sym_BSLASHnamecref] = ACTIONS(2061), - [anon_sym_BSLASHnameCref] = ACTIONS(2061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2061), - [anon_sym_BSLASHlabelcref] = ACTIONS(2061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2061), - [anon_sym_BSLASHcrefrange] = ACTIONS(2067), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2070), - [anon_sym_BSLASHCrefrange] = ACTIONS(2067), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2070), - [anon_sym_BSLASHnewlabel] = ACTIONS(2073), - [anon_sym_BSLASHnewcommand] = ACTIONS(2076), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2076), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2076), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2076), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2079), - [anon_sym_BSLASHdef] = ACTIONS(2082), - [anon_sym_BSLASHlet] = ACTIONS(2085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2088), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2091), - [anon_sym_BSLASHgls] = ACTIONS(2094), - [anon_sym_BSLASHGls] = ACTIONS(2094), - [anon_sym_BSLASHGLS] = ACTIONS(2094), - [anon_sym_BSLASHglspl] = ACTIONS(2094), - [anon_sym_BSLASHGlspl] = ACTIONS(2094), - [anon_sym_BSLASHGLSpl] = ACTIONS(2094), - [anon_sym_BSLASHglsdisp] = ACTIONS(2094), - [anon_sym_BSLASHglslink] = ACTIONS(2094), - [anon_sym_BSLASHglstext] = ACTIONS(2094), - [anon_sym_BSLASHGlstext] = ACTIONS(2094), - [anon_sym_BSLASHGLStext] = ACTIONS(2094), - [anon_sym_BSLASHglsfirst] = ACTIONS(2094), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2094), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2094), - [anon_sym_BSLASHglsplural] = ACTIONS(2094), - [anon_sym_BSLASHGlsplural] = ACTIONS(2094), - [anon_sym_BSLASHGLSplural] = ACTIONS(2094), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2094), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2094), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2094), - [anon_sym_BSLASHglsname] = ACTIONS(2094), - [anon_sym_BSLASHGlsname] = ACTIONS(2094), - [anon_sym_BSLASHGLSname] = ACTIONS(2094), - [anon_sym_BSLASHglssymbol] = ACTIONS(2094), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2094), - [anon_sym_BSLASHglsdesc] = ACTIONS(2094), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2094), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2094), - [anon_sym_BSLASHglsuseri] = ACTIONS(2094), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2094), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2094), - [anon_sym_BSLASHglsuserii] = ACTIONS(2094), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2094), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2094), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2094), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2094), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2094), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2094), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2094), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2094), - [anon_sym_BSLASHglsuserv] = ACTIONS(2094), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2094), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2094), - [anon_sym_BSLASHglsuservi] = ACTIONS(2094), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2094), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2094), - [anon_sym_BSLASHnewacronym] = ACTIONS(2097), - [anon_sym_BSLASHacrshort] = ACTIONS(2100), - [anon_sym_BSLASHAcrshort] = ACTIONS(2100), - [anon_sym_BSLASHACRshort] = ACTIONS(2100), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2100), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2100), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2100), - [anon_sym_BSLASHacrlong] = ACTIONS(2100), - [anon_sym_BSLASHAcrlong] = ACTIONS(2100), - [anon_sym_BSLASHACRlong] = ACTIONS(2100), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2100), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2100), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2100), - [anon_sym_BSLASHacrfull] = ACTIONS(2100), - [anon_sym_BSLASHAcrfull] = ACTIONS(2100), - [anon_sym_BSLASHACRfull] = ACTIONS(2100), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2100), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2100), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2100), - [anon_sym_BSLASHacs] = ACTIONS(2100), - [anon_sym_BSLASHAcs] = ACTIONS(2100), - [anon_sym_BSLASHacsp] = ACTIONS(2100), - [anon_sym_BSLASHAcsp] = ACTIONS(2100), - [anon_sym_BSLASHacl] = ACTIONS(2100), - [anon_sym_BSLASHAcl] = ACTIONS(2100), - [anon_sym_BSLASHaclp] = ACTIONS(2100), - [anon_sym_BSLASHAclp] = ACTIONS(2100), - [anon_sym_BSLASHacf] = ACTIONS(2100), - [anon_sym_BSLASHAcf] = ACTIONS(2100), - [anon_sym_BSLASHacfp] = ACTIONS(2100), - [anon_sym_BSLASHAcfp] = ACTIONS(2100), - [anon_sym_BSLASHac] = ACTIONS(2100), - [anon_sym_BSLASHAc] = ACTIONS(2100), - [anon_sym_BSLASHacp] = ACTIONS(2100), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2100), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2100), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2100), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2100), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2100), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2100), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2100), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2100), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2100), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2100), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2106), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2109), - [anon_sym_BSLASHcolor] = ACTIONS(2112), - [anon_sym_BSLASHcolorbox] = ACTIONS(2112), - [anon_sym_BSLASHtextcolor] = ACTIONS(2112), - [anon_sym_BSLASHpagecolor] = ACTIONS(2112), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2115), - [anon_sym_BSLASHtext] = ACTIONS(2118), - [anon_sym_BSLASHintertext] = ACTIONS(2118), - [anon_sym_shortintertext] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2004), + [sym_command_name] = ACTIONS(2006), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_RBRACK] = ACTIONS(2012), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(2012), + [anon_sym_BSLASHpart] = ACTIONS(2015), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddpart] = ACTIONS(2015), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHchapter] = ACTIONS(2015), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddchap] = ACTIONS(2015), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsection] = ACTIONS(2015), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddsec] = ACTIONS(2015), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHparagraph] = ACTIONS(2015), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHitem] = ACTIONS(2015), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2004), + [sym_word] = ACTIONS(2020), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2026), + [anon_sym__] = ACTIONS(2026), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2029), + [anon_sym_DOLLAR] = ACTIONS(2032), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2038), + [anon_sym_BSLASHbegin] = ACTIONS(2041), + [anon_sym_BSLASHusepackage] = ACTIONS(2044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2047), + [anon_sym_BSLASHinclude] = ACTIONS(2050), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2050), + [anon_sym_BSLASHinput] = ACTIONS(2050), + [anon_sym_BSLASHsubfile] = ACTIONS(2050), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2053), + [anon_sym_BSLASHbibliography] = ACTIONS(2056), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2059), + [anon_sym_BSLASHincludesvg] = ACTIONS(2062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2068), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2068), + [anon_sym_BSLASHimport] = ACTIONS(2071), + [anon_sym_BSLASHsubimport] = ACTIONS(2071), + [anon_sym_BSLASHinputfrom] = ACTIONS(2071), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2071), + [anon_sym_BSLASHincludefrom] = ACTIONS(2071), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2071), + [anon_sym_BSLASHcaption] = ACTIONS(2074), + [anon_sym_BSLASHcite] = ACTIONS(2077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2080), + [anon_sym_BSLASHCite] = ACTIONS(2077), + [anon_sym_BSLASHnocite] = ACTIONS(2077), + [anon_sym_BSLASHcitet] = ACTIONS(2077), + [anon_sym_BSLASHcitep] = ACTIONS(2077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2080), + [anon_sym_BSLASHciteauthor] = ACTIONS(2077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2080), + [anon_sym_BSLASHcitetitle] = ACTIONS(2077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2080), + [anon_sym_BSLASHciteyear] = ACTIONS(2077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2080), + [anon_sym_BSLASHcitedate] = ACTIONS(2077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2080), + [anon_sym_BSLASHciteurl] = ACTIONS(2077), + [anon_sym_BSLASHfullcite] = ACTIONS(2077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2077), + [anon_sym_BSLASHcitealt] = ACTIONS(2077), + [anon_sym_BSLASHcitealp] = ACTIONS(2077), + [anon_sym_BSLASHcitetext] = ACTIONS(2077), + [anon_sym_BSLASHparencite] = ACTIONS(2077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2080), + [anon_sym_BSLASHParencite] = ACTIONS(2077), + [anon_sym_BSLASHfootcite] = ACTIONS(2077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2077), + [anon_sym_BSLASHtextcite] = ACTIONS(2077), + [anon_sym_BSLASHTextcite] = ACTIONS(2077), + [anon_sym_BSLASHsmartcite] = ACTIONS(2077), + [anon_sym_BSLASHSmartcite] = ACTIONS(2077), + [anon_sym_BSLASHsupercite] = ACTIONS(2077), + [anon_sym_BSLASHautocite] = ACTIONS(2077), + [anon_sym_BSLASHAutocite] = ACTIONS(2077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2080), + [anon_sym_BSLASHvolcite] = ACTIONS(2077), + [anon_sym_BSLASHVolcite] = ACTIONS(2077), + [anon_sym_BSLASHpvolcite] = ACTIONS(2077), + [anon_sym_BSLASHPvolcite] = ACTIONS(2077), + [anon_sym_BSLASHfvolcite] = ACTIONS(2077), + [anon_sym_BSLASHftvolcite] = ACTIONS(2077), + [anon_sym_BSLASHsvolcite] = ACTIONS(2077), + [anon_sym_BSLASHSvolcite] = ACTIONS(2077), + [anon_sym_BSLASHtvolcite] = ACTIONS(2077), + [anon_sym_BSLASHTvolcite] = ACTIONS(2077), + [anon_sym_BSLASHavolcite] = ACTIONS(2077), + [anon_sym_BSLASHAvolcite] = ACTIONS(2077), + [anon_sym_BSLASHnotecite] = ACTIONS(2077), + [anon_sym_BSLASHNotecite] = ACTIONS(2077), + [anon_sym_BSLASHpnotecite] = ACTIONS(2077), + [anon_sym_BSLASHPnotecite] = ACTIONS(2077), + [anon_sym_BSLASHfnotecite] = ACTIONS(2077), + [anon_sym_BSLASHlabel] = ACTIONS(2083), + [anon_sym_BSLASHref] = ACTIONS(2086), + [anon_sym_BSLASHeqref] = ACTIONS(2086), + [anon_sym_BSLASHvref] = ACTIONS(2086), + [anon_sym_BSLASHVref] = ACTIONS(2086), + [anon_sym_BSLASHautoref] = ACTIONS(2086), + [anon_sym_BSLASHpageref] = ACTIONS(2086), + [anon_sym_BSLASHcref] = ACTIONS(2086), + [anon_sym_BSLASHCref] = ACTIONS(2086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2089), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2089), + [anon_sym_BSLASHnamecref] = ACTIONS(2086), + [anon_sym_BSLASHnameCref] = ACTIONS(2086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2086), + [anon_sym_BSLASHlabelcref] = ACTIONS(2086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2086), + [anon_sym_BSLASHcrefrange] = ACTIONS(2092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCrefrange] = ACTIONS(2092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnewlabel] = ACTIONS(2098), + [anon_sym_BSLASHnewcommand] = ACTIONS(2101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2104), + [anon_sym_BSLASHdef] = ACTIONS(2107), + [anon_sym_BSLASHlet] = ACTIONS(2110), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2116), + [anon_sym_BSLASHgls] = ACTIONS(2119), + [anon_sym_BSLASHGls] = ACTIONS(2119), + [anon_sym_BSLASHGLS] = ACTIONS(2119), + [anon_sym_BSLASHglspl] = ACTIONS(2119), + [anon_sym_BSLASHGlspl] = ACTIONS(2119), + [anon_sym_BSLASHGLSpl] = ACTIONS(2119), + [anon_sym_BSLASHglsdisp] = ACTIONS(2119), + [anon_sym_BSLASHglslink] = ACTIONS(2119), + [anon_sym_BSLASHglstext] = ACTIONS(2119), + [anon_sym_BSLASHGlstext] = ACTIONS(2119), + [anon_sym_BSLASHGLStext] = ACTIONS(2119), + [anon_sym_BSLASHglsfirst] = ACTIONS(2119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2119), + [anon_sym_BSLASHglsplural] = ACTIONS(2119), + [anon_sym_BSLASHGlsplural] = ACTIONS(2119), + [anon_sym_BSLASHGLSplural] = ACTIONS(2119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2119), + [anon_sym_BSLASHglsname] = ACTIONS(2119), + [anon_sym_BSLASHGlsname] = ACTIONS(2119), + [anon_sym_BSLASHGLSname] = ACTIONS(2119), + [anon_sym_BSLASHglssymbol] = ACTIONS(2119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2119), + [anon_sym_BSLASHglsdesc] = ACTIONS(2119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2119), + [anon_sym_BSLASHglsuseri] = ACTIONS(2119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2119), + [anon_sym_BSLASHglsuserii] = ACTIONS(2119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2119), + [anon_sym_BSLASHglsuserv] = ACTIONS(2119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2119), + [anon_sym_BSLASHglsuservi] = ACTIONS(2119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2119), + [anon_sym_BSLASHnewacronym] = ACTIONS(2122), + [anon_sym_BSLASHacrshort] = ACTIONS(2125), + [anon_sym_BSLASHAcrshort] = ACTIONS(2125), + [anon_sym_BSLASHACRshort] = ACTIONS(2125), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2125), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2125), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2125), + [anon_sym_BSLASHacrlong] = ACTIONS(2125), + [anon_sym_BSLASHAcrlong] = ACTIONS(2125), + [anon_sym_BSLASHACRlong] = ACTIONS(2125), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2125), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2125), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2125), + [anon_sym_BSLASHacrfull] = ACTIONS(2125), + [anon_sym_BSLASHAcrfull] = ACTIONS(2125), + [anon_sym_BSLASHACRfull] = ACTIONS(2125), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2125), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2125), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2125), + [anon_sym_BSLASHacs] = ACTIONS(2125), + [anon_sym_BSLASHAcs] = ACTIONS(2125), + [anon_sym_BSLASHacsp] = ACTIONS(2125), + [anon_sym_BSLASHAcsp] = ACTIONS(2125), + [anon_sym_BSLASHacl] = ACTIONS(2125), + [anon_sym_BSLASHAcl] = ACTIONS(2125), + [anon_sym_BSLASHaclp] = ACTIONS(2125), + [anon_sym_BSLASHAclp] = ACTIONS(2125), + [anon_sym_BSLASHacf] = ACTIONS(2125), + [anon_sym_BSLASHAcf] = ACTIONS(2125), + [anon_sym_BSLASHacfp] = ACTIONS(2125), + [anon_sym_BSLASHAcfp] = ACTIONS(2125), + [anon_sym_BSLASHac] = ACTIONS(2125), + [anon_sym_BSLASHAc] = ACTIONS(2125), + [anon_sym_BSLASHacp] = ACTIONS(2125), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2125), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2125), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2125), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2125), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2125), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2125), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2125), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2125), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2125), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2125), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2134), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2137), + [anon_sym_BSLASHcolor] = ACTIONS(2140), + [anon_sym_BSLASHcolorbox] = ACTIONS(2140), + [anon_sym_BSLASHtextcolor] = ACTIONS(2140), + [anon_sym_BSLASHpagecolor] = ACTIONS(2140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2143), + [anon_sym_BSLASHtext] = ACTIONS(2146), + [anon_sym_BSLASHintertext] = ACTIONS(2146), + [anon_sym_shortintertext] = ACTIONS(2146), }, [194] = { [sym_block_comment] = STATE(192), @@ -85303,41 +85711,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(192), [aux_sym_part_repeat1] = STATE(192), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2121), + [ts_builtin_sym_end] = ACTIONS(2149), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_RBRACK] = ACTIONS(2123), - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_EQ] = ACTIONS(2123), - [anon_sym_BSLASHpart] = ACTIONS(2125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddpart] = ACTIONS(2125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHchapter] = ACTIONS(2125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddchap] = ACTIONS(2125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsection] = ACTIONS(2125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddsec] = ACTIONS(2125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHparagraph] = ACTIONS(2125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHitem] = ACTIONS(2125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_RBRACK] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_BSLASHpart] = ACTIONS(2153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddpart] = ACTIONS(2153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHchapter] = ACTIONS(2153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddchap] = ACTIONS(2153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsection] = ACTIONS(2153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddsec] = ACTIONS(2153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHparagraph] = ACTIONS(2153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHitem] = ACTIONS(2153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2149), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2149), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -85562,18 +85970,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(129), - [anon_sym_BSLASHintertext] = ACTIONS(129), - [anon_sym_shortintertext] = ACTIONS(129), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(131), + [anon_sym_BSLASHintertext] = ACTIONS(131), + [anon_sym_shortintertext] = ACTIONS(131), }, [195] = { [sym_block_comment] = STATE(201), @@ -85632,276 +86042,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(201), [aux_sym_part_repeat1] = STATE(201), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_EQ] = ACTIONS(2127), - [anon_sym_BSLASHpart] = ACTIONS(2125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddpart] = ACTIONS(2125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHchapter] = ACTIONS(2125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddchap] = ACTIONS(2125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsection] = ACTIONS(2125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddsec] = ACTIONS(2125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHparagraph] = ACTIONS(2125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHitem] = ACTIONS(2125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2121), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_RPAREN] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2155), + [anon_sym_COMMA] = ACTIONS(2155), + [anon_sym_EQ] = ACTIONS(2155), + [anon_sym_BSLASHpart] = ACTIONS(2153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddpart] = ACTIONS(2153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHchapter] = ACTIONS(2153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddchap] = ACTIONS(2153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsection] = ACTIONS(2153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddsec] = ACTIONS(2153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHparagraph] = ACTIONS(2153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHitem] = ACTIONS(2153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [196] = { [sym_block_comment] = STATE(202), @@ -85960,276 +86372,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(202), [aux_sym_part_repeat1] = STATE(202), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_RPAREN] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_RBRACK] = ACTIONS(2129), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_EQ] = ACTIONS(2129), - [anon_sym_BSLASHpart] = ACTIONS(2125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddpart] = ACTIONS(2125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHchapter] = ACTIONS(2125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddchap] = ACTIONS(2125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsection] = ACTIONS(2125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddsec] = ACTIONS(2125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHparagraph] = ACTIONS(2125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHitem] = ACTIONS(2125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_BSLASHpart] = ACTIONS(2153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddpart] = ACTIONS(2153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHchapter] = ACTIONS(2153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddchap] = ACTIONS(2153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsection] = ACTIONS(2153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddsec] = ACTIONS(2153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHparagraph] = ACTIONS(2153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHitem] = ACTIONS(2153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [197] = { [sym_block_comment] = STATE(205), @@ -86288,276 +86702,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(205), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1857), - [anon_sym_BSLASHpart] = ACTIONS(1977), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddpart] = ACTIONS(1977), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHchapter] = ACTIONS(1977), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddchap] = ACTIONS(1977), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsection] = ACTIONS(1977), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddsec] = ACTIONS(1977), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHparagraph] = ACTIONS(1977), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHitem] = ACTIONS(1977), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_BSLASHpart] = ACTIONS(2002), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddpart] = ACTIONS(2002), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHchapter] = ACTIONS(2002), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddchap] = ACTIONS(2002), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsection] = ACTIONS(2002), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddsec] = ACTIONS(2002), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHparagraph] = ACTIONS(2002), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2002), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHitem] = ACTIONS(2002), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1977), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(2002), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [198] = { [sym_block_comment] = STATE(198), @@ -86616,276 +87032,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(198), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(2131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_RBRACK] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_EQ] = ACTIONS(2137), - [anon_sym_BSLASHpart] = ACTIONS(1990), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddpart] = ACTIONS(1990), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHchapter] = ACTIONS(1990), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddchap] = ACTIONS(1990), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsection] = ACTIONS(1990), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddsec] = ACTIONS(1990), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHparagraph] = ACTIONS(1990), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHitem] = ACTIONS(1990), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2143), - [sym_placeholder] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym__] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_COLON] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2152), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2152), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2158), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2161), - [anon_sym_BSLASHbegin] = ACTIONS(2016), - [anon_sym_BSLASHusepackage] = ACTIONS(2164), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2164), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2167), - [anon_sym_BSLASHinclude] = ACTIONS(2170), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2170), - [anon_sym_BSLASHinput] = ACTIONS(2170), - [anon_sym_BSLASHsubfile] = ACTIONS(2170), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2173), - [anon_sym_BSLASHbibliography] = ACTIONS(2176), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2179), - [anon_sym_BSLASHincludesvg] = ACTIONS(2182), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2188), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2188), - [anon_sym_BSLASHimport] = ACTIONS(2191), - [anon_sym_BSLASHsubimport] = ACTIONS(2191), - [anon_sym_BSLASHinputfrom] = ACTIONS(2191), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2191), - [anon_sym_BSLASHincludefrom] = ACTIONS(2191), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2191), - [anon_sym_BSLASHcaption] = ACTIONS(2194), - [anon_sym_BSLASHcite] = ACTIONS(2197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2200), - [anon_sym_BSLASHCite] = ACTIONS(2197), - [anon_sym_BSLASHnocite] = ACTIONS(2197), - [anon_sym_BSLASHcitet] = ACTIONS(2197), - [anon_sym_BSLASHcitep] = ACTIONS(2197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2200), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2200), - [anon_sym_BSLASHciteauthor] = ACTIONS(2197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2200), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2200), - [anon_sym_BSLASHcitetitle] = ACTIONS(2197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2200), - [anon_sym_BSLASHciteyear] = ACTIONS(2197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2200), - [anon_sym_BSLASHcitedate] = ACTIONS(2197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2200), - [anon_sym_BSLASHciteurl] = ACTIONS(2197), - [anon_sym_BSLASHfullcite] = ACTIONS(2197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2197), - [anon_sym_BSLASHcitealt] = ACTIONS(2197), - [anon_sym_BSLASHcitealp] = ACTIONS(2197), - [anon_sym_BSLASHcitetext] = ACTIONS(2197), - [anon_sym_BSLASHparencite] = ACTIONS(2197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2200), - [anon_sym_BSLASHParencite] = ACTIONS(2197), - [anon_sym_BSLASHfootcite] = ACTIONS(2197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2197), - [anon_sym_BSLASHtextcite] = ACTIONS(2197), - [anon_sym_BSLASHTextcite] = ACTIONS(2197), - [anon_sym_BSLASHsmartcite] = ACTIONS(2197), - [anon_sym_BSLASHSmartcite] = ACTIONS(2197), - [anon_sym_BSLASHsupercite] = ACTIONS(2197), - [anon_sym_BSLASHautocite] = ACTIONS(2197), - [anon_sym_BSLASHAutocite] = ACTIONS(2197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2200), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2200), - [anon_sym_BSLASHvolcite] = ACTIONS(2197), - [anon_sym_BSLASHVolcite] = ACTIONS(2197), - [anon_sym_BSLASHpvolcite] = ACTIONS(2197), - [anon_sym_BSLASHPvolcite] = ACTIONS(2197), - [anon_sym_BSLASHfvolcite] = ACTIONS(2197), - [anon_sym_BSLASHftvolcite] = ACTIONS(2197), - [anon_sym_BSLASHsvolcite] = ACTIONS(2197), - [anon_sym_BSLASHSvolcite] = ACTIONS(2197), - [anon_sym_BSLASHtvolcite] = ACTIONS(2197), - [anon_sym_BSLASHTvolcite] = ACTIONS(2197), - [anon_sym_BSLASHavolcite] = ACTIONS(2197), - [anon_sym_BSLASHAvolcite] = ACTIONS(2197), - [anon_sym_BSLASHnotecite] = ACTIONS(2197), - [anon_sym_BSLASHNotecite] = ACTIONS(2197), - [anon_sym_BSLASHpnotecite] = ACTIONS(2197), - [anon_sym_BSLASHPnotecite] = ACTIONS(2197), - [anon_sym_BSLASHfnotecite] = ACTIONS(2197), - [anon_sym_BSLASHlabel] = ACTIONS(2203), - [anon_sym_BSLASHref] = ACTIONS(2206), - [anon_sym_BSLASHeqref] = ACTIONS(2206), - [anon_sym_BSLASHvref] = ACTIONS(2206), - [anon_sym_BSLASHVref] = ACTIONS(2206), - [anon_sym_BSLASHautoref] = ACTIONS(2206), - [anon_sym_BSLASHpageref] = ACTIONS(2206), - [anon_sym_BSLASHcref] = ACTIONS(2206), - [anon_sym_BSLASHCref] = ACTIONS(2206), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2209), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2209), - [anon_sym_BSLASHnamecref] = ACTIONS(2206), - [anon_sym_BSLASHnameCref] = ACTIONS(2206), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2206), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2206), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2206), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2206), - [anon_sym_BSLASHlabelcref] = ACTIONS(2206), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2206), - [anon_sym_BSLASHcrefrange] = ACTIONS(2212), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2215), - [anon_sym_BSLASHCrefrange] = ACTIONS(2212), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2215), - [anon_sym_BSLASHnewlabel] = ACTIONS(2218), - [anon_sym_BSLASHnewcommand] = ACTIONS(2221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2224), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2224), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2224), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2224), - [anon_sym_BSLASHdef] = ACTIONS(2227), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2236), - [anon_sym_BSLASHgls] = ACTIONS(2239), - [anon_sym_BSLASHGls] = ACTIONS(2239), - [anon_sym_BSLASHGLS] = ACTIONS(2239), - [anon_sym_BSLASHglspl] = ACTIONS(2239), - [anon_sym_BSLASHGlspl] = ACTIONS(2239), - [anon_sym_BSLASHGLSpl] = ACTIONS(2239), - [anon_sym_BSLASHglsdisp] = ACTIONS(2239), - [anon_sym_BSLASHglslink] = ACTIONS(2239), - [anon_sym_BSLASHglstext] = ACTIONS(2239), - [anon_sym_BSLASHGlstext] = ACTIONS(2239), - [anon_sym_BSLASHGLStext] = ACTIONS(2239), - [anon_sym_BSLASHglsfirst] = ACTIONS(2239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2239), - [anon_sym_BSLASHglsplural] = ACTIONS(2239), - [anon_sym_BSLASHGlsplural] = ACTIONS(2239), - [anon_sym_BSLASHGLSplural] = ACTIONS(2239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2239), - [anon_sym_BSLASHglsname] = ACTIONS(2239), - [anon_sym_BSLASHGlsname] = ACTIONS(2239), - [anon_sym_BSLASHGLSname] = ACTIONS(2239), - [anon_sym_BSLASHglssymbol] = ACTIONS(2239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2239), - [anon_sym_BSLASHglsdesc] = ACTIONS(2239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2239), - [anon_sym_BSLASHglsuseri] = ACTIONS(2239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2239), - [anon_sym_BSLASHglsuserii] = ACTIONS(2239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2239), - [anon_sym_BSLASHglsuserv] = ACTIONS(2239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2239), - [anon_sym_BSLASHglsuservi] = ACTIONS(2239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2239), - [anon_sym_BSLASHnewacronym] = ACTIONS(2242), - [anon_sym_BSLASHacrshort] = ACTIONS(2245), - [anon_sym_BSLASHAcrshort] = ACTIONS(2245), - [anon_sym_BSLASHACRshort] = ACTIONS(2245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2245), - [anon_sym_BSLASHacrlong] = ACTIONS(2245), - [anon_sym_BSLASHAcrlong] = ACTIONS(2245), - [anon_sym_BSLASHACRlong] = ACTIONS(2245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2245), - [anon_sym_BSLASHacrfull] = ACTIONS(2245), - [anon_sym_BSLASHAcrfull] = ACTIONS(2245), - [anon_sym_BSLASHACRfull] = ACTIONS(2245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2245), - [anon_sym_BSLASHacs] = ACTIONS(2245), - [anon_sym_BSLASHAcs] = ACTIONS(2245), - [anon_sym_BSLASHacsp] = ACTIONS(2245), - [anon_sym_BSLASHAcsp] = ACTIONS(2245), - [anon_sym_BSLASHacl] = ACTIONS(2245), - [anon_sym_BSLASHAcl] = ACTIONS(2245), - [anon_sym_BSLASHaclp] = ACTIONS(2245), - [anon_sym_BSLASHAclp] = ACTIONS(2245), - [anon_sym_BSLASHacf] = ACTIONS(2245), - [anon_sym_BSLASHAcf] = ACTIONS(2245), - [anon_sym_BSLASHacfp] = ACTIONS(2245), - [anon_sym_BSLASHAcfp] = ACTIONS(2245), - [anon_sym_BSLASHac] = ACTIONS(2245), - [anon_sym_BSLASHAc] = ACTIONS(2245), - [anon_sym_BSLASHacp] = ACTIONS(2245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2248), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2248), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHcolor] = ACTIONS(2257), - [anon_sym_BSLASHcolorbox] = ACTIONS(2257), - [anon_sym_BSLASHtextcolor] = ACTIONS(2257), - [anon_sym_BSLASHpagecolor] = ACTIONS(2257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2260), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2260), - [anon_sym_BSLASHtext] = ACTIONS(2263), - [anon_sym_BSLASHintertext] = ACTIONS(2263), - [anon_sym_shortintertext] = ACTIONS(2263), + [sym_command_name] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_RBRACK] = ACTIONS(2165), + [anon_sym_COMMA] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2165), + [anon_sym_BSLASHpart] = ACTIONS(2015), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddpart] = ACTIONS(2015), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHchapter] = ACTIONS(2015), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddchap] = ACTIONS(2015), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsection] = ACTIONS(2015), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddsec] = ACTIONS(2015), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHparagraph] = ACTIONS(2015), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHitem] = ACTIONS(2015), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2168), + [sym_word] = ACTIONS(2171), + [sym_placeholder] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_SLASH] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym__] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_GT] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_COLON] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2180), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2180), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2004), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2189), + [anon_sym_BSLASHbegin] = ACTIONS(2041), + [anon_sym_BSLASHusepackage] = ACTIONS(2192), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2192), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2195), + [anon_sym_BSLASHinclude] = ACTIONS(2198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2198), + [anon_sym_BSLASHinput] = ACTIONS(2198), + [anon_sym_BSLASHsubfile] = ACTIONS(2198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2201), + [anon_sym_BSLASHbibliography] = ACTIONS(2204), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2207), + [anon_sym_BSLASHincludesvg] = ACTIONS(2210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2216), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2216), + [anon_sym_BSLASHimport] = ACTIONS(2219), + [anon_sym_BSLASHsubimport] = ACTIONS(2219), + [anon_sym_BSLASHinputfrom] = ACTIONS(2219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2219), + [anon_sym_BSLASHincludefrom] = ACTIONS(2219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2219), + [anon_sym_BSLASHcaption] = ACTIONS(2222), + [anon_sym_BSLASHcite] = ACTIONS(2225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2228), + [anon_sym_BSLASHCite] = ACTIONS(2225), + [anon_sym_BSLASHnocite] = ACTIONS(2225), + [anon_sym_BSLASHcitet] = ACTIONS(2225), + [anon_sym_BSLASHcitep] = ACTIONS(2225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2228), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2228), + [anon_sym_BSLASHciteauthor] = ACTIONS(2225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2228), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2228), + [anon_sym_BSLASHcitetitle] = ACTIONS(2225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2228), + [anon_sym_BSLASHciteyear] = ACTIONS(2225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2228), + [anon_sym_BSLASHcitedate] = ACTIONS(2225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2228), + [anon_sym_BSLASHciteurl] = ACTIONS(2225), + [anon_sym_BSLASHfullcite] = ACTIONS(2225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2225), + [anon_sym_BSLASHcitealt] = ACTIONS(2225), + [anon_sym_BSLASHcitealp] = ACTIONS(2225), + [anon_sym_BSLASHcitetext] = ACTIONS(2225), + [anon_sym_BSLASHparencite] = ACTIONS(2225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2228), + [anon_sym_BSLASHParencite] = ACTIONS(2225), + [anon_sym_BSLASHfootcite] = ACTIONS(2225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2225), + [anon_sym_BSLASHtextcite] = ACTIONS(2225), + [anon_sym_BSLASHTextcite] = ACTIONS(2225), + [anon_sym_BSLASHsmartcite] = ACTIONS(2225), + [anon_sym_BSLASHSmartcite] = ACTIONS(2225), + [anon_sym_BSLASHsupercite] = ACTIONS(2225), + [anon_sym_BSLASHautocite] = ACTIONS(2225), + [anon_sym_BSLASHAutocite] = ACTIONS(2225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2228), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2228), + [anon_sym_BSLASHvolcite] = ACTIONS(2225), + [anon_sym_BSLASHVolcite] = ACTIONS(2225), + [anon_sym_BSLASHpvolcite] = ACTIONS(2225), + [anon_sym_BSLASHPvolcite] = ACTIONS(2225), + [anon_sym_BSLASHfvolcite] = ACTIONS(2225), + [anon_sym_BSLASHftvolcite] = ACTIONS(2225), + [anon_sym_BSLASHsvolcite] = ACTIONS(2225), + [anon_sym_BSLASHSvolcite] = ACTIONS(2225), + [anon_sym_BSLASHtvolcite] = ACTIONS(2225), + [anon_sym_BSLASHTvolcite] = ACTIONS(2225), + [anon_sym_BSLASHavolcite] = ACTIONS(2225), + [anon_sym_BSLASHAvolcite] = ACTIONS(2225), + [anon_sym_BSLASHnotecite] = ACTIONS(2225), + [anon_sym_BSLASHNotecite] = ACTIONS(2225), + [anon_sym_BSLASHpnotecite] = ACTIONS(2225), + [anon_sym_BSLASHPnotecite] = ACTIONS(2225), + [anon_sym_BSLASHfnotecite] = ACTIONS(2225), + [anon_sym_BSLASHlabel] = ACTIONS(2231), + [anon_sym_BSLASHref] = ACTIONS(2234), + [anon_sym_BSLASHeqref] = ACTIONS(2234), + [anon_sym_BSLASHvref] = ACTIONS(2234), + [anon_sym_BSLASHVref] = ACTIONS(2234), + [anon_sym_BSLASHautoref] = ACTIONS(2234), + [anon_sym_BSLASHpageref] = ACTIONS(2234), + [anon_sym_BSLASHcref] = ACTIONS(2234), + [anon_sym_BSLASHCref] = ACTIONS(2234), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2237), + [anon_sym_BSLASHnamecref] = ACTIONS(2234), + [anon_sym_BSLASHnameCref] = ACTIONS(2234), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2234), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2234), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2234), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2234), + [anon_sym_BSLASHlabelcref] = ACTIONS(2234), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2234), + [anon_sym_BSLASHcrefrange] = ACTIONS(2240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2243), + [anon_sym_BSLASHCrefrange] = ACTIONS(2240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2243), + [anon_sym_BSLASHnewlabel] = ACTIONS(2246), + [anon_sym_BSLASHnewcommand] = ACTIONS(2249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2252), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2252), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2252), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2252), + [anon_sym_BSLASHdef] = ACTIONS(2255), + [anon_sym_BSLASHlet] = ACTIONS(2258), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2264), + [anon_sym_BSLASHgls] = ACTIONS(2267), + [anon_sym_BSLASHGls] = ACTIONS(2267), + [anon_sym_BSLASHGLS] = ACTIONS(2267), + [anon_sym_BSLASHglspl] = ACTIONS(2267), + [anon_sym_BSLASHGlspl] = ACTIONS(2267), + [anon_sym_BSLASHGLSpl] = ACTIONS(2267), + [anon_sym_BSLASHglsdisp] = ACTIONS(2267), + [anon_sym_BSLASHglslink] = ACTIONS(2267), + [anon_sym_BSLASHglstext] = ACTIONS(2267), + [anon_sym_BSLASHGlstext] = ACTIONS(2267), + [anon_sym_BSLASHGLStext] = ACTIONS(2267), + [anon_sym_BSLASHglsfirst] = ACTIONS(2267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2267), + [anon_sym_BSLASHglsplural] = ACTIONS(2267), + [anon_sym_BSLASHGlsplural] = ACTIONS(2267), + [anon_sym_BSLASHGLSplural] = ACTIONS(2267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2267), + [anon_sym_BSLASHglsname] = ACTIONS(2267), + [anon_sym_BSLASHGlsname] = ACTIONS(2267), + [anon_sym_BSLASHGLSname] = ACTIONS(2267), + [anon_sym_BSLASHglssymbol] = ACTIONS(2267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2267), + [anon_sym_BSLASHglsdesc] = ACTIONS(2267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2267), + [anon_sym_BSLASHglsuseri] = ACTIONS(2267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2267), + [anon_sym_BSLASHglsuserii] = ACTIONS(2267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2267), + [anon_sym_BSLASHglsuserv] = ACTIONS(2267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2267), + [anon_sym_BSLASHglsuservi] = ACTIONS(2267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2267), + [anon_sym_BSLASHnewacronym] = ACTIONS(2270), + [anon_sym_BSLASHacrshort] = ACTIONS(2273), + [anon_sym_BSLASHAcrshort] = ACTIONS(2273), + [anon_sym_BSLASHACRshort] = ACTIONS(2273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2273), + [anon_sym_BSLASHacrlong] = ACTIONS(2273), + [anon_sym_BSLASHAcrlong] = ACTIONS(2273), + [anon_sym_BSLASHACRlong] = ACTIONS(2273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2273), + [anon_sym_BSLASHacrfull] = ACTIONS(2273), + [anon_sym_BSLASHAcrfull] = ACTIONS(2273), + [anon_sym_BSLASHACRfull] = ACTIONS(2273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2273), + [anon_sym_BSLASHacs] = ACTIONS(2273), + [anon_sym_BSLASHAcs] = ACTIONS(2273), + [anon_sym_BSLASHacsp] = ACTIONS(2273), + [anon_sym_BSLASHAcsp] = ACTIONS(2273), + [anon_sym_BSLASHacl] = ACTIONS(2273), + [anon_sym_BSLASHAcl] = ACTIONS(2273), + [anon_sym_BSLASHaclp] = ACTIONS(2273), + [anon_sym_BSLASHAclp] = ACTIONS(2273), + [anon_sym_BSLASHacf] = ACTIONS(2273), + [anon_sym_BSLASHAcf] = ACTIONS(2273), + [anon_sym_BSLASHacfp] = ACTIONS(2273), + [anon_sym_BSLASHAcfp] = ACTIONS(2273), + [anon_sym_BSLASHac] = ACTIONS(2273), + [anon_sym_BSLASHAc] = ACTIONS(2273), + [anon_sym_BSLASHacp] = ACTIONS(2273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2282), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2285), + [anon_sym_BSLASHcolor] = ACTIONS(2288), + [anon_sym_BSLASHcolorbox] = ACTIONS(2288), + [anon_sym_BSLASHtextcolor] = ACTIONS(2288), + [anon_sym_BSLASHpagecolor] = ACTIONS(2288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2291), + [anon_sym_BSLASHtext] = ACTIONS(2294), + [anon_sym_BSLASHintertext] = ACTIONS(2294), + [anon_sym_shortintertext] = ACTIONS(2294), }, [199] = { [sym_block_comment] = STATE(200), @@ -86944,276 +87362,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(200), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BSLASHpart] = ACTIONS(1977), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddpart] = ACTIONS(1977), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHchapter] = ACTIONS(1977), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddchap] = ACTIONS(1977), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsection] = ACTIONS(1977), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddsec] = ACTIONS(1977), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHparagraph] = ACTIONS(1977), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHitem] = ACTIONS(1977), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_BSLASHpart] = ACTIONS(2002), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddpart] = ACTIONS(2002), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHchapter] = ACTIONS(2002), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddchap] = ACTIONS(2002), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsection] = ACTIONS(2002), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddsec] = ACTIONS(2002), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHparagraph] = ACTIONS(2002), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2002), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHitem] = ACTIONS(2002), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2000), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [200] = { [sym_block_comment] = STATE(200), @@ -87272,276 +87692,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(200), [aux_sym_part_repeat1] = STATE(200), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(2266), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2272), - [anon_sym_BSLASHpart] = ACTIONS(1990), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddpart] = ACTIONS(1990), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHchapter] = ACTIONS(1990), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddchap] = ACTIONS(1990), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsection] = ACTIONS(1990), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddsec] = ACTIONS(1990), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHparagraph] = ACTIONS(1990), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHitem] = ACTIONS(1990), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(2275), - [sym_word] = ACTIONS(2278), - [sym_placeholder] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2284), - [anon_sym__] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2296), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1979), - [anon_sym_BSLASHbegin] = ACTIONS(2016), - [anon_sym_BSLASHusepackage] = ACTIONS(2299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2302), - [anon_sym_BSLASHinclude] = ACTIONS(2305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2305), - [anon_sym_BSLASHinput] = ACTIONS(2305), - [anon_sym_BSLASHsubfile] = ACTIONS(2305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2308), - [anon_sym_BSLASHbibliography] = ACTIONS(2311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2314), - [anon_sym_BSLASHincludesvg] = ACTIONS(2317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2320), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2323), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2323), - [anon_sym_BSLASHimport] = ACTIONS(2326), - [anon_sym_BSLASHsubimport] = ACTIONS(2326), - [anon_sym_BSLASHinputfrom] = ACTIONS(2326), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2326), - [anon_sym_BSLASHincludefrom] = ACTIONS(2326), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2326), - [anon_sym_BSLASHcaption] = ACTIONS(2329), - [anon_sym_BSLASHcite] = ACTIONS(2332), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2335), - [anon_sym_BSLASHCite] = ACTIONS(2332), - [anon_sym_BSLASHnocite] = ACTIONS(2332), - [anon_sym_BSLASHcitet] = ACTIONS(2332), - [anon_sym_BSLASHcitep] = ACTIONS(2332), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2335), - [anon_sym_BSLASHciteauthor] = ACTIONS(2332), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2332), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2335), - [anon_sym_BSLASHcitetitle] = ACTIONS(2332), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2335), - [anon_sym_BSLASHciteyear] = ACTIONS(2332), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2335), - [anon_sym_BSLASHcitedate] = ACTIONS(2332), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2335), - [anon_sym_BSLASHciteurl] = ACTIONS(2332), - [anon_sym_BSLASHfullcite] = ACTIONS(2332), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2332), - [anon_sym_BSLASHcitealt] = ACTIONS(2332), - [anon_sym_BSLASHcitealp] = ACTIONS(2332), - [anon_sym_BSLASHcitetext] = ACTIONS(2332), - [anon_sym_BSLASHparencite] = ACTIONS(2332), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2335), - [anon_sym_BSLASHParencite] = ACTIONS(2332), - [anon_sym_BSLASHfootcite] = ACTIONS(2332), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2332), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2332), - [anon_sym_BSLASHtextcite] = ACTIONS(2332), - [anon_sym_BSLASHTextcite] = ACTIONS(2332), - [anon_sym_BSLASHsmartcite] = ACTIONS(2332), - [anon_sym_BSLASHSmartcite] = ACTIONS(2332), - [anon_sym_BSLASHsupercite] = ACTIONS(2332), - [anon_sym_BSLASHautocite] = ACTIONS(2332), - [anon_sym_BSLASHAutocite] = ACTIONS(2332), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2335), - [anon_sym_BSLASHvolcite] = ACTIONS(2332), - [anon_sym_BSLASHVolcite] = ACTIONS(2332), - [anon_sym_BSLASHpvolcite] = ACTIONS(2332), - [anon_sym_BSLASHPvolcite] = ACTIONS(2332), - [anon_sym_BSLASHfvolcite] = ACTIONS(2332), - [anon_sym_BSLASHftvolcite] = ACTIONS(2332), - [anon_sym_BSLASHsvolcite] = ACTIONS(2332), - [anon_sym_BSLASHSvolcite] = ACTIONS(2332), - [anon_sym_BSLASHtvolcite] = ACTIONS(2332), - [anon_sym_BSLASHTvolcite] = ACTIONS(2332), - [anon_sym_BSLASHavolcite] = ACTIONS(2332), - [anon_sym_BSLASHAvolcite] = ACTIONS(2332), - [anon_sym_BSLASHnotecite] = ACTIONS(2332), - [anon_sym_BSLASHNotecite] = ACTIONS(2332), - [anon_sym_BSLASHpnotecite] = ACTIONS(2332), - [anon_sym_BSLASHPnotecite] = ACTIONS(2332), - [anon_sym_BSLASHfnotecite] = ACTIONS(2332), - [anon_sym_BSLASHlabel] = ACTIONS(2338), - [anon_sym_BSLASHref] = ACTIONS(2341), - [anon_sym_BSLASHeqref] = ACTIONS(2341), - [anon_sym_BSLASHvref] = ACTIONS(2341), - [anon_sym_BSLASHVref] = ACTIONS(2341), - [anon_sym_BSLASHautoref] = ACTIONS(2341), - [anon_sym_BSLASHpageref] = ACTIONS(2341), - [anon_sym_BSLASHcref] = ACTIONS(2341), - [anon_sym_BSLASHCref] = ACTIONS(2341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2344), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2344), - [anon_sym_BSLASHnamecref] = ACTIONS(2341), - [anon_sym_BSLASHnameCref] = ACTIONS(2341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2341), - [anon_sym_BSLASHlabelcref] = ACTIONS(2341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2341), - [anon_sym_BSLASHcrefrange] = ACTIONS(2347), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2350), - [anon_sym_BSLASHCrefrange] = ACTIONS(2347), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2350), - [anon_sym_BSLASHnewlabel] = ACTIONS(2353), - [anon_sym_BSLASHnewcommand] = ACTIONS(2356), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2356), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2356), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2356), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2359), - [anon_sym_BSLASHdef] = ACTIONS(2362), - [anon_sym_BSLASHlet] = ACTIONS(2365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2368), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2371), - [anon_sym_BSLASHgls] = ACTIONS(2374), - [anon_sym_BSLASHGls] = ACTIONS(2374), - [anon_sym_BSLASHGLS] = ACTIONS(2374), - [anon_sym_BSLASHglspl] = ACTIONS(2374), - [anon_sym_BSLASHGlspl] = ACTIONS(2374), - [anon_sym_BSLASHGLSpl] = ACTIONS(2374), - [anon_sym_BSLASHglsdisp] = ACTIONS(2374), - [anon_sym_BSLASHglslink] = ACTIONS(2374), - [anon_sym_BSLASHglstext] = ACTIONS(2374), - [anon_sym_BSLASHGlstext] = ACTIONS(2374), - [anon_sym_BSLASHGLStext] = ACTIONS(2374), - [anon_sym_BSLASHglsfirst] = ACTIONS(2374), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2374), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2374), - [anon_sym_BSLASHglsplural] = ACTIONS(2374), - [anon_sym_BSLASHGlsplural] = ACTIONS(2374), - [anon_sym_BSLASHGLSplural] = ACTIONS(2374), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2374), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2374), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2374), - [anon_sym_BSLASHglsname] = ACTIONS(2374), - [anon_sym_BSLASHGlsname] = ACTIONS(2374), - [anon_sym_BSLASHGLSname] = ACTIONS(2374), - [anon_sym_BSLASHglssymbol] = ACTIONS(2374), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2374), - [anon_sym_BSLASHglsdesc] = ACTIONS(2374), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2374), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2374), - [anon_sym_BSLASHglsuseri] = ACTIONS(2374), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2374), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2374), - [anon_sym_BSLASHglsuserii] = ACTIONS(2374), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2374), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2374), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2374), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2374), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2374), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2374), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2374), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2374), - [anon_sym_BSLASHglsuserv] = ACTIONS(2374), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2374), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2374), - [anon_sym_BSLASHglsuservi] = ACTIONS(2374), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2374), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2374), - [anon_sym_BSLASHnewacronym] = ACTIONS(2377), - [anon_sym_BSLASHacrshort] = ACTIONS(2380), - [anon_sym_BSLASHAcrshort] = ACTIONS(2380), - [anon_sym_BSLASHACRshort] = ACTIONS(2380), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2380), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2380), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2380), - [anon_sym_BSLASHacrlong] = ACTIONS(2380), - [anon_sym_BSLASHAcrlong] = ACTIONS(2380), - [anon_sym_BSLASHACRlong] = ACTIONS(2380), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2380), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2380), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2380), - [anon_sym_BSLASHacrfull] = ACTIONS(2380), - [anon_sym_BSLASHAcrfull] = ACTIONS(2380), - [anon_sym_BSLASHACRfull] = ACTIONS(2380), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2380), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2380), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2380), - [anon_sym_BSLASHacs] = ACTIONS(2380), - [anon_sym_BSLASHAcs] = ACTIONS(2380), - [anon_sym_BSLASHacsp] = ACTIONS(2380), - [anon_sym_BSLASHAcsp] = ACTIONS(2380), - [anon_sym_BSLASHacl] = ACTIONS(2380), - [anon_sym_BSLASHAcl] = ACTIONS(2380), - [anon_sym_BSLASHaclp] = ACTIONS(2380), - [anon_sym_BSLASHAclp] = ACTIONS(2380), - [anon_sym_BSLASHacf] = ACTIONS(2380), - [anon_sym_BSLASHAcf] = ACTIONS(2380), - [anon_sym_BSLASHacfp] = ACTIONS(2380), - [anon_sym_BSLASHAcfp] = ACTIONS(2380), - [anon_sym_BSLASHac] = ACTIONS(2380), - [anon_sym_BSLASHAc] = ACTIONS(2380), - [anon_sym_BSLASHacp] = ACTIONS(2380), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2380), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2380), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2380), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2380), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2380), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2380), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2380), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2380), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2380), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2380), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2386), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2389), - [anon_sym_BSLASHcolor] = ACTIONS(2392), - [anon_sym_BSLASHcolorbox] = ACTIONS(2392), - [anon_sym_BSLASHtextcolor] = ACTIONS(2392), - [anon_sym_BSLASHpagecolor] = ACTIONS(2392), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2395), - [anon_sym_BSLASHtext] = ACTIONS(2398), - [anon_sym_BSLASHintertext] = ACTIONS(2398), - [anon_sym_shortintertext] = ACTIONS(2398), + [sym_command_name] = ACTIONS(2297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_RBRACK] = ACTIONS(2303), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_EQ] = ACTIONS(2303), + [anon_sym_BSLASHpart] = ACTIONS(2015), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddpart] = ACTIONS(2015), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHchapter] = ACTIONS(2015), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddchap] = ACTIONS(2015), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsection] = ACTIONS(2015), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddsec] = ACTIONS(2015), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHparagraph] = ACTIONS(2015), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHitem] = ACTIONS(2015), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2306), + [sym_word] = ACTIONS(2309), + [sym_placeholder] = ACTIONS(2312), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym__] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_COLON] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2318), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2324), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2327), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2004), + [anon_sym_BSLASHbegin] = ACTIONS(2041), + [anon_sym_BSLASHusepackage] = ACTIONS(2330), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2330), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2333), + [anon_sym_BSLASHinclude] = ACTIONS(2336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2336), + [anon_sym_BSLASHinput] = ACTIONS(2336), + [anon_sym_BSLASHsubfile] = ACTIONS(2336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2339), + [anon_sym_BSLASHbibliography] = ACTIONS(2342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2345), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2351), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2354), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2354), + [anon_sym_BSLASHimport] = ACTIONS(2357), + [anon_sym_BSLASHsubimport] = ACTIONS(2357), + [anon_sym_BSLASHinputfrom] = ACTIONS(2357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2357), + [anon_sym_BSLASHincludefrom] = ACTIONS(2357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2357), + [anon_sym_BSLASHcaption] = ACTIONS(2360), + [anon_sym_BSLASHcite] = ACTIONS(2363), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCite] = ACTIONS(2363), + [anon_sym_BSLASHnocite] = ACTIONS(2363), + [anon_sym_BSLASHcitet] = ACTIONS(2363), + [anon_sym_BSLASHcitep] = ACTIONS(2363), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2366), + [anon_sym_BSLASHciteauthor] = ACTIONS(2363), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2363), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2366), + [anon_sym_BSLASHcitetitle] = ACTIONS(2363), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2366), + [anon_sym_BSLASHciteyear] = ACTIONS(2363), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2366), + [anon_sym_BSLASHcitedate] = ACTIONS(2363), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2366), + [anon_sym_BSLASHciteurl] = ACTIONS(2363), + [anon_sym_BSLASHfullcite] = ACTIONS(2363), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2363), + [anon_sym_BSLASHcitealt] = ACTIONS(2363), + [anon_sym_BSLASHcitealp] = ACTIONS(2363), + [anon_sym_BSLASHcitetext] = ACTIONS(2363), + [anon_sym_BSLASHparencite] = ACTIONS(2363), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2366), + [anon_sym_BSLASHParencite] = ACTIONS(2363), + [anon_sym_BSLASHfootcite] = ACTIONS(2363), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2363), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2363), + [anon_sym_BSLASHtextcite] = ACTIONS(2363), + [anon_sym_BSLASHTextcite] = ACTIONS(2363), + [anon_sym_BSLASHsmartcite] = ACTIONS(2363), + [anon_sym_BSLASHSmartcite] = ACTIONS(2363), + [anon_sym_BSLASHsupercite] = ACTIONS(2363), + [anon_sym_BSLASHautocite] = ACTIONS(2363), + [anon_sym_BSLASHAutocite] = ACTIONS(2363), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2366), + [anon_sym_BSLASHvolcite] = ACTIONS(2363), + [anon_sym_BSLASHVolcite] = ACTIONS(2363), + [anon_sym_BSLASHpvolcite] = ACTIONS(2363), + [anon_sym_BSLASHPvolcite] = ACTIONS(2363), + [anon_sym_BSLASHfvolcite] = ACTIONS(2363), + [anon_sym_BSLASHftvolcite] = ACTIONS(2363), + [anon_sym_BSLASHsvolcite] = ACTIONS(2363), + [anon_sym_BSLASHSvolcite] = ACTIONS(2363), + [anon_sym_BSLASHtvolcite] = ACTIONS(2363), + [anon_sym_BSLASHTvolcite] = ACTIONS(2363), + [anon_sym_BSLASHavolcite] = ACTIONS(2363), + [anon_sym_BSLASHAvolcite] = ACTIONS(2363), + [anon_sym_BSLASHnotecite] = ACTIONS(2363), + [anon_sym_BSLASHNotecite] = ACTIONS(2363), + [anon_sym_BSLASHpnotecite] = ACTIONS(2363), + [anon_sym_BSLASHPnotecite] = ACTIONS(2363), + [anon_sym_BSLASHfnotecite] = ACTIONS(2363), + [anon_sym_BSLASHlabel] = ACTIONS(2369), + [anon_sym_BSLASHref] = ACTIONS(2372), + [anon_sym_BSLASHeqref] = ACTIONS(2372), + [anon_sym_BSLASHvref] = ACTIONS(2372), + [anon_sym_BSLASHVref] = ACTIONS(2372), + [anon_sym_BSLASHautoref] = ACTIONS(2372), + [anon_sym_BSLASHpageref] = ACTIONS(2372), + [anon_sym_BSLASHcref] = ACTIONS(2372), + [anon_sym_BSLASHCref] = ACTIONS(2372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2375), + [anon_sym_BSLASHnamecref] = ACTIONS(2372), + [anon_sym_BSLASHnameCref] = ACTIONS(2372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2372), + [anon_sym_BSLASHlabelcref] = ACTIONS(2372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2372), + [anon_sym_BSLASHcrefrange] = ACTIONS(2378), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2381), + [anon_sym_BSLASHCrefrange] = ACTIONS(2378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2381), + [anon_sym_BSLASHnewlabel] = ACTIONS(2384), + [anon_sym_BSLASHnewcommand] = ACTIONS(2387), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2387), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2387), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2387), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2390), + [anon_sym_BSLASHdef] = ACTIONS(2393), + [anon_sym_BSLASHlet] = ACTIONS(2396), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2402), + [anon_sym_BSLASHgls] = ACTIONS(2405), + [anon_sym_BSLASHGls] = ACTIONS(2405), + [anon_sym_BSLASHGLS] = ACTIONS(2405), + [anon_sym_BSLASHglspl] = ACTIONS(2405), + [anon_sym_BSLASHGlspl] = ACTIONS(2405), + [anon_sym_BSLASHGLSpl] = ACTIONS(2405), + [anon_sym_BSLASHglsdisp] = ACTIONS(2405), + [anon_sym_BSLASHglslink] = ACTIONS(2405), + [anon_sym_BSLASHglstext] = ACTIONS(2405), + [anon_sym_BSLASHGlstext] = ACTIONS(2405), + [anon_sym_BSLASHGLStext] = ACTIONS(2405), + [anon_sym_BSLASHglsfirst] = ACTIONS(2405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2405), + [anon_sym_BSLASHglsplural] = ACTIONS(2405), + [anon_sym_BSLASHGlsplural] = ACTIONS(2405), + [anon_sym_BSLASHGLSplural] = ACTIONS(2405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2405), + [anon_sym_BSLASHglsname] = ACTIONS(2405), + [anon_sym_BSLASHGlsname] = ACTIONS(2405), + [anon_sym_BSLASHGLSname] = ACTIONS(2405), + [anon_sym_BSLASHglssymbol] = ACTIONS(2405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2405), + [anon_sym_BSLASHglsdesc] = ACTIONS(2405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2405), + [anon_sym_BSLASHglsuseri] = ACTIONS(2405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2405), + [anon_sym_BSLASHglsuserii] = ACTIONS(2405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2405), + [anon_sym_BSLASHglsuserv] = ACTIONS(2405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2405), + [anon_sym_BSLASHglsuservi] = ACTIONS(2405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2405), + [anon_sym_BSLASHnewacronym] = ACTIONS(2408), + [anon_sym_BSLASHacrshort] = ACTIONS(2411), + [anon_sym_BSLASHAcrshort] = ACTIONS(2411), + [anon_sym_BSLASHACRshort] = ACTIONS(2411), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2411), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2411), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2411), + [anon_sym_BSLASHacrlong] = ACTIONS(2411), + [anon_sym_BSLASHAcrlong] = ACTIONS(2411), + [anon_sym_BSLASHACRlong] = ACTIONS(2411), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2411), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2411), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2411), + [anon_sym_BSLASHacrfull] = ACTIONS(2411), + [anon_sym_BSLASHAcrfull] = ACTIONS(2411), + [anon_sym_BSLASHACRfull] = ACTIONS(2411), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2411), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2411), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2411), + [anon_sym_BSLASHacs] = ACTIONS(2411), + [anon_sym_BSLASHAcs] = ACTIONS(2411), + [anon_sym_BSLASHacsp] = ACTIONS(2411), + [anon_sym_BSLASHAcsp] = ACTIONS(2411), + [anon_sym_BSLASHacl] = ACTIONS(2411), + [anon_sym_BSLASHAcl] = ACTIONS(2411), + [anon_sym_BSLASHaclp] = ACTIONS(2411), + [anon_sym_BSLASHAclp] = ACTIONS(2411), + [anon_sym_BSLASHacf] = ACTIONS(2411), + [anon_sym_BSLASHAcf] = ACTIONS(2411), + [anon_sym_BSLASHacfp] = ACTIONS(2411), + [anon_sym_BSLASHAcfp] = ACTIONS(2411), + [anon_sym_BSLASHac] = ACTIONS(2411), + [anon_sym_BSLASHAc] = ACTIONS(2411), + [anon_sym_BSLASHacp] = ACTIONS(2411), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2411), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2411), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2411), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2411), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2411), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2411), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2411), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2411), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2411), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2411), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2414), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2414), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2420), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2423), + [anon_sym_BSLASHcolor] = ACTIONS(2426), + [anon_sym_BSLASHcolorbox] = ACTIONS(2426), + [anon_sym_BSLASHtextcolor] = ACTIONS(2426), + [anon_sym_BSLASHpagecolor] = ACTIONS(2426), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2429), + [anon_sym_BSLASHtext] = ACTIONS(2432), + [anon_sym_BSLASHintertext] = ACTIONS(2432), + [anon_sym_shortintertext] = ACTIONS(2432), }, [201] = { [sym_block_comment] = STATE(206), @@ -87600,276 +88022,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(206), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_BSLASHpart] = ACTIONS(1977), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddpart] = ACTIONS(1977), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHchapter] = ACTIONS(1977), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddchap] = ACTIONS(1977), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsection] = ACTIONS(1977), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddsec] = ACTIONS(1977), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHparagraph] = ACTIONS(1977), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHitem] = ACTIONS(1977), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_BSLASH_LPAREN] = ACTIONS(571), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), - [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_BSLASHpart] = ACTIONS(2002), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddpart] = ACTIONS(2002), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHchapter] = ACTIONS(2002), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddchap] = ACTIONS(2002), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsection] = ACTIONS(2002), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddsec] = ACTIONS(2002), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHparagraph] = ACTIONS(2002), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2002), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHitem] = ACTIONS(2002), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(574), + [anon_sym_BSLASH_LBRACK] = ACTIONS(574), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(578), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2000), + [anon_sym_BSLASH_LBRACE] = ACTIONS(582), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(643), - [anon_sym_BSLASHintertext] = ACTIONS(643), - [anon_sym_shortintertext] = ACTIONS(643), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(652), + [anon_sym_BSLASHintertext] = ACTIONS(652), + [anon_sym_shortintertext] = ACTIONS(652), }, [202] = { [sym_block_comment] = STATE(198), @@ -87928,276 +88352,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(198), [aux_sym_part_repeat1] = STATE(198), [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BSLASHpart] = ACTIONS(1977), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddpart] = ACTIONS(1977), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), - [anon_sym_BSLASHchapter] = ACTIONS(1977), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddchap] = ACTIONS(1977), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsection] = ACTIONS(1977), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHaddsec] = ACTIONS(1977), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), - [anon_sym_BSLASHparagraph] = ACTIONS(1977), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), - [anon_sym_BSLASHitem] = ACTIONS(1977), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), - [anon_sym_BSLASH_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_LPAREN] = ACTIONS(805), - [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_BSLASHpart] = ACTIONS(2002), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddpart] = ACTIONS(2002), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2000), + [anon_sym_BSLASHchapter] = ACTIONS(2002), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddchap] = ACTIONS(2002), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsection] = ACTIONS(2002), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHaddsec] = ACTIONS(2002), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2002), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2000), + [anon_sym_BSLASHparagraph] = ACTIONS(2002), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2002), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2000), + [anon_sym_BSLASHitem] = ACTIONS(2002), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(810), + [anon_sym_BSLASH_LBRACK] = ACTIONS(810), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_BSLASH_LPAREN] = ACTIONS(816), + [anon_sym_BSLASH_LBRACE] = ACTIONS(818), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(875), - [anon_sym_BSLASHintertext] = ACTIONS(875), - [anon_sym_shortintertext] = ACTIONS(875), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(888), + [anon_sym_BSLASHintertext] = ACTIONS(888), + [anon_sym_shortintertext] = ACTIONS(888), }, [203] = { [sym_block_comment] = STATE(199), @@ -88256,276 +88682,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(199), [aux_sym_part_repeat1] = STATE(199), [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_RBRACK] = ACTIONS(2401), - [anon_sym_COMMA] = ACTIONS(2401), - [anon_sym_EQ] = ACTIONS(2401), - [anon_sym_BSLASHpart] = ACTIONS(2125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddpart] = ACTIONS(2125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHchapter] = ACTIONS(2125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddchap] = ACTIONS(2125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsection] = ACTIONS(2125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddsec] = ACTIONS(2125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHparagraph] = ACTIONS(2125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHitem] = ACTIONS(2125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), - [anon_sym_BSLASH_LBRACK] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LPAREN] = ACTIONS(695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2121), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2435), + [anon_sym_BSLASHpart] = ACTIONS(2153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddpart] = ACTIONS(2153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHchapter] = ACTIONS(2153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddchap] = ACTIONS(2153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsection] = ACTIONS(2153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddsec] = ACTIONS(2153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHparagraph] = ACTIONS(2153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHitem] = ACTIONS(2153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BSLASH_LPAREN] = ACTIONS(704), + [anon_sym_BSLASH_LBRACE] = ACTIONS(706), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2149), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(767), - [anon_sym_BSLASHintertext] = ACTIONS(767), - [anon_sym_shortintertext] = ACTIONS(767), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(778), + [anon_sym_BSLASHintertext] = ACTIONS(778), + [anon_sym_shortintertext] = ACTIONS(778), }, [204] = { [sym_block_comment] = STATE(197), @@ -88584,276 +89012,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(197), [aux_sym_part_repeat1] = STATE(197), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(2403), - [anon_sym_BSLASHpart] = ACTIONS(2125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddpart] = ACTIONS(2125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), - [anon_sym_BSLASHchapter] = ACTIONS(2125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddchap] = ACTIONS(2125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsection] = ACTIONS(2125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHaddsec] = ACTIONS(2125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), - [anon_sym_BSLASHparagraph] = ACTIONS(2125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), - [anon_sym_BSLASHitem] = ACTIONS(2125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(2437), + [anon_sym_EQ] = ACTIONS(2437), + [anon_sym_BSLASHpart] = ACTIONS(2153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddpart] = ACTIONS(2153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2149), + [anon_sym_BSLASHchapter] = ACTIONS(2153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddchap] = ACTIONS(2153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsection] = ACTIONS(2153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHaddsec] = ACTIONS(2153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2149), + [anon_sym_BSLASHparagraph] = ACTIONS(2153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2149), + [anon_sym_BSLASHitem] = ACTIONS(2153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(239), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2125), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(307), - [anon_sym_BSLASHintertext] = ACTIONS(307), - [anon_sym_shortintertext] = ACTIONS(307), + [anon_sym_BSLASHend] = ACTIONS(2153), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(311), + [anon_sym_BSLASHintertext] = ACTIONS(311), + [anon_sym_shortintertext] = ACTIONS(311), }, [205] = { [sym_block_comment] = STATE(205), @@ -88912,276 +89342,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(205), [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(2405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2411), - [anon_sym_RBRACK] = ACTIONS(2411), - [anon_sym_COMMA] = ACTIONS(2411), - [anon_sym_EQ] = ACTIONS(2411), - [anon_sym_BSLASHpart] = ACTIONS(1990), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddpart] = ACTIONS(1990), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHchapter] = ACTIONS(1990), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddchap] = ACTIONS(1990), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsection] = ACTIONS(1990), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddsec] = ACTIONS(1990), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHparagraph] = ACTIONS(1990), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHitem] = ACTIONS(1990), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(2414), - [sym_word] = ACTIONS(2417), - [sym_placeholder] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym__] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_COLON] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2426), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2432), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2435), - [anon_sym_BSLASHbegin] = ACTIONS(2016), - [anon_sym_BSLASHend] = ACTIONS(1990), - [anon_sym_BSLASHusepackage] = ACTIONS(2438), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2438), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2441), - [anon_sym_BSLASHinclude] = ACTIONS(2444), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2444), - [anon_sym_BSLASHinput] = ACTIONS(2444), - [anon_sym_BSLASHsubfile] = ACTIONS(2444), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2447), - [anon_sym_BSLASHbibliography] = ACTIONS(2450), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2453), - [anon_sym_BSLASHincludesvg] = ACTIONS(2456), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2462), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2462), - [anon_sym_BSLASHimport] = ACTIONS(2465), - [anon_sym_BSLASHsubimport] = ACTIONS(2465), - [anon_sym_BSLASHinputfrom] = ACTIONS(2465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2465), - [anon_sym_BSLASHincludefrom] = ACTIONS(2465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2465), - [anon_sym_BSLASHcaption] = ACTIONS(2468), - [anon_sym_BSLASHcite] = ACTIONS(2471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2474), - [anon_sym_BSLASHCite] = ACTIONS(2471), - [anon_sym_BSLASHnocite] = ACTIONS(2471), - [anon_sym_BSLASHcitet] = ACTIONS(2471), - [anon_sym_BSLASHcitep] = ACTIONS(2471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2474), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2474), - [anon_sym_BSLASHciteauthor] = ACTIONS(2471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2474), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2474), - [anon_sym_BSLASHcitetitle] = ACTIONS(2471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2474), - [anon_sym_BSLASHciteyear] = ACTIONS(2471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2474), - [anon_sym_BSLASHcitedate] = ACTIONS(2471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2474), - [anon_sym_BSLASHciteurl] = ACTIONS(2471), - [anon_sym_BSLASHfullcite] = ACTIONS(2471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2471), - [anon_sym_BSLASHcitealt] = ACTIONS(2471), - [anon_sym_BSLASHcitealp] = ACTIONS(2471), - [anon_sym_BSLASHcitetext] = ACTIONS(2471), - [anon_sym_BSLASHparencite] = ACTIONS(2471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2474), - [anon_sym_BSLASHParencite] = ACTIONS(2471), - [anon_sym_BSLASHfootcite] = ACTIONS(2471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2471), - [anon_sym_BSLASHtextcite] = ACTIONS(2471), - [anon_sym_BSLASHTextcite] = ACTIONS(2471), - [anon_sym_BSLASHsmartcite] = ACTIONS(2471), - [anon_sym_BSLASHSmartcite] = ACTIONS(2471), - [anon_sym_BSLASHsupercite] = ACTIONS(2471), - [anon_sym_BSLASHautocite] = ACTIONS(2471), - [anon_sym_BSLASHAutocite] = ACTIONS(2471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2474), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2474), - [anon_sym_BSLASHvolcite] = ACTIONS(2471), - [anon_sym_BSLASHVolcite] = ACTIONS(2471), - [anon_sym_BSLASHpvolcite] = ACTIONS(2471), - [anon_sym_BSLASHPvolcite] = ACTIONS(2471), - [anon_sym_BSLASHfvolcite] = ACTIONS(2471), - [anon_sym_BSLASHftvolcite] = ACTIONS(2471), - [anon_sym_BSLASHsvolcite] = ACTIONS(2471), - [anon_sym_BSLASHSvolcite] = ACTIONS(2471), - [anon_sym_BSLASHtvolcite] = ACTIONS(2471), - [anon_sym_BSLASHTvolcite] = ACTIONS(2471), - [anon_sym_BSLASHavolcite] = ACTIONS(2471), - [anon_sym_BSLASHAvolcite] = ACTIONS(2471), - [anon_sym_BSLASHnotecite] = ACTIONS(2471), - [anon_sym_BSLASHNotecite] = ACTIONS(2471), - [anon_sym_BSLASHpnotecite] = ACTIONS(2471), - [anon_sym_BSLASHPnotecite] = ACTIONS(2471), - [anon_sym_BSLASHfnotecite] = ACTIONS(2471), - [anon_sym_BSLASHlabel] = ACTIONS(2477), - [anon_sym_BSLASHref] = ACTIONS(2480), - [anon_sym_BSLASHeqref] = ACTIONS(2480), - [anon_sym_BSLASHvref] = ACTIONS(2480), - [anon_sym_BSLASHVref] = ACTIONS(2480), - [anon_sym_BSLASHautoref] = ACTIONS(2480), - [anon_sym_BSLASHpageref] = ACTIONS(2480), - [anon_sym_BSLASHcref] = ACTIONS(2480), - [anon_sym_BSLASHCref] = ACTIONS(2480), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2483), - [anon_sym_BSLASHnamecref] = ACTIONS(2480), - [anon_sym_BSLASHnameCref] = ACTIONS(2480), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2480), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2480), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2480), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2480), - [anon_sym_BSLASHlabelcref] = ACTIONS(2480), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2480), - [anon_sym_BSLASHcrefrange] = ACTIONS(2486), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2489), - [anon_sym_BSLASHCrefrange] = ACTIONS(2486), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2489), - [anon_sym_BSLASHnewlabel] = ACTIONS(2492), - [anon_sym_BSLASHnewcommand] = ACTIONS(2495), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2498), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2495), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2498), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2495), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2498), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2495), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2498), - [anon_sym_BSLASHdef] = ACTIONS(2501), - [anon_sym_BSLASHlet] = ACTIONS(2504), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2507), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2510), - [anon_sym_BSLASHgls] = ACTIONS(2513), - [anon_sym_BSLASHGls] = ACTIONS(2513), - [anon_sym_BSLASHGLS] = ACTIONS(2513), - [anon_sym_BSLASHglspl] = ACTIONS(2513), - [anon_sym_BSLASHGlspl] = ACTIONS(2513), - [anon_sym_BSLASHGLSpl] = ACTIONS(2513), - [anon_sym_BSLASHglsdisp] = ACTIONS(2513), - [anon_sym_BSLASHglslink] = ACTIONS(2513), - [anon_sym_BSLASHglstext] = ACTIONS(2513), - [anon_sym_BSLASHGlstext] = ACTIONS(2513), - [anon_sym_BSLASHGLStext] = ACTIONS(2513), - [anon_sym_BSLASHglsfirst] = ACTIONS(2513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2513), - [anon_sym_BSLASHglsplural] = ACTIONS(2513), - [anon_sym_BSLASHGlsplural] = ACTIONS(2513), - [anon_sym_BSLASHGLSplural] = ACTIONS(2513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2513), - [anon_sym_BSLASHglsname] = ACTIONS(2513), - [anon_sym_BSLASHGlsname] = ACTIONS(2513), - [anon_sym_BSLASHGLSname] = ACTIONS(2513), - [anon_sym_BSLASHglssymbol] = ACTIONS(2513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2513), - [anon_sym_BSLASHglsdesc] = ACTIONS(2513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2513), - [anon_sym_BSLASHglsuseri] = ACTIONS(2513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2513), - [anon_sym_BSLASHglsuserii] = ACTIONS(2513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2513), - [anon_sym_BSLASHglsuserv] = ACTIONS(2513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2513), - [anon_sym_BSLASHglsuservi] = ACTIONS(2513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2513), - [anon_sym_BSLASHnewacronym] = ACTIONS(2516), - [anon_sym_BSLASHacrshort] = ACTIONS(2519), - [anon_sym_BSLASHAcrshort] = ACTIONS(2519), - [anon_sym_BSLASHACRshort] = ACTIONS(2519), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2519), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2519), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2519), - [anon_sym_BSLASHacrlong] = ACTIONS(2519), - [anon_sym_BSLASHAcrlong] = ACTIONS(2519), - [anon_sym_BSLASHACRlong] = ACTIONS(2519), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2519), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2519), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2519), - [anon_sym_BSLASHacrfull] = ACTIONS(2519), - [anon_sym_BSLASHAcrfull] = ACTIONS(2519), - [anon_sym_BSLASHACRfull] = ACTIONS(2519), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2519), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2519), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2519), - [anon_sym_BSLASHacs] = ACTIONS(2519), - [anon_sym_BSLASHAcs] = ACTIONS(2519), - [anon_sym_BSLASHacsp] = ACTIONS(2519), - [anon_sym_BSLASHAcsp] = ACTIONS(2519), - [anon_sym_BSLASHacl] = ACTIONS(2519), - [anon_sym_BSLASHAcl] = ACTIONS(2519), - [anon_sym_BSLASHaclp] = ACTIONS(2519), - [anon_sym_BSLASHAclp] = ACTIONS(2519), - [anon_sym_BSLASHacf] = ACTIONS(2519), - [anon_sym_BSLASHAcf] = ACTIONS(2519), - [anon_sym_BSLASHacfp] = ACTIONS(2519), - [anon_sym_BSLASHAcfp] = ACTIONS(2519), - [anon_sym_BSLASHac] = ACTIONS(2519), - [anon_sym_BSLASHAc] = ACTIONS(2519), - [anon_sym_BSLASHacp] = ACTIONS(2519), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2519), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2519), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2519), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2519), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2519), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2519), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2519), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2519), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2519), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2519), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2522), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2522), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2528), - [anon_sym_BSLASHcolor] = ACTIONS(2531), - [anon_sym_BSLASHcolorbox] = ACTIONS(2531), - [anon_sym_BSLASHtextcolor] = ACTIONS(2531), - [anon_sym_BSLASHpagecolor] = ACTIONS(2531), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2534), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2534), - [anon_sym_BSLASHtext] = ACTIONS(2537), - [anon_sym_BSLASHintertext] = ACTIONS(2537), - [anon_sym_shortintertext] = ACTIONS(2537), + [sym_command_name] = ACTIONS(2439), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2445), + [anon_sym_BSLASHpart] = ACTIONS(2015), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddpart] = ACTIONS(2015), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHchapter] = ACTIONS(2015), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddchap] = ACTIONS(2015), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsection] = ACTIONS(2015), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddsec] = ACTIONS(2015), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHparagraph] = ACTIONS(2015), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHitem] = ACTIONS(2015), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2448), + [sym_word] = ACTIONS(2451), + [sym_placeholder] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym__] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2460), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2466), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2469), + [anon_sym_BSLASHbegin] = ACTIONS(2041), + [anon_sym_BSLASHend] = ACTIONS(2015), + [anon_sym_BSLASHusepackage] = ACTIONS(2472), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2472), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2475), + [anon_sym_BSLASHinclude] = ACTIONS(2478), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2478), + [anon_sym_BSLASHinput] = ACTIONS(2478), + [anon_sym_BSLASHsubfile] = ACTIONS(2478), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2481), + [anon_sym_BSLASHbibliography] = ACTIONS(2484), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2487), + [anon_sym_BSLASHincludesvg] = ACTIONS(2490), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2496), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2496), + [anon_sym_BSLASHimport] = ACTIONS(2499), + [anon_sym_BSLASHsubimport] = ACTIONS(2499), + [anon_sym_BSLASHinputfrom] = ACTIONS(2499), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2499), + [anon_sym_BSLASHincludefrom] = ACTIONS(2499), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2499), + [anon_sym_BSLASHcaption] = ACTIONS(2502), + [anon_sym_BSLASHcite] = ACTIONS(2505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2508), + [anon_sym_BSLASHCite] = ACTIONS(2505), + [anon_sym_BSLASHnocite] = ACTIONS(2505), + [anon_sym_BSLASHcitet] = ACTIONS(2505), + [anon_sym_BSLASHcitep] = ACTIONS(2505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2508), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2508), + [anon_sym_BSLASHciteauthor] = ACTIONS(2505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2508), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2508), + [anon_sym_BSLASHcitetitle] = ACTIONS(2505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2508), + [anon_sym_BSLASHciteyear] = ACTIONS(2505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2508), + [anon_sym_BSLASHcitedate] = ACTIONS(2505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2508), + [anon_sym_BSLASHciteurl] = ACTIONS(2505), + [anon_sym_BSLASHfullcite] = ACTIONS(2505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2505), + [anon_sym_BSLASHcitealt] = ACTIONS(2505), + [anon_sym_BSLASHcitealp] = ACTIONS(2505), + [anon_sym_BSLASHcitetext] = ACTIONS(2505), + [anon_sym_BSLASHparencite] = ACTIONS(2505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2508), + [anon_sym_BSLASHParencite] = ACTIONS(2505), + [anon_sym_BSLASHfootcite] = ACTIONS(2505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2505), + [anon_sym_BSLASHtextcite] = ACTIONS(2505), + [anon_sym_BSLASHTextcite] = ACTIONS(2505), + [anon_sym_BSLASHsmartcite] = ACTIONS(2505), + [anon_sym_BSLASHSmartcite] = ACTIONS(2505), + [anon_sym_BSLASHsupercite] = ACTIONS(2505), + [anon_sym_BSLASHautocite] = ACTIONS(2505), + [anon_sym_BSLASHAutocite] = ACTIONS(2505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2508), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2508), + [anon_sym_BSLASHvolcite] = ACTIONS(2505), + [anon_sym_BSLASHVolcite] = ACTIONS(2505), + [anon_sym_BSLASHpvolcite] = ACTIONS(2505), + [anon_sym_BSLASHPvolcite] = ACTIONS(2505), + [anon_sym_BSLASHfvolcite] = ACTIONS(2505), + [anon_sym_BSLASHftvolcite] = ACTIONS(2505), + [anon_sym_BSLASHsvolcite] = ACTIONS(2505), + [anon_sym_BSLASHSvolcite] = ACTIONS(2505), + [anon_sym_BSLASHtvolcite] = ACTIONS(2505), + [anon_sym_BSLASHTvolcite] = ACTIONS(2505), + [anon_sym_BSLASHavolcite] = ACTIONS(2505), + [anon_sym_BSLASHAvolcite] = ACTIONS(2505), + [anon_sym_BSLASHnotecite] = ACTIONS(2505), + [anon_sym_BSLASHNotecite] = ACTIONS(2505), + [anon_sym_BSLASHpnotecite] = ACTIONS(2505), + [anon_sym_BSLASHPnotecite] = ACTIONS(2505), + [anon_sym_BSLASHfnotecite] = ACTIONS(2505), + [anon_sym_BSLASHlabel] = ACTIONS(2511), + [anon_sym_BSLASHref] = ACTIONS(2514), + [anon_sym_BSLASHeqref] = ACTIONS(2514), + [anon_sym_BSLASHvref] = ACTIONS(2514), + [anon_sym_BSLASHVref] = ACTIONS(2514), + [anon_sym_BSLASHautoref] = ACTIONS(2514), + [anon_sym_BSLASHpageref] = ACTIONS(2514), + [anon_sym_BSLASHcref] = ACTIONS(2514), + [anon_sym_BSLASHCref] = ACTIONS(2514), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2517), + [anon_sym_BSLASHnamecref] = ACTIONS(2514), + [anon_sym_BSLASHnameCref] = ACTIONS(2514), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2514), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2514), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2514), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2514), + [anon_sym_BSLASHlabelcref] = ACTIONS(2514), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2514), + [anon_sym_BSLASHcrefrange] = ACTIONS(2520), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2523), + [anon_sym_BSLASHCrefrange] = ACTIONS(2520), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2523), + [anon_sym_BSLASHnewlabel] = ACTIONS(2526), + [anon_sym_BSLASHnewcommand] = ACTIONS(2529), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2532), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2529), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2532), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2529), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2532), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2529), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2532), + [anon_sym_BSLASHdef] = ACTIONS(2535), + [anon_sym_BSLASHlet] = ACTIONS(2538), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2544), + [anon_sym_BSLASHgls] = ACTIONS(2547), + [anon_sym_BSLASHGls] = ACTIONS(2547), + [anon_sym_BSLASHGLS] = ACTIONS(2547), + [anon_sym_BSLASHglspl] = ACTIONS(2547), + [anon_sym_BSLASHGlspl] = ACTIONS(2547), + [anon_sym_BSLASHGLSpl] = ACTIONS(2547), + [anon_sym_BSLASHglsdisp] = ACTIONS(2547), + [anon_sym_BSLASHglslink] = ACTIONS(2547), + [anon_sym_BSLASHglstext] = ACTIONS(2547), + [anon_sym_BSLASHGlstext] = ACTIONS(2547), + [anon_sym_BSLASHGLStext] = ACTIONS(2547), + [anon_sym_BSLASHglsfirst] = ACTIONS(2547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2547), + [anon_sym_BSLASHglsplural] = ACTIONS(2547), + [anon_sym_BSLASHGlsplural] = ACTIONS(2547), + [anon_sym_BSLASHGLSplural] = ACTIONS(2547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2547), + [anon_sym_BSLASHglsname] = ACTIONS(2547), + [anon_sym_BSLASHGlsname] = ACTIONS(2547), + [anon_sym_BSLASHGLSname] = ACTIONS(2547), + [anon_sym_BSLASHglssymbol] = ACTIONS(2547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2547), + [anon_sym_BSLASHglsdesc] = ACTIONS(2547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2547), + [anon_sym_BSLASHglsuseri] = ACTIONS(2547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2547), + [anon_sym_BSLASHglsuserii] = ACTIONS(2547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2547), + [anon_sym_BSLASHglsuserv] = ACTIONS(2547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2547), + [anon_sym_BSLASHglsuservi] = ACTIONS(2547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2547), + [anon_sym_BSLASHnewacronym] = ACTIONS(2550), + [anon_sym_BSLASHacrshort] = ACTIONS(2553), + [anon_sym_BSLASHAcrshort] = ACTIONS(2553), + [anon_sym_BSLASHACRshort] = ACTIONS(2553), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2553), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2553), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2553), + [anon_sym_BSLASHacrlong] = ACTIONS(2553), + [anon_sym_BSLASHAcrlong] = ACTIONS(2553), + [anon_sym_BSLASHACRlong] = ACTIONS(2553), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2553), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2553), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2553), + [anon_sym_BSLASHacrfull] = ACTIONS(2553), + [anon_sym_BSLASHAcrfull] = ACTIONS(2553), + [anon_sym_BSLASHACRfull] = ACTIONS(2553), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2553), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2553), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2553), + [anon_sym_BSLASHacs] = ACTIONS(2553), + [anon_sym_BSLASHAcs] = ACTIONS(2553), + [anon_sym_BSLASHacsp] = ACTIONS(2553), + [anon_sym_BSLASHAcsp] = ACTIONS(2553), + [anon_sym_BSLASHacl] = ACTIONS(2553), + [anon_sym_BSLASHAcl] = ACTIONS(2553), + [anon_sym_BSLASHaclp] = ACTIONS(2553), + [anon_sym_BSLASHAclp] = ACTIONS(2553), + [anon_sym_BSLASHacf] = ACTIONS(2553), + [anon_sym_BSLASHAcf] = ACTIONS(2553), + [anon_sym_BSLASHacfp] = ACTIONS(2553), + [anon_sym_BSLASHAcfp] = ACTIONS(2553), + [anon_sym_BSLASHac] = ACTIONS(2553), + [anon_sym_BSLASHAc] = ACTIONS(2553), + [anon_sym_BSLASHacp] = ACTIONS(2553), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2553), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2553), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2553), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2553), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2553), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2553), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2553), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2553), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2553), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2553), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2556), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2556), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2565), + [anon_sym_BSLASHcolor] = ACTIONS(2568), + [anon_sym_BSLASHcolorbox] = ACTIONS(2568), + [anon_sym_BSLASHtextcolor] = ACTIONS(2568), + [anon_sym_BSLASHpagecolor] = ACTIONS(2568), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2571), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2571), + [anon_sym_BSLASHtext] = ACTIONS(2574), + [anon_sym_BSLASHintertext] = ACTIONS(2574), + [anon_sym_shortintertext] = ACTIONS(2574), }, [206] = { [sym_block_comment] = STATE(206), @@ -89240,276 +89672,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(206), [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(2540), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_RBRACK] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(2546), - [anon_sym_BSLASHpart] = ACTIONS(1990), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddpart] = ACTIONS(1990), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), - [anon_sym_BSLASHchapter] = ACTIONS(1990), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddchap] = ACTIONS(1990), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsection] = ACTIONS(1990), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHaddsec] = ACTIONS(1990), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), - [anon_sym_BSLASHparagraph] = ACTIONS(1990), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), - [anon_sym_BSLASHitem] = ACTIONS(1990), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(2549), - [sym_word] = ACTIONS(2552), - [sym_placeholder] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym__] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_COLON] = ACTIONS(2558), - [anon_sym_SQUOTE] = ACTIONS(2558), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2561), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2561), - [anon_sym_DOLLAR] = ACTIONS(2564), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2567), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1979), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2570), - [anon_sym_BSLASHbegin] = ACTIONS(2016), - [anon_sym_BSLASHusepackage] = ACTIONS(2573), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2573), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2576), - [anon_sym_BSLASHinclude] = ACTIONS(2579), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2579), - [anon_sym_BSLASHinput] = ACTIONS(2579), - [anon_sym_BSLASHsubfile] = ACTIONS(2579), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2582), - [anon_sym_BSLASHbibliography] = ACTIONS(2585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2588), - [anon_sym_BSLASHincludesvg] = ACTIONS(2591), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2594), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2597), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2597), - [anon_sym_BSLASHimport] = ACTIONS(2600), - [anon_sym_BSLASHsubimport] = ACTIONS(2600), - [anon_sym_BSLASHinputfrom] = ACTIONS(2600), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2600), - [anon_sym_BSLASHincludefrom] = ACTIONS(2600), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2600), - [anon_sym_BSLASHcaption] = ACTIONS(2603), - [anon_sym_BSLASHcite] = ACTIONS(2606), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2609), - [anon_sym_BSLASHCite] = ACTIONS(2606), - [anon_sym_BSLASHnocite] = ACTIONS(2606), - [anon_sym_BSLASHcitet] = ACTIONS(2606), - [anon_sym_BSLASHcitep] = ACTIONS(2606), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2609), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2609), - [anon_sym_BSLASHciteauthor] = ACTIONS(2606), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2609), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2606), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2609), - [anon_sym_BSLASHcitetitle] = ACTIONS(2606), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2609), - [anon_sym_BSLASHciteyear] = ACTIONS(2606), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2609), - [anon_sym_BSLASHcitedate] = ACTIONS(2606), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2609), - [anon_sym_BSLASHciteurl] = ACTIONS(2606), - [anon_sym_BSLASHfullcite] = ACTIONS(2606), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2606), - [anon_sym_BSLASHcitealt] = ACTIONS(2606), - [anon_sym_BSLASHcitealp] = ACTIONS(2606), - [anon_sym_BSLASHcitetext] = ACTIONS(2606), - [anon_sym_BSLASHparencite] = ACTIONS(2606), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2609), - [anon_sym_BSLASHParencite] = ACTIONS(2606), - [anon_sym_BSLASHfootcite] = ACTIONS(2606), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2606), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2606), - [anon_sym_BSLASHtextcite] = ACTIONS(2606), - [anon_sym_BSLASHTextcite] = ACTIONS(2606), - [anon_sym_BSLASHsmartcite] = ACTIONS(2606), - [anon_sym_BSLASHSmartcite] = ACTIONS(2606), - [anon_sym_BSLASHsupercite] = ACTIONS(2606), - [anon_sym_BSLASHautocite] = ACTIONS(2606), - [anon_sym_BSLASHAutocite] = ACTIONS(2606), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2609), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2609), - [anon_sym_BSLASHvolcite] = ACTIONS(2606), - [anon_sym_BSLASHVolcite] = ACTIONS(2606), - [anon_sym_BSLASHpvolcite] = ACTIONS(2606), - [anon_sym_BSLASHPvolcite] = ACTIONS(2606), - [anon_sym_BSLASHfvolcite] = ACTIONS(2606), - [anon_sym_BSLASHftvolcite] = ACTIONS(2606), - [anon_sym_BSLASHsvolcite] = ACTIONS(2606), - [anon_sym_BSLASHSvolcite] = ACTIONS(2606), - [anon_sym_BSLASHtvolcite] = ACTIONS(2606), - [anon_sym_BSLASHTvolcite] = ACTIONS(2606), - [anon_sym_BSLASHavolcite] = ACTIONS(2606), - [anon_sym_BSLASHAvolcite] = ACTIONS(2606), - [anon_sym_BSLASHnotecite] = ACTIONS(2606), - [anon_sym_BSLASHNotecite] = ACTIONS(2606), - [anon_sym_BSLASHpnotecite] = ACTIONS(2606), - [anon_sym_BSLASHPnotecite] = ACTIONS(2606), - [anon_sym_BSLASHfnotecite] = ACTIONS(2606), - [anon_sym_BSLASHlabel] = ACTIONS(2612), - [anon_sym_BSLASHref] = ACTIONS(2615), - [anon_sym_BSLASHeqref] = ACTIONS(2615), - [anon_sym_BSLASHvref] = ACTIONS(2615), - [anon_sym_BSLASHVref] = ACTIONS(2615), - [anon_sym_BSLASHautoref] = ACTIONS(2615), - [anon_sym_BSLASHpageref] = ACTIONS(2615), - [anon_sym_BSLASHcref] = ACTIONS(2615), - [anon_sym_BSLASHCref] = ACTIONS(2615), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2618), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2618), - [anon_sym_BSLASHnamecref] = ACTIONS(2615), - [anon_sym_BSLASHnameCref] = ACTIONS(2615), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2615), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2615), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2615), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2615), - [anon_sym_BSLASHlabelcref] = ACTIONS(2615), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2615), - [anon_sym_BSLASHcrefrange] = ACTIONS(2621), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2624), - [anon_sym_BSLASHCrefrange] = ACTIONS(2621), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2624), - [anon_sym_BSLASHnewlabel] = ACTIONS(2627), - [anon_sym_BSLASHnewcommand] = ACTIONS(2630), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2633), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2630), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2633), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2630), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2633), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2630), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2633), - [anon_sym_BSLASHdef] = ACTIONS(2636), - [anon_sym_BSLASHlet] = ACTIONS(2639), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2642), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2645), - [anon_sym_BSLASHgls] = ACTIONS(2648), - [anon_sym_BSLASHGls] = ACTIONS(2648), - [anon_sym_BSLASHGLS] = ACTIONS(2648), - [anon_sym_BSLASHglspl] = ACTIONS(2648), - [anon_sym_BSLASHGlspl] = ACTIONS(2648), - [anon_sym_BSLASHGLSpl] = ACTIONS(2648), - [anon_sym_BSLASHglsdisp] = ACTIONS(2648), - [anon_sym_BSLASHglslink] = ACTIONS(2648), - [anon_sym_BSLASHglstext] = ACTIONS(2648), - [anon_sym_BSLASHGlstext] = ACTIONS(2648), - [anon_sym_BSLASHGLStext] = ACTIONS(2648), - [anon_sym_BSLASHglsfirst] = ACTIONS(2648), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2648), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2648), - [anon_sym_BSLASHglsplural] = ACTIONS(2648), - [anon_sym_BSLASHGlsplural] = ACTIONS(2648), - [anon_sym_BSLASHGLSplural] = ACTIONS(2648), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2648), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2648), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2648), - [anon_sym_BSLASHglsname] = ACTIONS(2648), - [anon_sym_BSLASHGlsname] = ACTIONS(2648), - [anon_sym_BSLASHGLSname] = ACTIONS(2648), - [anon_sym_BSLASHglssymbol] = ACTIONS(2648), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2648), - [anon_sym_BSLASHglsdesc] = ACTIONS(2648), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2648), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2648), - [anon_sym_BSLASHglsuseri] = ACTIONS(2648), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2648), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2648), - [anon_sym_BSLASHglsuserii] = ACTIONS(2648), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2648), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2648), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2648), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2648), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2648), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2648), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2648), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2648), - [anon_sym_BSLASHglsuserv] = ACTIONS(2648), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2648), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2648), - [anon_sym_BSLASHglsuservi] = ACTIONS(2648), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2648), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2648), - [anon_sym_BSLASHnewacronym] = ACTIONS(2651), - [anon_sym_BSLASHacrshort] = ACTIONS(2654), - [anon_sym_BSLASHAcrshort] = ACTIONS(2654), - [anon_sym_BSLASHACRshort] = ACTIONS(2654), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2654), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2654), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2654), - [anon_sym_BSLASHacrlong] = ACTIONS(2654), - [anon_sym_BSLASHAcrlong] = ACTIONS(2654), - [anon_sym_BSLASHACRlong] = ACTIONS(2654), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2654), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2654), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2654), - [anon_sym_BSLASHacrfull] = ACTIONS(2654), - [anon_sym_BSLASHAcrfull] = ACTIONS(2654), - [anon_sym_BSLASHACRfull] = ACTIONS(2654), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2654), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2654), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2654), - [anon_sym_BSLASHacs] = ACTIONS(2654), - [anon_sym_BSLASHAcs] = ACTIONS(2654), - [anon_sym_BSLASHacsp] = ACTIONS(2654), - [anon_sym_BSLASHAcsp] = ACTIONS(2654), - [anon_sym_BSLASHacl] = ACTIONS(2654), - [anon_sym_BSLASHAcl] = ACTIONS(2654), - [anon_sym_BSLASHaclp] = ACTIONS(2654), - [anon_sym_BSLASHAclp] = ACTIONS(2654), - [anon_sym_BSLASHacf] = ACTIONS(2654), - [anon_sym_BSLASHAcf] = ACTIONS(2654), - [anon_sym_BSLASHacfp] = ACTIONS(2654), - [anon_sym_BSLASHAcfp] = ACTIONS(2654), - [anon_sym_BSLASHac] = ACTIONS(2654), - [anon_sym_BSLASHAc] = ACTIONS(2654), - [anon_sym_BSLASHacp] = ACTIONS(2654), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2654), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2654), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2654), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2654), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2654), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2654), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2654), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2654), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2654), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2654), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2657), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2657), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2660), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2663), - [anon_sym_BSLASHcolor] = ACTIONS(2666), - [anon_sym_BSLASHcolorbox] = ACTIONS(2666), - [anon_sym_BSLASHtextcolor] = ACTIONS(2666), - [anon_sym_BSLASHpagecolor] = ACTIONS(2666), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2669), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2669), - [anon_sym_BSLASHtext] = ACTIONS(2672), - [anon_sym_BSLASHintertext] = ACTIONS(2672), - [anon_sym_shortintertext] = ACTIONS(2672), + [sym_command_name] = ACTIONS(2577), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_RBRACK] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_BSLASHpart] = ACTIONS(2015), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddpart] = ACTIONS(2015), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2004), + [anon_sym_BSLASHchapter] = ACTIONS(2015), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddchap] = ACTIONS(2015), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsection] = ACTIONS(2015), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHaddsec] = ACTIONS(2015), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2004), + [anon_sym_BSLASHparagraph] = ACTIONS(2015), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2004), + [anon_sym_BSLASHitem] = ACTIONS(2015), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2586), + [sym_word] = ACTIONS(2589), + [sym_placeholder] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_SLASH] = ACTIONS(2595), + [anon_sym_CARET] = ACTIONS(2595), + [anon_sym__] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_GT] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2598), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2598), + [anon_sym_DOLLAR] = ACTIONS(2601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2604), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2004), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2607), + [anon_sym_BSLASHbegin] = ACTIONS(2041), + [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_BSLASHnewenvironment] = ACTIONS(2679), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2682), + [anon_sym_BSLASHgls] = ACTIONS(2685), + [anon_sym_BSLASHGls] = ACTIONS(2685), + [anon_sym_BSLASHGLS] = ACTIONS(2685), + [anon_sym_BSLASHglspl] = ACTIONS(2685), + [anon_sym_BSLASHGlspl] = ACTIONS(2685), + [anon_sym_BSLASHGLSpl] = ACTIONS(2685), + [anon_sym_BSLASHglsdisp] = ACTIONS(2685), + [anon_sym_BSLASHglslink] = ACTIONS(2685), + [anon_sym_BSLASHglstext] = ACTIONS(2685), + [anon_sym_BSLASHGlstext] = ACTIONS(2685), + [anon_sym_BSLASHGLStext] = ACTIONS(2685), + [anon_sym_BSLASHglsfirst] = ACTIONS(2685), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2685), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2685), + [anon_sym_BSLASHglsplural] = ACTIONS(2685), + [anon_sym_BSLASHGlsplural] = ACTIONS(2685), + [anon_sym_BSLASHGLSplural] = ACTIONS(2685), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2685), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2685), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2685), + [anon_sym_BSLASHglsname] = ACTIONS(2685), + [anon_sym_BSLASHGlsname] = ACTIONS(2685), + [anon_sym_BSLASHGLSname] = ACTIONS(2685), + [anon_sym_BSLASHglssymbol] = ACTIONS(2685), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2685), + [anon_sym_BSLASHglsdesc] = ACTIONS(2685), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2685), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2685), + [anon_sym_BSLASHglsuseri] = ACTIONS(2685), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2685), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2685), + [anon_sym_BSLASHglsuserii] = ACTIONS(2685), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2685), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2685), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2685), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2685), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2685), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2685), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2685), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2685), + [anon_sym_BSLASHglsuserv] = ACTIONS(2685), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2685), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2685), + [anon_sym_BSLASHglsuservi] = ACTIONS(2685), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2685), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2685), + [anon_sym_BSLASHnewacronym] = ACTIONS(2688), + [anon_sym_BSLASHacrshort] = ACTIONS(2691), + [anon_sym_BSLASHAcrshort] = ACTIONS(2691), + [anon_sym_BSLASHACRshort] = ACTIONS(2691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2691), + [anon_sym_BSLASHacrlong] = ACTIONS(2691), + [anon_sym_BSLASHAcrlong] = ACTIONS(2691), + [anon_sym_BSLASHACRlong] = ACTIONS(2691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2691), + [anon_sym_BSLASHacrfull] = ACTIONS(2691), + [anon_sym_BSLASHAcrfull] = ACTIONS(2691), + [anon_sym_BSLASHACRfull] = ACTIONS(2691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2691), + [anon_sym_BSLASHacs] = ACTIONS(2691), + [anon_sym_BSLASHAcs] = ACTIONS(2691), + [anon_sym_BSLASHacsp] = ACTIONS(2691), + [anon_sym_BSLASHAcsp] = ACTIONS(2691), + [anon_sym_BSLASHacl] = ACTIONS(2691), + [anon_sym_BSLASHAcl] = ACTIONS(2691), + [anon_sym_BSLASHaclp] = ACTIONS(2691), + [anon_sym_BSLASHAclp] = ACTIONS(2691), + [anon_sym_BSLASHacf] = ACTIONS(2691), + [anon_sym_BSLASHAcf] = ACTIONS(2691), + [anon_sym_BSLASHacfp] = ACTIONS(2691), + [anon_sym_BSLASHAcfp] = ACTIONS(2691), + [anon_sym_BSLASHac] = ACTIONS(2691), + [anon_sym_BSLASHAc] = ACTIONS(2691), + [anon_sym_BSLASHacp] = ACTIONS(2691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2694), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2697), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2694), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2697), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2700), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2703), + [anon_sym_BSLASHcolor] = ACTIONS(2706), + [anon_sym_BSLASHcolorbox] = ACTIONS(2706), + [anon_sym_BSLASHtextcolor] = ACTIONS(2706), + [anon_sym_BSLASHpagecolor] = ACTIONS(2706), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2709), + [anon_sym_BSLASHtext] = ACTIONS(2712), + [anon_sym_BSLASHintertext] = ACTIONS(2712), + [anon_sym_shortintertext] = ACTIONS(2712), }, [207] = { [sym_block_comment] = STATE(782), @@ -89546,41 +89980,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(782), [sym_tikz_library_import] = STATE(782), [aux_sym_text_repeat1] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(2675), + [ts_builtin_sym_end] = ACTIONS(2715), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_BSLASHpart] = ACTIONS(2677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddpart] = ACTIONS(2677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHchapter] = ACTIONS(2677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddchap] = ACTIONS(2677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsection] = ACTIONS(2677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddsec] = ACTIONS(2677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHparagraph] = ACTIONS(2677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHitem] = ACTIONS(2677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_BSLASHpart] = ACTIONS(2717), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddpart] = ACTIONS(2717), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHchapter] = ACTIONS(2717), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddchap] = ACTIONS(2717), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsection] = ACTIONS(2717), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddsec] = ACTIONS(2717), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHparagraph] = ACTIONS(2717), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2717), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHitem] = ACTIONS(2717), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -89595,12 +90029,12 @@ 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(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASHbegin] = ACTIONS(2677), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASHbegin] = ACTIONS(2717), [anon_sym_BSLASHusepackage] = ACTIONS(63), [anon_sym_BSLASHRequirePackage] = ACTIONS(63), [anon_sym_BSLASHdocumentclass] = ACTIONS(65), @@ -89805,18 +90239,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), [anon_sym_BSLASHnewtheorem] = ACTIONS(119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(121), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), - [anon_sym_BSLASHcolor] = ACTIONS(125), - [anon_sym_BSLASHcolorbox] = ACTIONS(125), - [anon_sym_BSLASHtextcolor] = ACTIONS(125), - [anon_sym_BSLASHpagecolor] = ACTIONS(125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(125), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(129), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [208] = { [sym_block_comment] = STATE(782), @@ -89853,277 +90289,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(782), [sym_tikz_library_import] = STATE(782), [aux_sym_text_repeat1] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_command_name] = ACTIONS(2681), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_BSLASHpart] = ACTIONS(2687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddpart] = ACTIONS(2687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHchapter] = ACTIONS(2687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddchap] = ACTIONS(2687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsection] = ACTIONS(2687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddsec] = ACTIONS(2687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHparagraph] = ACTIONS(2687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHitem] = ACTIONS(2687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(2689), - [sym_placeholder] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2695), - [anon_sym_SLASH] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2695), - [anon_sym__] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2695), - [anon_sym_GT] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_COLON] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASHbegin] = ACTIONS(2687), - [anon_sym_BSLASHusepackage] = ACTIONS(2698), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2698), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2701), - [anon_sym_BSLASHinclude] = ACTIONS(2704), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2704), - [anon_sym_BSLASHinput] = ACTIONS(2704), - [anon_sym_BSLASHsubfile] = ACTIONS(2704), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2707), - [anon_sym_BSLASHbibliography] = ACTIONS(2710), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2713), - [anon_sym_BSLASHincludesvg] = ACTIONS(2716), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2722), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2722), - [anon_sym_BSLASHimport] = ACTIONS(2725), - [anon_sym_BSLASHsubimport] = ACTIONS(2725), - [anon_sym_BSLASHinputfrom] = ACTIONS(2725), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2725), - [anon_sym_BSLASHincludefrom] = ACTIONS(2725), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2725), - [anon_sym_BSLASHcaption] = ACTIONS(2728), - [anon_sym_BSLASHcite] = ACTIONS(2731), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2734), - [anon_sym_BSLASHCite] = ACTIONS(2731), - [anon_sym_BSLASHnocite] = ACTIONS(2731), - [anon_sym_BSLASHcitet] = ACTIONS(2731), - [anon_sym_BSLASHcitep] = ACTIONS(2731), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2734), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2734), - [anon_sym_BSLASHciteauthor] = ACTIONS(2731), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2734), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2731), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2734), - [anon_sym_BSLASHcitetitle] = ACTIONS(2731), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2734), - [anon_sym_BSLASHciteyear] = ACTIONS(2731), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2734), - [anon_sym_BSLASHcitedate] = ACTIONS(2731), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2734), - [anon_sym_BSLASHciteurl] = ACTIONS(2731), - [anon_sym_BSLASHfullcite] = ACTIONS(2731), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2731), - [anon_sym_BSLASHcitealt] = ACTIONS(2731), - [anon_sym_BSLASHcitealp] = ACTIONS(2731), - [anon_sym_BSLASHcitetext] = ACTIONS(2731), - [anon_sym_BSLASHparencite] = ACTIONS(2731), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2734), - [anon_sym_BSLASHParencite] = ACTIONS(2731), - [anon_sym_BSLASHfootcite] = ACTIONS(2731), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2731), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2731), - [anon_sym_BSLASHtextcite] = ACTIONS(2731), - [anon_sym_BSLASHTextcite] = ACTIONS(2731), - [anon_sym_BSLASHsmartcite] = ACTIONS(2731), - [anon_sym_BSLASHSmartcite] = ACTIONS(2731), - [anon_sym_BSLASHsupercite] = ACTIONS(2731), - [anon_sym_BSLASHautocite] = ACTIONS(2731), - [anon_sym_BSLASHAutocite] = ACTIONS(2731), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2734), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2734), - [anon_sym_BSLASHvolcite] = ACTIONS(2731), - [anon_sym_BSLASHVolcite] = ACTIONS(2731), - [anon_sym_BSLASHpvolcite] = ACTIONS(2731), - [anon_sym_BSLASHPvolcite] = ACTIONS(2731), - [anon_sym_BSLASHfvolcite] = ACTIONS(2731), - [anon_sym_BSLASHftvolcite] = ACTIONS(2731), - [anon_sym_BSLASHsvolcite] = ACTIONS(2731), - [anon_sym_BSLASHSvolcite] = ACTIONS(2731), - [anon_sym_BSLASHtvolcite] = ACTIONS(2731), - [anon_sym_BSLASHTvolcite] = ACTIONS(2731), - [anon_sym_BSLASHavolcite] = ACTIONS(2731), - [anon_sym_BSLASHAvolcite] = ACTIONS(2731), - [anon_sym_BSLASHnotecite] = ACTIONS(2731), - [anon_sym_BSLASHNotecite] = ACTIONS(2731), - [anon_sym_BSLASHpnotecite] = ACTIONS(2731), - [anon_sym_BSLASHPnotecite] = ACTIONS(2731), - [anon_sym_BSLASHfnotecite] = ACTIONS(2731), - [anon_sym_BSLASHlabel] = ACTIONS(2737), - [anon_sym_BSLASHref] = ACTIONS(2740), - [anon_sym_BSLASHeqref] = ACTIONS(2740), - [anon_sym_BSLASHvref] = ACTIONS(2740), - [anon_sym_BSLASHVref] = ACTIONS(2740), - [anon_sym_BSLASHautoref] = ACTIONS(2740), - [anon_sym_BSLASHpageref] = ACTIONS(2740), - [anon_sym_BSLASHcref] = ACTIONS(2740), - [anon_sym_BSLASHCref] = ACTIONS(2740), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2743), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2743), - [anon_sym_BSLASHnamecref] = ACTIONS(2740), - [anon_sym_BSLASHnameCref] = ACTIONS(2740), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2740), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2740), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2740), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2740), - [anon_sym_BSLASHlabelcref] = ACTIONS(2740), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2740), - [anon_sym_BSLASHcrefrange] = ACTIONS(2746), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2749), - [anon_sym_BSLASHCrefrange] = ACTIONS(2746), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2749), - [anon_sym_BSLASHnewlabel] = ACTIONS(2752), - [anon_sym_BSLASHnewcommand] = ACTIONS(2755), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2758), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2755), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2758), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2755), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2758), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2755), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2758), - [anon_sym_BSLASHdef] = ACTIONS(2761), - [anon_sym_BSLASHlet] = ACTIONS(2764), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2767), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2770), - [anon_sym_BSLASHgls] = ACTIONS(2773), - [anon_sym_BSLASHGls] = ACTIONS(2773), - [anon_sym_BSLASHGLS] = ACTIONS(2773), - [anon_sym_BSLASHglspl] = ACTIONS(2773), - [anon_sym_BSLASHGlspl] = ACTIONS(2773), - [anon_sym_BSLASHGLSpl] = ACTIONS(2773), - [anon_sym_BSLASHglsdisp] = ACTIONS(2773), - [anon_sym_BSLASHglslink] = ACTIONS(2773), - [anon_sym_BSLASHglstext] = ACTIONS(2773), - [anon_sym_BSLASHGlstext] = ACTIONS(2773), - [anon_sym_BSLASHGLStext] = ACTIONS(2773), - [anon_sym_BSLASHglsfirst] = ACTIONS(2773), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2773), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2773), - [anon_sym_BSLASHglsplural] = ACTIONS(2773), - [anon_sym_BSLASHGlsplural] = ACTIONS(2773), - [anon_sym_BSLASHGLSplural] = ACTIONS(2773), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2773), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2773), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2773), - [anon_sym_BSLASHglsname] = ACTIONS(2773), - [anon_sym_BSLASHGlsname] = ACTIONS(2773), - [anon_sym_BSLASHGLSname] = ACTIONS(2773), - [anon_sym_BSLASHglssymbol] = ACTIONS(2773), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2773), - [anon_sym_BSLASHglsdesc] = ACTIONS(2773), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2773), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2773), - [anon_sym_BSLASHglsuseri] = ACTIONS(2773), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2773), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2773), - [anon_sym_BSLASHglsuserii] = ACTIONS(2773), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2773), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2773), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2773), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2773), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2773), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2773), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2773), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2773), - [anon_sym_BSLASHglsuserv] = ACTIONS(2773), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2773), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2773), - [anon_sym_BSLASHglsuservi] = ACTIONS(2773), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2773), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2773), - [anon_sym_BSLASHnewacronym] = ACTIONS(2776), - [anon_sym_BSLASHacrshort] = ACTIONS(2779), - [anon_sym_BSLASHAcrshort] = ACTIONS(2779), - [anon_sym_BSLASHACRshort] = ACTIONS(2779), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2779), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2779), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2779), - [anon_sym_BSLASHacrlong] = ACTIONS(2779), - [anon_sym_BSLASHAcrlong] = ACTIONS(2779), - [anon_sym_BSLASHACRlong] = ACTIONS(2779), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2779), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2779), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2779), - [anon_sym_BSLASHacrfull] = ACTIONS(2779), - [anon_sym_BSLASHAcrfull] = ACTIONS(2779), - [anon_sym_BSLASHACRfull] = ACTIONS(2779), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2779), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2779), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2779), - [anon_sym_BSLASHacs] = ACTIONS(2779), - [anon_sym_BSLASHAcs] = ACTIONS(2779), - [anon_sym_BSLASHacsp] = ACTIONS(2779), - [anon_sym_BSLASHAcsp] = ACTIONS(2779), - [anon_sym_BSLASHacl] = ACTIONS(2779), - [anon_sym_BSLASHAcl] = ACTIONS(2779), - [anon_sym_BSLASHaclp] = ACTIONS(2779), - [anon_sym_BSLASHAclp] = ACTIONS(2779), - [anon_sym_BSLASHacf] = ACTIONS(2779), - [anon_sym_BSLASHAcf] = ACTIONS(2779), - [anon_sym_BSLASHacfp] = ACTIONS(2779), - [anon_sym_BSLASHAcfp] = ACTIONS(2779), - [anon_sym_BSLASHac] = ACTIONS(2779), - [anon_sym_BSLASHAc] = ACTIONS(2779), - [anon_sym_BSLASHacp] = ACTIONS(2779), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2779), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2779), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2779), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2779), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2779), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2779), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2779), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2779), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2779), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2779), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2782), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2782), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2788), - [anon_sym_BSLASHcolor] = ACTIONS(2791), - [anon_sym_BSLASHcolorbox] = ACTIONS(2791), - [anon_sym_BSLASHtextcolor] = ACTIONS(2791), - [anon_sym_BSLASHpagecolor] = ACTIONS(2791), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2794), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2794), - [anon_sym_BSLASHtext] = ACTIONS(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_command_name] = ACTIONS(2721), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_BSLASHpart] = ACTIONS(2727), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddpart] = ACTIONS(2727), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHchapter] = ACTIONS(2727), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddchap] = ACTIONS(2727), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsection] = ACTIONS(2727), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddsec] = ACTIONS(2727), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHparagraph] = ACTIONS(2727), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2727), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHitem] = ACTIONS(2727), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(2729), + [sym_placeholder] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2735), + [anon_sym_CARET] = ACTIONS(2735), + [anon_sym__] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_COLON] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(2727), + [anon_sym_BSLASHusepackage] = ACTIONS(2738), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2738), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2741), + [anon_sym_BSLASHinclude] = ACTIONS(2744), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2744), + [anon_sym_BSLASHinput] = ACTIONS(2744), + [anon_sym_BSLASHsubfile] = ACTIONS(2744), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2747), + [anon_sym_BSLASHbibliography] = ACTIONS(2750), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2753), + [anon_sym_BSLASHincludesvg] = ACTIONS(2756), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2759), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2762), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2762), + [anon_sym_BSLASHimport] = ACTIONS(2765), + [anon_sym_BSLASHsubimport] = ACTIONS(2765), + [anon_sym_BSLASHinputfrom] = ACTIONS(2765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2765), + [anon_sym_BSLASHincludefrom] = ACTIONS(2765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2765), + [anon_sym_BSLASHcaption] = ACTIONS(2768), + [anon_sym_BSLASHcite] = ACTIONS(2771), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2774), + [anon_sym_BSLASHCite] = ACTIONS(2771), + [anon_sym_BSLASHnocite] = ACTIONS(2771), + [anon_sym_BSLASHcitet] = ACTIONS(2771), + [anon_sym_BSLASHcitep] = ACTIONS(2771), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2774), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2774), + [anon_sym_BSLASHciteauthor] = ACTIONS(2771), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2774), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2771), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2774), + [anon_sym_BSLASHcitetitle] = ACTIONS(2771), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2774), + [anon_sym_BSLASHciteyear] = ACTIONS(2771), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2774), + [anon_sym_BSLASHcitedate] = ACTIONS(2771), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2774), + [anon_sym_BSLASHciteurl] = ACTIONS(2771), + [anon_sym_BSLASHfullcite] = ACTIONS(2771), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2771), + [anon_sym_BSLASHcitealt] = ACTIONS(2771), + [anon_sym_BSLASHcitealp] = ACTIONS(2771), + [anon_sym_BSLASHcitetext] = ACTIONS(2771), + [anon_sym_BSLASHparencite] = ACTIONS(2771), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2774), + [anon_sym_BSLASHParencite] = ACTIONS(2771), + [anon_sym_BSLASHfootcite] = ACTIONS(2771), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2771), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2771), + [anon_sym_BSLASHtextcite] = ACTIONS(2771), + [anon_sym_BSLASHTextcite] = ACTIONS(2771), + [anon_sym_BSLASHsmartcite] = ACTIONS(2771), + [anon_sym_BSLASHSmartcite] = ACTIONS(2771), + [anon_sym_BSLASHsupercite] = ACTIONS(2771), + [anon_sym_BSLASHautocite] = ACTIONS(2771), + [anon_sym_BSLASHAutocite] = ACTIONS(2771), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2774), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2774), + [anon_sym_BSLASHvolcite] = ACTIONS(2771), + [anon_sym_BSLASHVolcite] = ACTIONS(2771), + [anon_sym_BSLASHpvolcite] = ACTIONS(2771), + [anon_sym_BSLASHPvolcite] = ACTIONS(2771), + [anon_sym_BSLASHfvolcite] = ACTIONS(2771), + [anon_sym_BSLASHftvolcite] = ACTIONS(2771), + [anon_sym_BSLASHsvolcite] = ACTIONS(2771), + [anon_sym_BSLASHSvolcite] = ACTIONS(2771), + [anon_sym_BSLASHtvolcite] = ACTIONS(2771), + [anon_sym_BSLASHTvolcite] = ACTIONS(2771), + [anon_sym_BSLASHavolcite] = ACTIONS(2771), + [anon_sym_BSLASHAvolcite] = ACTIONS(2771), + [anon_sym_BSLASHnotecite] = ACTIONS(2771), + [anon_sym_BSLASHNotecite] = ACTIONS(2771), + [anon_sym_BSLASHpnotecite] = ACTIONS(2771), + [anon_sym_BSLASHPnotecite] = ACTIONS(2771), + [anon_sym_BSLASHfnotecite] = ACTIONS(2771), + [anon_sym_BSLASHlabel] = ACTIONS(2777), + [anon_sym_BSLASHref] = ACTIONS(2780), + [anon_sym_BSLASHeqref] = ACTIONS(2780), + [anon_sym_BSLASHvref] = ACTIONS(2780), + [anon_sym_BSLASHVref] = ACTIONS(2780), + [anon_sym_BSLASHautoref] = ACTIONS(2780), + [anon_sym_BSLASHpageref] = ACTIONS(2780), + [anon_sym_BSLASHcref] = ACTIONS(2780), + [anon_sym_BSLASHCref] = ACTIONS(2780), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2783), + [anon_sym_BSLASHnamecref] = ACTIONS(2780), + [anon_sym_BSLASHnameCref] = ACTIONS(2780), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2780), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2780), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2780), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2780), + [anon_sym_BSLASHlabelcref] = ACTIONS(2780), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2780), + [anon_sym_BSLASHcrefrange] = ACTIONS(2786), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2789), + [anon_sym_BSLASHCrefrange] = ACTIONS(2786), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2789), + [anon_sym_BSLASHnewlabel] = ACTIONS(2792), + [anon_sym_BSLASHnewcommand] = ACTIONS(2795), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2798), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2795), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2798), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2795), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2798), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2795), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2798), + [anon_sym_BSLASHdef] = ACTIONS(2801), + [anon_sym_BSLASHlet] = ACTIONS(2804), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2810), + [anon_sym_BSLASHgls] = ACTIONS(2813), + [anon_sym_BSLASHGls] = ACTIONS(2813), + [anon_sym_BSLASHGLS] = ACTIONS(2813), + [anon_sym_BSLASHglspl] = ACTIONS(2813), + [anon_sym_BSLASHGlspl] = ACTIONS(2813), + [anon_sym_BSLASHGLSpl] = ACTIONS(2813), + [anon_sym_BSLASHglsdisp] = ACTIONS(2813), + [anon_sym_BSLASHglslink] = ACTIONS(2813), + [anon_sym_BSLASHglstext] = ACTIONS(2813), + [anon_sym_BSLASHGlstext] = ACTIONS(2813), + [anon_sym_BSLASHGLStext] = ACTIONS(2813), + [anon_sym_BSLASHglsfirst] = ACTIONS(2813), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2813), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2813), + [anon_sym_BSLASHglsplural] = ACTIONS(2813), + [anon_sym_BSLASHGlsplural] = ACTIONS(2813), + [anon_sym_BSLASHGLSplural] = ACTIONS(2813), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2813), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2813), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2813), + [anon_sym_BSLASHglsname] = ACTIONS(2813), + [anon_sym_BSLASHGlsname] = ACTIONS(2813), + [anon_sym_BSLASHGLSname] = ACTIONS(2813), + [anon_sym_BSLASHglssymbol] = ACTIONS(2813), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2813), + [anon_sym_BSLASHglsdesc] = ACTIONS(2813), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2813), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2813), + [anon_sym_BSLASHglsuseri] = ACTIONS(2813), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2813), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2813), + [anon_sym_BSLASHglsuserii] = ACTIONS(2813), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2813), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2813), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2813), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2813), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2813), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2813), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2813), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2813), + [anon_sym_BSLASHglsuserv] = ACTIONS(2813), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2813), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2813), + [anon_sym_BSLASHglsuservi] = ACTIONS(2813), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2813), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2813), + [anon_sym_BSLASHnewacronym] = ACTIONS(2816), + [anon_sym_BSLASHacrshort] = ACTIONS(2819), + [anon_sym_BSLASHAcrshort] = ACTIONS(2819), + [anon_sym_BSLASHACRshort] = ACTIONS(2819), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2819), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2819), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2819), + [anon_sym_BSLASHacrlong] = ACTIONS(2819), + [anon_sym_BSLASHAcrlong] = ACTIONS(2819), + [anon_sym_BSLASHACRlong] = ACTIONS(2819), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2819), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2819), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2819), + [anon_sym_BSLASHacrfull] = ACTIONS(2819), + [anon_sym_BSLASHAcrfull] = ACTIONS(2819), + [anon_sym_BSLASHACRfull] = ACTIONS(2819), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2819), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2819), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2819), + [anon_sym_BSLASHacs] = ACTIONS(2819), + [anon_sym_BSLASHAcs] = ACTIONS(2819), + [anon_sym_BSLASHacsp] = ACTIONS(2819), + [anon_sym_BSLASHAcsp] = ACTIONS(2819), + [anon_sym_BSLASHacl] = ACTIONS(2819), + [anon_sym_BSLASHAcl] = ACTIONS(2819), + [anon_sym_BSLASHaclp] = ACTIONS(2819), + [anon_sym_BSLASHAclp] = ACTIONS(2819), + [anon_sym_BSLASHacf] = ACTIONS(2819), + [anon_sym_BSLASHAcf] = ACTIONS(2819), + [anon_sym_BSLASHacfp] = ACTIONS(2819), + [anon_sym_BSLASHAcfp] = ACTIONS(2819), + [anon_sym_BSLASHac] = ACTIONS(2819), + [anon_sym_BSLASHAc] = ACTIONS(2819), + [anon_sym_BSLASHacp] = ACTIONS(2819), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2819), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2819), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2819), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2819), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2819), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2819), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2819), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2819), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2819), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2819), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2822), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2822), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2825), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2828), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2831), + [anon_sym_BSLASHcolor] = ACTIONS(2834), + [anon_sym_BSLASHcolorbox] = ACTIONS(2834), + [anon_sym_BSLASHtextcolor] = ACTIONS(2834), + [anon_sym_BSLASHpagecolor] = ACTIONS(2834), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2837), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [209] = { [sym_block_comment] = STATE(862), @@ -90160,276 +90598,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(862), [sym_tikz_library_import] = STATE(862), [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(645), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_BSLASHpart] = ACTIONS(2677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddpart] = ACTIONS(2677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHchapter] = ACTIONS(2677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddchap] = ACTIONS(2677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsection] = ACTIONS(2677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddsec] = ACTIONS(2677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHparagraph] = ACTIONS(2677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHitem] = ACTIONS(2677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(685), - [sym_placeholder] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2675), - [anon_sym_BSLASHbegin] = ACTIONS(2677), - [anon_sym_BSLASHusepackage] = ACTIONS(701), - [anon_sym_BSLASHRequirePackage] = ACTIONS(701), - [anon_sym_BSLASHdocumentclass] = ACTIONS(703), - [anon_sym_BSLASHinclude] = ACTIONS(705), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), - [anon_sym_BSLASHinput] = ACTIONS(705), - [anon_sym_BSLASHsubfile] = ACTIONS(705), - [anon_sym_BSLASHaddbibresource] = ACTIONS(707), - [anon_sym_BSLASHbibliography] = ACTIONS(709), - [anon_sym_BSLASHincludegraphics] = ACTIONS(711), - [anon_sym_BSLASHincludesvg] = ACTIONS(713), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), - [anon_sym_BSLASHverbatiminput] = ACTIONS(717), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), - [anon_sym_BSLASHimport] = ACTIONS(719), - [anon_sym_BSLASHsubimport] = ACTIONS(719), - [anon_sym_BSLASHinputfrom] = ACTIONS(719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), - [anon_sym_BSLASHincludefrom] = ACTIONS(719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), - [anon_sym_BSLASHcaption] = ACTIONS(721), - [anon_sym_BSLASHcite] = ACTIONS(723), - [anon_sym_BSLASHcite_STAR] = ACTIONS(725), - [anon_sym_BSLASHCite] = ACTIONS(723), - [anon_sym_BSLASHnocite] = ACTIONS(723), - [anon_sym_BSLASHcitet] = ACTIONS(723), - [anon_sym_BSLASHcitep] = ACTIONS(723), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteauthor] = ACTIONS(723), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHCiteauthor] = ACTIONS(723), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitetitle] = ACTIONS(723), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteyear] = ACTIONS(723), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), - [anon_sym_BSLASHcitedate] = ACTIONS(723), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), - [anon_sym_BSLASHciteurl] = ACTIONS(723), - [anon_sym_BSLASHfullcite] = ACTIONS(723), - [anon_sym_BSLASHciteyearpar] = ACTIONS(723), - [anon_sym_BSLASHcitealt] = ACTIONS(723), - [anon_sym_BSLASHcitealp] = ACTIONS(723), - [anon_sym_BSLASHcitetext] = ACTIONS(723), - [anon_sym_BSLASHparencite] = ACTIONS(723), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), - [anon_sym_BSLASHParencite] = ACTIONS(723), - [anon_sym_BSLASHfootcite] = ACTIONS(723), - [anon_sym_BSLASHfootfullcite] = ACTIONS(723), - [anon_sym_BSLASHfootcitetext] = ACTIONS(723), - [anon_sym_BSLASHtextcite] = ACTIONS(723), - [anon_sym_BSLASHTextcite] = ACTIONS(723), - [anon_sym_BSLASHsmartcite] = ACTIONS(723), - [anon_sym_BSLASHSmartcite] = ACTIONS(723), - [anon_sym_BSLASHsupercite] = ACTIONS(723), - [anon_sym_BSLASHautocite] = ACTIONS(723), - [anon_sym_BSLASHAutocite] = ACTIONS(723), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), - [anon_sym_BSLASHvolcite] = ACTIONS(723), - [anon_sym_BSLASHVolcite] = ACTIONS(723), - [anon_sym_BSLASHpvolcite] = ACTIONS(723), - [anon_sym_BSLASHPvolcite] = ACTIONS(723), - [anon_sym_BSLASHfvolcite] = ACTIONS(723), - [anon_sym_BSLASHftvolcite] = ACTIONS(723), - [anon_sym_BSLASHsvolcite] = ACTIONS(723), - [anon_sym_BSLASHSvolcite] = ACTIONS(723), - [anon_sym_BSLASHtvolcite] = ACTIONS(723), - [anon_sym_BSLASHTvolcite] = ACTIONS(723), - [anon_sym_BSLASHavolcite] = ACTIONS(723), - [anon_sym_BSLASHAvolcite] = ACTIONS(723), - [anon_sym_BSLASHnotecite] = ACTIONS(723), - [anon_sym_BSLASHNotecite] = ACTIONS(723), - [anon_sym_BSLASHpnotecite] = ACTIONS(723), - [anon_sym_BSLASHPnotecite] = ACTIONS(723), - [anon_sym_BSLASHfnotecite] = ACTIONS(723), - [anon_sym_BSLASHlabel] = ACTIONS(727), - [anon_sym_BSLASHref] = ACTIONS(729), - [anon_sym_BSLASHeqref] = ACTIONS(729), - [anon_sym_BSLASHvref] = ACTIONS(729), - [anon_sym_BSLASHVref] = ACTIONS(729), - [anon_sym_BSLASHautoref] = ACTIONS(729), - [anon_sym_BSLASHpageref] = ACTIONS(729), - [anon_sym_BSLASHcref] = ACTIONS(729), - [anon_sym_BSLASHCref] = ACTIONS(729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(731), - [anon_sym_BSLASHnamecref] = ACTIONS(729), - [anon_sym_BSLASHnameCref] = ACTIONS(729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), - [anon_sym_BSLASHlabelcref] = ACTIONS(729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), - [anon_sym_BSLASHcrefrange] = ACTIONS(733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHCrefrange] = ACTIONS(733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), - [anon_sym_BSLASHnewlabel] = ACTIONS(737), - [anon_sym_BSLASHnewcommand] = ACTIONS(739), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHrenewcommand] = ACTIONS(739), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), - [anon_sym_BSLASHdef] = ACTIONS(743), - [anon_sym_BSLASHlet] = ACTIONS(745), - [anon_sym_BSLASHnewenvironment] = ACTIONS(747), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), - [anon_sym_BSLASHgls] = ACTIONS(751), - [anon_sym_BSLASHGls] = ACTIONS(751), - [anon_sym_BSLASHGLS] = ACTIONS(751), - [anon_sym_BSLASHglspl] = ACTIONS(751), - [anon_sym_BSLASHGlspl] = ACTIONS(751), - [anon_sym_BSLASHGLSpl] = ACTIONS(751), - [anon_sym_BSLASHglsdisp] = ACTIONS(751), - [anon_sym_BSLASHglslink] = ACTIONS(751), - [anon_sym_BSLASHglstext] = ACTIONS(751), - [anon_sym_BSLASHGlstext] = ACTIONS(751), - [anon_sym_BSLASHGLStext] = ACTIONS(751), - [anon_sym_BSLASHglsfirst] = ACTIONS(751), - [anon_sym_BSLASHGlsfirst] = ACTIONS(751), - [anon_sym_BSLASHGLSfirst] = ACTIONS(751), - [anon_sym_BSLASHglsplural] = ACTIONS(751), - [anon_sym_BSLASHGlsplural] = ACTIONS(751), - [anon_sym_BSLASHGLSplural] = ACTIONS(751), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), - [anon_sym_BSLASHglsname] = ACTIONS(751), - [anon_sym_BSLASHGlsname] = ACTIONS(751), - [anon_sym_BSLASHGLSname] = ACTIONS(751), - [anon_sym_BSLASHglssymbol] = ACTIONS(751), - [anon_sym_BSLASHGlssymbol] = ACTIONS(751), - [anon_sym_BSLASHglsdesc] = ACTIONS(751), - [anon_sym_BSLASHGlsdesc] = ACTIONS(751), - [anon_sym_BSLASHGLSdesc] = ACTIONS(751), - [anon_sym_BSLASHglsuseri] = ACTIONS(751), - [anon_sym_BSLASHGlsuseri] = ACTIONS(751), - [anon_sym_BSLASHGLSuseri] = ACTIONS(751), - [anon_sym_BSLASHglsuserii] = ACTIONS(751), - [anon_sym_BSLASHGlsuserii] = ACTIONS(751), - [anon_sym_BSLASHGLSuserii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), - [anon_sym_BSLASHglsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), - [anon_sym_BSLASHglsuserv] = ACTIONS(751), - [anon_sym_BSLASHGlsuserv] = ACTIONS(751), - [anon_sym_BSLASHGLSuserv] = ACTIONS(751), - [anon_sym_BSLASHglsuservi] = ACTIONS(751), - [anon_sym_BSLASHGlsuservi] = ACTIONS(751), - [anon_sym_BSLASHGLSuservi] = ACTIONS(751), - [anon_sym_BSLASHnewacronym] = ACTIONS(753), - [anon_sym_BSLASHacrshort] = ACTIONS(755), - [anon_sym_BSLASHAcrshort] = ACTIONS(755), - [anon_sym_BSLASHACRshort] = ACTIONS(755), - [anon_sym_BSLASHacrshortpl] = ACTIONS(755), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), - [anon_sym_BSLASHACRshortpl] = ACTIONS(755), - [anon_sym_BSLASHacrlong] = ACTIONS(755), - [anon_sym_BSLASHAcrlong] = ACTIONS(755), - [anon_sym_BSLASHACRlong] = ACTIONS(755), - [anon_sym_BSLASHacrlongpl] = ACTIONS(755), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), - [anon_sym_BSLASHACRlongpl] = ACTIONS(755), - [anon_sym_BSLASHacrfull] = ACTIONS(755), - [anon_sym_BSLASHAcrfull] = ACTIONS(755), - [anon_sym_BSLASHACRfull] = ACTIONS(755), - [anon_sym_BSLASHacrfullpl] = ACTIONS(755), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), - [anon_sym_BSLASHACRfullpl] = ACTIONS(755), - [anon_sym_BSLASHacs] = ACTIONS(755), - [anon_sym_BSLASHAcs] = ACTIONS(755), - [anon_sym_BSLASHacsp] = ACTIONS(755), - [anon_sym_BSLASHAcsp] = ACTIONS(755), - [anon_sym_BSLASHacl] = ACTIONS(755), - [anon_sym_BSLASHAcl] = ACTIONS(755), - [anon_sym_BSLASHaclp] = ACTIONS(755), - [anon_sym_BSLASHAclp] = ACTIONS(755), - [anon_sym_BSLASHacf] = ACTIONS(755), - [anon_sym_BSLASHAcf] = ACTIONS(755), - [anon_sym_BSLASHacfp] = ACTIONS(755), - [anon_sym_BSLASHAcfp] = ACTIONS(755), - [anon_sym_BSLASHac] = ACTIONS(755), - [anon_sym_BSLASHAc] = ACTIONS(755), - [anon_sym_BSLASHacp] = ACTIONS(755), - [anon_sym_BSLASHglsentrylong] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryshort] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), - [anon_sym_BSLASHnewtheorem] = ACTIONS(757), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), - [anon_sym_BSLASHdefinecolor] = ACTIONS(759), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), - [anon_sym_BSLASHcolor] = ACTIONS(763), - [anon_sym_BSLASHcolorbox] = ACTIONS(763), - [anon_sym_BSLASHtextcolor] = ACTIONS(763), - [anon_sym_BSLASHpagecolor] = ACTIONS(763), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [sym_command_name] = ACTIONS(654), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_BSLASHpart] = ACTIONS(2717), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddpart] = ACTIONS(2717), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHchapter] = ACTIONS(2717), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddchap] = ACTIONS(2717), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsection] = ACTIONS(2717), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddsec] = ACTIONS(2717), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHparagraph] = ACTIONS(2717), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2717), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHitem] = ACTIONS(2717), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(694), + [sym_placeholder] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym__] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2715), + [anon_sym_BSLASHbegin] = ACTIONS(2717), + [anon_sym_BSLASHusepackage] = ACTIONS(710), + [anon_sym_BSLASHRequirePackage] = ACTIONS(710), + [anon_sym_BSLASHdocumentclass] = ACTIONS(712), + [anon_sym_BSLASHinclude] = ACTIONS(714), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(714), + [anon_sym_BSLASHinput] = ACTIONS(714), + [anon_sym_BSLASHsubfile] = ACTIONS(714), + [anon_sym_BSLASHaddbibresource] = ACTIONS(716), + [anon_sym_BSLASHbibliography] = ACTIONS(718), + [anon_sym_BSLASHincludegraphics] = ACTIONS(720), + [anon_sym_BSLASHincludesvg] = ACTIONS(722), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(724), + [anon_sym_BSLASHverbatiminput] = ACTIONS(726), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(726), + [anon_sym_BSLASHimport] = ACTIONS(728), + [anon_sym_BSLASHsubimport] = ACTIONS(728), + [anon_sym_BSLASHinputfrom] = ACTIONS(728), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(728), + [anon_sym_BSLASHincludefrom] = ACTIONS(728), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(728), + [anon_sym_BSLASHcaption] = ACTIONS(730), + [anon_sym_BSLASHcite] = ACTIONS(732), + [anon_sym_BSLASHcite_STAR] = ACTIONS(734), + [anon_sym_BSLASHCite] = ACTIONS(732), + [anon_sym_BSLASHnocite] = ACTIONS(732), + [anon_sym_BSLASHcitet] = ACTIONS(732), + [anon_sym_BSLASHcitep] = ACTIONS(732), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteauthor] = ACTIONS(732), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(732), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitetitle] = ACTIONS(732), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteyear] = ACTIONS(732), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(734), + [anon_sym_BSLASHcitedate] = ACTIONS(732), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(734), + [anon_sym_BSLASHciteurl] = ACTIONS(732), + [anon_sym_BSLASHfullcite] = ACTIONS(732), + [anon_sym_BSLASHciteyearpar] = ACTIONS(732), + [anon_sym_BSLASHcitealt] = ACTIONS(732), + [anon_sym_BSLASHcitealp] = ACTIONS(732), + [anon_sym_BSLASHcitetext] = ACTIONS(732), + [anon_sym_BSLASHparencite] = ACTIONS(732), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(734), + [anon_sym_BSLASHParencite] = ACTIONS(732), + [anon_sym_BSLASHfootcite] = ACTIONS(732), + [anon_sym_BSLASHfootfullcite] = ACTIONS(732), + [anon_sym_BSLASHfootcitetext] = ACTIONS(732), + [anon_sym_BSLASHtextcite] = ACTIONS(732), + [anon_sym_BSLASHTextcite] = ACTIONS(732), + [anon_sym_BSLASHsmartcite] = ACTIONS(732), + [anon_sym_BSLASHSmartcite] = ACTIONS(732), + [anon_sym_BSLASHsupercite] = ACTIONS(732), + [anon_sym_BSLASHautocite] = ACTIONS(732), + [anon_sym_BSLASHAutocite] = ACTIONS(732), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(734), + [anon_sym_BSLASHvolcite] = ACTIONS(732), + [anon_sym_BSLASHVolcite] = ACTIONS(732), + [anon_sym_BSLASHpvolcite] = ACTIONS(732), + [anon_sym_BSLASHPvolcite] = ACTIONS(732), + [anon_sym_BSLASHfvolcite] = ACTIONS(732), + [anon_sym_BSLASHftvolcite] = ACTIONS(732), + [anon_sym_BSLASHsvolcite] = ACTIONS(732), + [anon_sym_BSLASHSvolcite] = ACTIONS(732), + [anon_sym_BSLASHtvolcite] = ACTIONS(732), + [anon_sym_BSLASHTvolcite] = ACTIONS(732), + [anon_sym_BSLASHavolcite] = ACTIONS(732), + [anon_sym_BSLASHAvolcite] = ACTIONS(732), + [anon_sym_BSLASHnotecite] = ACTIONS(732), + [anon_sym_BSLASHNotecite] = ACTIONS(732), + [anon_sym_BSLASHpnotecite] = ACTIONS(732), + [anon_sym_BSLASHPnotecite] = ACTIONS(732), + [anon_sym_BSLASHfnotecite] = ACTIONS(732), + [anon_sym_BSLASHlabel] = ACTIONS(736), + [anon_sym_BSLASHref] = ACTIONS(738), + [anon_sym_BSLASHeqref] = ACTIONS(738), + [anon_sym_BSLASHvref] = ACTIONS(738), + [anon_sym_BSLASHVref] = ACTIONS(738), + [anon_sym_BSLASHautoref] = ACTIONS(738), + [anon_sym_BSLASHpageref] = ACTIONS(738), + [anon_sym_BSLASHcref] = ACTIONS(738), + [anon_sym_BSLASHCref] = ACTIONS(738), + [anon_sym_BSLASHcref_STAR] = ACTIONS(740), + [anon_sym_BSLASHCref_STAR] = ACTIONS(740), + [anon_sym_BSLASHnamecref] = ACTIONS(738), + [anon_sym_BSLASHnameCref] = ACTIONS(738), + [anon_sym_BSLASHlcnamecref] = ACTIONS(738), + [anon_sym_BSLASHnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHnameCrefs] = ACTIONS(738), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(738), + [anon_sym_BSLASHlabelcref] = ACTIONS(738), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(738), + [anon_sym_BSLASHcrefrange] = ACTIONS(742), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHCrefrange] = ACTIONS(742), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(744), + [anon_sym_BSLASHnewlabel] = ACTIONS(746), + [anon_sym_BSLASHnewcommand] = ACTIONS(748), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHrenewcommand] = ACTIONS(748), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(748), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(750), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(748), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(750), + [anon_sym_BSLASHdef] = ACTIONS(752), + [anon_sym_BSLASHlet] = ACTIONS(754), + [anon_sym_BSLASHnewenvironment] = ACTIONS(756), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(758), + [anon_sym_BSLASHgls] = ACTIONS(760), + [anon_sym_BSLASHGls] = ACTIONS(760), + [anon_sym_BSLASHGLS] = ACTIONS(760), + [anon_sym_BSLASHglspl] = ACTIONS(760), + [anon_sym_BSLASHGlspl] = ACTIONS(760), + [anon_sym_BSLASHGLSpl] = ACTIONS(760), + [anon_sym_BSLASHglsdisp] = ACTIONS(760), + [anon_sym_BSLASHglslink] = ACTIONS(760), + [anon_sym_BSLASHglstext] = ACTIONS(760), + [anon_sym_BSLASHGlstext] = ACTIONS(760), + [anon_sym_BSLASHGLStext] = ACTIONS(760), + [anon_sym_BSLASHglsfirst] = ACTIONS(760), + [anon_sym_BSLASHGlsfirst] = ACTIONS(760), + [anon_sym_BSLASHGLSfirst] = ACTIONS(760), + [anon_sym_BSLASHglsplural] = ACTIONS(760), + [anon_sym_BSLASHGlsplural] = ACTIONS(760), + [anon_sym_BSLASHGLSplural] = ACTIONS(760), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(760), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(760), + [anon_sym_BSLASHglsname] = ACTIONS(760), + [anon_sym_BSLASHGlsname] = ACTIONS(760), + [anon_sym_BSLASHGLSname] = ACTIONS(760), + [anon_sym_BSLASHglssymbol] = ACTIONS(760), + [anon_sym_BSLASHGlssymbol] = ACTIONS(760), + [anon_sym_BSLASHglsdesc] = ACTIONS(760), + [anon_sym_BSLASHGlsdesc] = ACTIONS(760), + [anon_sym_BSLASHGLSdesc] = ACTIONS(760), + [anon_sym_BSLASHglsuseri] = ACTIONS(760), + [anon_sym_BSLASHGlsuseri] = ACTIONS(760), + [anon_sym_BSLASHGLSuseri] = ACTIONS(760), + [anon_sym_BSLASHglsuserii] = ACTIONS(760), + [anon_sym_BSLASHGlsuserii] = ACTIONS(760), + [anon_sym_BSLASHGLSuserii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(760), + [anon_sym_BSLASHglsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(760), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(760), + [anon_sym_BSLASHglsuserv] = ACTIONS(760), + [anon_sym_BSLASHGlsuserv] = ACTIONS(760), + [anon_sym_BSLASHGLSuserv] = ACTIONS(760), + [anon_sym_BSLASHglsuservi] = ACTIONS(760), + [anon_sym_BSLASHGlsuservi] = ACTIONS(760), + [anon_sym_BSLASHGLSuservi] = ACTIONS(760), + [anon_sym_BSLASHnewacronym] = ACTIONS(762), + [anon_sym_BSLASHacrshort] = ACTIONS(764), + [anon_sym_BSLASHAcrshort] = ACTIONS(764), + [anon_sym_BSLASHACRshort] = ACTIONS(764), + [anon_sym_BSLASHacrshortpl] = ACTIONS(764), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(764), + [anon_sym_BSLASHACRshortpl] = ACTIONS(764), + [anon_sym_BSLASHacrlong] = ACTIONS(764), + [anon_sym_BSLASHAcrlong] = ACTIONS(764), + [anon_sym_BSLASHACRlong] = ACTIONS(764), + [anon_sym_BSLASHacrlongpl] = ACTIONS(764), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(764), + [anon_sym_BSLASHACRlongpl] = ACTIONS(764), + [anon_sym_BSLASHacrfull] = ACTIONS(764), + [anon_sym_BSLASHAcrfull] = ACTIONS(764), + [anon_sym_BSLASHACRfull] = ACTIONS(764), + [anon_sym_BSLASHacrfullpl] = ACTIONS(764), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(764), + [anon_sym_BSLASHACRfullpl] = ACTIONS(764), + [anon_sym_BSLASHacs] = ACTIONS(764), + [anon_sym_BSLASHAcs] = ACTIONS(764), + [anon_sym_BSLASHacsp] = ACTIONS(764), + [anon_sym_BSLASHAcsp] = ACTIONS(764), + [anon_sym_BSLASHacl] = ACTIONS(764), + [anon_sym_BSLASHAcl] = ACTIONS(764), + [anon_sym_BSLASHaclp] = ACTIONS(764), + [anon_sym_BSLASHAclp] = ACTIONS(764), + [anon_sym_BSLASHacf] = ACTIONS(764), + [anon_sym_BSLASHAcf] = ACTIONS(764), + [anon_sym_BSLASHacfp] = ACTIONS(764), + [anon_sym_BSLASHAcfp] = ACTIONS(764), + [anon_sym_BSLASHac] = ACTIONS(764), + [anon_sym_BSLASHAc] = ACTIONS(764), + [anon_sym_BSLASHacp] = ACTIONS(764), + [anon_sym_BSLASHglsentrylong] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(764), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryshort] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(764), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(764), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(764), + [anon_sym_BSLASHnewtheorem] = ACTIONS(766), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(766), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(772), + [anon_sym_BSLASHcolor] = ACTIONS(774), + [anon_sym_BSLASHcolorbox] = ACTIONS(774), + [anon_sym_BSLASHtextcolor] = ACTIONS(774), + [anon_sym_BSLASHpagecolor] = ACTIONS(774), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(776), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(776), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [210] = { [sym_block_comment] = STATE(1178), @@ -90466,276 +90906,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1178), [sym_tikz_library_import] = STATE(1178), [aux_sym_text_repeat1] = STATE(211), - [sym_command_name] = ACTIONS(783), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_BSLASHpart] = ACTIONS(2677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddpart] = ACTIONS(2677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHchapter] = ACTIONS(2677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddchap] = ACTIONS(2677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsection] = ACTIONS(2677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddsec] = ACTIONS(2677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHparagraph] = ACTIONS(2677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHitem] = ACTIONS(2677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(791), - [sym_placeholder] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASHbegin] = ACTIONS(2677), - [anon_sym_BSLASHusepackage] = ACTIONS(809), - [anon_sym_BSLASHRequirePackage] = ACTIONS(809), - [anon_sym_BSLASHdocumentclass] = ACTIONS(811), - [anon_sym_BSLASHinclude] = ACTIONS(813), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), - [anon_sym_BSLASHinput] = ACTIONS(813), - [anon_sym_BSLASHsubfile] = ACTIONS(813), - [anon_sym_BSLASHaddbibresource] = ACTIONS(815), - [anon_sym_BSLASHbibliography] = ACTIONS(817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(819), - [anon_sym_BSLASHincludesvg] = ACTIONS(821), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), - [anon_sym_BSLASHverbatiminput] = ACTIONS(825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), - [anon_sym_BSLASHimport] = ACTIONS(827), - [anon_sym_BSLASHsubimport] = ACTIONS(827), - [anon_sym_BSLASHinputfrom] = ACTIONS(827), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), - [anon_sym_BSLASHincludefrom] = ACTIONS(827), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), - [anon_sym_BSLASHcaption] = ACTIONS(829), - [anon_sym_BSLASHcite] = ACTIONS(831), - [anon_sym_BSLASHcite_STAR] = ACTIONS(833), - [anon_sym_BSLASHCite] = ACTIONS(831), - [anon_sym_BSLASHnocite] = ACTIONS(831), - [anon_sym_BSLASHcitet] = ACTIONS(831), - [anon_sym_BSLASHcitep] = ACTIONS(831), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteauthor] = ACTIONS(831), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHCiteauthor] = ACTIONS(831), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitetitle] = ACTIONS(831), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteyear] = ACTIONS(831), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), - [anon_sym_BSLASHcitedate] = ACTIONS(831), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), - [anon_sym_BSLASHciteurl] = ACTIONS(831), - [anon_sym_BSLASHfullcite] = ACTIONS(831), - [anon_sym_BSLASHciteyearpar] = ACTIONS(831), - [anon_sym_BSLASHcitealt] = ACTIONS(831), - [anon_sym_BSLASHcitealp] = ACTIONS(831), - [anon_sym_BSLASHcitetext] = ACTIONS(831), - [anon_sym_BSLASHparencite] = ACTIONS(831), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), - [anon_sym_BSLASHParencite] = ACTIONS(831), - [anon_sym_BSLASHfootcite] = ACTIONS(831), - [anon_sym_BSLASHfootfullcite] = ACTIONS(831), - [anon_sym_BSLASHfootcitetext] = ACTIONS(831), - [anon_sym_BSLASHtextcite] = ACTIONS(831), - [anon_sym_BSLASHTextcite] = ACTIONS(831), - [anon_sym_BSLASHsmartcite] = ACTIONS(831), - [anon_sym_BSLASHSmartcite] = ACTIONS(831), - [anon_sym_BSLASHsupercite] = ACTIONS(831), - [anon_sym_BSLASHautocite] = ACTIONS(831), - [anon_sym_BSLASHAutocite] = ACTIONS(831), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), - [anon_sym_BSLASHvolcite] = ACTIONS(831), - [anon_sym_BSLASHVolcite] = ACTIONS(831), - [anon_sym_BSLASHpvolcite] = ACTIONS(831), - [anon_sym_BSLASHPvolcite] = ACTIONS(831), - [anon_sym_BSLASHfvolcite] = ACTIONS(831), - [anon_sym_BSLASHftvolcite] = ACTIONS(831), - [anon_sym_BSLASHsvolcite] = ACTIONS(831), - [anon_sym_BSLASHSvolcite] = ACTIONS(831), - [anon_sym_BSLASHtvolcite] = ACTIONS(831), - [anon_sym_BSLASHTvolcite] = ACTIONS(831), - [anon_sym_BSLASHavolcite] = ACTIONS(831), - [anon_sym_BSLASHAvolcite] = ACTIONS(831), - [anon_sym_BSLASHnotecite] = ACTIONS(831), - [anon_sym_BSLASHNotecite] = ACTIONS(831), - [anon_sym_BSLASHpnotecite] = ACTIONS(831), - [anon_sym_BSLASHPnotecite] = ACTIONS(831), - [anon_sym_BSLASHfnotecite] = ACTIONS(831), - [anon_sym_BSLASHlabel] = ACTIONS(835), - [anon_sym_BSLASHref] = ACTIONS(837), - [anon_sym_BSLASHeqref] = ACTIONS(837), - [anon_sym_BSLASHvref] = ACTIONS(837), - [anon_sym_BSLASHVref] = ACTIONS(837), - [anon_sym_BSLASHautoref] = ACTIONS(837), - [anon_sym_BSLASHpageref] = ACTIONS(837), - [anon_sym_BSLASHcref] = ACTIONS(837), - [anon_sym_BSLASHCref] = ACTIONS(837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(839), - [anon_sym_BSLASHnamecref] = ACTIONS(837), - [anon_sym_BSLASHnameCref] = ACTIONS(837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), - [anon_sym_BSLASHlabelcref] = ACTIONS(837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), - [anon_sym_BSLASHcrefrange] = ACTIONS(841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHCrefrange] = ACTIONS(841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), - [anon_sym_BSLASHnewlabel] = ACTIONS(845), - [anon_sym_BSLASHnewcommand] = ACTIONS(847), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHrenewcommand] = ACTIONS(847), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), - [anon_sym_BSLASHdef] = ACTIONS(851), - [anon_sym_BSLASHlet] = ACTIONS(853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(855), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), - [anon_sym_BSLASHgls] = ACTIONS(859), - [anon_sym_BSLASHGls] = ACTIONS(859), - [anon_sym_BSLASHGLS] = ACTIONS(859), - [anon_sym_BSLASHglspl] = ACTIONS(859), - [anon_sym_BSLASHGlspl] = ACTIONS(859), - [anon_sym_BSLASHGLSpl] = ACTIONS(859), - [anon_sym_BSLASHglsdisp] = ACTIONS(859), - [anon_sym_BSLASHglslink] = ACTIONS(859), - [anon_sym_BSLASHglstext] = ACTIONS(859), - [anon_sym_BSLASHGlstext] = ACTIONS(859), - [anon_sym_BSLASHGLStext] = ACTIONS(859), - [anon_sym_BSLASHglsfirst] = ACTIONS(859), - [anon_sym_BSLASHGlsfirst] = ACTIONS(859), - [anon_sym_BSLASHGLSfirst] = ACTIONS(859), - [anon_sym_BSLASHglsplural] = ACTIONS(859), - [anon_sym_BSLASHGlsplural] = ACTIONS(859), - [anon_sym_BSLASHGLSplural] = ACTIONS(859), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), - [anon_sym_BSLASHglsname] = ACTIONS(859), - [anon_sym_BSLASHGlsname] = ACTIONS(859), - [anon_sym_BSLASHGLSname] = ACTIONS(859), - [anon_sym_BSLASHglssymbol] = ACTIONS(859), - [anon_sym_BSLASHGlssymbol] = ACTIONS(859), - [anon_sym_BSLASHglsdesc] = ACTIONS(859), - [anon_sym_BSLASHGlsdesc] = ACTIONS(859), - [anon_sym_BSLASHGLSdesc] = ACTIONS(859), - [anon_sym_BSLASHglsuseri] = ACTIONS(859), - [anon_sym_BSLASHGlsuseri] = ACTIONS(859), - [anon_sym_BSLASHGLSuseri] = ACTIONS(859), - [anon_sym_BSLASHglsuserii] = ACTIONS(859), - [anon_sym_BSLASHGlsuserii] = ACTIONS(859), - [anon_sym_BSLASHGLSuserii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), - [anon_sym_BSLASHglsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), - [anon_sym_BSLASHglsuserv] = ACTIONS(859), - [anon_sym_BSLASHGlsuserv] = ACTIONS(859), - [anon_sym_BSLASHGLSuserv] = ACTIONS(859), - [anon_sym_BSLASHglsuservi] = ACTIONS(859), - [anon_sym_BSLASHGlsuservi] = ACTIONS(859), - [anon_sym_BSLASHGLSuservi] = ACTIONS(859), - [anon_sym_BSLASHnewacronym] = ACTIONS(861), - [anon_sym_BSLASHacrshort] = ACTIONS(863), - [anon_sym_BSLASHAcrshort] = ACTIONS(863), - [anon_sym_BSLASHACRshort] = ACTIONS(863), - [anon_sym_BSLASHacrshortpl] = ACTIONS(863), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), - [anon_sym_BSLASHACRshortpl] = ACTIONS(863), - [anon_sym_BSLASHacrlong] = ACTIONS(863), - [anon_sym_BSLASHAcrlong] = ACTIONS(863), - [anon_sym_BSLASHACRlong] = ACTIONS(863), - [anon_sym_BSLASHacrlongpl] = ACTIONS(863), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), - [anon_sym_BSLASHACRlongpl] = ACTIONS(863), - [anon_sym_BSLASHacrfull] = ACTIONS(863), - [anon_sym_BSLASHAcrfull] = ACTIONS(863), - [anon_sym_BSLASHACRfull] = ACTIONS(863), - [anon_sym_BSLASHacrfullpl] = ACTIONS(863), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), - [anon_sym_BSLASHACRfullpl] = ACTIONS(863), - [anon_sym_BSLASHacs] = ACTIONS(863), - [anon_sym_BSLASHAcs] = ACTIONS(863), - [anon_sym_BSLASHacsp] = ACTIONS(863), - [anon_sym_BSLASHAcsp] = ACTIONS(863), - [anon_sym_BSLASHacl] = ACTIONS(863), - [anon_sym_BSLASHAcl] = ACTIONS(863), - [anon_sym_BSLASHaclp] = ACTIONS(863), - [anon_sym_BSLASHAclp] = ACTIONS(863), - [anon_sym_BSLASHacf] = ACTIONS(863), - [anon_sym_BSLASHAcf] = ACTIONS(863), - [anon_sym_BSLASHacfp] = ACTIONS(863), - [anon_sym_BSLASHAcfp] = ACTIONS(863), - [anon_sym_BSLASHac] = ACTIONS(863), - [anon_sym_BSLASHAc] = ACTIONS(863), - [anon_sym_BSLASHacp] = ACTIONS(863), - [anon_sym_BSLASHglsentrylong] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryshort] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), - [anon_sym_BSLASHnewtheorem] = ACTIONS(865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(867), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), - [anon_sym_BSLASHcolor] = ACTIONS(871), - [anon_sym_BSLASHcolorbox] = ACTIONS(871), - [anon_sym_BSLASHtextcolor] = ACTIONS(871), - [anon_sym_BSLASHpagecolor] = ACTIONS(871), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [sym_command_name] = ACTIONS(794), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_BSLASHpart] = ACTIONS(2717), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddpart] = ACTIONS(2717), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHchapter] = ACTIONS(2717), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddchap] = ACTIONS(2717), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsection] = ACTIONS(2717), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddsec] = ACTIONS(2717), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHparagraph] = ACTIONS(2717), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2717), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHitem] = ACTIONS(2717), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(802), + [sym_placeholder] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASHbegin] = ACTIONS(2717), + [anon_sym_BSLASHusepackage] = ACTIONS(820), + [anon_sym_BSLASHRequirePackage] = ACTIONS(820), + [anon_sym_BSLASHdocumentclass] = ACTIONS(822), + [anon_sym_BSLASHinclude] = ACTIONS(824), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(824), + [anon_sym_BSLASHinput] = ACTIONS(824), + [anon_sym_BSLASHsubfile] = ACTIONS(824), + [anon_sym_BSLASHaddbibresource] = ACTIONS(826), + [anon_sym_BSLASHbibliography] = ACTIONS(828), + [anon_sym_BSLASHincludegraphics] = ACTIONS(830), + [anon_sym_BSLASHincludesvg] = ACTIONS(832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(834), + [anon_sym_BSLASHverbatiminput] = ACTIONS(836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(836), + [anon_sym_BSLASHimport] = ACTIONS(838), + [anon_sym_BSLASHsubimport] = ACTIONS(838), + [anon_sym_BSLASHinputfrom] = ACTIONS(838), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(838), + [anon_sym_BSLASHincludefrom] = ACTIONS(838), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(838), + [anon_sym_BSLASHcaption] = ACTIONS(840), + [anon_sym_BSLASHcite] = ACTIONS(842), + [anon_sym_BSLASHcite_STAR] = ACTIONS(844), + [anon_sym_BSLASHCite] = ACTIONS(842), + [anon_sym_BSLASHnocite] = ACTIONS(842), + [anon_sym_BSLASHcitet] = ACTIONS(842), + [anon_sym_BSLASHcitep] = ACTIONS(842), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteauthor] = ACTIONS(842), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHCiteauthor] = ACTIONS(842), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitetitle] = ACTIONS(842), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteyear] = ACTIONS(842), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(844), + [anon_sym_BSLASHcitedate] = ACTIONS(842), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(844), + [anon_sym_BSLASHciteurl] = ACTIONS(842), + [anon_sym_BSLASHfullcite] = ACTIONS(842), + [anon_sym_BSLASHciteyearpar] = ACTIONS(842), + [anon_sym_BSLASHcitealt] = ACTIONS(842), + [anon_sym_BSLASHcitealp] = ACTIONS(842), + [anon_sym_BSLASHcitetext] = ACTIONS(842), + [anon_sym_BSLASHparencite] = ACTIONS(842), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(844), + [anon_sym_BSLASHParencite] = ACTIONS(842), + [anon_sym_BSLASHfootcite] = ACTIONS(842), + [anon_sym_BSLASHfootfullcite] = ACTIONS(842), + [anon_sym_BSLASHfootcitetext] = ACTIONS(842), + [anon_sym_BSLASHtextcite] = ACTIONS(842), + [anon_sym_BSLASHTextcite] = ACTIONS(842), + [anon_sym_BSLASHsmartcite] = ACTIONS(842), + [anon_sym_BSLASHSmartcite] = ACTIONS(842), + [anon_sym_BSLASHsupercite] = ACTIONS(842), + [anon_sym_BSLASHautocite] = ACTIONS(842), + [anon_sym_BSLASHAutocite] = ACTIONS(842), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(844), + [anon_sym_BSLASHvolcite] = ACTIONS(842), + [anon_sym_BSLASHVolcite] = ACTIONS(842), + [anon_sym_BSLASHpvolcite] = ACTIONS(842), + [anon_sym_BSLASHPvolcite] = ACTIONS(842), + [anon_sym_BSLASHfvolcite] = ACTIONS(842), + [anon_sym_BSLASHftvolcite] = ACTIONS(842), + [anon_sym_BSLASHsvolcite] = ACTIONS(842), + [anon_sym_BSLASHSvolcite] = ACTIONS(842), + [anon_sym_BSLASHtvolcite] = ACTIONS(842), + [anon_sym_BSLASHTvolcite] = ACTIONS(842), + [anon_sym_BSLASHavolcite] = ACTIONS(842), + [anon_sym_BSLASHAvolcite] = ACTIONS(842), + [anon_sym_BSLASHnotecite] = ACTIONS(842), + [anon_sym_BSLASHNotecite] = ACTIONS(842), + [anon_sym_BSLASHpnotecite] = ACTIONS(842), + [anon_sym_BSLASHPnotecite] = ACTIONS(842), + [anon_sym_BSLASHfnotecite] = ACTIONS(842), + [anon_sym_BSLASHlabel] = ACTIONS(846), + [anon_sym_BSLASHref] = ACTIONS(848), + [anon_sym_BSLASHeqref] = ACTIONS(848), + [anon_sym_BSLASHvref] = ACTIONS(848), + [anon_sym_BSLASHVref] = ACTIONS(848), + [anon_sym_BSLASHautoref] = ACTIONS(848), + [anon_sym_BSLASHpageref] = ACTIONS(848), + [anon_sym_BSLASHcref] = ACTIONS(848), + [anon_sym_BSLASHCref] = ACTIONS(848), + [anon_sym_BSLASHcref_STAR] = ACTIONS(850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(850), + [anon_sym_BSLASHnamecref] = ACTIONS(848), + [anon_sym_BSLASHnameCref] = ACTIONS(848), + [anon_sym_BSLASHlcnamecref] = ACTIONS(848), + [anon_sym_BSLASHnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHnameCrefs] = ACTIONS(848), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(848), + [anon_sym_BSLASHlabelcref] = ACTIONS(848), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(848), + [anon_sym_BSLASHcrefrange] = ACTIONS(852), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHCrefrange] = ACTIONS(852), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(854), + [anon_sym_BSLASHnewlabel] = ACTIONS(856), + [anon_sym_BSLASHnewcommand] = ACTIONS(858), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHrenewcommand] = ACTIONS(858), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(858), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(860), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(858), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(860), + [anon_sym_BSLASHdef] = ACTIONS(862), + [anon_sym_BSLASHlet] = ACTIONS(864), + [anon_sym_BSLASHnewenvironment] = ACTIONS(866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(868), + [anon_sym_BSLASHgls] = ACTIONS(870), + [anon_sym_BSLASHGls] = ACTIONS(870), + [anon_sym_BSLASHGLS] = ACTIONS(870), + [anon_sym_BSLASHglspl] = ACTIONS(870), + [anon_sym_BSLASHGlspl] = ACTIONS(870), + [anon_sym_BSLASHGLSpl] = ACTIONS(870), + [anon_sym_BSLASHglsdisp] = ACTIONS(870), + [anon_sym_BSLASHglslink] = ACTIONS(870), + [anon_sym_BSLASHglstext] = ACTIONS(870), + [anon_sym_BSLASHGlstext] = ACTIONS(870), + [anon_sym_BSLASHGLStext] = ACTIONS(870), + [anon_sym_BSLASHglsfirst] = ACTIONS(870), + [anon_sym_BSLASHGlsfirst] = ACTIONS(870), + [anon_sym_BSLASHGLSfirst] = ACTIONS(870), + [anon_sym_BSLASHglsplural] = ACTIONS(870), + [anon_sym_BSLASHGlsplural] = ACTIONS(870), + [anon_sym_BSLASHGLSplural] = ACTIONS(870), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(870), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(870), + [anon_sym_BSLASHglsname] = ACTIONS(870), + [anon_sym_BSLASHGlsname] = ACTIONS(870), + [anon_sym_BSLASHGLSname] = ACTIONS(870), + [anon_sym_BSLASHglssymbol] = ACTIONS(870), + [anon_sym_BSLASHGlssymbol] = ACTIONS(870), + [anon_sym_BSLASHglsdesc] = ACTIONS(870), + [anon_sym_BSLASHGlsdesc] = ACTIONS(870), + [anon_sym_BSLASHGLSdesc] = ACTIONS(870), + [anon_sym_BSLASHglsuseri] = ACTIONS(870), + [anon_sym_BSLASHGlsuseri] = ACTIONS(870), + [anon_sym_BSLASHGLSuseri] = ACTIONS(870), + [anon_sym_BSLASHglsuserii] = ACTIONS(870), + [anon_sym_BSLASHGlsuserii] = ACTIONS(870), + [anon_sym_BSLASHGLSuserii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(870), + [anon_sym_BSLASHglsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(870), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(870), + [anon_sym_BSLASHglsuserv] = ACTIONS(870), + [anon_sym_BSLASHGlsuserv] = ACTIONS(870), + [anon_sym_BSLASHGLSuserv] = ACTIONS(870), + [anon_sym_BSLASHglsuservi] = ACTIONS(870), + [anon_sym_BSLASHGlsuservi] = ACTIONS(870), + [anon_sym_BSLASHGLSuservi] = ACTIONS(870), + [anon_sym_BSLASHnewacronym] = ACTIONS(872), + [anon_sym_BSLASHacrshort] = ACTIONS(874), + [anon_sym_BSLASHAcrshort] = ACTIONS(874), + [anon_sym_BSLASHACRshort] = ACTIONS(874), + [anon_sym_BSLASHacrshortpl] = ACTIONS(874), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(874), + [anon_sym_BSLASHACRshortpl] = ACTIONS(874), + [anon_sym_BSLASHacrlong] = ACTIONS(874), + [anon_sym_BSLASHAcrlong] = ACTIONS(874), + [anon_sym_BSLASHACRlong] = ACTIONS(874), + [anon_sym_BSLASHacrlongpl] = ACTIONS(874), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(874), + [anon_sym_BSLASHACRlongpl] = ACTIONS(874), + [anon_sym_BSLASHacrfull] = ACTIONS(874), + [anon_sym_BSLASHAcrfull] = ACTIONS(874), + [anon_sym_BSLASHACRfull] = ACTIONS(874), + [anon_sym_BSLASHacrfullpl] = ACTIONS(874), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(874), + [anon_sym_BSLASHACRfullpl] = ACTIONS(874), + [anon_sym_BSLASHacs] = ACTIONS(874), + [anon_sym_BSLASHAcs] = ACTIONS(874), + [anon_sym_BSLASHacsp] = ACTIONS(874), + [anon_sym_BSLASHAcsp] = ACTIONS(874), + [anon_sym_BSLASHacl] = ACTIONS(874), + [anon_sym_BSLASHAcl] = ACTIONS(874), + [anon_sym_BSLASHaclp] = ACTIONS(874), + [anon_sym_BSLASHAclp] = ACTIONS(874), + [anon_sym_BSLASHacf] = ACTIONS(874), + [anon_sym_BSLASHAcf] = ACTIONS(874), + [anon_sym_BSLASHacfp] = ACTIONS(874), + [anon_sym_BSLASHAcfp] = ACTIONS(874), + [anon_sym_BSLASHac] = ACTIONS(874), + [anon_sym_BSLASHAc] = ACTIONS(874), + [anon_sym_BSLASHacp] = ACTIONS(874), + [anon_sym_BSLASHglsentrylong] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(874), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryshort] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(874), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(874), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(874), + [anon_sym_BSLASHnewtheorem] = ACTIONS(876), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(876), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(878), + [anon_sym_BSLASHdefinecolor] = ACTIONS(880), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(882), + [anon_sym_BSLASHcolor] = ACTIONS(884), + [anon_sym_BSLASHcolorbox] = ACTIONS(884), + [anon_sym_BSLASHtextcolor] = ACTIONS(884), + [anon_sym_BSLASHpagecolor] = ACTIONS(884), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(886), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(886), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [211] = { [sym_block_comment] = STATE(1178), @@ -90772,276 +91214,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1178), [sym_tikz_library_import] = STATE(1178), [aux_sym_text_repeat1] = STATE(211), - [sym_command_name] = ACTIONS(2797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_BSLASHpart] = ACTIONS(2687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddpart] = ACTIONS(2687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHchapter] = ACTIONS(2687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddchap] = ACTIONS(2687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsection] = ACTIONS(2687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddsec] = ACTIONS(2687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHparagraph] = ACTIONS(2687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHitem] = ACTIONS(2687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(2803), - [sym_placeholder] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym__] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_COLON] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASHbegin] = ACTIONS(2687), - [anon_sym_BSLASHusepackage] = ACTIONS(2812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2815), - [anon_sym_BSLASHinclude] = ACTIONS(2818), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2818), - [anon_sym_BSLASHinput] = ACTIONS(2818), - [anon_sym_BSLASHsubfile] = ACTIONS(2818), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2821), - [anon_sym_BSLASHbibliography] = ACTIONS(2824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2827), - [anon_sym_BSLASHincludesvg] = ACTIONS(2830), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2836), - [anon_sym_BSLASHimport] = ACTIONS(2839), - [anon_sym_BSLASHsubimport] = ACTIONS(2839), - [anon_sym_BSLASHinputfrom] = ACTIONS(2839), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2839), - [anon_sym_BSLASHincludefrom] = ACTIONS(2839), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2839), - [anon_sym_BSLASHcaption] = ACTIONS(2842), - [anon_sym_BSLASHcite] = ACTIONS(2845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2848), - [anon_sym_BSLASHCite] = ACTIONS(2845), - [anon_sym_BSLASHnocite] = ACTIONS(2845), - [anon_sym_BSLASHcitet] = ACTIONS(2845), - [anon_sym_BSLASHcitep] = ACTIONS(2845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2848), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2848), - [anon_sym_BSLASHciteauthor] = ACTIONS(2845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2848), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2848), - [anon_sym_BSLASHcitetitle] = ACTIONS(2845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2848), - [anon_sym_BSLASHciteyear] = ACTIONS(2845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2848), - [anon_sym_BSLASHcitedate] = ACTIONS(2845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2848), - [anon_sym_BSLASHciteurl] = ACTIONS(2845), - [anon_sym_BSLASHfullcite] = ACTIONS(2845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2845), - [anon_sym_BSLASHcitealt] = ACTIONS(2845), - [anon_sym_BSLASHcitealp] = ACTIONS(2845), - [anon_sym_BSLASHcitetext] = ACTIONS(2845), - [anon_sym_BSLASHparencite] = ACTIONS(2845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2848), - [anon_sym_BSLASHParencite] = ACTIONS(2845), - [anon_sym_BSLASHfootcite] = ACTIONS(2845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2845), - [anon_sym_BSLASHtextcite] = ACTIONS(2845), - [anon_sym_BSLASHTextcite] = ACTIONS(2845), - [anon_sym_BSLASHsmartcite] = ACTIONS(2845), - [anon_sym_BSLASHSmartcite] = ACTIONS(2845), - [anon_sym_BSLASHsupercite] = ACTIONS(2845), - [anon_sym_BSLASHautocite] = ACTIONS(2845), - [anon_sym_BSLASHAutocite] = ACTIONS(2845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2848), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2848), - [anon_sym_BSLASHvolcite] = ACTIONS(2845), - [anon_sym_BSLASHVolcite] = ACTIONS(2845), - [anon_sym_BSLASHpvolcite] = ACTIONS(2845), - [anon_sym_BSLASHPvolcite] = ACTIONS(2845), - [anon_sym_BSLASHfvolcite] = ACTIONS(2845), - [anon_sym_BSLASHftvolcite] = ACTIONS(2845), - [anon_sym_BSLASHsvolcite] = ACTIONS(2845), - [anon_sym_BSLASHSvolcite] = ACTIONS(2845), - [anon_sym_BSLASHtvolcite] = ACTIONS(2845), - [anon_sym_BSLASHTvolcite] = ACTIONS(2845), - [anon_sym_BSLASHavolcite] = ACTIONS(2845), - [anon_sym_BSLASHAvolcite] = ACTIONS(2845), - [anon_sym_BSLASHnotecite] = ACTIONS(2845), - [anon_sym_BSLASHNotecite] = ACTIONS(2845), - [anon_sym_BSLASHpnotecite] = ACTIONS(2845), - [anon_sym_BSLASHPnotecite] = ACTIONS(2845), - [anon_sym_BSLASHfnotecite] = ACTIONS(2845), - [anon_sym_BSLASHlabel] = ACTIONS(2851), - [anon_sym_BSLASHref] = ACTIONS(2854), - [anon_sym_BSLASHeqref] = ACTIONS(2854), - [anon_sym_BSLASHvref] = ACTIONS(2854), - [anon_sym_BSLASHVref] = ACTIONS(2854), - [anon_sym_BSLASHautoref] = ACTIONS(2854), - [anon_sym_BSLASHpageref] = ACTIONS(2854), - [anon_sym_BSLASHcref] = ACTIONS(2854), - [anon_sym_BSLASHCref] = ACTIONS(2854), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2857), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2857), - [anon_sym_BSLASHnamecref] = ACTIONS(2854), - [anon_sym_BSLASHnameCref] = ACTIONS(2854), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2854), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2854), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2854), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2854), - [anon_sym_BSLASHlabelcref] = ACTIONS(2854), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2854), - [anon_sym_BSLASHcrefrange] = ACTIONS(2860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2863), - [anon_sym_BSLASHCrefrange] = ACTIONS(2860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2863), - [anon_sym_BSLASHnewlabel] = ACTIONS(2866), - [anon_sym_BSLASHnewcommand] = ACTIONS(2869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2872), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2872), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2872), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2872), - [anon_sym_BSLASHdef] = ACTIONS(2875), - [anon_sym_BSLASHlet] = ACTIONS(2878), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2884), - [anon_sym_BSLASHgls] = ACTIONS(2887), - [anon_sym_BSLASHGls] = ACTIONS(2887), - [anon_sym_BSLASHGLS] = ACTIONS(2887), - [anon_sym_BSLASHglspl] = ACTIONS(2887), - [anon_sym_BSLASHGlspl] = ACTIONS(2887), - [anon_sym_BSLASHGLSpl] = ACTIONS(2887), - [anon_sym_BSLASHglsdisp] = ACTIONS(2887), - [anon_sym_BSLASHglslink] = ACTIONS(2887), - [anon_sym_BSLASHglstext] = ACTIONS(2887), - [anon_sym_BSLASHGlstext] = ACTIONS(2887), - [anon_sym_BSLASHGLStext] = ACTIONS(2887), - [anon_sym_BSLASHglsfirst] = ACTIONS(2887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2887), - [anon_sym_BSLASHglsplural] = ACTIONS(2887), - [anon_sym_BSLASHGlsplural] = ACTIONS(2887), - [anon_sym_BSLASHGLSplural] = ACTIONS(2887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2887), - [anon_sym_BSLASHglsname] = ACTIONS(2887), - [anon_sym_BSLASHGlsname] = ACTIONS(2887), - [anon_sym_BSLASHGLSname] = ACTIONS(2887), - [anon_sym_BSLASHglssymbol] = ACTIONS(2887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2887), - [anon_sym_BSLASHglsdesc] = ACTIONS(2887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2887), - [anon_sym_BSLASHglsuseri] = ACTIONS(2887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2887), - [anon_sym_BSLASHglsuserii] = ACTIONS(2887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2887), - [anon_sym_BSLASHglsuserv] = ACTIONS(2887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2887), - [anon_sym_BSLASHglsuservi] = ACTIONS(2887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2887), - [anon_sym_BSLASHnewacronym] = ACTIONS(2890), - [anon_sym_BSLASHacrshort] = ACTIONS(2893), - [anon_sym_BSLASHAcrshort] = ACTIONS(2893), - [anon_sym_BSLASHACRshort] = ACTIONS(2893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2893), - [anon_sym_BSLASHacrlong] = ACTIONS(2893), - [anon_sym_BSLASHAcrlong] = ACTIONS(2893), - [anon_sym_BSLASHACRlong] = ACTIONS(2893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2893), - [anon_sym_BSLASHacrfull] = ACTIONS(2893), - [anon_sym_BSLASHAcrfull] = ACTIONS(2893), - [anon_sym_BSLASHACRfull] = ACTIONS(2893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2893), - [anon_sym_BSLASHacs] = ACTIONS(2893), - [anon_sym_BSLASHAcs] = ACTIONS(2893), - [anon_sym_BSLASHacsp] = ACTIONS(2893), - [anon_sym_BSLASHAcsp] = ACTIONS(2893), - [anon_sym_BSLASHacl] = ACTIONS(2893), - [anon_sym_BSLASHAcl] = ACTIONS(2893), - [anon_sym_BSLASHaclp] = ACTIONS(2893), - [anon_sym_BSLASHAclp] = ACTIONS(2893), - [anon_sym_BSLASHacf] = ACTIONS(2893), - [anon_sym_BSLASHAcf] = ACTIONS(2893), - [anon_sym_BSLASHacfp] = ACTIONS(2893), - [anon_sym_BSLASHAcfp] = ACTIONS(2893), - [anon_sym_BSLASHac] = ACTIONS(2893), - [anon_sym_BSLASHAc] = ACTIONS(2893), - [anon_sym_BSLASHacp] = ACTIONS(2893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2896), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2896), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2899), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2902), - [anon_sym_BSLASHcolor] = ACTIONS(2905), - [anon_sym_BSLASHcolorbox] = ACTIONS(2905), - [anon_sym_BSLASHtextcolor] = ACTIONS(2905), - [anon_sym_BSLASHpagecolor] = ACTIONS(2905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2908), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2908), - [anon_sym_BSLASHtext] = ACTIONS(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [sym_command_name] = ACTIONS(2840), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2843), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_BSLASHpart] = ACTIONS(2727), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddpart] = ACTIONS(2727), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHchapter] = ACTIONS(2727), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddchap] = ACTIONS(2727), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsection] = ACTIONS(2727), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddsec] = ACTIONS(2727), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHparagraph] = ACTIONS(2727), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2727), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHitem] = ACTIONS(2727), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(2846), + [sym_placeholder] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_CARET] = ACTIONS(2852), + [anon_sym__] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_GT] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(2727), + [anon_sym_BSLASHusepackage] = ACTIONS(2855), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2855), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2858), + [anon_sym_BSLASHinclude] = ACTIONS(2861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2861), + [anon_sym_BSLASHinput] = ACTIONS(2861), + [anon_sym_BSLASHsubfile] = ACTIONS(2861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2864), + [anon_sym_BSLASHbibliography] = ACTIONS(2867), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2870), + [anon_sym_BSLASHincludesvg] = ACTIONS(2873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2876), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2879), + [anon_sym_BSLASHimport] = ACTIONS(2882), + [anon_sym_BSLASHsubimport] = ACTIONS(2882), + [anon_sym_BSLASHinputfrom] = ACTIONS(2882), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2882), + [anon_sym_BSLASHincludefrom] = ACTIONS(2882), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2882), + [anon_sym_BSLASHcaption] = ACTIONS(2885), + [anon_sym_BSLASHcite] = ACTIONS(2888), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2891), + [anon_sym_BSLASHCite] = ACTIONS(2888), + [anon_sym_BSLASHnocite] = ACTIONS(2888), + [anon_sym_BSLASHcitet] = ACTIONS(2888), + [anon_sym_BSLASHcitep] = ACTIONS(2888), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2891), + [anon_sym_BSLASHciteauthor] = ACTIONS(2888), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2888), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2891), + [anon_sym_BSLASHcitetitle] = ACTIONS(2888), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2891), + [anon_sym_BSLASHciteyear] = ACTIONS(2888), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2891), + [anon_sym_BSLASHcitedate] = ACTIONS(2888), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2891), + [anon_sym_BSLASHciteurl] = ACTIONS(2888), + [anon_sym_BSLASHfullcite] = ACTIONS(2888), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2888), + [anon_sym_BSLASHcitealt] = ACTIONS(2888), + [anon_sym_BSLASHcitealp] = ACTIONS(2888), + [anon_sym_BSLASHcitetext] = ACTIONS(2888), + [anon_sym_BSLASHparencite] = ACTIONS(2888), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2891), + [anon_sym_BSLASHParencite] = ACTIONS(2888), + [anon_sym_BSLASHfootcite] = ACTIONS(2888), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2888), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2888), + [anon_sym_BSLASHtextcite] = ACTIONS(2888), + [anon_sym_BSLASHTextcite] = ACTIONS(2888), + [anon_sym_BSLASHsmartcite] = ACTIONS(2888), + [anon_sym_BSLASHSmartcite] = ACTIONS(2888), + [anon_sym_BSLASHsupercite] = ACTIONS(2888), + [anon_sym_BSLASHautocite] = ACTIONS(2888), + [anon_sym_BSLASHAutocite] = ACTIONS(2888), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2891), + [anon_sym_BSLASHvolcite] = ACTIONS(2888), + [anon_sym_BSLASHVolcite] = ACTIONS(2888), + [anon_sym_BSLASHpvolcite] = ACTIONS(2888), + [anon_sym_BSLASHPvolcite] = ACTIONS(2888), + [anon_sym_BSLASHfvolcite] = ACTIONS(2888), + [anon_sym_BSLASHftvolcite] = ACTIONS(2888), + [anon_sym_BSLASHsvolcite] = ACTIONS(2888), + [anon_sym_BSLASHSvolcite] = ACTIONS(2888), + [anon_sym_BSLASHtvolcite] = ACTIONS(2888), + [anon_sym_BSLASHTvolcite] = ACTIONS(2888), + [anon_sym_BSLASHavolcite] = ACTIONS(2888), + [anon_sym_BSLASHAvolcite] = ACTIONS(2888), + [anon_sym_BSLASHnotecite] = ACTIONS(2888), + [anon_sym_BSLASHNotecite] = ACTIONS(2888), + [anon_sym_BSLASHpnotecite] = ACTIONS(2888), + [anon_sym_BSLASHPnotecite] = ACTIONS(2888), + [anon_sym_BSLASHfnotecite] = ACTIONS(2888), + [anon_sym_BSLASHlabel] = ACTIONS(2894), + [anon_sym_BSLASHref] = ACTIONS(2897), + [anon_sym_BSLASHeqref] = ACTIONS(2897), + [anon_sym_BSLASHvref] = ACTIONS(2897), + [anon_sym_BSLASHVref] = ACTIONS(2897), + [anon_sym_BSLASHautoref] = ACTIONS(2897), + [anon_sym_BSLASHpageref] = ACTIONS(2897), + [anon_sym_BSLASHcref] = ACTIONS(2897), + [anon_sym_BSLASHCref] = ACTIONS(2897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2900), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2900), + [anon_sym_BSLASHnamecref] = ACTIONS(2897), + [anon_sym_BSLASHnameCref] = ACTIONS(2897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2897), + [anon_sym_BSLASHlabelcref] = ACTIONS(2897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2897), + [anon_sym_BSLASHcrefrange] = ACTIONS(2903), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2906), + [anon_sym_BSLASHCrefrange] = ACTIONS(2903), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2906), + [anon_sym_BSLASHnewlabel] = ACTIONS(2909), + [anon_sym_BSLASHnewcommand] = ACTIONS(2912), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2912), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2912), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2912), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2915), + [anon_sym_BSLASHdef] = ACTIONS(2918), + [anon_sym_BSLASHlet] = ACTIONS(2921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2924), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2927), + [anon_sym_BSLASHgls] = ACTIONS(2930), + [anon_sym_BSLASHGls] = ACTIONS(2930), + [anon_sym_BSLASHGLS] = ACTIONS(2930), + [anon_sym_BSLASHglspl] = ACTIONS(2930), + [anon_sym_BSLASHGlspl] = ACTIONS(2930), + [anon_sym_BSLASHGLSpl] = ACTIONS(2930), + [anon_sym_BSLASHglsdisp] = ACTIONS(2930), + [anon_sym_BSLASHglslink] = ACTIONS(2930), + [anon_sym_BSLASHglstext] = ACTIONS(2930), + [anon_sym_BSLASHGlstext] = ACTIONS(2930), + [anon_sym_BSLASHGLStext] = ACTIONS(2930), + [anon_sym_BSLASHglsfirst] = ACTIONS(2930), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2930), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2930), + [anon_sym_BSLASHglsplural] = ACTIONS(2930), + [anon_sym_BSLASHGlsplural] = ACTIONS(2930), + [anon_sym_BSLASHGLSplural] = ACTIONS(2930), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2930), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2930), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2930), + [anon_sym_BSLASHglsname] = ACTIONS(2930), + [anon_sym_BSLASHGlsname] = ACTIONS(2930), + [anon_sym_BSLASHGLSname] = ACTIONS(2930), + [anon_sym_BSLASHglssymbol] = ACTIONS(2930), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2930), + [anon_sym_BSLASHglsdesc] = ACTIONS(2930), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2930), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2930), + [anon_sym_BSLASHglsuseri] = ACTIONS(2930), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2930), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2930), + [anon_sym_BSLASHglsuserii] = ACTIONS(2930), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2930), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2930), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2930), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2930), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2930), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2930), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2930), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2930), + [anon_sym_BSLASHglsuserv] = ACTIONS(2930), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2930), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2930), + [anon_sym_BSLASHglsuservi] = ACTIONS(2930), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2930), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2930), + [anon_sym_BSLASHnewacronym] = ACTIONS(2933), + [anon_sym_BSLASHacrshort] = ACTIONS(2936), + [anon_sym_BSLASHAcrshort] = ACTIONS(2936), + [anon_sym_BSLASHACRshort] = ACTIONS(2936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2936), + [anon_sym_BSLASHacrlong] = ACTIONS(2936), + [anon_sym_BSLASHAcrlong] = ACTIONS(2936), + [anon_sym_BSLASHACRlong] = ACTIONS(2936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2936), + [anon_sym_BSLASHacrfull] = ACTIONS(2936), + [anon_sym_BSLASHAcrfull] = ACTIONS(2936), + [anon_sym_BSLASHACRfull] = ACTIONS(2936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2936), + [anon_sym_BSLASHacs] = ACTIONS(2936), + [anon_sym_BSLASHAcs] = ACTIONS(2936), + [anon_sym_BSLASHacsp] = ACTIONS(2936), + [anon_sym_BSLASHAcsp] = ACTIONS(2936), + [anon_sym_BSLASHacl] = ACTIONS(2936), + [anon_sym_BSLASHAcl] = ACTIONS(2936), + [anon_sym_BSLASHaclp] = ACTIONS(2936), + [anon_sym_BSLASHAclp] = ACTIONS(2936), + [anon_sym_BSLASHacf] = ACTIONS(2936), + [anon_sym_BSLASHAcf] = ACTIONS(2936), + [anon_sym_BSLASHacfp] = ACTIONS(2936), + [anon_sym_BSLASHAcfp] = ACTIONS(2936), + [anon_sym_BSLASHac] = ACTIONS(2936), + [anon_sym_BSLASHAc] = ACTIONS(2936), + [anon_sym_BSLASHacp] = ACTIONS(2936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2939), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2939), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2948), + [anon_sym_BSLASHcolor] = ACTIONS(2951), + [anon_sym_BSLASHcolorbox] = ACTIONS(2951), + [anon_sym_BSLASHtextcolor] = ACTIONS(2951), + [anon_sym_BSLASHpagecolor] = ACTIONS(2951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2954), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2954), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [212] = { [sym_block_comment] = STATE(1082), @@ -91078,276 +91522,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1082), [sym_tikz_library_import] = STATE(1082), [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_BSLASHpart] = ACTIONS(2677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddpart] = ACTIONS(2677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHchapter] = ACTIONS(2677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddchap] = ACTIONS(2677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsection] = ACTIONS(2677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddsec] = ACTIONS(2677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHparagraph] = ACTIONS(2677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHitem] = ACTIONS(2677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(225), - [sym_placeholder] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym__] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASHbegin] = ACTIONS(2677), - [anon_sym_BSLASHend] = ACTIONS(2677), - [anon_sym_BSLASHusepackage] = ACTIONS(241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(243), - [anon_sym_BSLASHinclude] = ACTIONS(245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), - [anon_sym_BSLASHinput] = ACTIONS(245), - [anon_sym_BSLASHsubfile] = ACTIONS(245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(247), - [anon_sym_BSLASHbibliography] = ACTIONS(249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(251), - [anon_sym_BSLASHincludesvg] = ACTIONS(253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), - [anon_sym_BSLASHimport] = ACTIONS(259), - [anon_sym_BSLASHsubimport] = ACTIONS(259), - [anon_sym_BSLASHinputfrom] = ACTIONS(259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), - [anon_sym_BSLASHincludefrom] = ACTIONS(259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), - [anon_sym_BSLASHcaption] = ACTIONS(261), - [anon_sym_BSLASHcite] = ACTIONS(263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(265), - [anon_sym_BSLASHCite] = ACTIONS(263), - [anon_sym_BSLASHnocite] = ACTIONS(263), - [anon_sym_BSLASHcitet] = ACTIONS(263), - [anon_sym_BSLASHcitep] = ACTIONS(263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteauthor] = ACTIONS(263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitetitle] = ACTIONS(263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteyear] = ACTIONS(263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), - [anon_sym_BSLASHcitedate] = ACTIONS(263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), - [anon_sym_BSLASHciteurl] = ACTIONS(263), - [anon_sym_BSLASHfullcite] = ACTIONS(263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(263), - [anon_sym_BSLASHcitealt] = ACTIONS(263), - [anon_sym_BSLASHcitealp] = ACTIONS(263), - [anon_sym_BSLASHcitetext] = ACTIONS(263), - [anon_sym_BSLASHparencite] = ACTIONS(263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), - [anon_sym_BSLASHParencite] = ACTIONS(263), - [anon_sym_BSLASHfootcite] = ACTIONS(263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(263), - [anon_sym_BSLASHtextcite] = ACTIONS(263), - [anon_sym_BSLASHTextcite] = ACTIONS(263), - [anon_sym_BSLASHsmartcite] = ACTIONS(263), - [anon_sym_BSLASHSmartcite] = ACTIONS(263), - [anon_sym_BSLASHsupercite] = ACTIONS(263), - [anon_sym_BSLASHautocite] = ACTIONS(263), - [anon_sym_BSLASHAutocite] = ACTIONS(263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), - [anon_sym_BSLASHvolcite] = ACTIONS(263), - [anon_sym_BSLASHVolcite] = ACTIONS(263), - [anon_sym_BSLASHpvolcite] = ACTIONS(263), - [anon_sym_BSLASHPvolcite] = ACTIONS(263), - [anon_sym_BSLASHfvolcite] = ACTIONS(263), - [anon_sym_BSLASHftvolcite] = ACTIONS(263), - [anon_sym_BSLASHsvolcite] = ACTIONS(263), - [anon_sym_BSLASHSvolcite] = ACTIONS(263), - [anon_sym_BSLASHtvolcite] = ACTIONS(263), - [anon_sym_BSLASHTvolcite] = ACTIONS(263), - [anon_sym_BSLASHavolcite] = ACTIONS(263), - [anon_sym_BSLASHAvolcite] = ACTIONS(263), - [anon_sym_BSLASHnotecite] = ACTIONS(263), - [anon_sym_BSLASHNotecite] = ACTIONS(263), - [anon_sym_BSLASHpnotecite] = ACTIONS(263), - [anon_sym_BSLASHPnotecite] = ACTIONS(263), - [anon_sym_BSLASHfnotecite] = ACTIONS(263), - [anon_sym_BSLASHlabel] = ACTIONS(267), - [anon_sym_BSLASHref] = ACTIONS(269), - [anon_sym_BSLASHeqref] = ACTIONS(269), - [anon_sym_BSLASHvref] = ACTIONS(269), - [anon_sym_BSLASHVref] = ACTIONS(269), - [anon_sym_BSLASHautoref] = ACTIONS(269), - [anon_sym_BSLASHpageref] = ACTIONS(269), - [anon_sym_BSLASHcref] = ACTIONS(269), - [anon_sym_BSLASHCref] = ACTIONS(269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(271), - [anon_sym_BSLASHnamecref] = ACTIONS(269), - [anon_sym_BSLASHnameCref] = ACTIONS(269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), - [anon_sym_BSLASHlabelcref] = ACTIONS(269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), - [anon_sym_BSLASHcrefrange] = ACTIONS(273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHCrefrange] = ACTIONS(273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), - [anon_sym_BSLASHnewlabel] = ACTIONS(277), - [anon_sym_BSLASHnewcommand] = ACTIONS(279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), - [anon_sym_BSLASHdef] = ACTIONS(283), - [anon_sym_BSLASHlet] = ACTIONS(285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), - [anon_sym_BSLASHgls] = ACTIONS(291), - [anon_sym_BSLASHGls] = ACTIONS(291), - [anon_sym_BSLASHGLS] = ACTIONS(291), - [anon_sym_BSLASHglspl] = ACTIONS(291), - [anon_sym_BSLASHGlspl] = ACTIONS(291), - [anon_sym_BSLASHGLSpl] = ACTIONS(291), - [anon_sym_BSLASHglsdisp] = ACTIONS(291), - [anon_sym_BSLASHglslink] = ACTIONS(291), - [anon_sym_BSLASHglstext] = ACTIONS(291), - [anon_sym_BSLASHGlstext] = ACTIONS(291), - [anon_sym_BSLASHGLStext] = ACTIONS(291), - [anon_sym_BSLASHglsfirst] = ACTIONS(291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(291), - [anon_sym_BSLASHglsplural] = ACTIONS(291), - [anon_sym_BSLASHGlsplural] = ACTIONS(291), - [anon_sym_BSLASHGLSplural] = ACTIONS(291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), - [anon_sym_BSLASHglsname] = ACTIONS(291), - [anon_sym_BSLASHGlsname] = ACTIONS(291), - [anon_sym_BSLASHGLSname] = ACTIONS(291), - [anon_sym_BSLASHglssymbol] = ACTIONS(291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(291), - [anon_sym_BSLASHglsdesc] = ACTIONS(291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(291), - [anon_sym_BSLASHglsuseri] = ACTIONS(291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(291), - [anon_sym_BSLASHglsuserii] = ACTIONS(291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), - [anon_sym_BSLASHglsuserv] = ACTIONS(291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(291), - [anon_sym_BSLASHglsuservi] = ACTIONS(291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(291), - [anon_sym_BSLASHnewacronym] = ACTIONS(293), - [anon_sym_BSLASHacrshort] = ACTIONS(295), - [anon_sym_BSLASHAcrshort] = ACTIONS(295), - [anon_sym_BSLASHACRshort] = ACTIONS(295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(295), - [anon_sym_BSLASHacrlong] = ACTIONS(295), - [anon_sym_BSLASHAcrlong] = ACTIONS(295), - [anon_sym_BSLASHACRlong] = ACTIONS(295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(295), - [anon_sym_BSLASHacrfull] = ACTIONS(295), - [anon_sym_BSLASHAcrfull] = ACTIONS(295), - [anon_sym_BSLASHACRfull] = ACTIONS(295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(295), - [anon_sym_BSLASHacs] = ACTIONS(295), - [anon_sym_BSLASHAcs] = ACTIONS(295), - [anon_sym_BSLASHacsp] = ACTIONS(295), - [anon_sym_BSLASHAcsp] = ACTIONS(295), - [anon_sym_BSLASHacl] = ACTIONS(295), - [anon_sym_BSLASHAcl] = ACTIONS(295), - [anon_sym_BSLASHaclp] = ACTIONS(295), - [anon_sym_BSLASHAclp] = ACTIONS(295), - [anon_sym_BSLASHacf] = ACTIONS(295), - [anon_sym_BSLASHAcf] = ACTIONS(295), - [anon_sym_BSLASHacfp] = ACTIONS(295), - [anon_sym_BSLASHAcfp] = ACTIONS(295), - [anon_sym_BSLASHac] = ACTIONS(295), - [anon_sym_BSLASHAc] = ACTIONS(295), - [anon_sym_BSLASHacp] = ACTIONS(295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), - [anon_sym_BSLASHcolor] = ACTIONS(303), - [anon_sym_BSLASHcolorbox] = ACTIONS(303), - [anon_sym_BSLASHtextcolor] = ACTIONS(303), - [anon_sym_BSLASHpagecolor] = ACTIONS(303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [sym_command_name] = ACTIONS(187), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_BSLASHpart] = ACTIONS(2717), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddpart] = ACTIONS(2717), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHchapter] = ACTIONS(2717), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddchap] = ACTIONS(2717), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsection] = ACTIONS(2717), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddsec] = ACTIONS(2717), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHparagraph] = ACTIONS(2717), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2717), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHitem] = ACTIONS(2717), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(227), + [sym_placeholder] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym__] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASHbegin] = ACTIONS(2717), + [anon_sym_BSLASHend] = ACTIONS(2717), + [anon_sym_BSLASHusepackage] = ACTIONS(243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(245), + [anon_sym_BSLASHinclude] = ACTIONS(247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(247), + [anon_sym_BSLASHinput] = ACTIONS(247), + [anon_sym_BSLASHsubfile] = ACTIONS(247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(249), + [anon_sym_BSLASHbibliography] = ACTIONS(251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(253), + [anon_sym_BSLASHincludesvg] = ACTIONS(255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(259), + [anon_sym_BSLASHimport] = ACTIONS(261), + [anon_sym_BSLASHsubimport] = ACTIONS(261), + [anon_sym_BSLASHinputfrom] = ACTIONS(261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(261), + [anon_sym_BSLASHincludefrom] = ACTIONS(261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(261), + [anon_sym_BSLASHcaption] = ACTIONS(263), + [anon_sym_BSLASHcite] = ACTIONS(265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(267), + [anon_sym_BSLASHCite] = ACTIONS(265), + [anon_sym_BSLASHnocite] = ACTIONS(265), + [anon_sym_BSLASHcitet] = ACTIONS(265), + [anon_sym_BSLASHcitep] = ACTIONS(265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteauthor] = ACTIONS(265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitetitle] = ACTIONS(265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteyear] = ACTIONS(265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(267), + [anon_sym_BSLASHcitedate] = ACTIONS(265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(267), + [anon_sym_BSLASHciteurl] = ACTIONS(265), + [anon_sym_BSLASHfullcite] = ACTIONS(265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(265), + [anon_sym_BSLASHcitealt] = ACTIONS(265), + [anon_sym_BSLASHcitealp] = ACTIONS(265), + [anon_sym_BSLASHcitetext] = ACTIONS(265), + [anon_sym_BSLASHparencite] = ACTIONS(265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(267), + [anon_sym_BSLASHParencite] = ACTIONS(265), + [anon_sym_BSLASHfootcite] = ACTIONS(265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(265), + [anon_sym_BSLASHtextcite] = ACTIONS(265), + [anon_sym_BSLASHTextcite] = ACTIONS(265), + [anon_sym_BSLASHsmartcite] = ACTIONS(265), + [anon_sym_BSLASHSmartcite] = ACTIONS(265), + [anon_sym_BSLASHsupercite] = ACTIONS(265), + [anon_sym_BSLASHautocite] = ACTIONS(265), + [anon_sym_BSLASHAutocite] = ACTIONS(265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(267), + [anon_sym_BSLASHvolcite] = ACTIONS(265), + [anon_sym_BSLASHVolcite] = ACTIONS(265), + [anon_sym_BSLASHpvolcite] = ACTIONS(265), + [anon_sym_BSLASHPvolcite] = ACTIONS(265), + [anon_sym_BSLASHfvolcite] = ACTIONS(265), + [anon_sym_BSLASHftvolcite] = ACTIONS(265), + [anon_sym_BSLASHsvolcite] = ACTIONS(265), + [anon_sym_BSLASHSvolcite] = ACTIONS(265), + [anon_sym_BSLASHtvolcite] = ACTIONS(265), + [anon_sym_BSLASHTvolcite] = ACTIONS(265), + [anon_sym_BSLASHavolcite] = ACTIONS(265), + [anon_sym_BSLASHAvolcite] = ACTIONS(265), + [anon_sym_BSLASHnotecite] = ACTIONS(265), + [anon_sym_BSLASHNotecite] = ACTIONS(265), + [anon_sym_BSLASHpnotecite] = ACTIONS(265), + [anon_sym_BSLASHPnotecite] = ACTIONS(265), + [anon_sym_BSLASHfnotecite] = ACTIONS(265), + [anon_sym_BSLASHlabel] = ACTIONS(269), + [anon_sym_BSLASHref] = ACTIONS(271), + [anon_sym_BSLASHeqref] = ACTIONS(271), + [anon_sym_BSLASHvref] = ACTIONS(271), + [anon_sym_BSLASHVref] = ACTIONS(271), + [anon_sym_BSLASHautoref] = ACTIONS(271), + [anon_sym_BSLASHpageref] = ACTIONS(271), + [anon_sym_BSLASHcref] = ACTIONS(271), + [anon_sym_BSLASHCref] = ACTIONS(271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(273), + [anon_sym_BSLASHnamecref] = ACTIONS(271), + [anon_sym_BSLASHnameCref] = ACTIONS(271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(271), + [anon_sym_BSLASHlabelcref] = ACTIONS(271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(271), + [anon_sym_BSLASHcrefrange] = ACTIONS(275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHCrefrange] = ACTIONS(275), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(277), + [anon_sym_BSLASHnewlabel] = ACTIONS(279), + [anon_sym_BSLASHnewcommand] = ACTIONS(281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(283), + [anon_sym_BSLASHdef] = ACTIONS(285), + [anon_sym_BSLASHlet] = ACTIONS(287), + [anon_sym_BSLASHnewenvironment] = ACTIONS(289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(291), + [anon_sym_BSLASHgls] = ACTIONS(293), + [anon_sym_BSLASHGls] = ACTIONS(293), + [anon_sym_BSLASHGLS] = ACTIONS(293), + [anon_sym_BSLASHglspl] = ACTIONS(293), + [anon_sym_BSLASHGlspl] = ACTIONS(293), + [anon_sym_BSLASHGLSpl] = ACTIONS(293), + [anon_sym_BSLASHglsdisp] = ACTIONS(293), + [anon_sym_BSLASHglslink] = ACTIONS(293), + [anon_sym_BSLASHglstext] = ACTIONS(293), + [anon_sym_BSLASHGlstext] = ACTIONS(293), + [anon_sym_BSLASHGLStext] = ACTIONS(293), + [anon_sym_BSLASHglsfirst] = ACTIONS(293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(293), + [anon_sym_BSLASHglsplural] = ACTIONS(293), + [anon_sym_BSLASHGlsplural] = ACTIONS(293), + [anon_sym_BSLASHGLSplural] = ACTIONS(293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(293), + [anon_sym_BSLASHglsname] = ACTIONS(293), + [anon_sym_BSLASHGlsname] = ACTIONS(293), + [anon_sym_BSLASHGLSname] = ACTIONS(293), + [anon_sym_BSLASHglssymbol] = ACTIONS(293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(293), + [anon_sym_BSLASHglsdesc] = ACTIONS(293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(293), + [anon_sym_BSLASHglsuseri] = ACTIONS(293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(293), + [anon_sym_BSLASHglsuserii] = ACTIONS(293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(293), + [anon_sym_BSLASHglsuserv] = ACTIONS(293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(293), + [anon_sym_BSLASHglsuservi] = ACTIONS(293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(293), + [anon_sym_BSLASHnewacronym] = ACTIONS(295), + [anon_sym_BSLASHacrshort] = ACTIONS(297), + [anon_sym_BSLASHAcrshort] = ACTIONS(297), + [anon_sym_BSLASHACRshort] = ACTIONS(297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(297), + [anon_sym_BSLASHacrlong] = ACTIONS(297), + [anon_sym_BSLASHAcrlong] = ACTIONS(297), + [anon_sym_BSLASHACRlong] = ACTIONS(297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(297), + [anon_sym_BSLASHacrfull] = ACTIONS(297), + [anon_sym_BSLASHAcrfull] = ACTIONS(297), + [anon_sym_BSLASHACRfull] = ACTIONS(297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(297), + [anon_sym_BSLASHacs] = ACTIONS(297), + [anon_sym_BSLASHAcs] = ACTIONS(297), + [anon_sym_BSLASHacsp] = ACTIONS(297), + [anon_sym_BSLASHAcsp] = ACTIONS(297), + [anon_sym_BSLASHacl] = ACTIONS(297), + [anon_sym_BSLASHAcl] = ACTIONS(297), + [anon_sym_BSLASHaclp] = ACTIONS(297), + [anon_sym_BSLASHAclp] = ACTIONS(297), + [anon_sym_BSLASHacf] = ACTIONS(297), + [anon_sym_BSLASHAcf] = ACTIONS(297), + [anon_sym_BSLASHacfp] = ACTIONS(297), + [anon_sym_BSLASHAcfp] = ACTIONS(297), + [anon_sym_BSLASHac] = ACTIONS(297), + [anon_sym_BSLASHAc] = ACTIONS(297), + [anon_sym_BSLASHacp] = ACTIONS(297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(299), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(299), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(305), + [anon_sym_BSLASHcolor] = ACTIONS(307), + [anon_sym_BSLASHcolorbox] = ACTIONS(307), + [anon_sym_BSLASHtextcolor] = ACTIONS(307), + [anon_sym_BSLASHpagecolor] = ACTIONS(307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(309), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [213] = { [sym_block_comment] = STATE(971), @@ -91384,276 +91830,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(971), [sym_tikz_library_import] = STATE(971), [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(553), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_BSLASHpart] = ACTIONS(2677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddpart] = ACTIONS(2677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), - [anon_sym_BSLASHchapter] = ACTIONS(2677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddchap] = ACTIONS(2677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsection] = ACTIONS(2677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHaddsec] = ACTIONS(2677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), - [anon_sym_BSLASHparagraph] = ACTIONS(2677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), - [anon_sym_BSLASHitem] = ACTIONS(2677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(561), - [sym_placeholder] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASHbegin] = ACTIONS(2677), - [anon_sym_BSLASHusepackage] = ACTIONS(577), - [anon_sym_BSLASHRequirePackage] = ACTIONS(577), - [anon_sym_BSLASHdocumentclass] = ACTIONS(579), - [anon_sym_BSLASHinclude] = ACTIONS(581), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), - [anon_sym_BSLASHinput] = ACTIONS(581), - [anon_sym_BSLASHsubfile] = ACTIONS(581), - [anon_sym_BSLASHaddbibresource] = ACTIONS(583), - [anon_sym_BSLASHbibliography] = ACTIONS(585), - [anon_sym_BSLASHincludegraphics] = ACTIONS(587), - [anon_sym_BSLASHincludesvg] = ACTIONS(589), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), - [anon_sym_BSLASHverbatiminput] = ACTIONS(593), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), - [anon_sym_BSLASHimport] = ACTIONS(595), - [anon_sym_BSLASHsubimport] = ACTIONS(595), - [anon_sym_BSLASHinputfrom] = ACTIONS(595), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), - [anon_sym_BSLASHincludefrom] = ACTIONS(595), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), - [anon_sym_BSLASHcaption] = ACTIONS(597), - [anon_sym_BSLASHcite] = ACTIONS(599), - [anon_sym_BSLASHcite_STAR] = ACTIONS(601), - [anon_sym_BSLASHCite] = ACTIONS(599), - [anon_sym_BSLASHnocite] = ACTIONS(599), - [anon_sym_BSLASHcitet] = ACTIONS(599), - [anon_sym_BSLASHcitep] = ACTIONS(599), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteauthor] = ACTIONS(599), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHCiteauthor] = ACTIONS(599), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitetitle] = ACTIONS(599), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteyear] = ACTIONS(599), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), - [anon_sym_BSLASHcitedate] = ACTIONS(599), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), - [anon_sym_BSLASHciteurl] = ACTIONS(599), - [anon_sym_BSLASHfullcite] = ACTIONS(599), - [anon_sym_BSLASHciteyearpar] = ACTIONS(599), - [anon_sym_BSLASHcitealt] = ACTIONS(599), - [anon_sym_BSLASHcitealp] = ACTIONS(599), - [anon_sym_BSLASHcitetext] = ACTIONS(599), - [anon_sym_BSLASHparencite] = ACTIONS(599), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), - [anon_sym_BSLASHParencite] = ACTIONS(599), - [anon_sym_BSLASHfootcite] = ACTIONS(599), - [anon_sym_BSLASHfootfullcite] = ACTIONS(599), - [anon_sym_BSLASHfootcitetext] = ACTIONS(599), - [anon_sym_BSLASHtextcite] = ACTIONS(599), - [anon_sym_BSLASHTextcite] = ACTIONS(599), - [anon_sym_BSLASHsmartcite] = ACTIONS(599), - [anon_sym_BSLASHSmartcite] = ACTIONS(599), - [anon_sym_BSLASHsupercite] = ACTIONS(599), - [anon_sym_BSLASHautocite] = ACTIONS(599), - [anon_sym_BSLASHAutocite] = ACTIONS(599), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), - [anon_sym_BSLASHvolcite] = ACTIONS(599), - [anon_sym_BSLASHVolcite] = ACTIONS(599), - [anon_sym_BSLASHpvolcite] = ACTIONS(599), - [anon_sym_BSLASHPvolcite] = ACTIONS(599), - [anon_sym_BSLASHfvolcite] = ACTIONS(599), - [anon_sym_BSLASHftvolcite] = ACTIONS(599), - [anon_sym_BSLASHsvolcite] = ACTIONS(599), - [anon_sym_BSLASHSvolcite] = ACTIONS(599), - [anon_sym_BSLASHtvolcite] = ACTIONS(599), - [anon_sym_BSLASHTvolcite] = ACTIONS(599), - [anon_sym_BSLASHavolcite] = ACTIONS(599), - [anon_sym_BSLASHAvolcite] = ACTIONS(599), - [anon_sym_BSLASHnotecite] = ACTIONS(599), - [anon_sym_BSLASHNotecite] = ACTIONS(599), - [anon_sym_BSLASHpnotecite] = ACTIONS(599), - [anon_sym_BSLASHPnotecite] = ACTIONS(599), - [anon_sym_BSLASHfnotecite] = ACTIONS(599), - [anon_sym_BSLASHlabel] = ACTIONS(603), - [anon_sym_BSLASHref] = ACTIONS(605), - [anon_sym_BSLASHeqref] = ACTIONS(605), - [anon_sym_BSLASHvref] = ACTIONS(605), - [anon_sym_BSLASHVref] = ACTIONS(605), - [anon_sym_BSLASHautoref] = ACTIONS(605), - [anon_sym_BSLASHpageref] = ACTIONS(605), - [anon_sym_BSLASHcref] = ACTIONS(605), - [anon_sym_BSLASHCref] = ACTIONS(605), - [anon_sym_BSLASHcref_STAR] = ACTIONS(607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(607), - [anon_sym_BSLASHnamecref] = ACTIONS(605), - [anon_sym_BSLASHnameCref] = ACTIONS(605), - [anon_sym_BSLASHlcnamecref] = ACTIONS(605), - [anon_sym_BSLASHnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHnameCrefs] = ACTIONS(605), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), - [anon_sym_BSLASHlabelcref] = ACTIONS(605), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), - [anon_sym_BSLASHcrefrange] = ACTIONS(609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHCrefrange] = ACTIONS(609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), - [anon_sym_BSLASHnewlabel] = ACTIONS(613), - [anon_sym_BSLASHnewcommand] = ACTIONS(615), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(615), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), - [anon_sym_BSLASHdef] = ACTIONS(619), - [anon_sym_BSLASHlet] = ACTIONS(621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(623), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), - [anon_sym_BSLASHgls] = ACTIONS(627), - [anon_sym_BSLASHGls] = ACTIONS(627), - [anon_sym_BSLASHGLS] = ACTIONS(627), - [anon_sym_BSLASHglspl] = ACTIONS(627), - [anon_sym_BSLASHGlspl] = ACTIONS(627), - [anon_sym_BSLASHGLSpl] = ACTIONS(627), - [anon_sym_BSLASHglsdisp] = ACTIONS(627), - [anon_sym_BSLASHglslink] = ACTIONS(627), - [anon_sym_BSLASHglstext] = ACTIONS(627), - [anon_sym_BSLASHGlstext] = ACTIONS(627), - [anon_sym_BSLASHGLStext] = ACTIONS(627), - [anon_sym_BSLASHglsfirst] = ACTIONS(627), - [anon_sym_BSLASHGlsfirst] = ACTIONS(627), - [anon_sym_BSLASHGLSfirst] = ACTIONS(627), - [anon_sym_BSLASHglsplural] = ACTIONS(627), - [anon_sym_BSLASHGlsplural] = ACTIONS(627), - [anon_sym_BSLASHGLSplural] = ACTIONS(627), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), - [anon_sym_BSLASHglsname] = ACTIONS(627), - [anon_sym_BSLASHGlsname] = ACTIONS(627), - [anon_sym_BSLASHGLSname] = ACTIONS(627), - [anon_sym_BSLASHglssymbol] = ACTIONS(627), - [anon_sym_BSLASHGlssymbol] = ACTIONS(627), - [anon_sym_BSLASHglsdesc] = ACTIONS(627), - [anon_sym_BSLASHGlsdesc] = ACTIONS(627), - [anon_sym_BSLASHGLSdesc] = ACTIONS(627), - [anon_sym_BSLASHglsuseri] = ACTIONS(627), - [anon_sym_BSLASHGlsuseri] = ACTIONS(627), - [anon_sym_BSLASHGLSuseri] = ACTIONS(627), - [anon_sym_BSLASHglsuserii] = ACTIONS(627), - [anon_sym_BSLASHGlsuserii] = ACTIONS(627), - [anon_sym_BSLASHGLSuserii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), - [anon_sym_BSLASHglsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), - [anon_sym_BSLASHglsuserv] = ACTIONS(627), - [anon_sym_BSLASHGlsuserv] = ACTIONS(627), - [anon_sym_BSLASHGLSuserv] = ACTIONS(627), - [anon_sym_BSLASHglsuservi] = ACTIONS(627), - [anon_sym_BSLASHGlsuservi] = ACTIONS(627), - [anon_sym_BSLASHGLSuservi] = ACTIONS(627), - [anon_sym_BSLASHnewacronym] = ACTIONS(629), - [anon_sym_BSLASHacrshort] = ACTIONS(631), - [anon_sym_BSLASHAcrshort] = ACTIONS(631), - [anon_sym_BSLASHACRshort] = ACTIONS(631), - [anon_sym_BSLASHacrshortpl] = ACTIONS(631), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), - [anon_sym_BSLASHACRshortpl] = ACTIONS(631), - [anon_sym_BSLASHacrlong] = ACTIONS(631), - [anon_sym_BSLASHAcrlong] = ACTIONS(631), - [anon_sym_BSLASHACRlong] = ACTIONS(631), - [anon_sym_BSLASHacrlongpl] = ACTIONS(631), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), - [anon_sym_BSLASHACRlongpl] = ACTIONS(631), - [anon_sym_BSLASHacrfull] = ACTIONS(631), - [anon_sym_BSLASHAcrfull] = ACTIONS(631), - [anon_sym_BSLASHACRfull] = ACTIONS(631), - [anon_sym_BSLASHacrfullpl] = ACTIONS(631), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), - [anon_sym_BSLASHACRfullpl] = ACTIONS(631), - [anon_sym_BSLASHacs] = ACTIONS(631), - [anon_sym_BSLASHAcs] = ACTIONS(631), - [anon_sym_BSLASHacsp] = ACTIONS(631), - [anon_sym_BSLASHAcsp] = ACTIONS(631), - [anon_sym_BSLASHacl] = ACTIONS(631), - [anon_sym_BSLASHAcl] = ACTIONS(631), - [anon_sym_BSLASHaclp] = ACTIONS(631), - [anon_sym_BSLASHAclp] = ACTIONS(631), - [anon_sym_BSLASHacf] = ACTIONS(631), - [anon_sym_BSLASHAcf] = ACTIONS(631), - [anon_sym_BSLASHacfp] = ACTIONS(631), - [anon_sym_BSLASHAcfp] = ACTIONS(631), - [anon_sym_BSLASHac] = ACTIONS(631), - [anon_sym_BSLASHAc] = ACTIONS(631), - [anon_sym_BSLASHacp] = ACTIONS(631), - [anon_sym_BSLASHglsentrylong] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryshort] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), - [anon_sym_BSLASHnewtheorem] = ACTIONS(633), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), - [anon_sym_BSLASHdefinecolor] = ACTIONS(635), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), - [anon_sym_BSLASHcolor] = ACTIONS(639), - [anon_sym_BSLASHcolorbox] = ACTIONS(639), - [anon_sym_BSLASHtextcolor] = ACTIONS(639), - [anon_sym_BSLASHpagecolor] = ACTIONS(639), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [sym_command_name] = ACTIONS(560), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_BSLASHpart] = ACTIONS(2717), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddpart] = ACTIONS(2717), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2715), + [anon_sym_BSLASHchapter] = ACTIONS(2717), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddchap] = ACTIONS(2717), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsection] = ACTIONS(2717), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHaddsec] = ACTIONS(2717), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2717), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2715), + [anon_sym_BSLASHparagraph] = ACTIONS(2717), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2717), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2715), + [anon_sym_BSLASHitem] = ACTIONS(2717), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(568), + [sym_placeholder] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym__] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASHbegin] = ACTIONS(2717), + [anon_sym_BSLASHusepackage] = ACTIONS(584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(586), + [anon_sym_BSLASHinclude] = ACTIONS(588), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(588), + [anon_sym_BSLASHinput] = ACTIONS(588), + [anon_sym_BSLASHsubfile] = ACTIONS(588), + [anon_sym_BSLASHaddbibresource] = ACTIONS(590), + [anon_sym_BSLASHbibliography] = ACTIONS(592), + [anon_sym_BSLASHincludegraphics] = ACTIONS(594), + [anon_sym_BSLASHincludesvg] = ACTIONS(596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(598), + [anon_sym_BSLASHverbatiminput] = ACTIONS(600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(600), + [anon_sym_BSLASHimport] = ACTIONS(602), + [anon_sym_BSLASHsubimport] = ACTIONS(602), + [anon_sym_BSLASHinputfrom] = ACTIONS(602), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(602), + [anon_sym_BSLASHincludefrom] = ACTIONS(602), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(602), + [anon_sym_BSLASHcaption] = ACTIONS(604), + [anon_sym_BSLASHcite] = ACTIONS(606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(608), + [anon_sym_BSLASHCite] = ACTIONS(606), + [anon_sym_BSLASHnocite] = ACTIONS(606), + [anon_sym_BSLASHcitet] = ACTIONS(606), + [anon_sym_BSLASHcitep] = ACTIONS(606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteauthor] = ACTIONS(606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHCiteauthor] = ACTIONS(606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitetitle] = ACTIONS(606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteyear] = ACTIONS(606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(608), + [anon_sym_BSLASHcitedate] = ACTIONS(606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(608), + [anon_sym_BSLASHciteurl] = ACTIONS(606), + [anon_sym_BSLASHfullcite] = ACTIONS(606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(606), + [anon_sym_BSLASHcitealt] = ACTIONS(606), + [anon_sym_BSLASHcitealp] = ACTIONS(606), + [anon_sym_BSLASHcitetext] = ACTIONS(606), + [anon_sym_BSLASHparencite] = ACTIONS(606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(608), + [anon_sym_BSLASHParencite] = ACTIONS(606), + [anon_sym_BSLASHfootcite] = ACTIONS(606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(606), + [anon_sym_BSLASHtextcite] = ACTIONS(606), + [anon_sym_BSLASHTextcite] = ACTIONS(606), + [anon_sym_BSLASHsmartcite] = ACTIONS(606), + [anon_sym_BSLASHSmartcite] = ACTIONS(606), + [anon_sym_BSLASHsupercite] = ACTIONS(606), + [anon_sym_BSLASHautocite] = ACTIONS(606), + [anon_sym_BSLASHAutocite] = ACTIONS(606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(608), + [anon_sym_BSLASHvolcite] = ACTIONS(606), + [anon_sym_BSLASHVolcite] = ACTIONS(606), + [anon_sym_BSLASHpvolcite] = ACTIONS(606), + [anon_sym_BSLASHPvolcite] = ACTIONS(606), + [anon_sym_BSLASHfvolcite] = ACTIONS(606), + [anon_sym_BSLASHftvolcite] = ACTIONS(606), + [anon_sym_BSLASHsvolcite] = ACTIONS(606), + [anon_sym_BSLASHSvolcite] = ACTIONS(606), + [anon_sym_BSLASHtvolcite] = ACTIONS(606), + [anon_sym_BSLASHTvolcite] = ACTIONS(606), + [anon_sym_BSLASHavolcite] = ACTIONS(606), + [anon_sym_BSLASHAvolcite] = ACTIONS(606), + [anon_sym_BSLASHnotecite] = ACTIONS(606), + [anon_sym_BSLASHNotecite] = ACTIONS(606), + [anon_sym_BSLASHpnotecite] = ACTIONS(606), + [anon_sym_BSLASHPnotecite] = ACTIONS(606), + [anon_sym_BSLASHfnotecite] = ACTIONS(606), + [anon_sym_BSLASHlabel] = ACTIONS(610), + [anon_sym_BSLASHref] = ACTIONS(612), + [anon_sym_BSLASHeqref] = ACTIONS(612), + [anon_sym_BSLASHvref] = ACTIONS(612), + [anon_sym_BSLASHVref] = ACTIONS(612), + [anon_sym_BSLASHautoref] = ACTIONS(612), + [anon_sym_BSLASHpageref] = ACTIONS(612), + [anon_sym_BSLASHcref] = ACTIONS(612), + [anon_sym_BSLASHCref] = ACTIONS(612), + [anon_sym_BSLASHcref_STAR] = ACTIONS(614), + [anon_sym_BSLASHCref_STAR] = ACTIONS(614), + [anon_sym_BSLASHnamecref] = ACTIONS(612), + [anon_sym_BSLASHnameCref] = ACTIONS(612), + [anon_sym_BSLASHlcnamecref] = ACTIONS(612), + [anon_sym_BSLASHnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHnameCrefs] = ACTIONS(612), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(612), + [anon_sym_BSLASHlabelcref] = ACTIONS(612), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(612), + [anon_sym_BSLASHcrefrange] = ACTIONS(616), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHCrefrange] = ACTIONS(616), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(618), + [anon_sym_BSLASHnewlabel] = ACTIONS(620), + [anon_sym_BSLASHnewcommand] = ACTIONS(622), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(622), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(622), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(622), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(624), + [anon_sym_BSLASHdef] = ACTIONS(626), + [anon_sym_BSLASHlet] = ACTIONS(628), + [anon_sym_BSLASHnewenvironment] = ACTIONS(630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [anon_sym_BSLASHgls] = ACTIONS(634), + [anon_sym_BSLASHGls] = ACTIONS(634), + [anon_sym_BSLASHGLS] = ACTIONS(634), + [anon_sym_BSLASHglspl] = ACTIONS(634), + [anon_sym_BSLASHGlspl] = ACTIONS(634), + [anon_sym_BSLASHGLSpl] = ACTIONS(634), + [anon_sym_BSLASHglsdisp] = ACTIONS(634), + [anon_sym_BSLASHglslink] = ACTIONS(634), + [anon_sym_BSLASHglstext] = ACTIONS(634), + [anon_sym_BSLASHGlstext] = ACTIONS(634), + [anon_sym_BSLASHGLStext] = ACTIONS(634), + [anon_sym_BSLASHglsfirst] = ACTIONS(634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(634), + [anon_sym_BSLASHglsplural] = ACTIONS(634), + [anon_sym_BSLASHGlsplural] = ACTIONS(634), + [anon_sym_BSLASHGLSplural] = ACTIONS(634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(634), + [anon_sym_BSLASHglsname] = ACTIONS(634), + [anon_sym_BSLASHGlsname] = ACTIONS(634), + [anon_sym_BSLASHGLSname] = ACTIONS(634), + [anon_sym_BSLASHglssymbol] = ACTIONS(634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(634), + [anon_sym_BSLASHglsdesc] = ACTIONS(634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(634), + [anon_sym_BSLASHglsuseri] = ACTIONS(634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(634), + [anon_sym_BSLASHglsuserii] = ACTIONS(634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(634), + [anon_sym_BSLASHglsuserv] = ACTIONS(634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(634), + [anon_sym_BSLASHglsuservi] = ACTIONS(634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(634), + [anon_sym_BSLASHnewacronym] = ACTIONS(636), + [anon_sym_BSLASHacrshort] = ACTIONS(638), + [anon_sym_BSLASHAcrshort] = ACTIONS(638), + [anon_sym_BSLASHACRshort] = ACTIONS(638), + [anon_sym_BSLASHacrshortpl] = ACTIONS(638), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(638), + [anon_sym_BSLASHACRshortpl] = ACTIONS(638), + [anon_sym_BSLASHacrlong] = ACTIONS(638), + [anon_sym_BSLASHAcrlong] = ACTIONS(638), + [anon_sym_BSLASHACRlong] = ACTIONS(638), + [anon_sym_BSLASHacrlongpl] = ACTIONS(638), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(638), + [anon_sym_BSLASHACRlongpl] = ACTIONS(638), + [anon_sym_BSLASHacrfull] = ACTIONS(638), + [anon_sym_BSLASHAcrfull] = ACTIONS(638), + [anon_sym_BSLASHACRfull] = ACTIONS(638), + [anon_sym_BSLASHacrfullpl] = ACTIONS(638), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(638), + [anon_sym_BSLASHACRfullpl] = ACTIONS(638), + [anon_sym_BSLASHacs] = ACTIONS(638), + [anon_sym_BSLASHAcs] = ACTIONS(638), + [anon_sym_BSLASHacsp] = ACTIONS(638), + [anon_sym_BSLASHAcsp] = ACTIONS(638), + [anon_sym_BSLASHacl] = ACTIONS(638), + [anon_sym_BSLASHAcl] = ACTIONS(638), + [anon_sym_BSLASHaclp] = ACTIONS(638), + [anon_sym_BSLASHAclp] = ACTIONS(638), + [anon_sym_BSLASHacf] = ACTIONS(638), + [anon_sym_BSLASHAcf] = ACTIONS(638), + [anon_sym_BSLASHacfp] = ACTIONS(638), + [anon_sym_BSLASHAcfp] = ACTIONS(638), + [anon_sym_BSLASHac] = ACTIONS(638), + [anon_sym_BSLASHAc] = ACTIONS(638), + [anon_sym_BSLASHacp] = ACTIONS(638), + [anon_sym_BSLASHglsentrylong] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(638), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryshort] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(638), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(638), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(638), + [anon_sym_BSLASHnewtheorem] = ACTIONS(640), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(640), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(646), + [anon_sym_BSLASHcolor] = ACTIONS(648), + [anon_sym_BSLASHcolorbox] = ACTIONS(648), + [anon_sym_BSLASHtextcolor] = ACTIONS(648), + [anon_sym_BSLASHpagecolor] = ACTIONS(648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(650), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(650), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [214] = { [sym_block_comment] = STATE(862), @@ -91690,276 +92138,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(862), [sym_tikz_library_import] = STATE(862), [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(2911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_BSLASHpart] = ACTIONS(2687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddpart] = ACTIONS(2687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHchapter] = ACTIONS(2687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddchap] = ACTIONS(2687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsection] = ACTIONS(2687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddsec] = ACTIONS(2687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHparagraph] = ACTIONS(2687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHitem] = ACTIONS(2687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(2917), - [sym_placeholder] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym__] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_COLON] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2679), - [anon_sym_BSLASHbegin] = ACTIONS(2687), - [anon_sym_BSLASHusepackage] = ACTIONS(2926), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2926), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2929), - [anon_sym_BSLASHinclude] = ACTIONS(2932), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2932), - [anon_sym_BSLASHinput] = ACTIONS(2932), - [anon_sym_BSLASHsubfile] = ACTIONS(2932), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2935), - [anon_sym_BSLASHbibliography] = ACTIONS(2938), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2941), - [anon_sym_BSLASHincludesvg] = ACTIONS(2944), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2950), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2950), - [anon_sym_BSLASHimport] = ACTIONS(2953), - [anon_sym_BSLASHsubimport] = ACTIONS(2953), - [anon_sym_BSLASHinputfrom] = ACTIONS(2953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2953), - [anon_sym_BSLASHincludefrom] = ACTIONS(2953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2953), - [anon_sym_BSLASHcaption] = ACTIONS(2956), - [anon_sym_BSLASHcite] = ACTIONS(2959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2962), - [anon_sym_BSLASHCite] = ACTIONS(2959), - [anon_sym_BSLASHnocite] = ACTIONS(2959), - [anon_sym_BSLASHcitet] = ACTIONS(2959), - [anon_sym_BSLASHcitep] = ACTIONS(2959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2962), - [anon_sym_BSLASHciteauthor] = ACTIONS(2959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2962), - [anon_sym_BSLASHcitetitle] = ACTIONS(2959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2962), - [anon_sym_BSLASHciteyear] = ACTIONS(2959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2962), - [anon_sym_BSLASHcitedate] = ACTIONS(2959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2962), - [anon_sym_BSLASHciteurl] = ACTIONS(2959), - [anon_sym_BSLASHfullcite] = ACTIONS(2959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2959), - [anon_sym_BSLASHcitealt] = ACTIONS(2959), - [anon_sym_BSLASHcitealp] = ACTIONS(2959), - [anon_sym_BSLASHcitetext] = ACTIONS(2959), - [anon_sym_BSLASHparencite] = ACTIONS(2959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2962), - [anon_sym_BSLASHParencite] = ACTIONS(2959), - [anon_sym_BSLASHfootcite] = ACTIONS(2959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2959), - [anon_sym_BSLASHtextcite] = ACTIONS(2959), - [anon_sym_BSLASHTextcite] = ACTIONS(2959), - [anon_sym_BSLASHsmartcite] = ACTIONS(2959), - [anon_sym_BSLASHSmartcite] = ACTIONS(2959), - [anon_sym_BSLASHsupercite] = ACTIONS(2959), - [anon_sym_BSLASHautocite] = ACTIONS(2959), - [anon_sym_BSLASHAutocite] = ACTIONS(2959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2962), - [anon_sym_BSLASHvolcite] = ACTIONS(2959), - [anon_sym_BSLASHVolcite] = ACTIONS(2959), - [anon_sym_BSLASHpvolcite] = ACTIONS(2959), - [anon_sym_BSLASHPvolcite] = ACTIONS(2959), - [anon_sym_BSLASHfvolcite] = ACTIONS(2959), - [anon_sym_BSLASHftvolcite] = ACTIONS(2959), - [anon_sym_BSLASHsvolcite] = ACTIONS(2959), - [anon_sym_BSLASHSvolcite] = ACTIONS(2959), - [anon_sym_BSLASHtvolcite] = ACTIONS(2959), - [anon_sym_BSLASHTvolcite] = ACTIONS(2959), - [anon_sym_BSLASHavolcite] = ACTIONS(2959), - [anon_sym_BSLASHAvolcite] = ACTIONS(2959), - [anon_sym_BSLASHnotecite] = ACTIONS(2959), - [anon_sym_BSLASHNotecite] = ACTIONS(2959), - [anon_sym_BSLASHpnotecite] = ACTIONS(2959), - [anon_sym_BSLASHPnotecite] = ACTIONS(2959), - [anon_sym_BSLASHfnotecite] = ACTIONS(2959), - [anon_sym_BSLASHlabel] = ACTIONS(2965), - [anon_sym_BSLASHref] = ACTIONS(2968), - [anon_sym_BSLASHeqref] = ACTIONS(2968), - [anon_sym_BSLASHvref] = ACTIONS(2968), - [anon_sym_BSLASHVref] = ACTIONS(2968), - [anon_sym_BSLASHautoref] = ACTIONS(2968), - [anon_sym_BSLASHpageref] = ACTIONS(2968), - [anon_sym_BSLASHcref] = ACTIONS(2968), - [anon_sym_BSLASHCref] = ACTIONS(2968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2971), - [anon_sym_BSLASHnamecref] = ACTIONS(2968), - [anon_sym_BSLASHnameCref] = ACTIONS(2968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2968), - [anon_sym_BSLASHlabelcref] = ACTIONS(2968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2968), - [anon_sym_BSLASHcrefrange] = ACTIONS(2974), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2977), - [anon_sym_BSLASHCrefrange] = ACTIONS(2974), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2977), - [anon_sym_BSLASHnewlabel] = ACTIONS(2980), - [anon_sym_BSLASHnewcommand] = ACTIONS(2983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2986), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2986), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2986), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2986), - [anon_sym_BSLASHdef] = ACTIONS(2989), - [anon_sym_BSLASHlet] = ACTIONS(2992), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2998), - [anon_sym_BSLASHgls] = ACTIONS(3001), - [anon_sym_BSLASHGls] = ACTIONS(3001), - [anon_sym_BSLASHGLS] = ACTIONS(3001), - [anon_sym_BSLASHglspl] = ACTIONS(3001), - [anon_sym_BSLASHGlspl] = ACTIONS(3001), - [anon_sym_BSLASHGLSpl] = ACTIONS(3001), - [anon_sym_BSLASHglsdisp] = ACTIONS(3001), - [anon_sym_BSLASHglslink] = ACTIONS(3001), - [anon_sym_BSLASHglstext] = ACTIONS(3001), - [anon_sym_BSLASHGlstext] = ACTIONS(3001), - [anon_sym_BSLASHGLStext] = ACTIONS(3001), - [anon_sym_BSLASHglsfirst] = ACTIONS(3001), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3001), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3001), - [anon_sym_BSLASHglsplural] = ACTIONS(3001), - [anon_sym_BSLASHGlsplural] = ACTIONS(3001), - [anon_sym_BSLASHGLSplural] = ACTIONS(3001), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3001), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3001), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3001), - [anon_sym_BSLASHglsname] = ACTIONS(3001), - [anon_sym_BSLASHGlsname] = ACTIONS(3001), - [anon_sym_BSLASHGLSname] = ACTIONS(3001), - [anon_sym_BSLASHglssymbol] = ACTIONS(3001), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3001), - [anon_sym_BSLASHglsdesc] = ACTIONS(3001), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3001), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3001), - [anon_sym_BSLASHglsuseri] = ACTIONS(3001), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3001), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3001), - [anon_sym_BSLASHglsuserii] = ACTIONS(3001), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3001), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3001), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3001), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3001), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3001), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3001), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3001), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3001), - [anon_sym_BSLASHglsuserv] = ACTIONS(3001), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3001), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3001), - [anon_sym_BSLASHglsuservi] = ACTIONS(3001), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3001), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3001), - [anon_sym_BSLASHnewacronym] = ACTIONS(3004), - [anon_sym_BSLASHacrshort] = ACTIONS(3007), - [anon_sym_BSLASHAcrshort] = ACTIONS(3007), - [anon_sym_BSLASHACRshort] = ACTIONS(3007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3007), - [anon_sym_BSLASHacrlong] = ACTIONS(3007), - [anon_sym_BSLASHAcrlong] = ACTIONS(3007), - [anon_sym_BSLASHACRlong] = ACTIONS(3007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3007), - [anon_sym_BSLASHacrfull] = ACTIONS(3007), - [anon_sym_BSLASHAcrfull] = ACTIONS(3007), - [anon_sym_BSLASHACRfull] = ACTIONS(3007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3007), - [anon_sym_BSLASHacs] = ACTIONS(3007), - [anon_sym_BSLASHAcs] = ACTIONS(3007), - [anon_sym_BSLASHacsp] = ACTIONS(3007), - [anon_sym_BSLASHAcsp] = ACTIONS(3007), - [anon_sym_BSLASHacl] = ACTIONS(3007), - [anon_sym_BSLASHAcl] = ACTIONS(3007), - [anon_sym_BSLASHaclp] = ACTIONS(3007), - [anon_sym_BSLASHAclp] = ACTIONS(3007), - [anon_sym_BSLASHacf] = ACTIONS(3007), - [anon_sym_BSLASHAcf] = ACTIONS(3007), - [anon_sym_BSLASHacfp] = ACTIONS(3007), - [anon_sym_BSLASHAcfp] = ACTIONS(3007), - [anon_sym_BSLASHac] = ACTIONS(3007), - [anon_sym_BSLASHAc] = ACTIONS(3007), - [anon_sym_BSLASHacp] = ACTIONS(3007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3010), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3010), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3016), - [anon_sym_BSLASHcolor] = ACTIONS(3019), - [anon_sym_BSLASHcolorbox] = ACTIONS(3019), - [anon_sym_BSLASHtextcolor] = ACTIONS(3019), - [anon_sym_BSLASHpagecolor] = ACTIONS(3019), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3022), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3022), - [anon_sym_BSLASHtext] = ACTIONS(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [sym_command_name] = ACTIONS(2957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_BSLASHpart] = ACTIONS(2727), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddpart] = ACTIONS(2727), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHchapter] = ACTIONS(2727), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddchap] = ACTIONS(2727), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsection] = ACTIONS(2727), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddsec] = ACTIONS(2727), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHparagraph] = ACTIONS(2727), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2727), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHitem] = ACTIONS(2727), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(2963), + [sym_placeholder] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2969), + [anon_sym__] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_COLON] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(2727), + [anon_sym_BSLASHusepackage] = ACTIONS(2972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2975), + [anon_sym_BSLASHinclude] = ACTIONS(2978), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2978), + [anon_sym_BSLASHinput] = ACTIONS(2978), + [anon_sym_BSLASHsubfile] = ACTIONS(2978), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2981), + [anon_sym_BSLASHbibliography] = ACTIONS(2984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2987), + [anon_sym_BSLASHincludesvg] = ACTIONS(2990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2993), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2996), + [anon_sym_BSLASHimport] = ACTIONS(2999), + [anon_sym_BSLASHsubimport] = ACTIONS(2999), + [anon_sym_BSLASHinputfrom] = ACTIONS(2999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2999), + [anon_sym_BSLASHincludefrom] = ACTIONS(2999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2999), + [anon_sym_BSLASHcaption] = ACTIONS(3002), + [anon_sym_BSLASHcite] = ACTIONS(3005), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3008), + [anon_sym_BSLASHCite] = ACTIONS(3005), + [anon_sym_BSLASHnocite] = ACTIONS(3005), + [anon_sym_BSLASHcitet] = ACTIONS(3005), + [anon_sym_BSLASHcitep] = ACTIONS(3005), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3008), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3008), + [anon_sym_BSLASHciteauthor] = ACTIONS(3005), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3008), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3005), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3008), + [anon_sym_BSLASHcitetitle] = ACTIONS(3005), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3008), + [anon_sym_BSLASHciteyear] = ACTIONS(3005), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3008), + [anon_sym_BSLASHcitedate] = ACTIONS(3005), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3008), + [anon_sym_BSLASHciteurl] = ACTIONS(3005), + [anon_sym_BSLASHfullcite] = ACTIONS(3005), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3005), + [anon_sym_BSLASHcitealt] = ACTIONS(3005), + [anon_sym_BSLASHcitealp] = ACTIONS(3005), + [anon_sym_BSLASHcitetext] = ACTIONS(3005), + [anon_sym_BSLASHparencite] = ACTIONS(3005), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3008), + [anon_sym_BSLASHParencite] = ACTIONS(3005), + [anon_sym_BSLASHfootcite] = ACTIONS(3005), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3005), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3005), + [anon_sym_BSLASHtextcite] = ACTIONS(3005), + [anon_sym_BSLASHTextcite] = ACTIONS(3005), + [anon_sym_BSLASHsmartcite] = ACTIONS(3005), + [anon_sym_BSLASHSmartcite] = ACTIONS(3005), + [anon_sym_BSLASHsupercite] = ACTIONS(3005), + [anon_sym_BSLASHautocite] = ACTIONS(3005), + [anon_sym_BSLASHAutocite] = ACTIONS(3005), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3008), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3008), + [anon_sym_BSLASHvolcite] = ACTIONS(3005), + [anon_sym_BSLASHVolcite] = ACTIONS(3005), + [anon_sym_BSLASHpvolcite] = ACTIONS(3005), + [anon_sym_BSLASHPvolcite] = ACTIONS(3005), + [anon_sym_BSLASHfvolcite] = ACTIONS(3005), + [anon_sym_BSLASHftvolcite] = ACTIONS(3005), + [anon_sym_BSLASHsvolcite] = ACTIONS(3005), + [anon_sym_BSLASHSvolcite] = ACTIONS(3005), + [anon_sym_BSLASHtvolcite] = ACTIONS(3005), + [anon_sym_BSLASHTvolcite] = ACTIONS(3005), + [anon_sym_BSLASHavolcite] = ACTIONS(3005), + [anon_sym_BSLASHAvolcite] = ACTIONS(3005), + [anon_sym_BSLASHnotecite] = ACTIONS(3005), + [anon_sym_BSLASHNotecite] = ACTIONS(3005), + [anon_sym_BSLASHpnotecite] = ACTIONS(3005), + [anon_sym_BSLASHPnotecite] = ACTIONS(3005), + [anon_sym_BSLASHfnotecite] = ACTIONS(3005), + [anon_sym_BSLASHlabel] = ACTIONS(3011), + [anon_sym_BSLASHref] = ACTIONS(3014), + [anon_sym_BSLASHeqref] = ACTIONS(3014), + [anon_sym_BSLASHvref] = ACTIONS(3014), + [anon_sym_BSLASHVref] = ACTIONS(3014), + [anon_sym_BSLASHautoref] = ACTIONS(3014), + [anon_sym_BSLASHpageref] = ACTIONS(3014), + [anon_sym_BSLASHcref] = ACTIONS(3014), + [anon_sym_BSLASHCref] = ACTIONS(3014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3017), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3017), + [anon_sym_BSLASHnamecref] = ACTIONS(3014), + [anon_sym_BSLASHnameCref] = ACTIONS(3014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3014), + [anon_sym_BSLASHlabelcref] = ACTIONS(3014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3014), + [anon_sym_BSLASHcrefrange] = ACTIONS(3020), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3023), + [anon_sym_BSLASHCrefrange] = ACTIONS(3020), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3023), + [anon_sym_BSLASHnewlabel] = ACTIONS(3026), + [anon_sym_BSLASHnewcommand] = ACTIONS(3029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3032), + [anon_sym_BSLASHdef] = ACTIONS(3035), + [anon_sym_BSLASHlet] = ACTIONS(3038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3044), + [anon_sym_BSLASHgls] = ACTIONS(3047), + [anon_sym_BSLASHGls] = ACTIONS(3047), + [anon_sym_BSLASHGLS] = ACTIONS(3047), + [anon_sym_BSLASHglspl] = ACTIONS(3047), + [anon_sym_BSLASHGlspl] = ACTIONS(3047), + [anon_sym_BSLASHGLSpl] = ACTIONS(3047), + [anon_sym_BSLASHglsdisp] = ACTIONS(3047), + [anon_sym_BSLASHglslink] = ACTIONS(3047), + [anon_sym_BSLASHglstext] = ACTIONS(3047), + [anon_sym_BSLASHGlstext] = ACTIONS(3047), + [anon_sym_BSLASHGLStext] = ACTIONS(3047), + [anon_sym_BSLASHglsfirst] = ACTIONS(3047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3047), + [anon_sym_BSLASHglsplural] = ACTIONS(3047), + [anon_sym_BSLASHGlsplural] = ACTIONS(3047), + [anon_sym_BSLASHGLSplural] = ACTIONS(3047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3047), + [anon_sym_BSLASHglsname] = ACTIONS(3047), + [anon_sym_BSLASHGlsname] = ACTIONS(3047), + [anon_sym_BSLASHGLSname] = ACTIONS(3047), + [anon_sym_BSLASHglssymbol] = ACTIONS(3047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3047), + [anon_sym_BSLASHglsdesc] = ACTIONS(3047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3047), + [anon_sym_BSLASHglsuseri] = ACTIONS(3047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3047), + [anon_sym_BSLASHglsuserii] = ACTIONS(3047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3047), + [anon_sym_BSLASHglsuserv] = ACTIONS(3047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3047), + [anon_sym_BSLASHglsuservi] = ACTIONS(3047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3047), + [anon_sym_BSLASHnewacronym] = ACTIONS(3050), + [anon_sym_BSLASHacrshort] = ACTIONS(3053), + [anon_sym_BSLASHAcrshort] = ACTIONS(3053), + [anon_sym_BSLASHACRshort] = ACTIONS(3053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3053), + [anon_sym_BSLASHacrlong] = ACTIONS(3053), + [anon_sym_BSLASHAcrlong] = ACTIONS(3053), + [anon_sym_BSLASHACRlong] = ACTIONS(3053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3053), + [anon_sym_BSLASHacrfull] = ACTIONS(3053), + [anon_sym_BSLASHAcrfull] = ACTIONS(3053), + [anon_sym_BSLASHACRfull] = ACTIONS(3053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3053), + [anon_sym_BSLASHacs] = ACTIONS(3053), + [anon_sym_BSLASHAcs] = ACTIONS(3053), + [anon_sym_BSLASHacsp] = ACTIONS(3053), + [anon_sym_BSLASHAcsp] = ACTIONS(3053), + [anon_sym_BSLASHacl] = ACTIONS(3053), + [anon_sym_BSLASHAcl] = ACTIONS(3053), + [anon_sym_BSLASHaclp] = ACTIONS(3053), + [anon_sym_BSLASHAclp] = ACTIONS(3053), + [anon_sym_BSLASHacf] = ACTIONS(3053), + [anon_sym_BSLASHAcf] = ACTIONS(3053), + [anon_sym_BSLASHacfp] = ACTIONS(3053), + [anon_sym_BSLASHAcfp] = ACTIONS(3053), + [anon_sym_BSLASHac] = ACTIONS(3053), + [anon_sym_BSLASHAc] = ACTIONS(3053), + [anon_sym_BSLASHacp] = ACTIONS(3053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3056), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3056), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3065), + [anon_sym_BSLASHcolor] = ACTIONS(3068), + [anon_sym_BSLASHcolorbox] = ACTIONS(3068), + [anon_sym_BSLASHtextcolor] = ACTIONS(3068), + [anon_sym_BSLASHpagecolor] = ACTIONS(3068), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3071), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3071), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [215] = { [sym_block_comment] = STATE(1082), @@ -91996,276 +92446,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1082), [sym_tikz_library_import] = STATE(1082), [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(3025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_BSLASHpart] = ACTIONS(2687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddpart] = ACTIONS(2687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHchapter] = ACTIONS(2687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddchap] = ACTIONS(2687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsection] = ACTIONS(2687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddsec] = ACTIONS(2687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHparagraph] = ACTIONS(2687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHitem] = ACTIONS(2687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(3031), - [sym_placeholder] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym__] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASHbegin] = ACTIONS(2687), - [anon_sym_BSLASHend] = ACTIONS(2687), - [anon_sym_BSLASHusepackage] = ACTIONS(3040), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3040), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3043), - [anon_sym_BSLASHinclude] = ACTIONS(3046), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3046), - [anon_sym_BSLASHinput] = ACTIONS(3046), - [anon_sym_BSLASHsubfile] = ACTIONS(3046), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3049), - [anon_sym_BSLASHbibliography] = ACTIONS(3052), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3055), - [anon_sym_BSLASHincludesvg] = ACTIONS(3058), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3064), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3064), - [anon_sym_BSLASHimport] = ACTIONS(3067), - [anon_sym_BSLASHsubimport] = ACTIONS(3067), - [anon_sym_BSLASHinputfrom] = ACTIONS(3067), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3067), - [anon_sym_BSLASHincludefrom] = ACTIONS(3067), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3067), - [anon_sym_BSLASHcaption] = ACTIONS(3070), - [anon_sym_BSLASHcite] = ACTIONS(3073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3076), - [anon_sym_BSLASHCite] = ACTIONS(3073), - [anon_sym_BSLASHnocite] = ACTIONS(3073), - [anon_sym_BSLASHcitet] = ACTIONS(3073), - [anon_sym_BSLASHcitep] = ACTIONS(3073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3076), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3076), - [anon_sym_BSLASHciteauthor] = ACTIONS(3073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3076), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3076), - [anon_sym_BSLASHcitetitle] = ACTIONS(3073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3076), - [anon_sym_BSLASHciteyear] = ACTIONS(3073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3076), - [anon_sym_BSLASHcitedate] = ACTIONS(3073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3076), - [anon_sym_BSLASHciteurl] = ACTIONS(3073), - [anon_sym_BSLASHfullcite] = ACTIONS(3073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3073), - [anon_sym_BSLASHcitealt] = ACTIONS(3073), - [anon_sym_BSLASHcitealp] = ACTIONS(3073), - [anon_sym_BSLASHcitetext] = ACTIONS(3073), - [anon_sym_BSLASHparencite] = ACTIONS(3073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3076), - [anon_sym_BSLASHParencite] = ACTIONS(3073), - [anon_sym_BSLASHfootcite] = ACTIONS(3073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3073), - [anon_sym_BSLASHtextcite] = ACTIONS(3073), - [anon_sym_BSLASHTextcite] = ACTIONS(3073), - [anon_sym_BSLASHsmartcite] = ACTIONS(3073), - [anon_sym_BSLASHSmartcite] = ACTIONS(3073), - [anon_sym_BSLASHsupercite] = ACTIONS(3073), - [anon_sym_BSLASHautocite] = ACTIONS(3073), - [anon_sym_BSLASHAutocite] = ACTIONS(3073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3076), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3076), - [anon_sym_BSLASHvolcite] = ACTIONS(3073), - [anon_sym_BSLASHVolcite] = ACTIONS(3073), - [anon_sym_BSLASHpvolcite] = ACTIONS(3073), - [anon_sym_BSLASHPvolcite] = ACTIONS(3073), - [anon_sym_BSLASHfvolcite] = ACTIONS(3073), - [anon_sym_BSLASHftvolcite] = ACTIONS(3073), - [anon_sym_BSLASHsvolcite] = ACTIONS(3073), - [anon_sym_BSLASHSvolcite] = ACTIONS(3073), - [anon_sym_BSLASHtvolcite] = ACTIONS(3073), - [anon_sym_BSLASHTvolcite] = ACTIONS(3073), - [anon_sym_BSLASHavolcite] = ACTIONS(3073), - [anon_sym_BSLASHAvolcite] = ACTIONS(3073), - [anon_sym_BSLASHnotecite] = ACTIONS(3073), - [anon_sym_BSLASHNotecite] = ACTIONS(3073), - [anon_sym_BSLASHpnotecite] = ACTIONS(3073), - [anon_sym_BSLASHPnotecite] = ACTIONS(3073), - [anon_sym_BSLASHfnotecite] = ACTIONS(3073), - [anon_sym_BSLASHlabel] = ACTIONS(3079), - [anon_sym_BSLASHref] = ACTIONS(3082), - [anon_sym_BSLASHeqref] = ACTIONS(3082), - [anon_sym_BSLASHvref] = ACTIONS(3082), - [anon_sym_BSLASHVref] = ACTIONS(3082), - [anon_sym_BSLASHautoref] = ACTIONS(3082), - [anon_sym_BSLASHpageref] = ACTIONS(3082), - [anon_sym_BSLASHcref] = ACTIONS(3082), - [anon_sym_BSLASHCref] = ACTIONS(3082), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3085), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3085), - [anon_sym_BSLASHnamecref] = ACTIONS(3082), - [anon_sym_BSLASHnameCref] = ACTIONS(3082), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3082), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3082), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3082), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3082), - [anon_sym_BSLASHlabelcref] = ACTIONS(3082), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3082), - [anon_sym_BSLASHcrefrange] = ACTIONS(3088), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3091), - [anon_sym_BSLASHCrefrange] = ACTIONS(3088), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3091), - [anon_sym_BSLASHnewlabel] = ACTIONS(3094), - [anon_sym_BSLASHnewcommand] = ACTIONS(3097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3100), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3100), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3100), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3100), - [anon_sym_BSLASHdef] = ACTIONS(3103), - [anon_sym_BSLASHlet] = ACTIONS(3106), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3112), - [anon_sym_BSLASHgls] = ACTIONS(3115), - [anon_sym_BSLASHGls] = ACTIONS(3115), - [anon_sym_BSLASHGLS] = ACTIONS(3115), - [anon_sym_BSLASHglspl] = ACTIONS(3115), - [anon_sym_BSLASHGlspl] = ACTIONS(3115), - [anon_sym_BSLASHGLSpl] = ACTIONS(3115), - [anon_sym_BSLASHglsdisp] = ACTIONS(3115), - [anon_sym_BSLASHglslink] = ACTIONS(3115), - [anon_sym_BSLASHglstext] = ACTIONS(3115), - [anon_sym_BSLASHGlstext] = ACTIONS(3115), - [anon_sym_BSLASHGLStext] = ACTIONS(3115), - [anon_sym_BSLASHglsfirst] = ACTIONS(3115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3115), - [anon_sym_BSLASHglsplural] = ACTIONS(3115), - [anon_sym_BSLASHGlsplural] = ACTIONS(3115), - [anon_sym_BSLASHGLSplural] = ACTIONS(3115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3115), - [anon_sym_BSLASHglsname] = ACTIONS(3115), - [anon_sym_BSLASHGlsname] = ACTIONS(3115), - [anon_sym_BSLASHGLSname] = ACTIONS(3115), - [anon_sym_BSLASHglssymbol] = ACTIONS(3115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3115), - [anon_sym_BSLASHglsdesc] = ACTIONS(3115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3115), - [anon_sym_BSLASHglsuseri] = ACTIONS(3115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3115), - [anon_sym_BSLASHglsuserii] = ACTIONS(3115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3115), - [anon_sym_BSLASHglsuserv] = ACTIONS(3115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3115), - [anon_sym_BSLASHglsuservi] = ACTIONS(3115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3115), - [anon_sym_BSLASHnewacronym] = ACTIONS(3118), - [anon_sym_BSLASHacrshort] = ACTIONS(3121), - [anon_sym_BSLASHAcrshort] = ACTIONS(3121), - [anon_sym_BSLASHACRshort] = ACTIONS(3121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3121), - [anon_sym_BSLASHacrlong] = ACTIONS(3121), - [anon_sym_BSLASHAcrlong] = ACTIONS(3121), - [anon_sym_BSLASHACRlong] = ACTIONS(3121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3121), - [anon_sym_BSLASHacrfull] = ACTIONS(3121), - [anon_sym_BSLASHAcrfull] = ACTIONS(3121), - [anon_sym_BSLASHACRfull] = ACTIONS(3121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3121), - [anon_sym_BSLASHacs] = ACTIONS(3121), - [anon_sym_BSLASHAcs] = ACTIONS(3121), - [anon_sym_BSLASHacsp] = ACTIONS(3121), - [anon_sym_BSLASHAcsp] = ACTIONS(3121), - [anon_sym_BSLASHacl] = ACTIONS(3121), - [anon_sym_BSLASHAcl] = ACTIONS(3121), - [anon_sym_BSLASHaclp] = ACTIONS(3121), - [anon_sym_BSLASHAclp] = ACTIONS(3121), - [anon_sym_BSLASHacf] = ACTIONS(3121), - [anon_sym_BSLASHAcf] = ACTIONS(3121), - [anon_sym_BSLASHacfp] = ACTIONS(3121), - [anon_sym_BSLASHAcfp] = ACTIONS(3121), - [anon_sym_BSLASHac] = ACTIONS(3121), - [anon_sym_BSLASHAc] = ACTIONS(3121), - [anon_sym_BSLASHacp] = ACTIONS(3121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3124), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3124), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3127), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3130), - [anon_sym_BSLASHcolor] = ACTIONS(3133), - [anon_sym_BSLASHcolorbox] = ACTIONS(3133), - [anon_sym_BSLASHtextcolor] = ACTIONS(3133), - [anon_sym_BSLASHpagecolor] = ACTIONS(3133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3136), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3136), - [anon_sym_BSLASHtext] = ACTIONS(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [sym_command_name] = ACTIONS(3074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_BSLASHpart] = ACTIONS(2727), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddpart] = ACTIONS(2727), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHchapter] = ACTIONS(2727), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddchap] = ACTIONS(2727), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsection] = ACTIONS(2727), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddsec] = ACTIONS(2727), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHparagraph] = ACTIONS(2727), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2727), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHitem] = ACTIONS(2727), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(3080), + [sym_placeholder] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym__] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_COLON] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(2727), + [anon_sym_BSLASHend] = ACTIONS(2727), + [anon_sym_BSLASHusepackage] = ACTIONS(3089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3092), + [anon_sym_BSLASHinclude] = ACTIONS(3095), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3095), + [anon_sym_BSLASHinput] = ACTIONS(3095), + [anon_sym_BSLASHsubfile] = ACTIONS(3095), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3098), + [anon_sym_BSLASHbibliography] = ACTIONS(3101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3104), + [anon_sym_BSLASHincludesvg] = ACTIONS(3107), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3110), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3113), + [anon_sym_BSLASHimport] = ACTIONS(3116), + [anon_sym_BSLASHsubimport] = ACTIONS(3116), + [anon_sym_BSLASHinputfrom] = ACTIONS(3116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3116), + [anon_sym_BSLASHincludefrom] = ACTIONS(3116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3116), + [anon_sym_BSLASHcaption] = ACTIONS(3119), + [anon_sym_BSLASHcite] = ACTIONS(3122), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3125), + [anon_sym_BSLASHCite] = ACTIONS(3122), + [anon_sym_BSLASHnocite] = ACTIONS(3122), + [anon_sym_BSLASHcitet] = ACTIONS(3122), + [anon_sym_BSLASHcitep] = ACTIONS(3122), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3125), + [anon_sym_BSLASHciteauthor] = ACTIONS(3122), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3122), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3125), + [anon_sym_BSLASHcitetitle] = ACTIONS(3122), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3125), + [anon_sym_BSLASHciteyear] = ACTIONS(3122), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3125), + [anon_sym_BSLASHcitedate] = ACTIONS(3122), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3125), + [anon_sym_BSLASHciteurl] = ACTIONS(3122), + [anon_sym_BSLASHfullcite] = ACTIONS(3122), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3122), + [anon_sym_BSLASHcitealt] = ACTIONS(3122), + [anon_sym_BSLASHcitealp] = ACTIONS(3122), + [anon_sym_BSLASHcitetext] = ACTIONS(3122), + [anon_sym_BSLASHparencite] = ACTIONS(3122), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3125), + [anon_sym_BSLASHParencite] = ACTIONS(3122), + [anon_sym_BSLASHfootcite] = ACTIONS(3122), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3122), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3122), + [anon_sym_BSLASHtextcite] = ACTIONS(3122), + [anon_sym_BSLASHTextcite] = ACTIONS(3122), + [anon_sym_BSLASHsmartcite] = ACTIONS(3122), + [anon_sym_BSLASHSmartcite] = ACTIONS(3122), + [anon_sym_BSLASHsupercite] = ACTIONS(3122), + [anon_sym_BSLASHautocite] = ACTIONS(3122), + [anon_sym_BSLASHAutocite] = ACTIONS(3122), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3125), + [anon_sym_BSLASHvolcite] = ACTIONS(3122), + [anon_sym_BSLASHVolcite] = ACTIONS(3122), + [anon_sym_BSLASHpvolcite] = ACTIONS(3122), + [anon_sym_BSLASHPvolcite] = ACTIONS(3122), + [anon_sym_BSLASHfvolcite] = ACTIONS(3122), + [anon_sym_BSLASHftvolcite] = ACTIONS(3122), + [anon_sym_BSLASHsvolcite] = ACTIONS(3122), + [anon_sym_BSLASHSvolcite] = ACTIONS(3122), + [anon_sym_BSLASHtvolcite] = ACTIONS(3122), + [anon_sym_BSLASHTvolcite] = ACTIONS(3122), + [anon_sym_BSLASHavolcite] = ACTIONS(3122), + [anon_sym_BSLASHAvolcite] = ACTIONS(3122), + [anon_sym_BSLASHnotecite] = ACTIONS(3122), + [anon_sym_BSLASHNotecite] = ACTIONS(3122), + [anon_sym_BSLASHpnotecite] = ACTIONS(3122), + [anon_sym_BSLASHPnotecite] = ACTIONS(3122), + [anon_sym_BSLASHfnotecite] = ACTIONS(3122), + [anon_sym_BSLASHlabel] = ACTIONS(3128), + [anon_sym_BSLASHref] = ACTIONS(3131), + [anon_sym_BSLASHeqref] = ACTIONS(3131), + [anon_sym_BSLASHvref] = ACTIONS(3131), + [anon_sym_BSLASHVref] = ACTIONS(3131), + [anon_sym_BSLASHautoref] = ACTIONS(3131), + [anon_sym_BSLASHpageref] = ACTIONS(3131), + [anon_sym_BSLASHcref] = ACTIONS(3131), + [anon_sym_BSLASHCref] = ACTIONS(3131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3134), + [anon_sym_BSLASHnamecref] = ACTIONS(3131), + [anon_sym_BSLASHnameCref] = ACTIONS(3131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3131), + [anon_sym_BSLASHlabelcref] = ACTIONS(3131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3131), + [anon_sym_BSLASHcrefrange] = ACTIONS(3137), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3140), + [anon_sym_BSLASHCrefrange] = ACTIONS(3137), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3140), + [anon_sym_BSLASHnewlabel] = ACTIONS(3143), + [anon_sym_BSLASHnewcommand] = ACTIONS(3146), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3146), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3146), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3146), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3149), + [anon_sym_BSLASHdef] = ACTIONS(3152), + [anon_sym_BSLASHlet] = ACTIONS(3155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3161), + [anon_sym_BSLASHgls] = ACTIONS(3164), + [anon_sym_BSLASHGls] = ACTIONS(3164), + [anon_sym_BSLASHGLS] = ACTIONS(3164), + [anon_sym_BSLASHglspl] = ACTIONS(3164), + [anon_sym_BSLASHGlspl] = ACTIONS(3164), + [anon_sym_BSLASHGLSpl] = ACTIONS(3164), + [anon_sym_BSLASHglsdisp] = ACTIONS(3164), + [anon_sym_BSLASHglslink] = ACTIONS(3164), + [anon_sym_BSLASHglstext] = ACTIONS(3164), + [anon_sym_BSLASHGlstext] = ACTIONS(3164), + [anon_sym_BSLASHGLStext] = ACTIONS(3164), + [anon_sym_BSLASHglsfirst] = ACTIONS(3164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3164), + [anon_sym_BSLASHglsplural] = ACTIONS(3164), + [anon_sym_BSLASHGlsplural] = ACTIONS(3164), + [anon_sym_BSLASHGLSplural] = ACTIONS(3164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3164), + [anon_sym_BSLASHglsname] = ACTIONS(3164), + [anon_sym_BSLASHGlsname] = ACTIONS(3164), + [anon_sym_BSLASHGLSname] = ACTIONS(3164), + [anon_sym_BSLASHglssymbol] = ACTIONS(3164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3164), + [anon_sym_BSLASHglsdesc] = ACTIONS(3164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3164), + [anon_sym_BSLASHglsuseri] = ACTIONS(3164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3164), + [anon_sym_BSLASHglsuserii] = ACTIONS(3164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3164), + [anon_sym_BSLASHglsuserv] = ACTIONS(3164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3164), + [anon_sym_BSLASHglsuservi] = ACTIONS(3164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3164), + [anon_sym_BSLASHnewacronym] = ACTIONS(3167), + [anon_sym_BSLASHacrshort] = ACTIONS(3170), + [anon_sym_BSLASHAcrshort] = ACTIONS(3170), + [anon_sym_BSLASHACRshort] = ACTIONS(3170), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3170), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3170), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3170), + [anon_sym_BSLASHacrlong] = ACTIONS(3170), + [anon_sym_BSLASHAcrlong] = ACTIONS(3170), + [anon_sym_BSLASHACRlong] = ACTIONS(3170), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3170), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3170), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3170), + [anon_sym_BSLASHacrfull] = ACTIONS(3170), + [anon_sym_BSLASHAcrfull] = ACTIONS(3170), + [anon_sym_BSLASHACRfull] = ACTIONS(3170), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3170), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3170), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3170), + [anon_sym_BSLASHacs] = ACTIONS(3170), + [anon_sym_BSLASHAcs] = ACTIONS(3170), + [anon_sym_BSLASHacsp] = ACTIONS(3170), + [anon_sym_BSLASHAcsp] = ACTIONS(3170), + [anon_sym_BSLASHacl] = ACTIONS(3170), + [anon_sym_BSLASHAcl] = ACTIONS(3170), + [anon_sym_BSLASHaclp] = ACTIONS(3170), + [anon_sym_BSLASHAclp] = ACTIONS(3170), + [anon_sym_BSLASHacf] = ACTIONS(3170), + [anon_sym_BSLASHAcf] = ACTIONS(3170), + [anon_sym_BSLASHacfp] = ACTIONS(3170), + [anon_sym_BSLASHAcfp] = ACTIONS(3170), + [anon_sym_BSLASHac] = ACTIONS(3170), + [anon_sym_BSLASHAc] = ACTIONS(3170), + [anon_sym_BSLASHacp] = ACTIONS(3170), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3170), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3170), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3170), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3170), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3170), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3170), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3170), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3170), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3170), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3170), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3173), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3176), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3173), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3176), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3179), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3182), + [anon_sym_BSLASHcolor] = ACTIONS(3185), + [anon_sym_BSLASHcolorbox] = ACTIONS(3185), + [anon_sym_BSLASHtextcolor] = ACTIONS(3185), + [anon_sym_BSLASHpagecolor] = ACTIONS(3185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3188), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3188), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [216] = { [sym_block_comment] = STATE(971), @@ -92302,276 +92754,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(971), [sym_tikz_library_import] = STATE(971), [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(3139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_BSLASHpart] = ACTIONS(2687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddpart] = ACTIONS(2687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), - [anon_sym_BSLASHchapter] = ACTIONS(2687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddchap] = ACTIONS(2687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsection] = ACTIONS(2687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHaddsec] = ACTIONS(2687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), - [anon_sym_BSLASHparagraph] = ACTIONS(2687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), - [anon_sym_BSLASHitem] = ACTIONS(2687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(3145), - [sym_placeholder] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym__] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASHbegin] = ACTIONS(2687), - [anon_sym_BSLASHusepackage] = ACTIONS(3154), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3154), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3157), - [anon_sym_BSLASHinclude] = ACTIONS(3160), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3160), - [anon_sym_BSLASHinput] = ACTIONS(3160), - [anon_sym_BSLASHsubfile] = ACTIONS(3160), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3163), - [anon_sym_BSLASHbibliography] = ACTIONS(3166), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3169), - [anon_sym_BSLASHincludesvg] = ACTIONS(3172), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3178), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3178), - [anon_sym_BSLASHimport] = ACTIONS(3181), - [anon_sym_BSLASHsubimport] = ACTIONS(3181), - [anon_sym_BSLASHinputfrom] = ACTIONS(3181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3181), - [anon_sym_BSLASHincludefrom] = ACTIONS(3181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3181), - [anon_sym_BSLASHcaption] = ACTIONS(3184), - [anon_sym_BSLASHcite] = ACTIONS(3187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3190), - [anon_sym_BSLASHCite] = ACTIONS(3187), - [anon_sym_BSLASHnocite] = ACTIONS(3187), - [anon_sym_BSLASHcitet] = ACTIONS(3187), - [anon_sym_BSLASHcitep] = ACTIONS(3187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3190), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3190), - [anon_sym_BSLASHciteauthor] = ACTIONS(3187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3190), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3190), - [anon_sym_BSLASHcitetitle] = ACTIONS(3187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3190), - [anon_sym_BSLASHciteyear] = ACTIONS(3187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3190), - [anon_sym_BSLASHcitedate] = ACTIONS(3187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3190), - [anon_sym_BSLASHciteurl] = ACTIONS(3187), - [anon_sym_BSLASHfullcite] = ACTIONS(3187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3187), - [anon_sym_BSLASHcitealt] = ACTIONS(3187), - [anon_sym_BSLASHcitealp] = ACTIONS(3187), - [anon_sym_BSLASHcitetext] = ACTIONS(3187), - [anon_sym_BSLASHparencite] = ACTIONS(3187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3190), - [anon_sym_BSLASHParencite] = ACTIONS(3187), - [anon_sym_BSLASHfootcite] = ACTIONS(3187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3187), - [anon_sym_BSLASHtextcite] = ACTIONS(3187), - [anon_sym_BSLASHTextcite] = ACTIONS(3187), - [anon_sym_BSLASHsmartcite] = ACTIONS(3187), - [anon_sym_BSLASHSmartcite] = ACTIONS(3187), - [anon_sym_BSLASHsupercite] = ACTIONS(3187), - [anon_sym_BSLASHautocite] = ACTIONS(3187), - [anon_sym_BSLASHAutocite] = ACTIONS(3187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3190), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3190), - [anon_sym_BSLASHvolcite] = ACTIONS(3187), - [anon_sym_BSLASHVolcite] = ACTIONS(3187), - [anon_sym_BSLASHpvolcite] = ACTIONS(3187), - [anon_sym_BSLASHPvolcite] = ACTIONS(3187), - [anon_sym_BSLASHfvolcite] = ACTIONS(3187), - [anon_sym_BSLASHftvolcite] = ACTIONS(3187), - [anon_sym_BSLASHsvolcite] = ACTIONS(3187), - [anon_sym_BSLASHSvolcite] = ACTIONS(3187), - [anon_sym_BSLASHtvolcite] = ACTIONS(3187), - [anon_sym_BSLASHTvolcite] = ACTIONS(3187), - [anon_sym_BSLASHavolcite] = ACTIONS(3187), - [anon_sym_BSLASHAvolcite] = ACTIONS(3187), - [anon_sym_BSLASHnotecite] = ACTIONS(3187), - [anon_sym_BSLASHNotecite] = ACTIONS(3187), - [anon_sym_BSLASHpnotecite] = ACTIONS(3187), - [anon_sym_BSLASHPnotecite] = ACTIONS(3187), - [anon_sym_BSLASHfnotecite] = ACTIONS(3187), - [anon_sym_BSLASHlabel] = ACTIONS(3193), - [anon_sym_BSLASHref] = ACTIONS(3196), - [anon_sym_BSLASHeqref] = ACTIONS(3196), - [anon_sym_BSLASHvref] = ACTIONS(3196), - [anon_sym_BSLASHVref] = ACTIONS(3196), - [anon_sym_BSLASHautoref] = ACTIONS(3196), - [anon_sym_BSLASHpageref] = ACTIONS(3196), - [anon_sym_BSLASHcref] = ACTIONS(3196), - [anon_sym_BSLASHCref] = ACTIONS(3196), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3199), - [anon_sym_BSLASHnamecref] = ACTIONS(3196), - [anon_sym_BSLASHnameCref] = ACTIONS(3196), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3196), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3196), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3196), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3196), - [anon_sym_BSLASHlabelcref] = ACTIONS(3196), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3196), - [anon_sym_BSLASHcrefrange] = ACTIONS(3202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3205), - [anon_sym_BSLASHCrefrange] = ACTIONS(3202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3205), - [anon_sym_BSLASHnewlabel] = ACTIONS(3208), - [anon_sym_BSLASHnewcommand] = ACTIONS(3211), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3214), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3211), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3214), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3211), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3214), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3211), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3214), - [anon_sym_BSLASHdef] = ACTIONS(3217), - [anon_sym_BSLASHlet] = ACTIONS(3220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3223), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3226), - [anon_sym_BSLASHgls] = ACTIONS(3229), - [anon_sym_BSLASHGls] = ACTIONS(3229), - [anon_sym_BSLASHGLS] = ACTIONS(3229), - [anon_sym_BSLASHglspl] = ACTIONS(3229), - [anon_sym_BSLASHGlspl] = ACTIONS(3229), - [anon_sym_BSLASHGLSpl] = ACTIONS(3229), - [anon_sym_BSLASHglsdisp] = ACTIONS(3229), - [anon_sym_BSLASHglslink] = ACTIONS(3229), - [anon_sym_BSLASHglstext] = ACTIONS(3229), - [anon_sym_BSLASHGlstext] = ACTIONS(3229), - [anon_sym_BSLASHGLStext] = ACTIONS(3229), - [anon_sym_BSLASHglsfirst] = ACTIONS(3229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3229), - [anon_sym_BSLASHglsplural] = ACTIONS(3229), - [anon_sym_BSLASHGlsplural] = ACTIONS(3229), - [anon_sym_BSLASHGLSplural] = ACTIONS(3229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3229), - [anon_sym_BSLASHglsname] = ACTIONS(3229), - [anon_sym_BSLASHGlsname] = ACTIONS(3229), - [anon_sym_BSLASHGLSname] = ACTIONS(3229), - [anon_sym_BSLASHglssymbol] = ACTIONS(3229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3229), - [anon_sym_BSLASHglsdesc] = ACTIONS(3229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3229), - [anon_sym_BSLASHglsuseri] = ACTIONS(3229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3229), - [anon_sym_BSLASHglsuserii] = ACTIONS(3229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3229), - [anon_sym_BSLASHglsuserv] = ACTIONS(3229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3229), - [anon_sym_BSLASHglsuservi] = ACTIONS(3229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3229), - [anon_sym_BSLASHnewacronym] = ACTIONS(3232), - [anon_sym_BSLASHacrshort] = ACTIONS(3235), - [anon_sym_BSLASHAcrshort] = ACTIONS(3235), - [anon_sym_BSLASHACRshort] = ACTIONS(3235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3235), - [anon_sym_BSLASHacrlong] = ACTIONS(3235), - [anon_sym_BSLASHAcrlong] = ACTIONS(3235), - [anon_sym_BSLASHACRlong] = ACTIONS(3235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3235), - [anon_sym_BSLASHacrfull] = ACTIONS(3235), - [anon_sym_BSLASHAcrfull] = ACTIONS(3235), - [anon_sym_BSLASHACRfull] = ACTIONS(3235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3235), - [anon_sym_BSLASHacs] = ACTIONS(3235), - [anon_sym_BSLASHAcs] = ACTIONS(3235), - [anon_sym_BSLASHacsp] = ACTIONS(3235), - [anon_sym_BSLASHAcsp] = ACTIONS(3235), - [anon_sym_BSLASHacl] = ACTIONS(3235), - [anon_sym_BSLASHAcl] = ACTIONS(3235), - [anon_sym_BSLASHaclp] = ACTIONS(3235), - [anon_sym_BSLASHAclp] = ACTIONS(3235), - [anon_sym_BSLASHacf] = ACTIONS(3235), - [anon_sym_BSLASHAcf] = ACTIONS(3235), - [anon_sym_BSLASHacfp] = ACTIONS(3235), - [anon_sym_BSLASHAcfp] = ACTIONS(3235), - [anon_sym_BSLASHac] = ACTIONS(3235), - [anon_sym_BSLASHAc] = ACTIONS(3235), - [anon_sym_BSLASHacp] = ACTIONS(3235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3238), - [anon_sym_BSLASHdeclaretheorem] = 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(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [sym_command_name] = ACTIONS(3191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_BSLASHpart] = ACTIONS(2727), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddpart] = ACTIONS(2727), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2719), + [anon_sym_BSLASHchapter] = ACTIONS(2727), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddchap] = ACTIONS(2727), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsection] = ACTIONS(2727), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHaddsec] = ACTIONS(2727), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2727), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2719), + [anon_sym_BSLASHparagraph] = ACTIONS(2727), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2727), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2719), + [anon_sym_BSLASHitem] = ACTIONS(2727), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(3197), + [sym_placeholder] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), + [anon_sym__] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_COLON] = ACTIONS(3203), + [anon_sym_SQUOTE] = ACTIONS(3203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(2727), + [anon_sym_BSLASHusepackage] = ACTIONS(3206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3209), + [anon_sym_BSLASHinclude] = ACTIONS(3212), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3212), + [anon_sym_BSLASHinput] = ACTIONS(3212), + [anon_sym_BSLASHsubfile] = ACTIONS(3212), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3215), + [anon_sym_BSLASHbibliography] = ACTIONS(3218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3221), + [anon_sym_BSLASHincludesvg] = ACTIONS(3224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3230), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3230), + [anon_sym_BSLASHimport] = ACTIONS(3233), + [anon_sym_BSLASHsubimport] = ACTIONS(3233), + [anon_sym_BSLASHinputfrom] = ACTIONS(3233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3233), + [anon_sym_BSLASHincludefrom] = ACTIONS(3233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3233), + [anon_sym_BSLASHcaption] = ACTIONS(3236), + [anon_sym_BSLASHcite] = ACTIONS(3239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3242), + [anon_sym_BSLASHCite] = ACTIONS(3239), + [anon_sym_BSLASHnocite] = ACTIONS(3239), + [anon_sym_BSLASHcitet] = ACTIONS(3239), + [anon_sym_BSLASHcitep] = ACTIONS(3239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3242), + [anon_sym_BSLASHciteauthor] = ACTIONS(3239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3242), + [anon_sym_BSLASHcitetitle] = ACTIONS(3239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3242), + [anon_sym_BSLASHciteyear] = ACTIONS(3239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3242), + [anon_sym_BSLASHcitedate] = ACTIONS(3239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3242), + [anon_sym_BSLASHciteurl] = ACTIONS(3239), + [anon_sym_BSLASHfullcite] = ACTIONS(3239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3239), + [anon_sym_BSLASHcitealt] = ACTIONS(3239), + [anon_sym_BSLASHcitealp] = ACTIONS(3239), + [anon_sym_BSLASHcitetext] = ACTIONS(3239), + [anon_sym_BSLASHparencite] = ACTIONS(3239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3242), + [anon_sym_BSLASHParencite] = ACTIONS(3239), + [anon_sym_BSLASHfootcite] = ACTIONS(3239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3239), + [anon_sym_BSLASHtextcite] = ACTIONS(3239), + [anon_sym_BSLASHTextcite] = ACTIONS(3239), + [anon_sym_BSLASHsmartcite] = ACTIONS(3239), + [anon_sym_BSLASHSmartcite] = ACTIONS(3239), + [anon_sym_BSLASHsupercite] = ACTIONS(3239), + [anon_sym_BSLASHautocite] = ACTIONS(3239), + [anon_sym_BSLASHAutocite] = ACTIONS(3239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3242), + [anon_sym_BSLASHvolcite] = ACTIONS(3239), + [anon_sym_BSLASHVolcite] = ACTIONS(3239), + [anon_sym_BSLASHpvolcite] = ACTIONS(3239), + [anon_sym_BSLASHPvolcite] = ACTIONS(3239), + [anon_sym_BSLASHfvolcite] = ACTIONS(3239), + [anon_sym_BSLASHftvolcite] = ACTIONS(3239), + [anon_sym_BSLASHsvolcite] = ACTIONS(3239), + [anon_sym_BSLASHSvolcite] = ACTIONS(3239), + [anon_sym_BSLASHtvolcite] = ACTIONS(3239), + [anon_sym_BSLASHTvolcite] = ACTIONS(3239), + [anon_sym_BSLASHavolcite] = ACTIONS(3239), + [anon_sym_BSLASHAvolcite] = ACTIONS(3239), + [anon_sym_BSLASHnotecite] = ACTIONS(3239), + [anon_sym_BSLASHNotecite] = ACTIONS(3239), + [anon_sym_BSLASHpnotecite] = ACTIONS(3239), + [anon_sym_BSLASHPnotecite] = ACTIONS(3239), + [anon_sym_BSLASHfnotecite] = ACTIONS(3239), + [anon_sym_BSLASHlabel] = ACTIONS(3245), + [anon_sym_BSLASHref] = ACTIONS(3248), + [anon_sym_BSLASHeqref] = ACTIONS(3248), + [anon_sym_BSLASHvref] = ACTIONS(3248), + [anon_sym_BSLASHVref] = ACTIONS(3248), + [anon_sym_BSLASHautoref] = ACTIONS(3248), + [anon_sym_BSLASHpageref] = ACTIONS(3248), + [anon_sym_BSLASHcref] = ACTIONS(3248), + [anon_sym_BSLASHCref] = ACTIONS(3248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3251), + [anon_sym_BSLASHnamecref] = ACTIONS(3248), + [anon_sym_BSLASHnameCref] = ACTIONS(3248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3248), + [anon_sym_BSLASHlabelcref] = ACTIONS(3248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3248), + [anon_sym_BSLASHcrefrange] = ACTIONS(3254), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3257), + [anon_sym_BSLASHCrefrange] = ACTIONS(3254), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3257), + [anon_sym_BSLASHnewlabel] = ACTIONS(3260), + [anon_sym_BSLASHnewcommand] = ACTIONS(3263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3266), + [anon_sym_BSLASHdef] = ACTIONS(3269), + [anon_sym_BSLASHlet] = ACTIONS(3272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3275), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3278), + [anon_sym_BSLASHgls] = ACTIONS(3281), + [anon_sym_BSLASHGls] = ACTIONS(3281), + [anon_sym_BSLASHGLS] = ACTIONS(3281), + [anon_sym_BSLASHglspl] = ACTIONS(3281), + [anon_sym_BSLASHGlspl] = ACTIONS(3281), + [anon_sym_BSLASHGLSpl] = ACTIONS(3281), + [anon_sym_BSLASHglsdisp] = ACTIONS(3281), + [anon_sym_BSLASHglslink] = ACTIONS(3281), + [anon_sym_BSLASHglstext] = ACTIONS(3281), + [anon_sym_BSLASHGlstext] = ACTIONS(3281), + [anon_sym_BSLASHGLStext] = ACTIONS(3281), + [anon_sym_BSLASHglsfirst] = ACTIONS(3281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3281), + [anon_sym_BSLASHglsplural] = ACTIONS(3281), + [anon_sym_BSLASHGlsplural] = ACTIONS(3281), + [anon_sym_BSLASHGLSplural] = ACTIONS(3281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3281), + [anon_sym_BSLASHglsname] = ACTIONS(3281), + [anon_sym_BSLASHGlsname] = ACTIONS(3281), + [anon_sym_BSLASHGLSname] = ACTIONS(3281), + [anon_sym_BSLASHglssymbol] = ACTIONS(3281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3281), + [anon_sym_BSLASHglsdesc] = ACTIONS(3281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3281), + [anon_sym_BSLASHglsuseri] = ACTIONS(3281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3281), + [anon_sym_BSLASHglsuserii] = ACTIONS(3281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3281), + [anon_sym_BSLASHglsuserv] = ACTIONS(3281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3281), + [anon_sym_BSLASHglsuservi] = ACTIONS(3281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3281), + [anon_sym_BSLASHnewacronym] = ACTIONS(3284), + [anon_sym_BSLASHacrshort] = ACTIONS(3287), + [anon_sym_BSLASHAcrshort] = ACTIONS(3287), + [anon_sym_BSLASHACRshort] = ACTIONS(3287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3287), + [anon_sym_BSLASHacrlong] = ACTIONS(3287), + [anon_sym_BSLASHAcrlong] = ACTIONS(3287), + [anon_sym_BSLASHACRlong] = ACTIONS(3287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3287), + [anon_sym_BSLASHacrfull] = ACTIONS(3287), + [anon_sym_BSLASHAcrfull] = ACTIONS(3287), + [anon_sym_BSLASHACRfull] = ACTIONS(3287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3287), + [anon_sym_BSLASHacs] = ACTIONS(3287), + [anon_sym_BSLASHAcs] = ACTIONS(3287), + [anon_sym_BSLASHacsp] = ACTIONS(3287), + [anon_sym_BSLASHAcsp] = ACTIONS(3287), + [anon_sym_BSLASHacl] = ACTIONS(3287), + [anon_sym_BSLASHAcl] = ACTIONS(3287), + [anon_sym_BSLASHaclp] = ACTIONS(3287), + [anon_sym_BSLASHAclp] = ACTIONS(3287), + [anon_sym_BSLASHacf] = ACTIONS(3287), + [anon_sym_BSLASHAcf] = ACTIONS(3287), + [anon_sym_BSLASHacfp] = ACTIONS(3287), + [anon_sym_BSLASHAcfp] = ACTIONS(3287), + [anon_sym_BSLASHac] = ACTIONS(3287), + [anon_sym_BSLASHAc] = ACTIONS(3287), + [anon_sym_BSLASHacp] = ACTIONS(3287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3290), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3290), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), + [anon_sym_BSLASHcolor] = ACTIONS(3302), + [anon_sym_BSLASHcolorbox] = ACTIONS(3302), + [anon_sym_BSLASHtextcolor] = ACTIONS(3302), + [anon_sym_BSLASHpagecolor] = ACTIONS(3302), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3305), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [217] = { [sym_block_comment] = STATE(226), @@ -92630,253 +93084,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [218] = { [sym_block_comment] = STATE(226), @@ -92935,253 +93391,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [219] = { [sym_block_comment] = STATE(219), @@ -93240,253 +93698,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(219), [aux_sym_brack_group_repeat1] = STATE(219), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_RBRACK] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3363), - [sym_word] = ACTIONS(3366), - [sym_placeholder] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_SLASH] = ACTIONS(3372), - [anon_sym_CARET] = ACTIONS(3372), - [anon_sym__] = ACTIONS(3372), - [anon_sym_LT] = ACTIONS(3372), - [anon_sym_GT] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_PIPE] = ACTIONS(3372), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3375), - [anon_sym_DOLLAR] = ACTIONS(3378), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3384), - [anon_sym_BSLASHbegin] = ACTIONS(3387), - [anon_sym_BSLASHusepackage] = ACTIONS(3390), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3390), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3393), - [anon_sym_BSLASHinclude] = ACTIONS(3396), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3396), - [anon_sym_BSLASHinput] = ACTIONS(3396), - [anon_sym_BSLASHsubfile] = ACTIONS(3396), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3399), - [anon_sym_BSLASHbibliography] = ACTIONS(3402), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3405), - [anon_sym_BSLASHincludesvg] = ACTIONS(3408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3414), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3414), - [anon_sym_BSLASHimport] = ACTIONS(3417), - [anon_sym_BSLASHsubimport] = ACTIONS(3417), - [anon_sym_BSLASHinputfrom] = ACTIONS(3417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3417), - [anon_sym_BSLASHincludefrom] = ACTIONS(3417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3417), - [anon_sym_BSLASHcaption] = ACTIONS(3420), - [anon_sym_BSLASHcite] = ACTIONS(3423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3426), - [anon_sym_BSLASHCite] = ACTIONS(3423), - [anon_sym_BSLASHnocite] = ACTIONS(3423), - [anon_sym_BSLASHcitet] = ACTIONS(3423), - [anon_sym_BSLASHcitep] = ACTIONS(3423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3426), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3426), - [anon_sym_BSLASHciteauthor] = ACTIONS(3423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3426), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3426), - [anon_sym_BSLASHcitetitle] = ACTIONS(3423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3426), - [anon_sym_BSLASHciteyear] = ACTIONS(3423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3426), - [anon_sym_BSLASHcitedate] = ACTIONS(3423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3426), - [anon_sym_BSLASHciteurl] = ACTIONS(3423), - [anon_sym_BSLASHfullcite] = ACTIONS(3423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3423), - [anon_sym_BSLASHcitealt] = ACTIONS(3423), - [anon_sym_BSLASHcitealp] = ACTIONS(3423), - [anon_sym_BSLASHcitetext] = ACTIONS(3423), - [anon_sym_BSLASHparencite] = ACTIONS(3423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3426), - [anon_sym_BSLASHParencite] = ACTIONS(3423), - [anon_sym_BSLASHfootcite] = ACTIONS(3423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3423), - [anon_sym_BSLASHtextcite] = ACTIONS(3423), - [anon_sym_BSLASHTextcite] = ACTIONS(3423), - [anon_sym_BSLASHsmartcite] = ACTIONS(3423), - [anon_sym_BSLASHSmartcite] = ACTIONS(3423), - [anon_sym_BSLASHsupercite] = ACTIONS(3423), - [anon_sym_BSLASHautocite] = ACTIONS(3423), - [anon_sym_BSLASHAutocite] = ACTIONS(3423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3426), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3426), - [anon_sym_BSLASHvolcite] = ACTIONS(3423), - [anon_sym_BSLASHVolcite] = ACTIONS(3423), - [anon_sym_BSLASHpvolcite] = ACTIONS(3423), - [anon_sym_BSLASHPvolcite] = ACTIONS(3423), - [anon_sym_BSLASHfvolcite] = ACTIONS(3423), - [anon_sym_BSLASHftvolcite] = ACTIONS(3423), - [anon_sym_BSLASHsvolcite] = ACTIONS(3423), - [anon_sym_BSLASHSvolcite] = ACTIONS(3423), - [anon_sym_BSLASHtvolcite] = ACTIONS(3423), - [anon_sym_BSLASHTvolcite] = ACTIONS(3423), - [anon_sym_BSLASHavolcite] = ACTIONS(3423), - [anon_sym_BSLASHAvolcite] = ACTIONS(3423), - [anon_sym_BSLASHnotecite] = ACTIONS(3423), - [anon_sym_BSLASHNotecite] = ACTIONS(3423), - [anon_sym_BSLASHpnotecite] = ACTIONS(3423), - [anon_sym_BSLASHPnotecite] = ACTIONS(3423), - [anon_sym_BSLASHfnotecite] = ACTIONS(3423), - [anon_sym_BSLASHlabel] = ACTIONS(3429), - [anon_sym_BSLASHref] = ACTIONS(3432), - [anon_sym_BSLASHeqref] = ACTIONS(3432), - [anon_sym_BSLASHvref] = ACTIONS(3432), - [anon_sym_BSLASHVref] = ACTIONS(3432), - [anon_sym_BSLASHautoref] = ACTIONS(3432), - [anon_sym_BSLASHpageref] = ACTIONS(3432), - [anon_sym_BSLASHcref] = ACTIONS(3432), - [anon_sym_BSLASHCref] = ACTIONS(3432), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3435), - [anon_sym_BSLASHnamecref] = ACTIONS(3432), - [anon_sym_BSLASHnameCref] = ACTIONS(3432), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3432), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3432), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3432), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3432), - [anon_sym_BSLASHlabelcref] = ACTIONS(3432), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3432), - [anon_sym_BSLASHcrefrange] = ACTIONS(3438), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3441), - [anon_sym_BSLASHCrefrange] = ACTIONS(3438), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3441), - [anon_sym_BSLASHnewlabel] = ACTIONS(3444), - [anon_sym_BSLASHnewcommand] = ACTIONS(3447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3450), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3450), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3450), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3450), - [anon_sym_BSLASHdef] = ACTIONS(3453), - [anon_sym_BSLASHlet] = ACTIONS(3456), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3462), - [anon_sym_BSLASHgls] = ACTIONS(3465), - [anon_sym_BSLASHGls] = ACTIONS(3465), - [anon_sym_BSLASHGLS] = ACTIONS(3465), - [anon_sym_BSLASHglspl] = ACTIONS(3465), - [anon_sym_BSLASHGlspl] = ACTIONS(3465), - [anon_sym_BSLASHGLSpl] = ACTIONS(3465), - [anon_sym_BSLASHglsdisp] = ACTIONS(3465), - [anon_sym_BSLASHglslink] = ACTIONS(3465), - [anon_sym_BSLASHglstext] = ACTIONS(3465), - [anon_sym_BSLASHGlstext] = ACTIONS(3465), - [anon_sym_BSLASHGLStext] = ACTIONS(3465), - [anon_sym_BSLASHglsfirst] = ACTIONS(3465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3465), - [anon_sym_BSLASHglsplural] = ACTIONS(3465), - [anon_sym_BSLASHGlsplural] = ACTIONS(3465), - [anon_sym_BSLASHGLSplural] = ACTIONS(3465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3465), - [anon_sym_BSLASHglsname] = ACTIONS(3465), - [anon_sym_BSLASHGlsname] = ACTIONS(3465), - [anon_sym_BSLASHGLSname] = ACTIONS(3465), - [anon_sym_BSLASHglssymbol] = ACTIONS(3465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3465), - [anon_sym_BSLASHglsdesc] = ACTIONS(3465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3465), - [anon_sym_BSLASHglsuseri] = ACTIONS(3465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3465), - [anon_sym_BSLASHglsuserii] = ACTIONS(3465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3465), - [anon_sym_BSLASHglsuserv] = ACTIONS(3465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3465), - [anon_sym_BSLASHglsuservi] = ACTIONS(3465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3465), - [anon_sym_BSLASHnewacronym] = ACTIONS(3468), - [anon_sym_BSLASHacrshort] = ACTIONS(3471), - [anon_sym_BSLASHAcrshort] = ACTIONS(3471), - [anon_sym_BSLASHACRshort] = ACTIONS(3471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3471), - [anon_sym_BSLASHacrlong] = ACTIONS(3471), - [anon_sym_BSLASHAcrlong] = ACTIONS(3471), - [anon_sym_BSLASHACRlong] = ACTIONS(3471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3471), - [anon_sym_BSLASHacrfull] = ACTIONS(3471), - [anon_sym_BSLASHAcrfull] = ACTIONS(3471), - [anon_sym_BSLASHACRfull] = ACTIONS(3471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3471), - [anon_sym_BSLASHacs] = ACTIONS(3471), - [anon_sym_BSLASHAcs] = ACTIONS(3471), - [anon_sym_BSLASHacsp] = ACTIONS(3471), - [anon_sym_BSLASHAcsp] = ACTIONS(3471), - [anon_sym_BSLASHacl] = ACTIONS(3471), - [anon_sym_BSLASHAcl] = ACTIONS(3471), - [anon_sym_BSLASHaclp] = ACTIONS(3471), - [anon_sym_BSLASHAclp] = ACTIONS(3471), - [anon_sym_BSLASHacf] = ACTIONS(3471), - [anon_sym_BSLASHAcf] = ACTIONS(3471), - [anon_sym_BSLASHacfp] = ACTIONS(3471), - [anon_sym_BSLASHAcfp] = ACTIONS(3471), - [anon_sym_BSLASHac] = ACTIONS(3471), - [anon_sym_BSLASHAc] = ACTIONS(3471), - [anon_sym_BSLASHacp] = ACTIONS(3471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3474), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3474), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3480), - [anon_sym_BSLASHcolor] = ACTIONS(3483), - [anon_sym_BSLASHcolorbox] = ACTIONS(3483), - [anon_sym_BSLASHtextcolor] = ACTIONS(3483), - [anon_sym_BSLASHpagecolor] = ACTIONS(3483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3486), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3486), - [anon_sym_BSLASHtext] = ACTIONS(3489), - [anon_sym_BSLASHintertext] = ACTIONS(3489), - [anon_sym_shortintertext] = ACTIONS(3489), + [sym_command_name] = ACTIONS(3406), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_RBRACK] = ACTIONS(3418), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3420), + [sym_word] = ACTIONS(3423), + [sym_placeholder] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym__] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_GT] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3432), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3432), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3438), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3441), + [anon_sym_BSLASHbegin] = ACTIONS(3444), + [anon_sym_BSLASHusepackage] = ACTIONS(3447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3450), + [anon_sym_BSLASHinclude] = ACTIONS(3453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3453), + [anon_sym_BSLASHinput] = ACTIONS(3453), + [anon_sym_BSLASHsubfile] = ACTIONS(3453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3456), + [anon_sym_BSLASHbibliography] = ACTIONS(3459), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3462), + [anon_sym_BSLASHincludesvg] = ACTIONS(3465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3468), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3471), + [anon_sym_BSLASHimport] = ACTIONS(3474), + [anon_sym_BSLASHsubimport] = ACTIONS(3474), + [anon_sym_BSLASHinputfrom] = ACTIONS(3474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3474), + [anon_sym_BSLASHincludefrom] = ACTIONS(3474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3474), + [anon_sym_BSLASHcaption] = ACTIONS(3477), + [anon_sym_BSLASHcite] = ACTIONS(3480), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3483), + [anon_sym_BSLASHCite] = ACTIONS(3480), + [anon_sym_BSLASHnocite] = ACTIONS(3480), + [anon_sym_BSLASHcitet] = ACTIONS(3480), + [anon_sym_BSLASHcitep] = ACTIONS(3480), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3483), + [anon_sym_BSLASHciteauthor] = ACTIONS(3480), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3480), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3483), + [anon_sym_BSLASHcitetitle] = ACTIONS(3480), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3483), + [anon_sym_BSLASHciteyear] = ACTIONS(3480), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3483), + [anon_sym_BSLASHcitedate] = ACTIONS(3480), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3483), + [anon_sym_BSLASHciteurl] = ACTIONS(3480), + [anon_sym_BSLASHfullcite] = ACTIONS(3480), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3480), + [anon_sym_BSLASHcitealt] = ACTIONS(3480), + [anon_sym_BSLASHcitealp] = ACTIONS(3480), + [anon_sym_BSLASHcitetext] = ACTIONS(3480), + [anon_sym_BSLASHparencite] = ACTIONS(3480), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3483), + [anon_sym_BSLASHParencite] = ACTIONS(3480), + [anon_sym_BSLASHfootcite] = ACTIONS(3480), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3480), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3480), + [anon_sym_BSLASHtextcite] = ACTIONS(3480), + [anon_sym_BSLASHTextcite] = ACTIONS(3480), + [anon_sym_BSLASHsmartcite] = ACTIONS(3480), + [anon_sym_BSLASHSmartcite] = ACTIONS(3480), + [anon_sym_BSLASHsupercite] = ACTIONS(3480), + [anon_sym_BSLASHautocite] = ACTIONS(3480), + [anon_sym_BSLASHAutocite] = ACTIONS(3480), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3483), + [anon_sym_BSLASHvolcite] = ACTIONS(3480), + [anon_sym_BSLASHVolcite] = ACTIONS(3480), + [anon_sym_BSLASHpvolcite] = ACTIONS(3480), + [anon_sym_BSLASHPvolcite] = ACTIONS(3480), + [anon_sym_BSLASHfvolcite] = ACTIONS(3480), + [anon_sym_BSLASHftvolcite] = ACTIONS(3480), + [anon_sym_BSLASHsvolcite] = ACTIONS(3480), + [anon_sym_BSLASHSvolcite] = ACTIONS(3480), + [anon_sym_BSLASHtvolcite] = ACTIONS(3480), + [anon_sym_BSLASHTvolcite] = ACTIONS(3480), + [anon_sym_BSLASHavolcite] = ACTIONS(3480), + [anon_sym_BSLASHAvolcite] = ACTIONS(3480), + [anon_sym_BSLASHnotecite] = ACTIONS(3480), + [anon_sym_BSLASHNotecite] = ACTIONS(3480), + [anon_sym_BSLASHpnotecite] = ACTIONS(3480), + [anon_sym_BSLASHPnotecite] = ACTIONS(3480), + [anon_sym_BSLASHfnotecite] = ACTIONS(3480), + [anon_sym_BSLASHlabel] = ACTIONS(3486), + [anon_sym_BSLASHref] = ACTIONS(3489), + [anon_sym_BSLASHeqref] = ACTIONS(3489), + [anon_sym_BSLASHvref] = ACTIONS(3489), + [anon_sym_BSLASHVref] = ACTIONS(3489), + [anon_sym_BSLASHautoref] = ACTIONS(3489), + [anon_sym_BSLASHpageref] = ACTIONS(3489), + [anon_sym_BSLASHcref] = ACTIONS(3489), + [anon_sym_BSLASHCref] = ACTIONS(3489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3492), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3492), + [anon_sym_BSLASHnamecref] = ACTIONS(3489), + [anon_sym_BSLASHnameCref] = ACTIONS(3489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3489), + [anon_sym_BSLASHlabelcref] = ACTIONS(3489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3489), + [anon_sym_BSLASHcrefrange] = ACTIONS(3495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3498), + [anon_sym_BSLASHCrefrange] = ACTIONS(3495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3498), + [anon_sym_BSLASHnewlabel] = ACTIONS(3501), + [anon_sym_BSLASHnewcommand] = ACTIONS(3504), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3507), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3504), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3507), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3504), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3507), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3504), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3507), + [anon_sym_BSLASHdef] = ACTIONS(3510), + [anon_sym_BSLASHlet] = ACTIONS(3513), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3516), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3519), + [anon_sym_BSLASHgls] = ACTIONS(3522), + [anon_sym_BSLASHGls] = ACTIONS(3522), + [anon_sym_BSLASHGLS] = ACTIONS(3522), + [anon_sym_BSLASHglspl] = ACTIONS(3522), + [anon_sym_BSLASHGlspl] = ACTIONS(3522), + [anon_sym_BSLASHGLSpl] = ACTIONS(3522), + [anon_sym_BSLASHglsdisp] = ACTIONS(3522), + [anon_sym_BSLASHglslink] = ACTIONS(3522), + [anon_sym_BSLASHglstext] = ACTIONS(3522), + [anon_sym_BSLASHGlstext] = ACTIONS(3522), + [anon_sym_BSLASHGLStext] = ACTIONS(3522), + [anon_sym_BSLASHglsfirst] = ACTIONS(3522), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3522), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3522), + [anon_sym_BSLASHglsplural] = ACTIONS(3522), + [anon_sym_BSLASHGlsplural] = ACTIONS(3522), + [anon_sym_BSLASHGLSplural] = ACTIONS(3522), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3522), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3522), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3522), + [anon_sym_BSLASHglsname] = ACTIONS(3522), + [anon_sym_BSLASHGlsname] = ACTIONS(3522), + [anon_sym_BSLASHGLSname] = ACTIONS(3522), + [anon_sym_BSLASHglssymbol] = ACTIONS(3522), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3522), + [anon_sym_BSLASHglsdesc] = ACTIONS(3522), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3522), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3522), + [anon_sym_BSLASHglsuseri] = ACTIONS(3522), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3522), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3522), + [anon_sym_BSLASHglsuserii] = ACTIONS(3522), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3522), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3522), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3522), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3522), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3522), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3522), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3522), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3522), + [anon_sym_BSLASHglsuserv] = ACTIONS(3522), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3522), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3522), + [anon_sym_BSLASHglsuservi] = ACTIONS(3522), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3522), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3522), + [anon_sym_BSLASHnewacronym] = ACTIONS(3525), + [anon_sym_BSLASHacrshort] = ACTIONS(3528), + [anon_sym_BSLASHAcrshort] = ACTIONS(3528), + [anon_sym_BSLASHACRshort] = ACTIONS(3528), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3528), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3528), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3528), + [anon_sym_BSLASHacrlong] = ACTIONS(3528), + [anon_sym_BSLASHAcrlong] = ACTIONS(3528), + [anon_sym_BSLASHACRlong] = ACTIONS(3528), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3528), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3528), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3528), + [anon_sym_BSLASHacrfull] = ACTIONS(3528), + [anon_sym_BSLASHAcrfull] = ACTIONS(3528), + [anon_sym_BSLASHACRfull] = ACTIONS(3528), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3528), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3528), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3528), + [anon_sym_BSLASHacs] = ACTIONS(3528), + [anon_sym_BSLASHAcs] = ACTIONS(3528), + [anon_sym_BSLASHacsp] = ACTIONS(3528), + [anon_sym_BSLASHAcsp] = ACTIONS(3528), + [anon_sym_BSLASHacl] = ACTIONS(3528), + [anon_sym_BSLASHAcl] = ACTIONS(3528), + [anon_sym_BSLASHaclp] = ACTIONS(3528), + [anon_sym_BSLASHAclp] = ACTIONS(3528), + [anon_sym_BSLASHacf] = ACTIONS(3528), + [anon_sym_BSLASHAcf] = ACTIONS(3528), + [anon_sym_BSLASHacfp] = ACTIONS(3528), + [anon_sym_BSLASHAcfp] = ACTIONS(3528), + [anon_sym_BSLASHac] = ACTIONS(3528), + [anon_sym_BSLASHAc] = ACTIONS(3528), + [anon_sym_BSLASHacp] = ACTIONS(3528), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3528), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3528), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3528), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3528), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3528), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3528), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3528), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3528), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3528), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3528), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3531), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3531), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3537), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3540), + [anon_sym_BSLASHcolor] = ACTIONS(3543), + [anon_sym_BSLASHcolorbox] = ACTIONS(3543), + [anon_sym_BSLASHtextcolor] = ACTIONS(3543), + [anon_sym_BSLASHpagecolor] = ACTIONS(3543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3546), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3546), + [anon_sym_BSLASHtext] = ACTIONS(3549), + [anon_sym_BSLASHintertext] = ACTIONS(3549), + [anon_sym_shortintertext] = ACTIONS(3549), }, [220] = { [sym_block_comment] = STATE(226), @@ -93545,253 +94005,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3492), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3552), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [221] = { [sym_block_comment] = STATE(220), @@ -93850,253 +94312,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(220), [aux_sym_mixed_group_repeat1] = STATE(220), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3494), - [anon_sym_COMMA] = ACTIONS(3496), - [anon_sym_EQ] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [222] = { [sym_block_comment] = STATE(233), @@ -94155,253 +94619,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(233), [aux_sym_mixed_group_repeat1] = STATE(233), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3498), - [anon_sym_COMMA] = ACTIONS(3500), - [anon_sym_EQ] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3558), + [anon_sym_COMMA] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [223] = { [sym_block_comment] = STATE(226), @@ -94460,253 +94926,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3502), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3562), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [224] = { [sym_block_comment] = STATE(226), @@ -94765,253 +95233,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3504), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3564), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [225] = { [sym_block_comment] = STATE(223), @@ -95070,253 +95540,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(223), [aux_sym_mixed_group_repeat1] = STATE(223), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3506), - [anon_sym_COMMA] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [226] = { [sym_block_comment] = STATE(226), @@ -95375,253 +95847,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_RBRACK] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3524), - [sym_word] = ACTIONS(3527), - [sym_placeholder] = ACTIONS(3530), - [anon_sym_PLUS] = ACTIONS(3533), - [anon_sym_DASH] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(3533), - [anon_sym__] = ACTIONS(3533), - [anon_sym_LT] = ACTIONS(3533), - [anon_sym_GT] = ACTIONS(3533), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3533), - [anon_sym_COLON] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3539), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3542), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3545), - [anon_sym_BSLASHbegin] = ACTIONS(3548), - [anon_sym_BSLASHusepackage] = ACTIONS(3551), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3551), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3554), - [anon_sym_BSLASHinclude] = ACTIONS(3557), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3557), - [anon_sym_BSLASHinput] = ACTIONS(3557), - [anon_sym_BSLASHsubfile] = ACTIONS(3557), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3560), - [anon_sym_BSLASHbibliography] = ACTIONS(3563), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3566), - [anon_sym_BSLASHincludesvg] = ACTIONS(3569), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3572), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3575), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3575), - [anon_sym_BSLASHimport] = ACTIONS(3578), - [anon_sym_BSLASHsubimport] = ACTIONS(3578), - [anon_sym_BSLASHinputfrom] = ACTIONS(3578), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3578), - [anon_sym_BSLASHincludefrom] = ACTIONS(3578), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3578), - [anon_sym_BSLASHcaption] = ACTIONS(3581), - [anon_sym_BSLASHcite] = ACTIONS(3584), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3587), - [anon_sym_BSLASHCite] = ACTIONS(3584), - [anon_sym_BSLASHnocite] = ACTIONS(3584), - [anon_sym_BSLASHcitet] = ACTIONS(3584), - [anon_sym_BSLASHcitep] = ACTIONS(3584), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3587), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3587), - [anon_sym_BSLASHciteauthor] = ACTIONS(3584), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3587), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3584), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3587), - [anon_sym_BSLASHcitetitle] = ACTIONS(3584), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3587), - [anon_sym_BSLASHciteyear] = ACTIONS(3584), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3587), - [anon_sym_BSLASHcitedate] = ACTIONS(3584), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3587), - [anon_sym_BSLASHciteurl] = ACTIONS(3584), - [anon_sym_BSLASHfullcite] = ACTIONS(3584), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3584), - [anon_sym_BSLASHcitealt] = ACTIONS(3584), - [anon_sym_BSLASHcitealp] = ACTIONS(3584), - [anon_sym_BSLASHcitetext] = ACTIONS(3584), - [anon_sym_BSLASHparencite] = ACTIONS(3584), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3587), - [anon_sym_BSLASHParencite] = ACTIONS(3584), - [anon_sym_BSLASHfootcite] = ACTIONS(3584), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3584), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3584), - [anon_sym_BSLASHtextcite] = ACTIONS(3584), - [anon_sym_BSLASHTextcite] = ACTIONS(3584), - [anon_sym_BSLASHsmartcite] = ACTIONS(3584), - [anon_sym_BSLASHSmartcite] = ACTIONS(3584), - [anon_sym_BSLASHsupercite] = ACTIONS(3584), - [anon_sym_BSLASHautocite] = ACTIONS(3584), - [anon_sym_BSLASHAutocite] = ACTIONS(3584), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3587), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3587), - [anon_sym_BSLASHvolcite] = ACTIONS(3584), - [anon_sym_BSLASHVolcite] = ACTIONS(3584), - [anon_sym_BSLASHpvolcite] = ACTIONS(3584), - [anon_sym_BSLASHPvolcite] = ACTIONS(3584), - [anon_sym_BSLASHfvolcite] = ACTIONS(3584), - [anon_sym_BSLASHftvolcite] = ACTIONS(3584), - [anon_sym_BSLASHsvolcite] = ACTIONS(3584), - [anon_sym_BSLASHSvolcite] = ACTIONS(3584), - [anon_sym_BSLASHtvolcite] = ACTIONS(3584), - [anon_sym_BSLASHTvolcite] = ACTIONS(3584), - [anon_sym_BSLASHavolcite] = ACTIONS(3584), - [anon_sym_BSLASHAvolcite] = ACTIONS(3584), - [anon_sym_BSLASHnotecite] = ACTIONS(3584), - [anon_sym_BSLASHNotecite] = ACTIONS(3584), - [anon_sym_BSLASHpnotecite] = ACTIONS(3584), - [anon_sym_BSLASHPnotecite] = ACTIONS(3584), - [anon_sym_BSLASHfnotecite] = ACTIONS(3584), - [anon_sym_BSLASHlabel] = ACTIONS(3590), - [anon_sym_BSLASHref] = ACTIONS(3593), - [anon_sym_BSLASHeqref] = ACTIONS(3593), - [anon_sym_BSLASHvref] = ACTIONS(3593), - [anon_sym_BSLASHVref] = ACTIONS(3593), - [anon_sym_BSLASHautoref] = ACTIONS(3593), - [anon_sym_BSLASHpageref] = ACTIONS(3593), - [anon_sym_BSLASHcref] = ACTIONS(3593), - [anon_sym_BSLASHCref] = ACTIONS(3593), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3596), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3596), - [anon_sym_BSLASHnamecref] = ACTIONS(3593), - [anon_sym_BSLASHnameCref] = ACTIONS(3593), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3593), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3593), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3593), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3593), - [anon_sym_BSLASHlabelcref] = ACTIONS(3593), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3593), - [anon_sym_BSLASHcrefrange] = ACTIONS(3599), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3602), - [anon_sym_BSLASHCrefrange] = ACTIONS(3599), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3602), - [anon_sym_BSLASHnewlabel] = ACTIONS(3605), - [anon_sym_BSLASHnewcommand] = ACTIONS(3608), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3608), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3608), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3608), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3611), - [anon_sym_BSLASHdef] = ACTIONS(3614), - [anon_sym_BSLASHlet] = ACTIONS(3617), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3620), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3623), - [anon_sym_BSLASHgls] = ACTIONS(3626), - [anon_sym_BSLASHGls] = ACTIONS(3626), - [anon_sym_BSLASHGLS] = ACTIONS(3626), - [anon_sym_BSLASHglspl] = ACTIONS(3626), - [anon_sym_BSLASHGlspl] = ACTIONS(3626), - [anon_sym_BSLASHGLSpl] = ACTIONS(3626), - [anon_sym_BSLASHglsdisp] = ACTIONS(3626), - [anon_sym_BSLASHglslink] = ACTIONS(3626), - [anon_sym_BSLASHglstext] = ACTIONS(3626), - [anon_sym_BSLASHGlstext] = ACTIONS(3626), - [anon_sym_BSLASHGLStext] = ACTIONS(3626), - [anon_sym_BSLASHglsfirst] = ACTIONS(3626), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3626), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3626), - [anon_sym_BSLASHglsplural] = ACTIONS(3626), - [anon_sym_BSLASHGlsplural] = ACTIONS(3626), - [anon_sym_BSLASHGLSplural] = ACTIONS(3626), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3626), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3626), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3626), - [anon_sym_BSLASHglsname] = ACTIONS(3626), - [anon_sym_BSLASHGlsname] = ACTIONS(3626), - [anon_sym_BSLASHGLSname] = ACTIONS(3626), - [anon_sym_BSLASHglssymbol] = ACTIONS(3626), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3626), - [anon_sym_BSLASHglsdesc] = ACTIONS(3626), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3626), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3626), - [anon_sym_BSLASHglsuseri] = ACTIONS(3626), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3626), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3626), - [anon_sym_BSLASHglsuserii] = ACTIONS(3626), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3626), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3626), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3626), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3626), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3626), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3626), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3626), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3626), - [anon_sym_BSLASHglsuserv] = ACTIONS(3626), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3626), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3626), - [anon_sym_BSLASHglsuservi] = ACTIONS(3626), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3626), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3626), - [anon_sym_BSLASHnewacronym] = ACTIONS(3629), - [anon_sym_BSLASHacrshort] = ACTIONS(3632), - [anon_sym_BSLASHAcrshort] = ACTIONS(3632), - [anon_sym_BSLASHACRshort] = ACTIONS(3632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3632), - [anon_sym_BSLASHacrlong] = ACTIONS(3632), - [anon_sym_BSLASHAcrlong] = ACTIONS(3632), - [anon_sym_BSLASHACRlong] = ACTIONS(3632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3632), - [anon_sym_BSLASHacrfull] = ACTIONS(3632), - [anon_sym_BSLASHAcrfull] = ACTIONS(3632), - [anon_sym_BSLASHACRfull] = ACTIONS(3632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3632), - [anon_sym_BSLASHacs] = ACTIONS(3632), - [anon_sym_BSLASHAcs] = ACTIONS(3632), - [anon_sym_BSLASHacsp] = ACTIONS(3632), - [anon_sym_BSLASHAcsp] = ACTIONS(3632), - [anon_sym_BSLASHacl] = ACTIONS(3632), - [anon_sym_BSLASHAcl] = ACTIONS(3632), - [anon_sym_BSLASHaclp] = ACTIONS(3632), - [anon_sym_BSLASHAclp] = ACTIONS(3632), - [anon_sym_BSLASHacf] = ACTIONS(3632), - [anon_sym_BSLASHAcf] = ACTIONS(3632), - [anon_sym_BSLASHacfp] = ACTIONS(3632), - [anon_sym_BSLASHAcfp] = ACTIONS(3632), - [anon_sym_BSLASHac] = ACTIONS(3632), - [anon_sym_BSLASHAc] = ACTIONS(3632), - [anon_sym_BSLASHacp] = ACTIONS(3632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3635), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3635), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3638), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3641), - [anon_sym_BSLASHcolor] = ACTIONS(3644), - [anon_sym_BSLASHcolorbox] = ACTIONS(3644), - [anon_sym_BSLASHtextcolor] = ACTIONS(3644), - [anon_sym_BSLASHpagecolor] = ACTIONS(3644), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3647), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3647), - [anon_sym_BSLASHtext] = ACTIONS(3650), - [anon_sym_BSLASHintertext] = ACTIONS(3650), - [anon_sym_shortintertext] = ACTIONS(3650), + [sym_command_name] = ACTIONS(3570), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3573), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_RBRACK] = ACTIONS(3579), + [anon_sym_COMMA] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3584), + [sym_word] = ACTIONS(3587), + [sym_placeholder] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_SLASH] = ACTIONS(3593), + [anon_sym_CARET] = ACTIONS(3593), + [anon_sym__] = ACTIONS(3593), + [anon_sym_LT] = ACTIONS(3593), + [anon_sym_GT] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_PIPE] = ACTIONS(3593), + [anon_sym_COLON] = ACTIONS(3593), + [anon_sym_SQUOTE] = ACTIONS(3593), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3596), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3596), + [anon_sym_DOLLAR] = ACTIONS(3599), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3602), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3605), + [anon_sym_BSLASHbegin] = ACTIONS(3608), + [anon_sym_BSLASHusepackage] = ACTIONS(3611), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3611), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3614), + [anon_sym_BSLASHinclude] = ACTIONS(3617), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3617), + [anon_sym_BSLASHinput] = ACTIONS(3617), + [anon_sym_BSLASHsubfile] = ACTIONS(3617), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3620), + [anon_sym_BSLASHbibliography] = ACTIONS(3623), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3626), + [anon_sym_BSLASHincludesvg] = ACTIONS(3629), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3632), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3635), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3635), + [anon_sym_BSLASHimport] = ACTIONS(3638), + [anon_sym_BSLASHsubimport] = ACTIONS(3638), + [anon_sym_BSLASHinputfrom] = ACTIONS(3638), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3638), + [anon_sym_BSLASHincludefrom] = ACTIONS(3638), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3638), + [anon_sym_BSLASHcaption] = ACTIONS(3641), + [anon_sym_BSLASHcite] = ACTIONS(3644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3647), + [anon_sym_BSLASHCite] = ACTIONS(3644), + [anon_sym_BSLASHnocite] = ACTIONS(3644), + [anon_sym_BSLASHcitet] = ACTIONS(3644), + [anon_sym_BSLASHcitep] = ACTIONS(3644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3647), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3647), + [anon_sym_BSLASHciteauthor] = ACTIONS(3644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3647), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3647), + [anon_sym_BSLASHcitetitle] = ACTIONS(3644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3647), + [anon_sym_BSLASHciteyear] = ACTIONS(3644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3647), + [anon_sym_BSLASHcitedate] = ACTIONS(3644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3647), + [anon_sym_BSLASHciteurl] = ACTIONS(3644), + [anon_sym_BSLASHfullcite] = ACTIONS(3644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3644), + [anon_sym_BSLASHcitealt] = ACTIONS(3644), + [anon_sym_BSLASHcitealp] = ACTIONS(3644), + [anon_sym_BSLASHcitetext] = ACTIONS(3644), + [anon_sym_BSLASHparencite] = ACTIONS(3644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3647), + [anon_sym_BSLASHParencite] = ACTIONS(3644), + [anon_sym_BSLASHfootcite] = ACTIONS(3644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3644), + [anon_sym_BSLASHtextcite] = ACTIONS(3644), + [anon_sym_BSLASHTextcite] = ACTIONS(3644), + [anon_sym_BSLASHsmartcite] = ACTIONS(3644), + [anon_sym_BSLASHSmartcite] = ACTIONS(3644), + [anon_sym_BSLASHsupercite] = ACTIONS(3644), + [anon_sym_BSLASHautocite] = ACTIONS(3644), + [anon_sym_BSLASHAutocite] = ACTIONS(3644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3647), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3647), + [anon_sym_BSLASHvolcite] = ACTIONS(3644), + [anon_sym_BSLASHVolcite] = ACTIONS(3644), + [anon_sym_BSLASHpvolcite] = ACTIONS(3644), + [anon_sym_BSLASHPvolcite] = ACTIONS(3644), + [anon_sym_BSLASHfvolcite] = ACTIONS(3644), + [anon_sym_BSLASHftvolcite] = ACTIONS(3644), + [anon_sym_BSLASHsvolcite] = ACTIONS(3644), + [anon_sym_BSLASHSvolcite] = ACTIONS(3644), + [anon_sym_BSLASHtvolcite] = ACTIONS(3644), + [anon_sym_BSLASHTvolcite] = ACTIONS(3644), + [anon_sym_BSLASHavolcite] = ACTIONS(3644), + [anon_sym_BSLASHAvolcite] = ACTIONS(3644), + [anon_sym_BSLASHnotecite] = ACTIONS(3644), + [anon_sym_BSLASHNotecite] = ACTIONS(3644), + [anon_sym_BSLASHpnotecite] = ACTIONS(3644), + [anon_sym_BSLASHPnotecite] = ACTIONS(3644), + [anon_sym_BSLASHfnotecite] = ACTIONS(3644), + [anon_sym_BSLASHlabel] = ACTIONS(3650), + [anon_sym_BSLASHref] = ACTIONS(3653), + [anon_sym_BSLASHeqref] = ACTIONS(3653), + [anon_sym_BSLASHvref] = ACTIONS(3653), + [anon_sym_BSLASHVref] = ACTIONS(3653), + [anon_sym_BSLASHautoref] = ACTIONS(3653), + [anon_sym_BSLASHpageref] = ACTIONS(3653), + [anon_sym_BSLASHcref] = ACTIONS(3653), + [anon_sym_BSLASHCref] = ACTIONS(3653), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3656), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3656), + [anon_sym_BSLASHnamecref] = ACTIONS(3653), + [anon_sym_BSLASHnameCref] = ACTIONS(3653), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3653), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3653), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3653), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3653), + [anon_sym_BSLASHlabelcref] = ACTIONS(3653), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3653), + [anon_sym_BSLASHcrefrange] = ACTIONS(3659), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3662), + [anon_sym_BSLASHCrefrange] = ACTIONS(3659), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3662), + [anon_sym_BSLASHnewlabel] = ACTIONS(3665), + [anon_sym_BSLASHnewcommand] = ACTIONS(3668), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3671), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3668), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3671), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3668), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3671), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3668), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3671), + [anon_sym_BSLASHdef] = ACTIONS(3674), + [anon_sym_BSLASHlet] = ACTIONS(3677), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3680), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3683), + [anon_sym_BSLASHgls] = ACTIONS(3686), + [anon_sym_BSLASHGls] = ACTIONS(3686), + [anon_sym_BSLASHGLS] = ACTIONS(3686), + [anon_sym_BSLASHglspl] = ACTIONS(3686), + [anon_sym_BSLASHGlspl] = ACTIONS(3686), + [anon_sym_BSLASHGLSpl] = ACTIONS(3686), + [anon_sym_BSLASHglsdisp] = ACTIONS(3686), + [anon_sym_BSLASHglslink] = ACTIONS(3686), + [anon_sym_BSLASHglstext] = ACTIONS(3686), + [anon_sym_BSLASHGlstext] = ACTIONS(3686), + [anon_sym_BSLASHGLStext] = ACTIONS(3686), + [anon_sym_BSLASHglsfirst] = ACTIONS(3686), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3686), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3686), + [anon_sym_BSLASHglsplural] = ACTIONS(3686), + [anon_sym_BSLASHGlsplural] = ACTIONS(3686), + [anon_sym_BSLASHGLSplural] = ACTIONS(3686), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3686), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3686), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3686), + [anon_sym_BSLASHglsname] = ACTIONS(3686), + [anon_sym_BSLASHGlsname] = ACTIONS(3686), + [anon_sym_BSLASHGLSname] = ACTIONS(3686), + [anon_sym_BSLASHglssymbol] = ACTIONS(3686), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3686), + [anon_sym_BSLASHglsdesc] = ACTIONS(3686), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3686), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3686), + [anon_sym_BSLASHglsuseri] = ACTIONS(3686), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3686), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3686), + [anon_sym_BSLASHglsuserii] = ACTIONS(3686), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3686), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3686), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3686), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3686), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3686), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3686), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3686), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3686), + [anon_sym_BSLASHglsuserv] = ACTIONS(3686), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3686), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3686), + [anon_sym_BSLASHglsuservi] = ACTIONS(3686), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3686), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3686), + [anon_sym_BSLASHnewacronym] = ACTIONS(3689), + [anon_sym_BSLASHacrshort] = ACTIONS(3692), + [anon_sym_BSLASHAcrshort] = ACTIONS(3692), + [anon_sym_BSLASHACRshort] = ACTIONS(3692), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3692), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3692), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3692), + [anon_sym_BSLASHacrlong] = ACTIONS(3692), + [anon_sym_BSLASHAcrlong] = ACTIONS(3692), + [anon_sym_BSLASHACRlong] = ACTIONS(3692), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3692), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3692), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3692), + [anon_sym_BSLASHacrfull] = ACTIONS(3692), + [anon_sym_BSLASHAcrfull] = ACTIONS(3692), + [anon_sym_BSLASHACRfull] = ACTIONS(3692), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3692), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3692), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3692), + [anon_sym_BSLASHacs] = ACTIONS(3692), + [anon_sym_BSLASHAcs] = ACTIONS(3692), + [anon_sym_BSLASHacsp] = ACTIONS(3692), + [anon_sym_BSLASHAcsp] = ACTIONS(3692), + [anon_sym_BSLASHacl] = ACTIONS(3692), + [anon_sym_BSLASHAcl] = ACTIONS(3692), + [anon_sym_BSLASHaclp] = ACTIONS(3692), + [anon_sym_BSLASHAclp] = ACTIONS(3692), + [anon_sym_BSLASHacf] = ACTIONS(3692), + [anon_sym_BSLASHAcf] = ACTIONS(3692), + [anon_sym_BSLASHacfp] = ACTIONS(3692), + [anon_sym_BSLASHAcfp] = ACTIONS(3692), + [anon_sym_BSLASHac] = ACTIONS(3692), + [anon_sym_BSLASHAc] = ACTIONS(3692), + [anon_sym_BSLASHacp] = ACTIONS(3692), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3692), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3692), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3692), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3692), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3692), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3692), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3692), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3692), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3692), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3692), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3695), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3698), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3695), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3698), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3701), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3704), + [anon_sym_BSLASHcolor] = ACTIONS(3707), + [anon_sym_BSLASHcolorbox] = ACTIONS(3707), + [anon_sym_BSLASHtextcolor] = ACTIONS(3707), + [anon_sym_BSLASHpagecolor] = ACTIONS(3707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3710), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3710), + [anon_sym_BSLASHtext] = ACTIONS(3713), + [anon_sym_BSLASHintertext] = ACTIONS(3713), + [anon_sym_shortintertext] = ACTIONS(3713), }, [227] = { [sym_block_comment] = STATE(219), @@ -95680,253 +96154,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(219), [aux_sym_brack_group_repeat1] = STATE(219), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3657), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3720), + [anon_sym_COMMA] = ACTIONS(3716), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [228] = { [sym_block_comment] = STATE(226), @@ -95985,253 +96461,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [229] = { [sym_block_comment] = STATE(224), @@ -96290,253 +96768,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(224), [aux_sym_mixed_group_repeat1] = STATE(224), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3726), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [230] = { [sym_block_comment] = STATE(227), @@ -96595,253 +97075,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(227), [aux_sym_brack_group_repeat1] = STATE(227), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3665), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_RPAREN] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [231] = { [sym_block_comment] = STATE(217), @@ -96900,253 +97382,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(217), [aux_sym_mixed_group_repeat1] = STATE(217), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3669), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3732), + [anon_sym_COMMA] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3734), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [232] = { [sym_block_comment] = STATE(237), @@ -97205,253 +97689,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(237), [aux_sym_mixed_group_repeat1] = STATE(237), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3736), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3736), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [233] = { [sym_block_comment] = STATE(226), @@ -97510,253 +97996,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3740), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [234] = { [sym_block_comment] = STATE(219), @@ -97815,253 +98303,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(219), [aux_sym_brack_group_repeat1] = STATE(219), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3716), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [235] = { [sym_block_comment] = STATE(238), @@ -98120,253 +98610,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(238), [aux_sym_brack_group_repeat1] = STATE(238), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3744), + [anon_sym_RPAREN] = ACTIONS(3744), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [236] = { [sym_block_comment] = STATE(234), @@ -98425,253 +98917,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(234), [aux_sym_brack_group_repeat1] = STATE(234), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3685), - [anon_sym_RPAREN] = ACTIONS(3685), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3685), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3750), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [237] = { [sym_block_comment] = STATE(226), @@ -98730,253 +99224,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3689), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [238] = { [sym_block_comment] = STATE(219), @@ -99035,253 +99531,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(219), [aux_sym_brack_group_repeat1] = STATE(219), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3754), + [anon_sym_COMMA] = ACTIONS(3716), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [239] = { [sym_block_comment] = STATE(228), @@ -99340,253 +99838,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(228), [aux_sym_mixed_group_repeat1] = STATE(228), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3693), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_EQ] = ACTIONS(3695), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3758), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [240] = { [sym_block_comment] = STATE(218), @@ -99645,253 +100145,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(218), [aux_sym_mixed_group_repeat1] = STATE(218), [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3699), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3326), + [anon_sym_DOLLAR] = ACTIONS(3328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3332), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(3345), - [anon_sym_BSLASHintertext] = ACTIONS(3345), - [anon_sym_shortintertext] = ACTIONS(3345), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(3402), + [anon_sym_BSLASHintertext] = ACTIONS(3402), + [anon_sym_shortintertext] = ACTIONS(3402), }, [241] = { [sym_block_comment] = STATE(244), @@ -99937,251 +100439,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(244), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(244), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_RPAREN] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_COMMA] = ACTIONS(3709), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3709), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3719), - [anon_sym_DOLLAR] = ACTIONS(3721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3723), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3768), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(3772), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3782), + [anon_sym_DOLLAR] = ACTIONS(3784), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3786), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [242] = { [sym_block_comment] = STATE(243), @@ -100227,251 +100731,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(243), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(243), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_RBRACK] = ACTIONS(3709), - [anon_sym_COMMA] = ACTIONS(3709), - [anon_sym_LBRACE] = ACTIONS(3711), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3797), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3797), - [anon_sym_DOLLAR] = ACTIONS(3799), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3801), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3860), + [anon_sym_RPAREN] = ACTIONS(3860), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_RBRACK] = ACTIONS(3772), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3862), + [anon_sym_DOLLAR] = ACTIONS(3864), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3866), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [243] = { [sym_block_comment] = STATE(243), @@ -100517,251 +101023,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(243), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(243), - [sym_command_name] = ACTIONS(3803), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3806), - [anon_sym_LPAREN] = ACTIONS(3809), - [anon_sym_RPAREN] = ACTIONS(3809), - [anon_sym_LBRACK] = ACTIONS(3812), - [anon_sym_RBRACK] = ACTIONS(3815), - [anon_sym_COMMA] = ACTIONS(3815), - [anon_sym_LBRACE] = ACTIONS(3817), - [sym_word] = ACTIONS(3820), - [sym_placeholder] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3826), - [anon_sym_DASH] = ACTIONS(3826), - [anon_sym_STAR] = ACTIONS(3826), - [anon_sym_SLASH] = ACTIONS(3826), - [anon_sym_CARET] = ACTIONS(3826), - [anon_sym__] = ACTIONS(3826), - [anon_sym_LT] = ACTIONS(3826), - [anon_sym_GT] = ACTIONS(3826), - [anon_sym_BANG] = ACTIONS(3826), - [anon_sym_PIPE] = ACTIONS(3826), - [anon_sym_COLON] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3829), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3829), - [anon_sym_DOLLAR] = ACTIONS(3832), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3838), - [anon_sym_BSLASHusepackage] = ACTIONS(3841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3844), - [anon_sym_BSLASHinclude] = ACTIONS(3847), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3847), - [anon_sym_BSLASHinput] = ACTIONS(3847), - [anon_sym_BSLASHsubfile] = ACTIONS(3847), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3850), - [anon_sym_BSLASHbibliography] = ACTIONS(3853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3856), - [anon_sym_BSLASHincludesvg] = ACTIONS(3859), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3862), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3865), - [anon_sym_BSLASHimport] = ACTIONS(3868), - [anon_sym_BSLASHsubimport] = ACTIONS(3868), - [anon_sym_BSLASHinputfrom] = ACTIONS(3868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3868), - [anon_sym_BSLASHincludefrom] = ACTIONS(3868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3868), - [anon_sym_BSLASHcaption] = ACTIONS(3871), - [anon_sym_BSLASHcite] = ACTIONS(3874), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3874), - [anon_sym_BSLASHnocite] = ACTIONS(3874), - [anon_sym_BSLASHcitet] = ACTIONS(3874), - [anon_sym_BSLASHcitep] = ACTIONS(3874), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3874), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3874), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3874), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3874), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3874), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3874), - [anon_sym_BSLASHfullcite] = ACTIONS(3874), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3874), - [anon_sym_BSLASHcitealt] = ACTIONS(3874), - [anon_sym_BSLASHcitealp] = ACTIONS(3874), - [anon_sym_BSLASHcitetext] = ACTIONS(3874), - [anon_sym_BSLASHparencite] = ACTIONS(3874), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3874), - [anon_sym_BSLASHfootcite] = ACTIONS(3874), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3874), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3874), - [anon_sym_BSLASHtextcite] = ACTIONS(3874), - [anon_sym_BSLASHTextcite] = ACTIONS(3874), - [anon_sym_BSLASHsmartcite] = ACTIONS(3874), - [anon_sym_BSLASHSmartcite] = ACTIONS(3874), - [anon_sym_BSLASHsupercite] = ACTIONS(3874), - [anon_sym_BSLASHautocite] = ACTIONS(3874), - [anon_sym_BSLASHAutocite] = ACTIONS(3874), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3874), - [anon_sym_BSLASHVolcite] = ACTIONS(3874), - [anon_sym_BSLASHpvolcite] = ACTIONS(3874), - [anon_sym_BSLASHPvolcite] = ACTIONS(3874), - [anon_sym_BSLASHfvolcite] = ACTIONS(3874), - [anon_sym_BSLASHftvolcite] = ACTIONS(3874), - [anon_sym_BSLASHsvolcite] = ACTIONS(3874), - [anon_sym_BSLASHSvolcite] = ACTIONS(3874), - [anon_sym_BSLASHtvolcite] = ACTIONS(3874), - [anon_sym_BSLASHTvolcite] = ACTIONS(3874), - [anon_sym_BSLASHavolcite] = ACTIONS(3874), - [anon_sym_BSLASHAvolcite] = ACTIONS(3874), - [anon_sym_BSLASHnotecite] = ACTIONS(3874), - [anon_sym_BSLASHNotecite] = ACTIONS(3874), - [anon_sym_BSLASHpnotecite] = ACTIONS(3874), - [anon_sym_BSLASHPnotecite] = ACTIONS(3874), - [anon_sym_BSLASHfnotecite] = ACTIONS(3874), - [anon_sym_BSLASHlabel] = ACTIONS(3880), - [anon_sym_BSLASHref] = ACTIONS(3883), - [anon_sym_BSLASHeqref] = ACTIONS(3883), - [anon_sym_BSLASHvref] = ACTIONS(3883), - [anon_sym_BSLASHVref] = ACTIONS(3883), - [anon_sym_BSLASHautoref] = ACTIONS(3883), - [anon_sym_BSLASHpageref] = ACTIONS(3883), - [anon_sym_BSLASHcref] = ACTIONS(3883), - [anon_sym_BSLASHCref] = ACTIONS(3883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3886), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3886), - [anon_sym_BSLASHnamecref] = ACTIONS(3883), - [anon_sym_BSLASHnameCref] = ACTIONS(3883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3883), - [anon_sym_BSLASHlabelcref] = ACTIONS(3883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3883), - [anon_sym_BSLASHcrefrange] = ACTIONS(3889), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3892), - [anon_sym_BSLASHCrefrange] = ACTIONS(3889), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3892), - [anon_sym_BSLASHnewlabel] = ACTIONS(3895), - [anon_sym_BSLASHnewcommand] = ACTIONS(3898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3901), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3901), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3901), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3901), - [anon_sym_BSLASHdef] = ACTIONS(3904), - [anon_sym_BSLASHlet] = ACTIONS(3907), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3910), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3913), - [anon_sym_BSLASHgls] = ACTIONS(3916), - [anon_sym_BSLASHGls] = ACTIONS(3916), - [anon_sym_BSLASHGLS] = ACTIONS(3916), - [anon_sym_BSLASHglspl] = ACTIONS(3916), - [anon_sym_BSLASHGlspl] = ACTIONS(3916), - [anon_sym_BSLASHGLSpl] = ACTIONS(3916), - [anon_sym_BSLASHglsdisp] = ACTIONS(3916), - [anon_sym_BSLASHglslink] = ACTIONS(3916), - [anon_sym_BSLASHglstext] = ACTIONS(3916), - [anon_sym_BSLASHGlstext] = ACTIONS(3916), - [anon_sym_BSLASHGLStext] = ACTIONS(3916), - [anon_sym_BSLASHglsfirst] = ACTIONS(3916), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3916), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3916), - [anon_sym_BSLASHglsplural] = ACTIONS(3916), - [anon_sym_BSLASHGlsplural] = ACTIONS(3916), - [anon_sym_BSLASHGLSplural] = ACTIONS(3916), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3916), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3916), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3916), - [anon_sym_BSLASHglsname] = ACTIONS(3916), - [anon_sym_BSLASHGlsname] = ACTIONS(3916), - [anon_sym_BSLASHGLSname] = ACTIONS(3916), - [anon_sym_BSLASHglssymbol] = ACTIONS(3916), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3916), - [anon_sym_BSLASHglsdesc] = ACTIONS(3916), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3916), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3916), - [anon_sym_BSLASHglsuseri] = ACTIONS(3916), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3916), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3916), - [anon_sym_BSLASHglsuserii] = ACTIONS(3916), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3916), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3916), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3916), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3916), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3916), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3916), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3916), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3916), - [anon_sym_BSLASHglsuserv] = ACTIONS(3916), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3916), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3916), - [anon_sym_BSLASHglsuservi] = ACTIONS(3916), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3916), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3916), - [anon_sym_BSLASHnewacronym] = ACTIONS(3919), - [anon_sym_BSLASHacrshort] = ACTIONS(3922), - [anon_sym_BSLASHAcrshort] = ACTIONS(3922), - [anon_sym_BSLASHACRshort] = ACTIONS(3922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3922), - [anon_sym_BSLASHacrlong] = ACTIONS(3922), - [anon_sym_BSLASHAcrlong] = ACTIONS(3922), - [anon_sym_BSLASHACRlong] = ACTIONS(3922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3922), - [anon_sym_BSLASHacrfull] = ACTIONS(3922), - [anon_sym_BSLASHAcrfull] = ACTIONS(3922), - [anon_sym_BSLASHACRfull] = ACTIONS(3922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3922), - [anon_sym_BSLASHacs] = ACTIONS(3922), - [anon_sym_BSLASHAcs] = ACTIONS(3922), - [anon_sym_BSLASHacsp] = ACTIONS(3922), - [anon_sym_BSLASHAcsp] = ACTIONS(3922), - [anon_sym_BSLASHacl] = ACTIONS(3922), - [anon_sym_BSLASHAcl] = ACTIONS(3922), - [anon_sym_BSLASHaclp] = ACTIONS(3922), - [anon_sym_BSLASHAclp] = ACTIONS(3922), - [anon_sym_BSLASHacf] = ACTIONS(3922), - [anon_sym_BSLASHAcf] = ACTIONS(3922), - [anon_sym_BSLASHacfp] = ACTIONS(3922), - [anon_sym_BSLASHAcfp] = ACTIONS(3922), - [anon_sym_BSLASHac] = ACTIONS(3922), - [anon_sym_BSLASHAc] = ACTIONS(3922), - [anon_sym_BSLASHacp] = ACTIONS(3922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3928), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3931), - [anon_sym_BSLASHcolor] = ACTIONS(3934), - [anon_sym_BSLASHcolorbox] = ACTIONS(3934), - [anon_sym_BSLASHtextcolor] = ACTIONS(3934), - [anon_sym_BSLASHpagecolor] = ACTIONS(3934), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3937), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3937), - [anon_sym_BSLASHtext] = ACTIONS(3940), - [anon_sym_BSLASHintertext] = ACTIONS(3940), - [anon_sym_shortintertext] = ACTIONS(3940), + [sym_command_name] = ACTIONS(3868), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3874), + [anon_sym_RPAREN] = ACTIONS(3874), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_RBRACK] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [sym_word] = ACTIONS(3885), + [sym_placeholder] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3891), + [anon_sym_DASH] = ACTIONS(3891), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3891), + [anon_sym_CARET] = ACTIONS(3891), + [anon_sym__] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_BANG] = ACTIONS(3891), + [anon_sym_PIPE] = ACTIONS(3891), + [anon_sym_COLON] = ACTIONS(3891), + [anon_sym_SQUOTE] = ACTIONS(3891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3894), + [anon_sym_DOLLAR] = ACTIONS(3897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3900), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3903), + [anon_sym_BSLASHusepackage] = ACTIONS(3906), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3906), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3909), + [anon_sym_BSLASHinclude] = ACTIONS(3912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3912), + [anon_sym_BSLASHinput] = ACTIONS(3912), + [anon_sym_BSLASHsubfile] = ACTIONS(3912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3915), + [anon_sym_BSLASHbibliography] = ACTIONS(3918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3921), + [anon_sym_BSLASHincludesvg] = ACTIONS(3924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3930), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3930), + [anon_sym_BSLASHimport] = ACTIONS(3933), + [anon_sym_BSLASHsubimport] = ACTIONS(3933), + [anon_sym_BSLASHinputfrom] = ACTIONS(3933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3933), + [anon_sym_BSLASHincludefrom] = ACTIONS(3933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3933), + [anon_sym_BSLASHcaption] = ACTIONS(3936), + [anon_sym_BSLASHcite] = ACTIONS(3939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHCite] = ACTIONS(3939), + [anon_sym_BSLASHnocite] = ACTIONS(3939), + [anon_sym_BSLASHcitet] = ACTIONS(3939), + [anon_sym_BSLASHcitep] = ACTIONS(3939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3942), + [anon_sym_BSLASHciteauthor] = ACTIONS(3939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3942), + [anon_sym_BSLASHcitetitle] = ACTIONS(3939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3942), + [anon_sym_BSLASHciteyear] = ACTIONS(3939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3942), + [anon_sym_BSLASHcitedate] = ACTIONS(3939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3942), + [anon_sym_BSLASHciteurl] = ACTIONS(3939), + [anon_sym_BSLASHfullcite] = ACTIONS(3939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3939), + [anon_sym_BSLASHcitealt] = ACTIONS(3939), + [anon_sym_BSLASHcitealp] = ACTIONS(3939), + [anon_sym_BSLASHcitetext] = ACTIONS(3939), + [anon_sym_BSLASHparencite] = ACTIONS(3939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHParencite] = ACTIONS(3939), + [anon_sym_BSLASHfootcite] = ACTIONS(3939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3939), + [anon_sym_BSLASHtextcite] = ACTIONS(3939), + [anon_sym_BSLASHTextcite] = ACTIONS(3939), + [anon_sym_BSLASHsmartcite] = ACTIONS(3939), + [anon_sym_BSLASHSmartcite] = ACTIONS(3939), + [anon_sym_BSLASHsupercite] = ACTIONS(3939), + [anon_sym_BSLASHautocite] = ACTIONS(3939), + [anon_sym_BSLASHAutocite] = ACTIONS(3939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHvolcite] = ACTIONS(3939), + [anon_sym_BSLASHVolcite] = ACTIONS(3939), + [anon_sym_BSLASHpvolcite] = ACTIONS(3939), + [anon_sym_BSLASHPvolcite] = ACTIONS(3939), + [anon_sym_BSLASHfvolcite] = ACTIONS(3939), + [anon_sym_BSLASHftvolcite] = ACTIONS(3939), + [anon_sym_BSLASHsvolcite] = ACTIONS(3939), + [anon_sym_BSLASHSvolcite] = ACTIONS(3939), + [anon_sym_BSLASHtvolcite] = ACTIONS(3939), + [anon_sym_BSLASHTvolcite] = ACTIONS(3939), + [anon_sym_BSLASHavolcite] = ACTIONS(3939), + [anon_sym_BSLASHAvolcite] = ACTIONS(3939), + [anon_sym_BSLASHnotecite] = ACTIONS(3939), + [anon_sym_BSLASHNotecite] = ACTIONS(3939), + [anon_sym_BSLASHpnotecite] = ACTIONS(3939), + [anon_sym_BSLASHPnotecite] = ACTIONS(3939), + [anon_sym_BSLASHfnotecite] = ACTIONS(3939), + [anon_sym_BSLASHlabel] = ACTIONS(3945), + [anon_sym_BSLASHref] = ACTIONS(3948), + [anon_sym_BSLASHeqref] = ACTIONS(3948), + [anon_sym_BSLASHvref] = ACTIONS(3948), + [anon_sym_BSLASHVref] = ACTIONS(3948), + [anon_sym_BSLASHautoref] = ACTIONS(3948), + [anon_sym_BSLASHpageref] = ACTIONS(3948), + [anon_sym_BSLASHcref] = ACTIONS(3948), + [anon_sym_BSLASHCref] = ACTIONS(3948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3951), + [anon_sym_BSLASHnamecref] = ACTIONS(3948), + [anon_sym_BSLASHnameCref] = ACTIONS(3948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3948), + [anon_sym_BSLASHlabelcref] = ACTIONS(3948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3948), + [anon_sym_BSLASHcrefrange] = ACTIONS(3954), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3957), + [anon_sym_BSLASHCrefrange] = ACTIONS(3954), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3957), + [anon_sym_BSLASHnewlabel] = ACTIONS(3960), + [anon_sym_BSLASHnewcommand] = ACTIONS(3963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3966), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3966), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3966), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3966), + [anon_sym_BSLASHdef] = ACTIONS(3969), + [anon_sym_BSLASHlet] = ACTIONS(3972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3978), + [anon_sym_BSLASHgls] = ACTIONS(3981), + [anon_sym_BSLASHGls] = ACTIONS(3981), + [anon_sym_BSLASHGLS] = ACTIONS(3981), + [anon_sym_BSLASHglspl] = ACTIONS(3981), + [anon_sym_BSLASHGlspl] = ACTIONS(3981), + [anon_sym_BSLASHGLSpl] = ACTIONS(3981), + [anon_sym_BSLASHglsdisp] = ACTIONS(3981), + [anon_sym_BSLASHglslink] = ACTIONS(3981), + [anon_sym_BSLASHglstext] = ACTIONS(3981), + [anon_sym_BSLASHGlstext] = ACTIONS(3981), + [anon_sym_BSLASHGLStext] = ACTIONS(3981), + [anon_sym_BSLASHglsfirst] = ACTIONS(3981), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3981), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3981), + [anon_sym_BSLASHglsplural] = ACTIONS(3981), + [anon_sym_BSLASHGlsplural] = ACTIONS(3981), + [anon_sym_BSLASHGLSplural] = ACTIONS(3981), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3981), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3981), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3981), + [anon_sym_BSLASHglsname] = ACTIONS(3981), + [anon_sym_BSLASHGlsname] = ACTIONS(3981), + [anon_sym_BSLASHGLSname] = ACTIONS(3981), + [anon_sym_BSLASHglssymbol] = ACTIONS(3981), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3981), + [anon_sym_BSLASHglsdesc] = ACTIONS(3981), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3981), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3981), + [anon_sym_BSLASHglsuseri] = ACTIONS(3981), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3981), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3981), + [anon_sym_BSLASHglsuserii] = ACTIONS(3981), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3981), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3981), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3981), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3981), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3981), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3981), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3981), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3981), + [anon_sym_BSLASHglsuserv] = ACTIONS(3981), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3981), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3981), + [anon_sym_BSLASHglsuservi] = ACTIONS(3981), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3981), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3981), + [anon_sym_BSLASHnewacronym] = ACTIONS(3984), + [anon_sym_BSLASHacrshort] = ACTIONS(3987), + [anon_sym_BSLASHAcrshort] = ACTIONS(3987), + [anon_sym_BSLASHACRshort] = ACTIONS(3987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3987), + [anon_sym_BSLASHacrlong] = ACTIONS(3987), + [anon_sym_BSLASHAcrlong] = ACTIONS(3987), + [anon_sym_BSLASHACRlong] = ACTIONS(3987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3987), + [anon_sym_BSLASHacrfull] = ACTIONS(3987), + [anon_sym_BSLASHAcrfull] = ACTIONS(3987), + [anon_sym_BSLASHACRfull] = ACTIONS(3987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3987), + [anon_sym_BSLASHacs] = ACTIONS(3987), + [anon_sym_BSLASHAcs] = ACTIONS(3987), + [anon_sym_BSLASHacsp] = ACTIONS(3987), + [anon_sym_BSLASHAcsp] = ACTIONS(3987), + [anon_sym_BSLASHacl] = ACTIONS(3987), + [anon_sym_BSLASHAcl] = ACTIONS(3987), + [anon_sym_BSLASHaclp] = ACTIONS(3987), + [anon_sym_BSLASHAclp] = ACTIONS(3987), + [anon_sym_BSLASHacf] = ACTIONS(3987), + [anon_sym_BSLASHAcf] = ACTIONS(3987), + [anon_sym_BSLASHacfp] = ACTIONS(3987), + [anon_sym_BSLASHAcfp] = ACTIONS(3987), + [anon_sym_BSLASHac] = ACTIONS(3987), + [anon_sym_BSLASHAc] = ACTIONS(3987), + [anon_sym_BSLASHacp] = ACTIONS(3987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3999), + [anon_sym_BSLASHcolor] = ACTIONS(4002), + [anon_sym_BSLASHcolorbox] = ACTIONS(4002), + [anon_sym_BSLASHtextcolor] = ACTIONS(4002), + [anon_sym_BSLASHpagecolor] = ACTIONS(4002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4005), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4005), + [anon_sym_BSLASHtext] = ACTIONS(4008), + [anon_sym_BSLASHintertext] = ACTIONS(4008), + [anon_sym_shortintertext] = ACTIONS(4008), }, [244] = { [sym_block_comment] = STATE(244), @@ -100807,251 +101315,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(244), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(244), - [sym_command_name] = ACTIONS(3803), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3806), - [anon_sym_LPAREN] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3812), - [anon_sym_COMMA] = ACTIONS(3815), - [anon_sym_LBRACE] = ACTIONS(3817), - [anon_sym_RBRACE] = ACTIONS(3815), - [sym_word] = ACTIONS(3820), - [sym_placeholder] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3826), - [anon_sym_DASH] = ACTIONS(3826), - [anon_sym_STAR] = ACTIONS(3826), - [anon_sym_SLASH] = ACTIONS(3826), - [anon_sym_CARET] = ACTIONS(3826), - [anon_sym__] = ACTIONS(3826), - [anon_sym_LT] = ACTIONS(3826), - [anon_sym_GT] = ACTIONS(3826), - [anon_sym_BANG] = ACTIONS(3826), - [anon_sym_PIPE] = ACTIONS(3826), - [anon_sym_COLON] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3946), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3946), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3952), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3838), - [anon_sym_BSLASHusepackage] = ACTIONS(3841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3844), - [anon_sym_BSLASHinclude] = ACTIONS(3847), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3847), - [anon_sym_BSLASHinput] = ACTIONS(3847), - [anon_sym_BSLASHsubfile] = ACTIONS(3847), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3850), - [anon_sym_BSLASHbibliography] = ACTIONS(3853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3856), - [anon_sym_BSLASHincludesvg] = ACTIONS(3859), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3862), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3865), - [anon_sym_BSLASHimport] = ACTIONS(3868), - [anon_sym_BSLASHsubimport] = ACTIONS(3868), - [anon_sym_BSLASHinputfrom] = ACTIONS(3868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3868), - [anon_sym_BSLASHincludefrom] = ACTIONS(3868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3868), - [anon_sym_BSLASHcaption] = ACTIONS(3871), - [anon_sym_BSLASHcite] = ACTIONS(3874), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3874), - [anon_sym_BSLASHnocite] = ACTIONS(3874), - [anon_sym_BSLASHcitet] = ACTIONS(3874), - [anon_sym_BSLASHcitep] = ACTIONS(3874), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3874), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3874), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3874), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3874), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3874), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3874), - [anon_sym_BSLASHfullcite] = ACTIONS(3874), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3874), - [anon_sym_BSLASHcitealt] = ACTIONS(3874), - [anon_sym_BSLASHcitealp] = ACTIONS(3874), - [anon_sym_BSLASHcitetext] = ACTIONS(3874), - [anon_sym_BSLASHparencite] = ACTIONS(3874), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3874), - [anon_sym_BSLASHfootcite] = ACTIONS(3874), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3874), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3874), - [anon_sym_BSLASHtextcite] = ACTIONS(3874), - [anon_sym_BSLASHTextcite] = ACTIONS(3874), - [anon_sym_BSLASHsmartcite] = ACTIONS(3874), - [anon_sym_BSLASHSmartcite] = ACTIONS(3874), - [anon_sym_BSLASHsupercite] = ACTIONS(3874), - [anon_sym_BSLASHautocite] = ACTIONS(3874), - [anon_sym_BSLASHAutocite] = ACTIONS(3874), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3874), - [anon_sym_BSLASHVolcite] = ACTIONS(3874), - [anon_sym_BSLASHpvolcite] = ACTIONS(3874), - [anon_sym_BSLASHPvolcite] = ACTIONS(3874), - [anon_sym_BSLASHfvolcite] = ACTIONS(3874), - [anon_sym_BSLASHftvolcite] = ACTIONS(3874), - [anon_sym_BSLASHsvolcite] = ACTIONS(3874), - [anon_sym_BSLASHSvolcite] = ACTIONS(3874), - [anon_sym_BSLASHtvolcite] = ACTIONS(3874), - [anon_sym_BSLASHTvolcite] = ACTIONS(3874), - [anon_sym_BSLASHavolcite] = ACTIONS(3874), - [anon_sym_BSLASHAvolcite] = ACTIONS(3874), - [anon_sym_BSLASHnotecite] = ACTIONS(3874), - [anon_sym_BSLASHNotecite] = ACTIONS(3874), - [anon_sym_BSLASHpnotecite] = ACTIONS(3874), - [anon_sym_BSLASHPnotecite] = ACTIONS(3874), - [anon_sym_BSLASHfnotecite] = ACTIONS(3874), - [anon_sym_BSLASHlabel] = ACTIONS(3880), - [anon_sym_BSLASHref] = ACTIONS(3883), - [anon_sym_BSLASHeqref] = ACTIONS(3883), - [anon_sym_BSLASHvref] = ACTIONS(3883), - [anon_sym_BSLASHVref] = ACTIONS(3883), - [anon_sym_BSLASHautoref] = ACTIONS(3883), - [anon_sym_BSLASHpageref] = ACTIONS(3883), - [anon_sym_BSLASHcref] = ACTIONS(3883), - [anon_sym_BSLASHCref] = ACTIONS(3883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3886), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3886), - [anon_sym_BSLASHnamecref] = ACTIONS(3883), - [anon_sym_BSLASHnameCref] = ACTIONS(3883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3883), - [anon_sym_BSLASHlabelcref] = ACTIONS(3883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3883), - [anon_sym_BSLASHcrefrange] = ACTIONS(3889), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3892), - [anon_sym_BSLASHCrefrange] = ACTIONS(3889), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3892), - [anon_sym_BSLASHnewlabel] = ACTIONS(3895), - [anon_sym_BSLASHnewcommand] = ACTIONS(3898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3901), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3901), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3901), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3901), - [anon_sym_BSLASHdef] = ACTIONS(3904), - [anon_sym_BSLASHlet] = ACTIONS(3907), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3910), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3913), - [anon_sym_BSLASHgls] = ACTIONS(3916), - [anon_sym_BSLASHGls] = ACTIONS(3916), - [anon_sym_BSLASHGLS] = ACTIONS(3916), - [anon_sym_BSLASHglspl] = ACTIONS(3916), - [anon_sym_BSLASHGlspl] = ACTIONS(3916), - [anon_sym_BSLASHGLSpl] = ACTIONS(3916), - [anon_sym_BSLASHglsdisp] = ACTIONS(3916), - [anon_sym_BSLASHglslink] = ACTIONS(3916), - [anon_sym_BSLASHglstext] = ACTIONS(3916), - [anon_sym_BSLASHGlstext] = ACTIONS(3916), - [anon_sym_BSLASHGLStext] = ACTIONS(3916), - [anon_sym_BSLASHglsfirst] = ACTIONS(3916), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3916), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3916), - [anon_sym_BSLASHglsplural] = ACTIONS(3916), - [anon_sym_BSLASHGlsplural] = ACTIONS(3916), - [anon_sym_BSLASHGLSplural] = ACTIONS(3916), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3916), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3916), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3916), - [anon_sym_BSLASHglsname] = ACTIONS(3916), - [anon_sym_BSLASHGlsname] = ACTIONS(3916), - [anon_sym_BSLASHGLSname] = ACTIONS(3916), - [anon_sym_BSLASHglssymbol] = ACTIONS(3916), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3916), - [anon_sym_BSLASHglsdesc] = ACTIONS(3916), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3916), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3916), - [anon_sym_BSLASHglsuseri] = ACTIONS(3916), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3916), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3916), - [anon_sym_BSLASHglsuserii] = ACTIONS(3916), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3916), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3916), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3916), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3916), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3916), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3916), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3916), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3916), - [anon_sym_BSLASHglsuserv] = ACTIONS(3916), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3916), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3916), - [anon_sym_BSLASHglsuservi] = ACTIONS(3916), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3916), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3916), - [anon_sym_BSLASHnewacronym] = ACTIONS(3919), - [anon_sym_BSLASHacrshort] = ACTIONS(3922), - [anon_sym_BSLASHAcrshort] = ACTIONS(3922), - [anon_sym_BSLASHACRshort] = ACTIONS(3922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3922), - [anon_sym_BSLASHacrlong] = ACTIONS(3922), - [anon_sym_BSLASHAcrlong] = ACTIONS(3922), - [anon_sym_BSLASHACRlong] = ACTIONS(3922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3922), - [anon_sym_BSLASHacrfull] = ACTIONS(3922), - [anon_sym_BSLASHAcrfull] = ACTIONS(3922), - [anon_sym_BSLASHACRfull] = ACTIONS(3922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3922), - [anon_sym_BSLASHacs] = ACTIONS(3922), - [anon_sym_BSLASHAcs] = ACTIONS(3922), - [anon_sym_BSLASHacsp] = ACTIONS(3922), - [anon_sym_BSLASHAcsp] = ACTIONS(3922), - [anon_sym_BSLASHacl] = ACTIONS(3922), - [anon_sym_BSLASHAcl] = ACTIONS(3922), - [anon_sym_BSLASHaclp] = ACTIONS(3922), - [anon_sym_BSLASHAclp] = ACTIONS(3922), - [anon_sym_BSLASHacf] = ACTIONS(3922), - [anon_sym_BSLASHAcf] = ACTIONS(3922), - [anon_sym_BSLASHacfp] = ACTIONS(3922), - [anon_sym_BSLASHAcfp] = ACTIONS(3922), - [anon_sym_BSLASHac] = ACTIONS(3922), - [anon_sym_BSLASHAc] = ACTIONS(3922), - [anon_sym_BSLASHacp] = ACTIONS(3922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3928), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3931), - [anon_sym_BSLASHcolor] = ACTIONS(3934), - [anon_sym_BSLASHcolorbox] = ACTIONS(3934), - [anon_sym_BSLASHtextcolor] = ACTIONS(3934), - [anon_sym_BSLASHpagecolor] = ACTIONS(3934), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3937), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3937), - [anon_sym_BSLASHtext] = ACTIONS(3940), - [anon_sym_BSLASHintertext] = ACTIONS(3940), - [anon_sym_shortintertext] = ACTIONS(3940), + [sym_command_name] = ACTIONS(3868), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_RPAREN] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3880), + [sym_word] = ACTIONS(3885), + [sym_placeholder] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3891), + [anon_sym_DASH] = ACTIONS(3891), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3891), + [anon_sym_CARET] = ACTIONS(3891), + [anon_sym__] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_BANG] = ACTIONS(3891), + [anon_sym_PIPE] = ACTIONS(3891), + [anon_sym_COLON] = ACTIONS(3891), + [anon_sym_SQUOTE] = ACTIONS(3891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4014), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4014), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3903), + [anon_sym_BSLASHusepackage] = ACTIONS(3906), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3906), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3909), + [anon_sym_BSLASHinclude] = ACTIONS(3912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3912), + [anon_sym_BSLASHinput] = ACTIONS(3912), + [anon_sym_BSLASHsubfile] = ACTIONS(3912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3915), + [anon_sym_BSLASHbibliography] = ACTIONS(3918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3921), + [anon_sym_BSLASHincludesvg] = ACTIONS(3924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3930), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3930), + [anon_sym_BSLASHimport] = ACTIONS(3933), + [anon_sym_BSLASHsubimport] = ACTIONS(3933), + [anon_sym_BSLASHinputfrom] = ACTIONS(3933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3933), + [anon_sym_BSLASHincludefrom] = ACTIONS(3933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3933), + [anon_sym_BSLASHcaption] = ACTIONS(3936), + [anon_sym_BSLASHcite] = ACTIONS(3939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHCite] = ACTIONS(3939), + [anon_sym_BSLASHnocite] = ACTIONS(3939), + [anon_sym_BSLASHcitet] = ACTIONS(3939), + [anon_sym_BSLASHcitep] = ACTIONS(3939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3942), + [anon_sym_BSLASHciteauthor] = ACTIONS(3939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3942), + [anon_sym_BSLASHcitetitle] = ACTIONS(3939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3942), + [anon_sym_BSLASHciteyear] = ACTIONS(3939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3942), + [anon_sym_BSLASHcitedate] = ACTIONS(3939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3942), + [anon_sym_BSLASHciteurl] = ACTIONS(3939), + [anon_sym_BSLASHfullcite] = ACTIONS(3939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3939), + [anon_sym_BSLASHcitealt] = ACTIONS(3939), + [anon_sym_BSLASHcitealp] = ACTIONS(3939), + [anon_sym_BSLASHcitetext] = ACTIONS(3939), + [anon_sym_BSLASHparencite] = ACTIONS(3939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHParencite] = ACTIONS(3939), + [anon_sym_BSLASHfootcite] = ACTIONS(3939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3939), + [anon_sym_BSLASHtextcite] = ACTIONS(3939), + [anon_sym_BSLASHTextcite] = ACTIONS(3939), + [anon_sym_BSLASHsmartcite] = ACTIONS(3939), + [anon_sym_BSLASHSmartcite] = ACTIONS(3939), + [anon_sym_BSLASHsupercite] = ACTIONS(3939), + [anon_sym_BSLASHautocite] = ACTIONS(3939), + [anon_sym_BSLASHAutocite] = ACTIONS(3939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3942), + [anon_sym_BSLASHvolcite] = ACTIONS(3939), + [anon_sym_BSLASHVolcite] = ACTIONS(3939), + [anon_sym_BSLASHpvolcite] = ACTIONS(3939), + [anon_sym_BSLASHPvolcite] = ACTIONS(3939), + [anon_sym_BSLASHfvolcite] = ACTIONS(3939), + [anon_sym_BSLASHftvolcite] = ACTIONS(3939), + [anon_sym_BSLASHsvolcite] = ACTIONS(3939), + [anon_sym_BSLASHSvolcite] = ACTIONS(3939), + [anon_sym_BSLASHtvolcite] = ACTIONS(3939), + [anon_sym_BSLASHTvolcite] = ACTIONS(3939), + [anon_sym_BSLASHavolcite] = ACTIONS(3939), + [anon_sym_BSLASHAvolcite] = ACTIONS(3939), + [anon_sym_BSLASHnotecite] = ACTIONS(3939), + [anon_sym_BSLASHNotecite] = ACTIONS(3939), + [anon_sym_BSLASHpnotecite] = ACTIONS(3939), + [anon_sym_BSLASHPnotecite] = ACTIONS(3939), + [anon_sym_BSLASHfnotecite] = ACTIONS(3939), + [anon_sym_BSLASHlabel] = ACTIONS(3945), + [anon_sym_BSLASHref] = ACTIONS(3948), + [anon_sym_BSLASHeqref] = ACTIONS(3948), + [anon_sym_BSLASHvref] = ACTIONS(3948), + [anon_sym_BSLASHVref] = ACTIONS(3948), + [anon_sym_BSLASHautoref] = ACTIONS(3948), + [anon_sym_BSLASHpageref] = ACTIONS(3948), + [anon_sym_BSLASHcref] = ACTIONS(3948), + [anon_sym_BSLASHCref] = ACTIONS(3948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3951), + [anon_sym_BSLASHnamecref] = ACTIONS(3948), + [anon_sym_BSLASHnameCref] = ACTIONS(3948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3948), + [anon_sym_BSLASHlabelcref] = ACTIONS(3948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3948), + [anon_sym_BSLASHcrefrange] = ACTIONS(3954), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3957), + [anon_sym_BSLASHCrefrange] = ACTIONS(3954), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3957), + [anon_sym_BSLASHnewlabel] = ACTIONS(3960), + [anon_sym_BSLASHnewcommand] = ACTIONS(3963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3966), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3966), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3966), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3966), + [anon_sym_BSLASHdef] = ACTIONS(3969), + [anon_sym_BSLASHlet] = ACTIONS(3972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3978), + [anon_sym_BSLASHgls] = ACTIONS(3981), + [anon_sym_BSLASHGls] = ACTIONS(3981), + [anon_sym_BSLASHGLS] = ACTIONS(3981), + [anon_sym_BSLASHglspl] = ACTIONS(3981), + [anon_sym_BSLASHGlspl] = ACTIONS(3981), + [anon_sym_BSLASHGLSpl] = ACTIONS(3981), + [anon_sym_BSLASHglsdisp] = ACTIONS(3981), + [anon_sym_BSLASHglslink] = ACTIONS(3981), + [anon_sym_BSLASHglstext] = ACTIONS(3981), + [anon_sym_BSLASHGlstext] = ACTIONS(3981), + [anon_sym_BSLASHGLStext] = ACTIONS(3981), + [anon_sym_BSLASHglsfirst] = ACTIONS(3981), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3981), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3981), + [anon_sym_BSLASHglsplural] = ACTIONS(3981), + [anon_sym_BSLASHGlsplural] = ACTIONS(3981), + [anon_sym_BSLASHGLSplural] = ACTIONS(3981), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3981), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3981), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3981), + [anon_sym_BSLASHglsname] = ACTIONS(3981), + [anon_sym_BSLASHGlsname] = ACTIONS(3981), + [anon_sym_BSLASHGLSname] = ACTIONS(3981), + [anon_sym_BSLASHglssymbol] = ACTIONS(3981), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3981), + [anon_sym_BSLASHglsdesc] = ACTIONS(3981), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3981), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3981), + [anon_sym_BSLASHglsuseri] = ACTIONS(3981), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3981), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3981), + [anon_sym_BSLASHglsuserii] = ACTIONS(3981), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3981), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3981), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3981), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3981), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3981), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3981), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3981), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3981), + [anon_sym_BSLASHglsuserv] = ACTIONS(3981), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3981), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3981), + [anon_sym_BSLASHglsuservi] = ACTIONS(3981), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3981), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3981), + [anon_sym_BSLASHnewacronym] = ACTIONS(3984), + [anon_sym_BSLASHacrshort] = ACTIONS(3987), + [anon_sym_BSLASHAcrshort] = ACTIONS(3987), + [anon_sym_BSLASHACRshort] = ACTIONS(3987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3987), + [anon_sym_BSLASHacrlong] = ACTIONS(3987), + [anon_sym_BSLASHAcrlong] = ACTIONS(3987), + [anon_sym_BSLASHACRlong] = ACTIONS(3987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3987), + [anon_sym_BSLASHacrfull] = ACTIONS(3987), + [anon_sym_BSLASHAcrfull] = ACTIONS(3987), + [anon_sym_BSLASHACRfull] = ACTIONS(3987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3987), + [anon_sym_BSLASHacs] = ACTIONS(3987), + [anon_sym_BSLASHAcs] = ACTIONS(3987), + [anon_sym_BSLASHacsp] = ACTIONS(3987), + [anon_sym_BSLASHAcsp] = ACTIONS(3987), + [anon_sym_BSLASHacl] = ACTIONS(3987), + [anon_sym_BSLASHAcl] = ACTIONS(3987), + [anon_sym_BSLASHaclp] = ACTIONS(3987), + [anon_sym_BSLASHAclp] = ACTIONS(3987), + [anon_sym_BSLASHacf] = ACTIONS(3987), + [anon_sym_BSLASHAcf] = ACTIONS(3987), + [anon_sym_BSLASHacfp] = ACTIONS(3987), + [anon_sym_BSLASHAcfp] = ACTIONS(3987), + [anon_sym_BSLASHac] = ACTIONS(3987), + [anon_sym_BSLASHAc] = ACTIONS(3987), + [anon_sym_BSLASHacp] = ACTIONS(3987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3999), + [anon_sym_BSLASHcolor] = ACTIONS(4002), + [anon_sym_BSLASHcolorbox] = ACTIONS(4002), + [anon_sym_BSLASHtextcolor] = ACTIONS(4002), + [anon_sym_BSLASHpagecolor] = ACTIONS(4002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4005), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4005), + [anon_sym_BSLASHtext] = ACTIONS(4008), + [anon_sym_BSLASHintertext] = ACTIONS(4008), + [anon_sym_shortintertext] = ACTIONS(4008), }, [245] = { [sym_block_comment] = STATE(242), @@ -101098,249 +101608,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(242), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(242), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(3955), - [anon_sym_RPAREN] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3711), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3797), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3797), - [anon_sym_DOLLAR] = ACTIONS(3799), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3801), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(4023), + [anon_sym_RPAREN] = ACTIONS(4023), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3862), + [anon_sym_DOLLAR] = ACTIONS(3864), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3866), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [246] = { [sym_block_comment] = STATE(241), @@ -101387,249 +101899,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(241), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(241), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3711), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3719), - [anon_sym_DOLLAR] = ACTIONS(3721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3723), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(4025), + [anon_sym_RPAREN] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3782), + [anon_sym_DOLLAR] = ACTIONS(3784), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3786), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [247] = { [sym_block_comment] = STATE(262), @@ -101674,247 +102188,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3959), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4027), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [248] = { [sym_block_comment] = STATE(262), @@ -101959,247 +102475,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3967), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4035), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [249] = { [sym_block_comment] = STATE(248), @@ -102244,247 +102762,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(248), [aux_sym_curly_group_impl_repeat1] = STATE(248), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3969), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4037), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [250] = { [sym_block_comment] = STATE(262), @@ -102529,247 +103049,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3971), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4039), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [251] = { [sym_block_comment] = STATE(261), @@ -102814,247 +103336,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(261), [aux_sym_curly_group_impl_repeat1] = STATE(261), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3973), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4041), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [252] = { [sym_block_comment] = STATE(263), @@ -103099,247 +103623,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(263), [aux_sym_curly_group_impl_repeat1] = STATE(263), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3975), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4043), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [253] = { [sym_block_comment] = STATE(262), @@ -103384,247 +103910,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3977), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4045), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [254] = { [sym_block_comment] = STATE(256), @@ -103669,247 +104197,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(256), [aux_sym_curly_group_impl_repeat1] = STATE(256), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3979), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4047), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [255] = { [sym_block_comment] = STATE(262), @@ -103954,247 +104484,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3981), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4049), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [256] = { [sym_block_comment] = STATE(262), @@ -104239,247 +104771,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3983), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4051), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [257] = { [sym_block_comment] = STATE(255), @@ -104524,247 +105058,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(255), [aux_sym_curly_group_impl_repeat1] = STATE(255), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3985), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4053), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [258] = { [sym_block_comment] = STATE(253), @@ -104809,247 +105345,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(253), [aux_sym_curly_group_impl_repeat1] = STATE(253), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3987), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4055), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [259] = { [sym_block_comment] = STATE(250), @@ -105094,247 +105632,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(250), [aux_sym_curly_group_impl_repeat1] = STATE(250), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3989), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4057), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [260] = { [sym_block_comment] = STATE(247), @@ -105379,247 +105919,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(247), [aux_sym_curly_group_impl_repeat1] = STATE(247), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3991), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4059), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [261] = { [sym_block_comment] = STATE(262), @@ -105664,247 +106206,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(3993), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4061), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [262] = { [sym_block_comment] = STATE(262), @@ -105949,247 +106493,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4001), - [anon_sym_RBRACE] = ACTIONS(4004), - [sym_word] = ACTIONS(4006), - [sym_placeholder] = ACTIONS(4009), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym__] = ACTIONS(4012), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_COLON] = ACTIONS(4012), - [anon_sym_SQUOTE] = ACTIONS(4012), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4015), - [anon_sym_DOLLAR] = ACTIONS(4018), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4024), - [anon_sym_BSLASHusepackage] = ACTIONS(4027), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4027), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4030), - [anon_sym_BSLASHinclude] = ACTIONS(4033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4033), - [anon_sym_BSLASHinput] = ACTIONS(4033), - [anon_sym_BSLASHsubfile] = ACTIONS(4033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4036), - [anon_sym_BSLASHbibliography] = ACTIONS(4039), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4042), - [anon_sym_BSLASHincludesvg] = ACTIONS(4045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4048), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4051), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4051), - [anon_sym_BSLASHimport] = ACTIONS(4054), - [anon_sym_BSLASHsubimport] = ACTIONS(4054), - [anon_sym_BSLASHinputfrom] = ACTIONS(4054), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4054), - [anon_sym_BSLASHincludefrom] = ACTIONS(4054), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4054), - [anon_sym_BSLASHcaption] = ACTIONS(4057), - [anon_sym_BSLASHcite] = ACTIONS(4060), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4063), - [anon_sym_BSLASHCite] = ACTIONS(4060), - [anon_sym_BSLASHnocite] = ACTIONS(4060), - [anon_sym_BSLASHcitet] = ACTIONS(4060), - [anon_sym_BSLASHcitep] = ACTIONS(4060), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4063), - [anon_sym_BSLASHciteauthor] = ACTIONS(4060), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4060), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4063), - [anon_sym_BSLASHcitetitle] = ACTIONS(4060), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4063), - [anon_sym_BSLASHciteyear] = ACTIONS(4060), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4063), - [anon_sym_BSLASHcitedate] = ACTIONS(4060), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4063), - [anon_sym_BSLASHciteurl] = ACTIONS(4060), - [anon_sym_BSLASHfullcite] = ACTIONS(4060), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4060), - [anon_sym_BSLASHcitealt] = ACTIONS(4060), - [anon_sym_BSLASHcitealp] = ACTIONS(4060), - [anon_sym_BSLASHcitetext] = ACTIONS(4060), - [anon_sym_BSLASHparencite] = ACTIONS(4060), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4063), - [anon_sym_BSLASHParencite] = ACTIONS(4060), - [anon_sym_BSLASHfootcite] = ACTIONS(4060), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4060), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4060), - [anon_sym_BSLASHtextcite] = ACTIONS(4060), - [anon_sym_BSLASHTextcite] = ACTIONS(4060), - [anon_sym_BSLASHsmartcite] = ACTIONS(4060), - [anon_sym_BSLASHSmartcite] = ACTIONS(4060), - [anon_sym_BSLASHsupercite] = ACTIONS(4060), - [anon_sym_BSLASHautocite] = ACTIONS(4060), - [anon_sym_BSLASHAutocite] = ACTIONS(4060), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4063), - [anon_sym_BSLASHvolcite] = ACTIONS(4060), - [anon_sym_BSLASHVolcite] = ACTIONS(4060), - [anon_sym_BSLASHpvolcite] = ACTIONS(4060), - [anon_sym_BSLASHPvolcite] = ACTIONS(4060), - [anon_sym_BSLASHfvolcite] = ACTIONS(4060), - [anon_sym_BSLASHftvolcite] = ACTIONS(4060), - [anon_sym_BSLASHsvolcite] = ACTIONS(4060), - [anon_sym_BSLASHSvolcite] = ACTIONS(4060), - [anon_sym_BSLASHtvolcite] = ACTIONS(4060), - [anon_sym_BSLASHTvolcite] = ACTIONS(4060), - [anon_sym_BSLASHavolcite] = ACTIONS(4060), - [anon_sym_BSLASHAvolcite] = ACTIONS(4060), - [anon_sym_BSLASHnotecite] = ACTIONS(4060), - [anon_sym_BSLASHNotecite] = ACTIONS(4060), - [anon_sym_BSLASHpnotecite] = ACTIONS(4060), - [anon_sym_BSLASHPnotecite] = ACTIONS(4060), - [anon_sym_BSLASHfnotecite] = ACTIONS(4060), - [anon_sym_BSLASHlabel] = ACTIONS(4066), - [anon_sym_BSLASHref] = ACTIONS(4069), - [anon_sym_BSLASHeqref] = ACTIONS(4069), - [anon_sym_BSLASHvref] = ACTIONS(4069), - [anon_sym_BSLASHVref] = ACTIONS(4069), - [anon_sym_BSLASHautoref] = ACTIONS(4069), - [anon_sym_BSLASHpageref] = ACTIONS(4069), - [anon_sym_BSLASHcref] = ACTIONS(4069), - [anon_sym_BSLASHCref] = ACTIONS(4069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4072), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4072), - [anon_sym_BSLASHnamecref] = ACTIONS(4069), - [anon_sym_BSLASHnameCref] = ACTIONS(4069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4069), - [anon_sym_BSLASHlabelcref] = ACTIONS(4069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4069), - [anon_sym_BSLASHcrefrange] = ACTIONS(4075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4078), - [anon_sym_BSLASHCrefrange] = ACTIONS(4075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4078), - [anon_sym_BSLASHnewlabel] = ACTIONS(4081), - [anon_sym_BSLASHnewcommand] = ACTIONS(4084), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4084), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4084), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4084), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4087), - [anon_sym_BSLASHdef] = ACTIONS(4090), - [anon_sym_BSLASHlet] = ACTIONS(4093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4096), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4099), - [anon_sym_BSLASHgls] = ACTIONS(4102), - [anon_sym_BSLASHGls] = ACTIONS(4102), - [anon_sym_BSLASHGLS] = ACTIONS(4102), - [anon_sym_BSLASHglspl] = ACTIONS(4102), - [anon_sym_BSLASHGlspl] = ACTIONS(4102), - [anon_sym_BSLASHGLSpl] = ACTIONS(4102), - [anon_sym_BSLASHglsdisp] = ACTIONS(4102), - [anon_sym_BSLASHglslink] = ACTIONS(4102), - [anon_sym_BSLASHglstext] = ACTIONS(4102), - [anon_sym_BSLASHGlstext] = ACTIONS(4102), - [anon_sym_BSLASHGLStext] = ACTIONS(4102), - [anon_sym_BSLASHglsfirst] = ACTIONS(4102), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4102), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4102), - [anon_sym_BSLASHglsplural] = ACTIONS(4102), - [anon_sym_BSLASHGlsplural] = ACTIONS(4102), - [anon_sym_BSLASHGLSplural] = ACTIONS(4102), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4102), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4102), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4102), - [anon_sym_BSLASHglsname] = ACTIONS(4102), - [anon_sym_BSLASHGlsname] = ACTIONS(4102), - [anon_sym_BSLASHGLSname] = ACTIONS(4102), - [anon_sym_BSLASHglssymbol] = ACTIONS(4102), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4102), - [anon_sym_BSLASHglsdesc] = ACTIONS(4102), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4102), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4102), - [anon_sym_BSLASHglsuseri] = ACTIONS(4102), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4102), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4102), - [anon_sym_BSLASHglsuserii] = ACTIONS(4102), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4102), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4102), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4102), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4102), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4102), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4102), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4102), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4102), - [anon_sym_BSLASHglsuserv] = ACTIONS(4102), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4102), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4102), - [anon_sym_BSLASHglsuservi] = ACTIONS(4102), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4102), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4102), - [anon_sym_BSLASHnewacronym] = ACTIONS(4105), - [anon_sym_BSLASHacrshort] = ACTIONS(4108), - [anon_sym_BSLASHAcrshort] = ACTIONS(4108), - [anon_sym_BSLASHACRshort] = ACTIONS(4108), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4108), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4108), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4108), - [anon_sym_BSLASHacrlong] = ACTIONS(4108), - [anon_sym_BSLASHAcrlong] = ACTIONS(4108), - [anon_sym_BSLASHACRlong] = ACTIONS(4108), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4108), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4108), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4108), - [anon_sym_BSLASHacrfull] = ACTIONS(4108), - [anon_sym_BSLASHAcrfull] = ACTIONS(4108), - [anon_sym_BSLASHACRfull] = ACTIONS(4108), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4108), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4108), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4108), - [anon_sym_BSLASHacs] = ACTIONS(4108), - [anon_sym_BSLASHAcs] = ACTIONS(4108), - [anon_sym_BSLASHacsp] = ACTIONS(4108), - [anon_sym_BSLASHAcsp] = ACTIONS(4108), - [anon_sym_BSLASHacl] = ACTIONS(4108), - [anon_sym_BSLASHAcl] = ACTIONS(4108), - [anon_sym_BSLASHaclp] = ACTIONS(4108), - [anon_sym_BSLASHAclp] = ACTIONS(4108), - [anon_sym_BSLASHacf] = ACTIONS(4108), - [anon_sym_BSLASHAcf] = ACTIONS(4108), - [anon_sym_BSLASHacfp] = ACTIONS(4108), - [anon_sym_BSLASHAcfp] = ACTIONS(4108), - [anon_sym_BSLASHac] = ACTIONS(4108), - [anon_sym_BSLASHAc] = ACTIONS(4108), - [anon_sym_BSLASHacp] = ACTIONS(4108), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4108), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4108), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4108), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4108), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4108), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4108), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4108), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4108), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4108), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4108), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4114), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4117), - [anon_sym_BSLASHcolor] = ACTIONS(4120), - [anon_sym_BSLASHcolorbox] = ACTIONS(4120), - [anon_sym_BSLASHtextcolor] = ACTIONS(4120), - [anon_sym_BSLASHpagecolor] = ACTIONS(4120), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4123), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4123), - [anon_sym_BSLASHtext] = ACTIONS(4126), - [anon_sym_BSLASHintertext] = ACTIONS(4126), - [anon_sym_shortintertext] = ACTIONS(4126), + [sym_command_name] = ACTIONS(4063), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4069), + [anon_sym_RBRACE] = ACTIONS(4072), + [sym_word] = ACTIONS(4074), + [sym_placeholder] = ACTIONS(4077), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_SLASH] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4080), + [anon_sym__] = ACTIONS(4080), + [anon_sym_LT] = ACTIONS(4080), + [anon_sym_GT] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_PIPE] = ACTIONS(4080), + [anon_sym_COLON] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4080), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4083), + [anon_sym_DOLLAR] = ACTIONS(4086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4089), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4092), + [anon_sym_BSLASHusepackage] = ACTIONS(4095), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4095), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4098), + [anon_sym_BSLASHinclude] = ACTIONS(4101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4101), + [anon_sym_BSLASHinput] = ACTIONS(4101), + [anon_sym_BSLASHsubfile] = ACTIONS(4101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4104), + [anon_sym_BSLASHbibliography] = ACTIONS(4107), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4110), + [anon_sym_BSLASHincludesvg] = ACTIONS(4113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4119), + [anon_sym_BSLASHimport] = ACTIONS(4122), + [anon_sym_BSLASHsubimport] = ACTIONS(4122), + [anon_sym_BSLASHinputfrom] = ACTIONS(4122), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4122), + [anon_sym_BSLASHincludefrom] = ACTIONS(4122), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4122), + [anon_sym_BSLASHcaption] = ACTIONS(4125), + [anon_sym_BSLASHcite] = ACTIONS(4128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4131), + [anon_sym_BSLASHCite] = ACTIONS(4128), + [anon_sym_BSLASHnocite] = ACTIONS(4128), + [anon_sym_BSLASHcitet] = ACTIONS(4128), + [anon_sym_BSLASHcitep] = ACTIONS(4128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4131), + [anon_sym_BSLASHciteauthor] = ACTIONS(4128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4131), + [anon_sym_BSLASHcitetitle] = ACTIONS(4128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4131), + [anon_sym_BSLASHciteyear] = ACTIONS(4128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4131), + [anon_sym_BSLASHcitedate] = ACTIONS(4128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4131), + [anon_sym_BSLASHciteurl] = ACTIONS(4128), + [anon_sym_BSLASHfullcite] = ACTIONS(4128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4128), + [anon_sym_BSLASHcitealt] = ACTIONS(4128), + [anon_sym_BSLASHcitealp] = ACTIONS(4128), + [anon_sym_BSLASHcitetext] = ACTIONS(4128), + [anon_sym_BSLASHparencite] = ACTIONS(4128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4131), + [anon_sym_BSLASHParencite] = ACTIONS(4128), + [anon_sym_BSLASHfootcite] = ACTIONS(4128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4128), + [anon_sym_BSLASHtextcite] = ACTIONS(4128), + [anon_sym_BSLASHTextcite] = ACTIONS(4128), + [anon_sym_BSLASHsmartcite] = ACTIONS(4128), + [anon_sym_BSLASHSmartcite] = ACTIONS(4128), + [anon_sym_BSLASHsupercite] = ACTIONS(4128), + [anon_sym_BSLASHautocite] = ACTIONS(4128), + [anon_sym_BSLASHAutocite] = ACTIONS(4128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4131), + [anon_sym_BSLASHvolcite] = ACTIONS(4128), + [anon_sym_BSLASHVolcite] = ACTIONS(4128), + [anon_sym_BSLASHpvolcite] = ACTIONS(4128), + [anon_sym_BSLASHPvolcite] = ACTIONS(4128), + [anon_sym_BSLASHfvolcite] = ACTIONS(4128), + [anon_sym_BSLASHftvolcite] = ACTIONS(4128), + [anon_sym_BSLASHsvolcite] = ACTIONS(4128), + [anon_sym_BSLASHSvolcite] = ACTIONS(4128), + [anon_sym_BSLASHtvolcite] = ACTIONS(4128), + [anon_sym_BSLASHTvolcite] = ACTIONS(4128), + [anon_sym_BSLASHavolcite] = ACTIONS(4128), + [anon_sym_BSLASHAvolcite] = ACTIONS(4128), + [anon_sym_BSLASHnotecite] = ACTIONS(4128), + [anon_sym_BSLASHNotecite] = ACTIONS(4128), + [anon_sym_BSLASHpnotecite] = ACTIONS(4128), + [anon_sym_BSLASHPnotecite] = ACTIONS(4128), + [anon_sym_BSLASHfnotecite] = ACTIONS(4128), + [anon_sym_BSLASHlabel] = ACTIONS(4134), + [anon_sym_BSLASHref] = ACTIONS(4137), + [anon_sym_BSLASHeqref] = ACTIONS(4137), + [anon_sym_BSLASHvref] = ACTIONS(4137), + [anon_sym_BSLASHVref] = ACTIONS(4137), + [anon_sym_BSLASHautoref] = ACTIONS(4137), + [anon_sym_BSLASHpageref] = ACTIONS(4137), + [anon_sym_BSLASHcref] = ACTIONS(4137), + [anon_sym_BSLASHCref] = ACTIONS(4137), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4140), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4140), + [anon_sym_BSLASHnamecref] = ACTIONS(4137), + [anon_sym_BSLASHnameCref] = ACTIONS(4137), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4137), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4137), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4137), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4137), + [anon_sym_BSLASHlabelcref] = ACTIONS(4137), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4137), + [anon_sym_BSLASHcrefrange] = ACTIONS(4143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4146), + [anon_sym_BSLASHCrefrange] = ACTIONS(4143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4146), + [anon_sym_BSLASHnewlabel] = ACTIONS(4149), + [anon_sym_BSLASHnewcommand] = ACTIONS(4152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4155), + [anon_sym_BSLASHdef] = ACTIONS(4158), + [anon_sym_BSLASHlet] = ACTIONS(4161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4167), + [anon_sym_BSLASHgls] = ACTIONS(4170), + [anon_sym_BSLASHGls] = ACTIONS(4170), + [anon_sym_BSLASHGLS] = ACTIONS(4170), + [anon_sym_BSLASHglspl] = ACTIONS(4170), + [anon_sym_BSLASHGlspl] = ACTIONS(4170), + [anon_sym_BSLASHGLSpl] = ACTIONS(4170), + [anon_sym_BSLASHglsdisp] = ACTIONS(4170), + [anon_sym_BSLASHglslink] = ACTIONS(4170), + [anon_sym_BSLASHglstext] = ACTIONS(4170), + [anon_sym_BSLASHGlstext] = ACTIONS(4170), + [anon_sym_BSLASHGLStext] = ACTIONS(4170), + [anon_sym_BSLASHglsfirst] = ACTIONS(4170), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4170), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4170), + [anon_sym_BSLASHglsplural] = ACTIONS(4170), + [anon_sym_BSLASHGlsplural] = ACTIONS(4170), + [anon_sym_BSLASHGLSplural] = ACTIONS(4170), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4170), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4170), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4170), + [anon_sym_BSLASHglsname] = ACTIONS(4170), + [anon_sym_BSLASHGlsname] = ACTIONS(4170), + [anon_sym_BSLASHGLSname] = ACTIONS(4170), + [anon_sym_BSLASHglssymbol] = ACTIONS(4170), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4170), + [anon_sym_BSLASHglsdesc] = ACTIONS(4170), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4170), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4170), + [anon_sym_BSLASHglsuseri] = ACTIONS(4170), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4170), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4170), + [anon_sym_BSLASHglsuserii] = ACTIONS(4170), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4170), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4170), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4170), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4170), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4170), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4170), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4170), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4170), + [anon_sym_BSLASHglsuserv] = ACTIONS(4170), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4170), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4170), + [anon_sym_BSLASHglsuservi] = ACTIONS(4170), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4170), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4170), + [anon_sym_BSLASHnewacronym] = ACTIONS(4173), + [anon_sym_BSLASHacrshort] = ACTIONS(4176), + [anon_sym_BSLASHAcrshort] = ACTIONS(4176), + [anon_sym_BSLASHACRshort] = ACTIONS(4176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4176), + [anon_sym_BSLASHacrlong] = ACTIONS(4176), + [anon_sym_BSLASHAcrlong] = ACTIONS(4176), + [anon_sym_BSLASHACRlong] = ACTIONS(4176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4176), + [anon_sym_BSLASHacrfull] = ACTIONS(4176), + [anon_sym_BSLASHAcrfull] = ACTIONS(4176), + [anon_sym_BSLASHACRfull] = ACTIONS(4176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4176), + [anon_sym_BSLASHacs] = ACTIONS(4176), + [anon_sym_BSLASHAcs] = ACTIONS(4176), + [anon_sym_BSLASHacsp] = ACTIONS(4176), + [anon_sym_BSLASHAcsp] = ACTIONS(4176), + [anon_sym_BSLASHacl] = ACTIONS(4176), + [anon_sym_BSLASHAcl] = ACTIONS(4176), + [anon_sym_BSLASHaclp] = ACTIONS(4176), + [anon_sym_BSLASHAclp] = ACTIONS(4176), + [anon_sym_BSLASHacf] = ACTIONS(4176), + [anon_sym_BSLASHAcf] = ACTIONS(4176), + [anon_sym_BSLASHacfp] = ACTIONS(4176), + [anon_sym_BSLASHAcfp] = ACTIONS(4176), + [anon_sym_BSLASHac] = ACTIONS(4176), + [anon_sym_BSLASHAc] = ACTIONS(4176), + [anon_sym_BSLASHacp] = ACTIONS(4176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4179), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4179), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4188), + [anon_sym_BSLASHcolor] = ACTIONS(4191), + [anon_sym_BSLASHcolorbox] = ACTIONS(4191), + [anon_sym_BSLASHtextcolor] = ACTIONS(4191), + [anon_sym_BSLASHpagecolor] = ACTIONS(4191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4194), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4194), + [anon_sym_BSLASHtext] = ACTIONS(4197), + [anon_sym_BSLASHintertext] = ACTIONS(4197), + [anon_sym_shortintertext] = ACTIONS(4197), }, [263] = { [sym_block_comment] = STATE(262), @@ -106234,247 +106780,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(4129), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), - [anon_sym_DOLLAR] = ACTIONS(3963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(3793), - [anon_sym_BSLASHintertext] = ACTIONS(3793), - [anon_sym_shortintertext] = ACTIONS(3793), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4200), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4029), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4033), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(3858), + [anon_sym_BSLASHintertext] = ACTIONS(3858), + [anon_sym_shortintertext] = ACTIONS(3858), }, [264] = { [sym_block_comment] = STATE(1396), @@ -106511,253 +107059,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1396), [sym_tikz_library_import] = STATE(1396), [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(3265), - [sym_placeholder] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym__] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASHbegin] = ACTIONS(2677), - [anon_sym_BSLASHusepackage] = ACTIONS(3279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), - [anon_sym_BSLASHinclude] = ACTIONS(3283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), - [anon_sym_BSLASHinput] = ACTIONS(3283), - [anon_sym_BSLASHsubfile] = ACTIONS(3283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), - [anon_sym_BSLASHbibliography] = ACTIONS(3287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), - [anon_sym_BSLASHincludesvg] = ACTIONS(3291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), - [anon_sym_BSLASHimport] = ACTIONS(3297), - [anon_sym_BSLASHsubimport] = ACTIONS(3297), - [anon_sym_BSLASHinputfrom] = ACTIONS(3297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), - [anon_sym_BSLASHincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), - [anon_sym_BSLASHcaption] = ACTIONS(3299), - [anon_sym_BSLASHcite] = ACTIONS(3301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCite] = ACTIONS(3301), - [anon_sym_BSLASHnocite] = ACTIONS(3301), - [anon_sym_BSLASHcitet] = ACTIONS(3301), - [anon_sym_BSLASHcitep] = ACTIONS(3301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteauthor] = ACTIONS(3301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitetitle] = ACTIONS(3301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteyear] = ACTIONS(3301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), - [anon_sym_BSLASHcitedate] = ACTIONS(3301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), - [anon_sym_BSLASHciteurl] = ACTIONS(3301), - [anon_sym_BSLASHfullcite] = ACTIONS(3301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), - [anon_sym_BSLASHcitealt] = ACTIONS(3301), - [anon_sym_BSLASHcitealp] = ACTIONS(3301), - [anon_sym_BSLASHcitetext] = ACTIONS(3301), - [anon_sym_BSLASHparencite] = ACTIONS(3301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHParencite] = ACTIONS(3301), - [anon_sym_BSLASHfootcite] = ACTIONS(3301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), - [anon_sym_BSLASHtextcite] = ACTIONS(3301), - [anon_sym_BSLASHTextcite] = ACTIONS(3301), - [anon_sym_BSLASHsmartcite] = ACTIONS(3301), - [anon_sym_BSLASHSmartcite] = ACTIONS(3301), - [anon_sym_BSLASHsupercite] = ACTIONS(3301), - [anon_sym_BSLASHautocite] = ACTIONS(3301), - [anon_sym_BSLASHAutocite] = ACTIONS(3301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), - [anon_sym_BSLASHvolcite] = ACTIONS(3301), - [anon_sym_BSLASHVolcite] = ACTIONS(3301), - [anon_sym_BSLASHpvolcite] = ACTIONS(3301), - [anon_sym_BSLASHPvolcite] = ACTIONS(3301), - [anon_sym_BSLASHfvolcite] = ACTIONS(3301), - [anon_sym_BSLASHftvolcite] = ACTIONS(3301), - [anon_sym_BSLASHsvolcite] = ACTIONS(3301), - [anon_sym_BSLASHSvolcite] = ACTIONS(3301), - [anon_sym_BSLASHtvolcite] = ACTIONS(3301), - [anon_sym_BSLASHTvolcite] = ACTIONS(3301), - [anon_sym_BSLASHavolcite] = ACTIONS(3301), - [anon_sym_BSLASHAvolcite] = ACTIONS(3301), - [anon_sym_BSLASHnotecite] = ACTIONS(3301), - [anon_sym_BSLASHNotecite] = ACTIONS(3301), - [anon_sym_BSLASHpnotecite] = ACTIONS(3301), - [anon_sym_BSLASHPnotecite] = ACTIONS(3301), - [anon_sym_BSLASHfnotecite] = ACTIONS(3301), - [anon_sym_BSLASHlabel] = ACTIONS(3305), - [anon_sym_BSLASHref] = ACTIONS(3307), - [anon_sym_BSLASHeqref] = ACTIONS(3307), - [anon_sym_BSLASHvref] = ACTIONS(3307), - [anon_sym_BSLASHVref] = ACTIONS(3307), - [anon_sym_BSLASHautoref] = ACTIONS(3307), - [anon_sym_BSLASHpageref] = ACTIONS(3307), - [anon_sym_BSLASHcref] = ACTIONS(3307), - [anon_sym_BSLASHCref] = ACTIONS(3307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnameCref] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), - [anon_sym_BSLASHlabelcref] = ACTIONS(3307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), - [anon_sym_BSLASHcrefrange] = ACTIONS(3311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHCrefrange] = ACTIONS(3311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), - [anon_sym_BSLASHnewlabel] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand] = ACTIONS(3317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), - [anon_sym_BSLASHgls] = ACTIONS(3329), - [anon_sym_BSLASHGls] = ACTIONS(3329), - [anon_sym_BSLASHGLS] = ACTIONS(3329), - [anon_sym_BSLASHglspl] = ACTIONS(3329), - [anon_sym_BSLASHGlspl] = ACTIONS(3329), - [anon_sym_BSLASHGLSpl] = ACTIONS(3329), - [anon_sym_BSLASHglsdisp] = ACTIONS(3329), - [anon_sym_BSLASHglslink] = ACTIONS(3329), - [anon_sym_BSLASHglstext] = ACTIONS(3329), - [anon_sym_BSLASHGlstext] = ACTIONS(3329), - [anon_sym_BSLASHGLStext] = ACTIONS(3329), - [anon_sym_BSLASHglsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), - [anon_sym_BSLASHglsplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSplural] = ACTIONS(3329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), - [anon_sym_BSLASHglsname] = ACTIONS(3329), - [anon_sym_BSLASHGlsname] = ACTIONS(3329), - [anon_sym_BSLASHGLSname] = ACTIONS(3329), - [anon_sym_BSLASHglssymbol] = ACTIONS(3329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), - [anon_sym_BSLASHglsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), - [anon_sym_BSLASHglsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), - [anon_sym_BSLASHglsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), - [anon_sym_BSLASHglsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), - [anon_sym_BSLASHglsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), - [anon_sym_BSLASHnewacronym] = ACTIONS(3331), - [anon_sym_BSLASHacrshort] = ACTIONS(3333), - [anon_sym_BSLASHAcrshort] = ACTIONS(3333), - [anon_sym_BSLASHACRshort] = ACTIONS(3333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), - [anon_sym_BSLASHacrlong] = ACTIONS(3333), - [anon_sym_BSLASHAcrlong] = ACTIONS(3333), - [anon_sym_BSLASHACRlong] = ACTIONS(3333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), - [anon_sym_BSLASHacrfull] = ACTIONS(3333), - [anon_sym_BSLASHAcrfull] = ACTIONS(3333), - [anon_sym_BSLASHACRfull] = ACTIONS(3333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), - [anon_sym_BSLASHacs] = ACTIONS(3333), - [anon_sym_BSLASHAcs] = ACTIONS(3333), - [anon_sym_BSLASHacsp] = ACTIONS(3333), - [anon_sym_BSLASHAcsp] = ACTIONS(3333), - [anon_sym_BSLASHacl] = ACTIONS(3333), - [anon_sym_BSLASHAcl] = ACTIONS(3333), - [anon_sym_BSLASHaclp] = ACTIONS(3333), - [anon_sym_BSLASHAclp] = ACTIONS(3333), - [anon_sym_BSLASHacf] = ACTIONS(3333), - [anon_sym_BSLASHAcf] = ACTIONS(3333), - [anon_sym_BSLASHacfp] = ACTIONS(3333), - [anon_sym_BSLASHAcfp] = ACTIONS(3333), - [anon_sym_BSLASHac] = ACTIONS(3333), - [anon_sym_BSLASHAc] = ACTIONS(3333), - [anon_sym_BSLASHacp] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), - [anon_sym_BSLASHcolor] = ACTIONS(3341), - [anon_sym_BSLASHcolorbox] = ACTIONS(3341), - [anon_sym_BSLASHtextcolor] = ACTIONS(3341), - [anon_sym_BSLASHpagecolor] = ACTIONS(3341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [sym_command_name] = ACTIONS(3308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(3320), + [sym_placeholder] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym__] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASHbegin] = ACTIONS(2717), + [anon_sym_BSLASHusepackage] = ACTIONS(3334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3336), + [anon_sym_BSLASHinclude] = ACTIONS(3338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3338), + [anon_sym_BSLASHinput] = ACTIONS(3338), + [anon_sym_BSLASHsubfile] = ACTIONS(3338), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3340), + [anon_sym_BSLASHbibliography] = ACTIONS(3342), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3344), + [anon_sym_BSLASHincludesvg] = ACTIONS(3346), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3350), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3350), + [anon_sym_BSLASHimport] = ACTIONS(3352), + [anon_sym_BSLASHsubimport] = ACTIONS(3352), + [anon_sym_BSLASHinputfrom] = ACTIONS(3352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3352), + [anon_sym_BSLASHincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3352), + [anon_sym_BSLASHcaption] = ACTIONS(3354), + [anon_sym_BSLASHcite] = ACTIONS(3356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCite] = ACTIONS(3356), + [anon_sym_BSLASHnocite] = ACTIONS(3356), + [anon_sym_BSLASHcitet] = ACTIONS(3356), + [anon_sym_BSLASHcitep] = ACTIONS(3356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteauthor] = ACTIONS(3356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitetitle] = ACTIONS(3356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteyear] = ACTIONS(3356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3358), + [anon_sym_BSLASHcitedate] = ACTIONS(3356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3358), + [anon_sym_BSLASHciteurl] = ACTIONS(3356), + [anon_sym_BSLASHfullcite] = ACTIONS(3356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3356), + [anon_sym_BSLASHcitealt] = ACTIONS(3356), + [anon_sym_BSLASHcitealp] = ACTIONS(3356), + [anon_sym_BSLASHcitetext] = ACTIONS(3356), + [anon_sym_BSLASHparencite] = ACTIONS(3356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHParencite] = ACTIONS(3356), + [anon_sym_BSLASHfootcite] = ACTIONS(3356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3356), + [anon_sym_BSLASHtextcite] = ACTIONS(3356), + [anon_sym_BSLASHTextcite] = ACTIONS(3356), + [anon_sym_BSLASHsmartcite] = ACTIONS(3356), + [anon_sym_BSLASHSmartcite] = ACTIONS(3356), + [anon_sym_BSLASHsupercite] = ACTIONS(3356), + [anon_sym_BSLASHautocite] = ACTIONS(3356), + [anon_sym_BSLASHAutocite] = ACTIONS(3356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3358), + [anon_sym_BSLASHvolcite] = ACTIONS(3356), + [anon_sym_BSLASHVolcite] = ACTIONS(3356), + [anon_sym_BSLASHpvolcite] = ACTIONS(3356), + [anon_sym_BSLASHPvolcite] = ACTIONS(3356), + [anon_sym_BSLASHfvolcite] = ACTIONS(3356), + [anon_sym_BSLASHftvolcite] = ACTIONS(3356), + [anon_sym_BSLASHsvolcite] = ACTIONS(3356), + [anon_sym_BSLASHSvolcite] = ACTIONS(3356), + [anon_sym_BSLASHtvolcite] = ACTIONS(3356), + [anon_sym_BSLASHTvolcite] = ACTIONS(3356), + [anon_sym_BSLASHavolcite] = ACTIONS(3356), + [anon_sym_BSLASHAvolcite] = ACTIONS(3356), + [anon_sym_BSLASHnotecite] = ACTIONS(3356), + [anon_sym_BSLASHNotecite] = ACTIONS(3356), + [anon_sym_BSLASHpnotecite] = ACTIONS(3356), + [anon_sym_BSLASHPnotecite] = ACTIONS(3356), + [anon_sym_BSLASHfnotecite] = ACTIONS(3356), + [anon_sym_BSLASHlabel] = ACTIONS(3360), + [anon_sym_BSLASHref] = ACTIONS(3362), + [anon_sym_BSLASHeqref] = ACTIONS(3362), + [anon_sym_BSLASHvref] = ACTIONS(3362), + [anon_sym_BSLASHVref] = ACTIONS(3362), + [anon_sym_BSLASHautoref] = ACTIONS(3362), + [anon_sym_BSLASHpageref] = ACTIONS(3362), + [anon_sym_BSLASHcref] = ACTIONS(3362), + [anon_sym_BSLASHCref] = ACTIONS(3362), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3364), + [anon_sym_BSLASHnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnameCref] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3362), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3362), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3362), + [anon_sym_BSLASHlabelcref] = ACTIONS(3362), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3362), + [anon_sym_BSLASHcrefrange] = ACTIONS(3366), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHCrefrange] = ACTIONS(3366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3368), + [anon_sym_BSLASHnewlabel] = ACTIONS(3370), + [anon_sym_BSLASHnewcommand] = ACTIONS(3372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3374), + [anon_sym_BSLASHdef] = ACTIONS(3376), + [anon_sym_BSLASHlet] = ACTIONS(3378), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3382), + [anon_sym_BSLASHgls] = ACTIONS(3384), + [anon_sym_BSLASHGls] = ACTIONS(3384), + [anon_sym_BSLASHGLS] = ACTIONS(3384), + [anon_sym_BSLASHglspl] = ACTIONS(3384), + [anon_sym_BSLASHGlspl] = ACTIONS(3384), + [anon_sym_BSLASHGLSpl] = ACTIONS(3384), + [anon_sym_BSLASHglsdisp] = ACTIONS(3384), + [anon_sym_BSLASHglslink] = ACTIONS(3384), + [anon_sym_BSLASHglstext] = ACTIONS(3384), + [anon_sym_BSLASHGlstext] = ACTIONS(3384), + [anon_sym_BSLASHGLStext] = ACTIONS(3384), + [anon_sym_BSLASHglsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3384), + [anon_sym_BSLASHglsplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSplural] = ACTIONS(3384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3384), + [anon_sym_BSLASHglsname] = ACTIONS(3384), + [anon_sym_BSLASHGlsname] = ACTIONS(3384), + [anon_sym_BSLASHGLSname] = ACTIONS(3384), + [anon_sym_BSLASHglssymbol] = ACTIONS(3384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3384), + [anon_sym_BSLASHglsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3384), + [anon_sym_BSLASHglsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3384), + [anon_sym_BSLASHglsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3384), + [anon_sym_BSLASHglsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3384), + [anon_sym_BSLASHglsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3384), + [anon_sym_BSLASHnewacronym] = ACTIONS(3386), + [anon_sym_BSLASHacrshort] = ACTIONS(3388), + [anon_sym_BSLASHAcrshort] = ACTIONS(3388), + [anon_sym_BSLASHACRshort] = ACTIONS(3388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3388), + [anon_sym_BSLASHacrlong] = ACTIONS(3388), + [anon_sym_BSLASHAcrlong] = ACTIONS(3388), + [anon_sym_BSLASHACRlong] = ACTIONS(3388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3388), + [anon_sym_BSLASHacrfull] = ACTIONS(3388), + [anon_sym_BSLASHAcrfull] = ACTIONS(3388), + [anon_sym_BSLASHACRfull] = ACTIONS(3388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3388), + [anon_sym_BSLASHacs] = ACTIONS(3388), + [anon_sym_BSLASHAcs] = ACTIONS(3388), + [anon_sym_BSLASHacsp] = ACTIONS(3388), + [anon_sym_BSLASHAcsp] = ACTIONS(3388), + [anon_sym_BSLASHacl] = ACTIONS(3388), + [anon_sym_BSLASHAcl] = ACTIONS(3388), + [anon_sym_BSLASHaclp] = ACTIONS(3388), + [anon_sym_BSLASHAclp] = ACTIONS(3388), + [anon_sym_BSLASHacf] = ACTIONS(3388), + [anon_sym_BSLASHAcf] = ACTIONS(3388), + [anon_sym_BSLASHacfp] = ACTIONS(3388), + [anon_sym_BSLASHAcfp] = ACTIONS(3388), + [anon_sym_BSLASHac] = ACTIONS(3388), + [anon_sym_BSLASHAc] = ACTIONS(3388), + [anon_sym_BSLASHacp] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3390), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3390), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3392), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3396), + [anon_sym_BSLASHcolor] = ACTIONS(3398), + [anon_sym_BSLASHcolorbox] = ACTIONS(3398), + [anon_sym_BSLASHtextcolor] = ACTIONS(3398), + [anon_sym_BSLASHpagecolor] = ACTIONS(3398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3400), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3400), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [265] = { [sym_block_comment] = STATE(1396), @@ -106794,253 +107344,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1396), [sym_tikz_library_import] = STATE(1396), [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(4131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(4137), - [sym_placeholder] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4143), - [anon_sym_CARET] = ACTIONS(4143), - [anon_sym__] = ACTIONS(4143), - [anon_sym_LT] = ACTIONS(4143), - [anon_sym_GT] = ACTIONS(4143), - [anon_sym_BANG] = ACTIONS(4143), - [anon_sym_PIPE] = ACTIONS(4143), - [anon_sym_COLON] = ACTIONS(4143), - [anon_sym_SQUOTE] = ACTIONS(4143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASHbegin] = ACTIONS(2687), - [anon_sym_BSLASHusepackage] = ACTIONS(4146), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4146), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4149), - [anon_sym_BSLASHinclude] = ACTIONS(4152), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4152), - [anon_sym_BSLASHinput] = ACTIONS(4152), - [anon_sym_BSLASHsubfile] = ACTIONS(4152), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4155), - [anon_sym_BSLASHbibliography] = ACTIONS(4158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4161), - [anon_sym_BSLASHincludesvg] = ACTIONS(4164), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4170), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4170), - [anon_sym_BSLASHimport] = ACTIONS(4173), - [anon_sym_BSLASHsubimport] = ACTIONS(4173), - [anon_sym_BSLASHinputfrom] = ACTIONS(4173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4173), - [anon_sym_BSLASHincludefrom] = ACTIONS(4173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4173), - [anon_sym_BSLASHcaption] = ACTIONS(4176), - [anon_sym_BSLASHcite] = ACTIONS(4179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4182), - [anon_sym_BSLASHCite] = ACTIONS(4179), - [anon_sym_BSLASHnocite] = ACTIONS(4179), - [anon_sym_BSLASHcitet] = ACTIONS(4179), - [anon_sym_BSLASHcitep] = ACTIONS(4179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4182), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4182), - [anon_sym_BSLASHciteauthor] = ACTIONS(4179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4182), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4182), - [anon_sym_BSLASHcitetitle] = ACTIONS(4179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4182), - [anon_sym_BSLASHciteyear] = ACTIONS(4179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4182), - [anon_sym_BSLASHcitedate] = ACTIONS(4179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4182), - [anon_sym_BSLASHciteurl] = ACTIONS(4179), - [anon_sym_BSLASHfullcite] = ACTIONS(4179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4179), - [anon_sym_BSLASHcitealt] = ACTIONS(4179), - [anon_sym_BSLASHcitealp] = ACTIONS(4179), - [anon_sym_BSLASHcitetext] = ACTIONS(4179), - [anon_sym_BSLASHparencite] = ACTIONS(4179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4182), - [anon_sym_BSLASHParencite] = ACTIONS(4179), - [anon_sym_BSLASHfootcite] = ACTIONS(4179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4179), - [anon_sym_BSLASHtextcite] = ACTIONS(4179), - [anon_sym_BSLASHTextcite] = ACTIONS(4179), - [anon_sym_BSLASHsmartcite] = ACTIONS(4179), - [anon_sym_BSLASHSmartcite] = ACTIONS(4179), - [anon_sym_BSLASHsupercite] = ACTIONS(4179), - [anon_sym_BSLASHautocite] = ACTIONS(4179), - [anon_sym_BSLASHAutocite] = ACTIONS(4179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4182), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4182), - [anon_sym_BSLASHvolcite] = ACTIONS(4179), - [anon_sym_BSLASHVolcite] = ACTIONS(4179), - [anon_sym_BSLASHpvolcite] = ACTIONS(4179), - [anon_sym_BSLASHPvolcite] = ACTIONS(4179), - [anon_sym_BSLASHfvolcite] = ACTIONS(4179), - [anon_sym_BSLASHftvolcite] = ACTIONS(4179), - [anon_sym_BSLASHsvolcite] = ACTIONS(4179), - [anon_sym_BSLASHSvolcite] = ACTIONS(4179), - [anon_sym_BSLASHtvolcite] = ACTIONS(4179), - [anon_sym_BSLASHTvolcite] = ACTIONS(4179), - [anon_sym_BSLASHavolcite] = ACTIONS(4179), - [anon_sym_BSLASHAvolcite] = ACTIONS(4179), - [anon_sym_BSLASHnotecite] = ACTIONS(4179), - [anon_sym_BSLASHNotecite] = ACTIONS(4179), - [anon_sym_BSLASHpnotecite] = ACTIONS(4179), - [anon_sym_BSLASHPnotecite] = ACTIONS(4179), - [anon_sym_BSLASHfnotecite] = ACTIONS(4179), - [anon_sym_BSLASHlabel] = ACTIONS(4185), - [anon_sym_BSLASHref] = ACTIONS(4188), - [anon_sym_BSLASHeqref] = ACTIONS(4188), - [anon_sym_BSLASHvref] = ACTIONS(4188), - [anon_sym_BSLASHVref] = ACTIONS(4188), - [anon_sym_BSLASHautoref] = ACTIONS(4188), - [anon_sym_BSLASHpageref] = ACTIONS(4188), - [anon_sym_BSLASHcref] = ACTIONS(4188), - [anon_sym_BSLASHCref] = ACTIONS(4188), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4191), - [anon_sym_BSLASHnamecref] = ACTIONS(4188), - [anon_sym_BSLASHnameCref] = ACTIONS(4188), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4188), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4188), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4188), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4188), - [anon_sym_BSLASHlabelcref] = ACTIONS(4188), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4188), - [anon_sym_BSLASHcrefrange] = ACTIONS(4194), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4197), - [anon_sym_BSLASHCrefrange] = ACTIONS(4194), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4197), - [anon_sym_BSLASHnewlabel] = ACTIONS(4200), - [anon_sym_BSLASHnewcommand] = ACTIONS(4203), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4206), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4203), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4206), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4203), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4206), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4203), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4206), - [anon_sym_BSLASHdef] = ACTIONS(4209), - [anon_sym_BSLASHlet] = ACTIONS(4212), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4215), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4218), - [anon_sym_BSLASHgls] = ACTIONS(4221), - [anon_sym_BSLASHGls] = ACTIONS(4221), - [anon_sym_BSLASHGLS] = ACTIONS(4221), - [anon_sym_BSLASHglspl] = ACTIONS(4221), - [anon_sym_BSLASHGlspl] = ACTIONS(4221), - [anon_sym_BSLASHGLSpl] = ACTIONS(4221), - [anon_sym_BSLASHglsdisp] = ACTIONS(4221), - [anon_sym_BSLASHglslink] = ACTIONS(4221), - [anon_sym_BSLASHglstext] = ACTIONS(4221), - [anon_sym_BSLASHGlstext] = ACTIONS(4221), - [anon_sym_BSLASHGLStext] = ACTIONS(4221), - [anon_sym_BSLASHglsfirst] = ACTIONS(4221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4221), - [anon_sym_BSLASHglsplural] = ACTIONS(4221), - [anon_sym_BSLASHGlsplural] = ACTIONS(4221), - [anon_sym_BSLASHGLSplural] = ACTIONS(4221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4221), - [anon_sym_BSLASHglsname] = ACTIONS(4221), - [anon_sym_BSLASHGlsname] = ACTIONS(4221), - [anon_sym_BSLASHGLSname] = ACTIONS(4221), - [anon_sym_BSLASHglssymbol] = ACTIONS(4221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4221), - [anon_sym_BSLASHglsdesc] = ACTIONS(4221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4221), - [anon_sym_BSLASHglsuseri] = ACTIONS(4221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4221), - [anon_sym_BSLASHglsuserii] = ACTIONS(4221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4221), - [anon_sym_BSLASHglsuserv] = ACTIONS(4221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4221), - [anon_sym_BSLASHglsuservi] = ACTIONS(4221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4221), - [anon_sym_BSLASHnewacronym] = ACTIONS(4224), - [anon_sym_BSLASHacrshort] = ACTIONS(4227), - [anon_sym_BSLASHAcrshort] = ACTIONS(4227), - [anon_sym_BSLASHACRshort] = ACTIONS(4227), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4227), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4227), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4227), - [anon_sym_BSLASHacrlong] = ACTIONS(4227), - [anon_sym_BSLASHAcrlong] = ACTIONS(4227), - [anon_sym_BSLASHACRlong] = ACTIONS(4227), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4227), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4227), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4227), - [anon_sym_BSLASHacrfull] = ACTIONS(4227), - [anon_sym_BSLASHAcrfull] = ACTIONS(4227), - [anon_sym_BSLASHACRfull] = ACTIONS(4227), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4227), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4227), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4227), - [anon_sym_BSLASHacs] = ACTIONS(4227), - [anon_sym_BSLASHAcs] = ACTIONS(4227), - [anon_sym_BSLASHacsp] = ACTIONS(4227), - [anon_sym_BSLASHAcsp] = ACTIONS(4227), - [anon_sym_BSLASHacl] = ACTIONS(4227), - [anon_sym_BSLASHAcl] = ACTIONS(4227), - [anon_sym_BSLASHaclp] = ACTIONS(4227), - [anon_sym_BSLASHAclp] = ACTIONS(4227), - [anon_sym_BSLASHacf] = ACTIONS(4227), - [anon_sym_BSLASHAcf] = ACTIONS(4227), - [anon_sym_BSLASHacfp] = ACTIONS(4227), - [anon_sym_BSLASHAcfp] = ACTIONS(4227), - [anon_sym_BSLASHac] = ACTIONS(4227), - [anon_sym_BSLASHAc] = ACTIONS(4227), - [anon_sym_BSLASHacp] = ACTIONS(4227), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4227), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4227), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4227), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4227), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4227), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4227), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4227), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4227), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4227), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4227), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4230), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4230), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4236), - [anon_sym_BSLASHcolor] = ACTIONS(4239), - [anon_sym_BSLASHcolorbox] = ACTIONS(4239), - [anon_sym_BSLASHtextcolor] = ACTIONS(4239), - [anon_sym_BSLASHpagecolor] = ACTIONS(4239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4242), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4242), - [anon_sym_BSLASHtext] = ACTIONS(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [sym_command_name] = ACTIONS(4202), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(4208), + [sym_placeholder] = ACTIONS(4211), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_CARET] = ACTIONS(4214), + [anon_sym__] = ACTIONS(4214), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_PIPE] = ACTIONS(4214), + [anon_sym_COLON] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(2727), + [anon_sym_BSLASHusepackage] = ACTIONS(4217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4220), + [anon_sym_BSLASHinclude] = ACTIONS(4223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4223), + [anon_sym_BSLASHinput] = ACTIONS(4223), + [anon_sym_BSLASHsubfile] = ACTIONS(4223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4226), + [anon_sym_BSLASHbibliography] = ACTIONS(4229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4232), + [anon_sym_BSLASHincludesvg] = ACTIONS(4235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4238), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4241), + [anon_sym_BSLASHimport] = ACTIONS(4244), + [anon_sym_BSLASHsubimport] = ACTIONS(4244), + [anon_sym_BSLASHinputfrom] = ACTIONS(4244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4244), + [anon_sym_BSLASHincludefrom] = ACTIONS(4244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4244), + [anon_sym_BSLASHcaption] = ACTIONS(4247), + [anon_sym_BSLASHcite] = ACTIONS(4250), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4253), + [anon_sym_BSLASHCite] = ACTIONS(4250), + [anon_sym_BSLASHnocite] = ACTIONS(4250), + [anon_sym_BSLASHcitet] = ACTIONS(4250), + [anon_sym_BSLASHcitep] = ACTIONS(4250), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4253), + [anon_sym_BSLASHciteauthor] = ACTIONS(4250), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4250), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4253), + [anon_sym_BSLASHcitetitle] = ACTIONS(4250), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4253), + [anon_sym_BSLASHciteyear] = ACTIONS(4250), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4253), + [anon_sym_BSLASHcitedate] = ACTIONS(4250), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4253), + [anon_sym_BSLASHciteurl] = ACTIONS(4250), + [anon_sym_BSLASHfullcite] = ACTIONS(4250), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4250), + [anon_sym_BSLASHcitealt] = ACTIONS(4250), + [anon_sym_BSLASHcitealp] = ACTIONS(4250), + [anon_sym_BSLASHcitetext] = ACTIONS(4250), + [anon_sym_BSLASHparencite] = ACTIONS(4250), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4253), + [anon_sym_BSLASHParencite] = ACTIONS(4250), + [anon_sym_BSLASHfootcite] = ACTIONS(4250), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4250), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4250), + [anon_sym_BSLASHtextcite] = ACTIONS(4250), + [anon_sym_BSLASHTextcite] = ACTIONS(4250), + [anon_sym_BSLASHsmartcite] = ACTIONS(4250), + [anon_sym_BSLASHSmartcite] = ACTIONS(4250), + [anon_sym_BSLASHsupercite] = ACTIONS(4250), + [anon_sym_BSLASHautocite] = ACTIONS(4250), + [anon_sym_BSLASHAutocite] = ACTIONS(4250), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4253), + [anon_sym_BSLASHvolcite] = ACTIONS(4250), + [anon_sym_BSLASHVolcite] = ACTIONS(4250), + [anon_sym_BSLASHpvolcite] = ACTIONS(4250), + [anon_sym_BSLASHPvolcite] = ACTIONS(4250), + [anon_sym_BSLASHfvolcite] = ACTIONS(4250), + [anon_sym_BSLASHftvolcite] = ACTIONS(4250), + [anon_sym_BSLASHsvolcite] = ACTIONS(4250), + [anon_sym_BSLASHSvolcite] = ACTIONS(4250), + [anon_sym_BSLASHtvolcite] = ACTIONS(4250), + [anon_sym_BSLASHTvolcite] = ACTIONS(4250), + [anon_sym_BSLASHavolcite] = ACTIONS(4250), + [anon_sym_BSLASHAvolcite] = ACTIONS(4250), + [anon_sym_BSLASHnotecite] = ACTIONS(4250), + [anon_sym_BSLASHNotecite] = ACTIONS(4250), + [anon_sym_BSLASHpnotecite] = ACTIONS(4250), + [anon_sym_BSLASHPnotecite] = ACTIONS(4250), + [anon_sym_BSLASHfnotecite] = ACTIONS(4250), + [anon_sym_BSLASHlabel] = ACTIONS(4256), + [anon_sym_BSLASHref] = ACTIONS(4259), + [anon_sym_BSLASHeqref] = ACTIONS(4259), + [anon_sym_BSLASHvref] = ACTIONS(4259), + [anon_sym_BSLASHVref] = ACTIONS(4259), + [anon_sym_BSLASHautoref] = ACTIONS(4259), + [anon_sym_BSLASHpageref] = ACTIONS(4259), + [anon_sym_BSLASHcref] = ACTIONS(4259), + [anon_sym_BSLASHCref] = ACTIONS(4259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4262), + [anon_sym_BSLASHnamecref] = ACTIONS(4259), + [anon_sym_BSLASHnameCref] = ACTIONS(4259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4259), + [anon_sym_BSLASHlabelcref] = ACTIONS(4259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4259), + [anon_sym_BSLASHcrefrange] = ACTIONS(4265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4268), + [anon_sym_BSLASHCrefrange] = ACTIONS(4265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4268), + [anon_sym_BSLASHnewlabel] = ACTIONS(4271), + [anon_sym_BSLASHnewcommand] = ACTIONS(4274), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4277), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4274), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4277), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4274), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4277), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4274), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4277), + [anon_sym_BSLASHdef] = ACTIONS(4280), + [anon_sym_BSLASHlet] = ACTIONS(4283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4286), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4289), + [anon_sym_BSLASHgls] = ACTIONS(4292), + [anon_sym_BSLASHGls] = ACTIONS(4292), + [anon_sym_BSLASHGLS] = ACTIONS(4292), + [anon_sym_BSLASHglspl] = ACTIONS(4292), + [anon_sym_BSLASHGlspl] = ACTIONS(4292), + [anon_sym_BSLASHGLSpl] = ACTIONS(4292), + [anon_sym_BSLASHglsdisp] = ACTIONS(4292), + [anon_sym_BSLASHglslink] = ACTIONS(4292), + [anon_sym_BSLASHglstext] = ACTIONS(4292), + [anon_sym_BSLASHGlstext] = ACTIONS(4292), + [anon_sym_BSLASHGLStext] = ACTIONS(4292), + [anon_sym_BSLASHglsfirst] = ACTIONS(4292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4292), + [anon_sym_BSLASHglsplural] = ACTIONS(4292), + [anon_sym_BSLASHGlsplural] = ACTIONS(4292), + [anon_sym_BSLASHGLSplural] = ACTIONS(4292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4292), + [anon_sym_BSLASHglsname] = ACTIONS(4292), + [anon_sym_BSLASHGlsname] = ACTIONS(4292), + [anon_sym_BSLASHGLSname] = ACTIONS(4292), + [anon_sym_BSLASHglssymbol] = ACTIONS(4292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4292), + [anon_sym_BSLASHglsdesc] = ACTIONS(4292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4292), + [anon_sym_BSLASHglsuseri] = ACTIONS(4292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4292), + [anon_sym_BSLASHglsuserii] = ACTIONS(4292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4292), + [anon_sym_BSLASHglsuserv] = ACTIONS(4292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4292), + [anon_sym_BSLASHglsuservi] = ACTIONS(4292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4292), + [anon_sym_BSLASHnewacronym] = ACTIONS(4295), + [anon_sym_BSLASHacrshort] = ACTIONS(4298), + [anon_sym_BSLASHAcrshort] = ACTIONS(4298), + [anon_sym_BSLASHACRshort] = ACTIONS(4298), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4298), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4298), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4298), + [anon_sym_BSLASHacrlong] = ACTIONS(4298), + [anon_sym_BSLASHAcrlong] = ACTIONS(4298), + [anon_sym_BSLASHACRlong] = ACTIONS(4298), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4298), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4298), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4298), + [anon_sym_BSLASHacrfull] = ACTIONS(4298), + [anon_sym_BSLASHAcrfull] = ACTIONS(4298), + [anon_sym_BSLASHACRfull] = ACTIONS(4298), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4298), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4298), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4298), + [anon_sym_BSLASHacs] = ACTIONS(4298), + [anon_sym_BSLASHAcs] = ACTIONS(4298), + [anon_sym_BSLASHacsp] = ACTIONS(4298), + [anon_sym_BSLASHAcsp] = ACTIONS(4298), + [anon_sym_BSLASHacl] = ACTIONS(4298), + [anon_sym_BSLASHAcl] = ACTIONS(4298), + [anon_sym_BSLASHaclp] = ACTIONS(4298), + [anon_sym_BSLASHAclp] = ACTIONS(4298), + [anon_sym_BSLASHacf] = ACTIONS(4298), + [anon_sym_BSLASHAcf] = ACTIONS(4298), + [anon_sym_BSLASHacfp] = ACTIONS(4298), + [anon_sym_BSLASHAcfp] = ACTIONS(4298), + [anon_sym_BSLASHac] = ACTIONS(4298), + [anon_sym_BSLASHAc] = ACTIONS(4298), + [anon_sym_BSLASHacp] = ACTIONS(4298), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4298), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4298), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4298), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4298), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4298), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4298), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4298), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4298), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4298), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4298), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4301), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4304), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4301), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4304), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4310), + [anon_sym_BSLASHcolor] = ACTIONS(4313), + [anon_sym_BSLASHcolorbox] = ACTIONS(4313), + [anon_sym_BSLASHtextcolor] = ACTIONS(4313), + [anon_sym_BSLASHpagecolor] = ACTIONS(4313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4316), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [266] = { [sym_block_comment] = STATE(1480), @@ -107077,252 +107629,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1480), [sym_tikz_library_import] = STATE(1480), [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(4245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(4251), - [sym_placeholder] = ACTIONS(4254), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4257), - [anon_sym_STAR] = ACTIONS(4257), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_CARET] = ACTIONS(4257), - [anon_sym__] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4257), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), - [anon_sym_BSLASHusepackage] = ACTIONS(4260), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4260), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4263), - [anon_sym_BSLASHinclude] = ACTIONS(4266), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4266), - [anon_sym_BSLASHinput] = ACTIONS(4266), - [anon_sym_BSLASHsubfile] = ACTIONS(4266), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4269), - [anon_sym_BSLASHbibliography] = ACTIONS(4272), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4275), - [anon_sym_BSLASHincludesvg] = ACTIONS(4278), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4284), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4284), - [anon_sym_BSLASHimport] = ACTIONS(4287), - [anon_sym_BSLASHsubimport] = ACTIONS(4287), - [anon_sym_BSLASHinputfrom] = ACTIONS(4287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4287), - [anon_sym_BSLASHincludefrom] = ACTIONS(4287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4287), - [anon_sym_BSLASHcaption] = ACTIONS(4290), - [anon_sym_BSLASHcite] = ACTIONS(4293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4296), - [anon_sym_BSLASHCite] = ACTIONS(4293), - [anon_sym_BSLASHnocite] = ACTIONS(4293), - [anon_sym_BSLASHcitet] = ACTIONS(4293), - [anon_sym_BSLASHcitep] = ACTIONS(4293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4296), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4296), - [anon_sym_BSLASHciteauthor] = ACTIONS(4293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4296), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4296), - [anon_sym_BSLASHcitetitle] = ACTIONS(4293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4296), - [anon_sym_BSLASHciteyear] = ACTIONS(4293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4296), - [anon_sym_BSLASHcitedate] = ACTIONS(4293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4296), - [anon_sym_BSLASHciteurl] = ACTIONS(4293), - [anon_sym_BSLASHfullcite] = ACTIONS(4293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4293), - [anon_sym_BSLASHcitealt] = ACTIONS(4293), - [anon_sym_BSLASHcitealp] = ACTIONS(4293), - [anon_sym_BSLASHcitetext] = ACTIONS(4293), - [anon_sym_BSLASHparencite] = ACTIONS(4293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4296), - [anon_sym_BSLASHParencite] = ACTIONS(4293), - [anon_sym_BSLASHfootcite] = ACTIONS(4293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4293), - [anon_sym_BSLASHtextcite] = ACTIONS(4293), - [anon_sym_BSLASHTextcite] = ACTIONS(4293), - [anon_sym_BSLASHsmartcite] = ACTIONS(4293), - [anon_sym_BSLASHSmartcite] = ACTIONS(4293), - [anon_sym_BSLASHsupercite] = ACTIONS(4293), - [anon_sym_BSLASHautocite] = ACTIONS(4293), - [anon_sym_BSLASHAutocite] = ACTIONS(4293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4296), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4296), - [anon_sym_BSLASHvolcite] = ACTIONS(4293), - [anon_sym_BSLASHVolcite] = ACTIONS(4293), - [anon_sym_BSLASHpvolcite] = ACTIONS(4293), - [anon_sym_BSLASHPvolcite] = ACTIONS(4293), - [anon_sym_BSLASHfvolcite] = ACTIONS(4293), - [anon_sym_BSLASHftvolcite] = ACTIONS(4293), - [anon_sym_BSLASHsvolcite] = ACTIONS(4293), - [anon_sym_BSLASHSvolcite] = ACTIONS(4293), - [anon_sym_BSLASHtvolcite] = ACTIONS(4293), - [anon_sym_BSLASHTvolcite] = ACTIONS(4293), - [anon_sym_BSLASHavolcite] = ACTIONS(4293), - [anon_sym_BSLASHAvolcite] = ACTIONS(4293), - [anon_sym_BSLASHnotecite] = ACTIONS(4293), - [anon_sym_BSLASHNotecite] = ACTIONS(4293), - [anon_sym_BSLASHpnotecite] = ACTIONS(4293), - [anon_sym_BSLASHPnotecite] = ACTIONS(4293), - [anon_sym_BSLASHfnotecite] = ACTIONS(4293), - [anon_sym_BSLASHlabel] = ACTIONS(4299), - [anon_sym_BSLASHref] = ACTIONS(4302), - [anon_sym_BSLASHeqref] = ACTIONS(4302), - [anon_sym_BSLASHvref] = ACTIONS(4302), - [anon_sym_BSLASHVref] = ACTIONS(4302), - [anon_sym_BSLASHautoref] = ACTIONS(4302), - [anon_sym_BSLASHpageref] = ACTIONS(4302), - [anon_sym_BSLASHcref] = ACTIONS(4302), - [anon_sym_BSLASHCref] = ACTIONS(4302), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4305), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4305), - [anon_sym_BSLASHnamecref] = ACTIONS(4302), - [anon_sym_BSLASHnameCref] = ACTIONS(4302), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4302), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4302), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4302), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4302), - [anon_sym_BSLASHlabelcref] = ACTIONS(4302), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4302), - [anon_sym_BSLASHcrefrange] = ACTIONS(4308), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4311), - [anon_sym_BSLASHCrefrange] = ACTIONS(4308), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4311), - [anon_sym_BSLASHnewlabel] = ACTIONS(4314), - [anon_sym_BSLASHnewcommand] = ACTIONS(4317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4320), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4320), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4320), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4320), - [anon_sym_BSLASHdef] = ACTIONS(4323), - [anon_sym_BSLASHlet] = ACTIONS(4326), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4332), - [anon_sym_BSLASHgls] = ACTIONS(4335), - [anon_sym_BSLASHGls] = ACTIONS(4335), - [anon_sym_BSLASHGLS] = ACTIONS(4335), - [anon_sym_BSLASHglspl] = ACTIONS(4335), - [anon_sym_BSLASHGlspl] = ACTIONS(4335), - [anon_sym_BSLASHGLSpl] = ACTIONS(4335), - [anon_sym_BSLASHglsdisp] = ACTIONS(4335), - [anon_sym_BSLASHglslink] = ACTIONS(4335), - [anon_sym_BSLASHglstext] = ACTIONS(4335), - [anon_sym_BSLASHGlstext] = ACTIONS(4335), - [anon_sym_BSLASHGLStext] = ACTIONS(4335), - [anon_sym_BSLASHglsfirst] = ACTIONS(4335), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4335), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4335), - [anon_sym_BSLASHglsplural] = ACTIONS(4335), - [anon_sym_BSLASHGlsplural] = ACTIONS(4335), - [anon_sym_BSLASHGLSplural] = ACTIONS(4335), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4335), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4335), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4335), - [anon_sym_BSLASHglsname] = ACTIONS(4335), - [anon_sym_BSLASHGlsname] = ACTIONS(4335), - [anon_sym_BSLASHGLSname] = ACTIONS(4335), - [anon_sym_BSLASHglssymbol] = ACTIONS(4335), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4335), - [anon_sym_BSLASHglsdesc] = ACTIONS(4335), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4335), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4335), - [anon_sym_BSLASHglsuseri] = ACTIONS(4335), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4335), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4335), - [anon_sym_BSLASHglsuserii] = ACTIONS(4335), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4335), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4335), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4335), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4335), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4335), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4335), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4335), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4335), - [anon_sym_BSLASHglsuserv] = ACTIONS(4335), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4335), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4335), - [anon_sym_BSLASHglsuservi] = ACTIONS(4335), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4335), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4335), - [anon_sym_BSLASHnewacronym] = ACTIONS(4338), - [anon_sym_BSLASHacrshort] = ACTIONS(4341), - [anon_sym_BSLASHAcrshort] = ACTIONS(4341), - [anon_sym_BSLASHACRshort] = ACTIONS(4341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4341), - [anon_sym_BSLASHacrlong] = ACTIONS(4341), - [anon_sym_BSLASHAcrlong] = ACTIONS(4341), - [anon_sym_BSLASHACRlong] = ACTIONS(4341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4341), - [anon_sym_BSLASHacrfull] = ACTIONS(4341), - [anon_sym_BSLASHAcrfull] = ACTIONS(4341), - [anon_sym_BSLASHACRfull] = ACTIONS(4341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4341), - [anon_sym_BSLASHacs] = ACTIONS(4341), - [anon_sym_BSLASHAcs] = ACTIONS(4341), - [anon_sym_BSLASHacsp] = ACTIONS(4341), - [anon_sym_BSLASHAcsp] = ACTIONS(4341), - [anon_sym_BSLASHacl] = ACTIONS(4341), - [anon_sym_BSLASHAcl] = ACTIONS(4341), - [anon_sym_BSLASHaclp] = ACTIONS(4341), - [anon_sym_BSLASHAclp] = ACTIONS(4341), - [anon_sym_BSLASHacf] = ACTIONS(4341), - [anon_sym_BSLASHAcf] = ACTIONS(4341), - [anon_sym_BSLASHacfp] = ACTIONS(4341), - [anon_sym_BSLASHAcfp] = ACTIONS(4341), - [anon_sym_BSLASHac] = ACTIONS(4341), - [anon_sym_BSLASHAc] = ACTIONS(4341), - [anon_sym_BSLASHacp] = ACTIONS(4341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4344), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4344), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4347), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4350), - [anon_sym_BSLASHcolor] = ACTIONS(4353), - [anon_sym_BSLASHcolorbox] = ACTIONS(4353), - [anon_sym_BSLASHtextcolor] = ACTIONS(4353), - [anon_sym_BSLASHpagecolor] = ACTIONS(4353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4356), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4356), - [anon_sym_BSLASHtext] = ACTIONS(2687), - [anon_sym_BSLASHintertext] = ACTIONS(2687), - [anon_sym_shortintertext] = ACTIONS(2687), + [sym_command_name] = ACTIONS(4319), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(4325), + [sym_placeholder] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym__] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_PIPE] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4331), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2719), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2719), + [anon_sym_BSLASHusepackage] = ACTIONS(4334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4337), + [anon_sym_BSLASHinclude] = ACTIONS(4340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4340), + [anon_sym_BSLASHinput] = ACTIONS(4340), + [anon_sym_BSLASHsubfile] = ACTIONS(4340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4343), + [anon_sym_BSLASHbibliography] = ACTIONS(4346), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4349), + [anon_sym_BSLASHincludesvg] = ACTIONS(4352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4355), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4358), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4358), + [anon_sym_BSLASHimport] = ACTIONS(4361), + [anon_sym_BSLASHsubimport] = ACTIONS(4361), + [anon_sym_BSLASHinputfrom] = ACTIONS(4361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4361), + [anon_sym_BSLASHincludefrom] = ACTIONS(4361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4361), + [anon_sym_BSLASHcaption] = ACTIONS(4364), + [anon_sym_BSLASHcite] = ACTIONS(4367), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4370), + [anon_sym_BSLASHCite] = ACTIONS(4367), + [anon_sym_BSLASHnocite] = ACTIONS(4367), + [anon_sym_BSLASHcitet] = ACTIONS(4367), + [anon_sym_BSLASHcitep] = ACTIONS(4367), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4370), + [anon_sym_BSLASHciteauthor] = ACTIONS(4367), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4367), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4370), + [anon_sym_BSLASHcitetitle] = ACTIONS(4367), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4370), + [anon_sym_BSLASHciteyear] = ACTIONS(4367), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4370), + [anon_sym_BSLASHcitedate] = ACTIONS(4367), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4370), + [anon_sym_BSLASHciteurl] = ACTIONS(4367), + [anon_sym_BSLASHfullcite] = ACTIONS(4367), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4367), + [anon_sym_BSLASHcitealt] = ACTIONS(4367), + [anon_sym_BSLASHcitealp] = ACTIONS(4367), + [anon_sym_BSLASHcitetext] = ACTIONS(4367), + [anon_sym_BSLASHparencite] = ACTIONS(4367), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4370), + [anon_sym_BSLASHParencite] = ACTIONS(4367), + [anon_sym_BSLASHfootcite] = ACTIONS(4367), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4367), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4367), + [anon_sym_BSLASHtextcite] = ACTIONS(4367), + [anon_sym_BSLASHTextcite] = ACTIONS(4367), + [anon_sym_BSLASHsmartcite] = ACTIONS(4367), + [anon_sym_BSLASHSmartcite] = ACTIONS(4367), + [anon_sym_BSLASHsupercite] = ACTIONS(4367), + [anon_sym_BSLASHautocite] = ACTIONS(4367), + [anon_sym_BSLASHAutocite] = ACTIONS(4367), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4370), + [anon_sym_BSLASHvolcite] = ACTIONS(4367), + [anon_sym_BSLASHVolcite] = ACTIONS(4367), + [anon_sym_BSLASHpvolcite] = ACTIONS(4367), + [anon_sym_BSLASHPvolcite] = ACTIONS(4367), + [anon_sym_BSLASHfvolcite] = ACTIONS(4367), + [anon_sym_BSLASHftvolcite] = ACTIONS(4367), + [anon_sym_BSLASHsvolcite] = ACTIONS(4367), + [anon_sym_BSLASHSvolcite] = ACTIONS(4367), + [anon_sym_BSLASHtvolcite] = ACTIONS(4367), + [anon_sym_BSLASHTvolcite] = ACTIONS(4367), + [anon_sym_BSLASHavolcite] = ACTIONS(4367), + [anon_sym_BSLASHAvolcite] = ACTIONS(4367), + [anon_sym_BSLASHnotecite] = ACTIONS(4367), + [anon_sym_BSLASHNotecite] = ACTIONS(4367), + [anon_sym_BSLASHpnotecite] = ACTIONS(4367), + [anon_sym_BSLASHPnotecite] = ACTIONS(4367), + [anon_sym_BSLASHfnotecite] = ACTIONS(4367), + [anon_sym_BSLASHlabel] = ACTIONS(4373), + [anon_sym_BSLASHref] = ACTIONS(4376), + [anon_sym_BSLASHeqref] = ACTIONS(4376), + [anon_sym_BSLASHvref] = ACTIONS(4376), + [anon_sym_BSLASHVref] = ACTIONS(4376), + [anon_sym_BSLASHautoref] = ACTIONS(4376), + [anon_sym_BSLASHpageref] = ACTIONS(4376), + [anon_sym_BSLASHcref] = ACTIONS(4376), + [anon_sym_BSLASHCref] = ACTIONS(4376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4379), + [anon_sym_BSLASHnamecref] = ACTIONS(4376), + [anon_sym_BSLASHnameCref] = ACTIONS(4376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4376), + [anon_sym_BSLASHlabelcref] = ACTIONS(4376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4376), + [anon_sym_BSLASHcrefrange] = ACTIONS(4382), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4385), + [anon_sym_BSLASHCrefrange] = ACTIONS(4382), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4385), + [anon_sym_BSLASHnewlabel] = ACTIONS(4388), + [anon_sym_BSLASHnewcommand] = ACTIONS(4391), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4394), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4394), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4394), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4394), + [anon_sym_BSLASHdef] = ACTIONS(4397), + [anon_sym_BSLASHlet] = ACTIONS(4400), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4406), + [anon_sym_BSLASHgls] = ACTIONS(4409), + [anon_sym_BSLASHGls] = ACTIONS(4409), + [anon_sym_BSLASHGLS] = ACTIONS(4409), + [anon_sym_BSLASHglspl] = ACTIONS(4409), + [anon_sym_BSLASHGlspl] = ACTIONS(4409), + [anon_sym_BSLASHGLSpl] = ACTIONS(4409), + [anon_sym_BSLASHglsdisp] = ACTIONS(4409), + [anon_sym_BSLASHglslink] = ACTIONS(4409), + [anon_sym_BSLASHglstext] = ACTIONS(4409), + [anon_sym_BSLASHGlstext] = ACTIONS(4409), + [anon_sym_BSLASHGLStext] = ACTIONS(4409), + [anon_sym_BSLASHglsfirst] = ACTIONS(4409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4409), + [anon_sym_BSLASHglsplural] = ACTIONS(4409), + [anon_sym_BSLASHGlsplural] = ACTIONS(4409), + [anon_sym_BSLASHGLSplural] = ACTIONS(4409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4409), + [anon_sym_BSLASHglsname] = ACTIONS(4409), + [anon_sym_BSLASHGlsname] = ACTIONS(4409), + [anon_sym_BSLASHGLSname] = ACTIONS(4409), + [anon_sym_BSLASHglssymbol] = ACTIONS(4409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4409), + [anon_sym_BSLASHglsdesc] = ACTIONS(4409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4409), + [anon_sym_BSLASHglsuseri] = ACTIONS(4409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4409), + [anon_sym_BSLASHglsuserii] = ACTIONS(4409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4409), + [anon_sym_BSLASHglsuserv] = ACTIONS(4409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4409), + [anon_sym_BSLASHglsuservi] = ACTIONS(4409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4409), + [anon_sym_BSLASHnewacronym] = ACTIONS(4412), + [anon_sym_BSLASHacrshort] = ACTIONS(4415), + [anon_sym_BSLASHAcrshort] = ACTIONS(4415), + [anon_sym_BSLASHACRshort] = ACTIONS(4415), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4415), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4415), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4415), + [anon_sym_BSLASHacrlong] = ACTIONS(4415), + [anon_sym_BSLASHAcrlong] = ACTIONS(4415), + [anon_sym_BSLASHACRlong] = ACTIONS(4415), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4415), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4415), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4415), + [anon_sym_BSLASHacrfull] = ACTIONS(4415), + [anon_sym_BSLASHAcrfull] = ACTIONS(4415), + [anon_sym_BSLASHACRfull] = ACTIONS(4415), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4415), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4415), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4415), + [anon_sym_BSLASHacs] = ACTIONS(4415), + [anon_sym_BSLASHAcs] = ACTIONS(4415), + [anon_sym_BSLASHacsp] = ACTIONS(4415), + [anon_sym_BSLASHAcsp] = ACTIONS(4415), + [anon_sym_BSLASHacl] = ACTIONS(4415), + [anon_sym_BSLASHAcl] = ACTIONS(4415), + [anon_sym_BSLASHaclp] = ACTIONS(4415), + [anon_sym_BSLASHAclp] = ACTIONS(4415), + [anon_sym_BSLASHacf] = ACTIONS(4415), + [anon_sym_BSLASHAcf] = ACTIONS(4415), + [anon_sym_BSLASHacfp] = ACTIONS(4415), + [anon_sym_BSLASHAcfp] = ACTIONS(4415), + [anon_sym_BSLASHac] = ACTIONS(4415), + [anon_sym_BSLASHAc] = ACTIONS(4415), + [anon_sym_BSLASHacp] = ACTIONS(4415), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4415), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4415), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4415), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4415), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4415), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4415), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4415), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4415), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4415), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4415), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4418), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4418), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4424), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4427), + [anon_sym_BSLASHcolor] = ACTIONS(4430), + [anon_sym_BSLASHcolorbox] = ACTIONS(4430), + [anon_sym_BSLASHtextcolor] = ACTIONS(4430), + [anon_sym_BSLASHpagecolor] = ACTIONS(4430), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_BSLASHtext] = ACTIONS(2727), + [anon_sym_BSLASHintertext] = ACTIONS(2727), + [anon_sym_shortintertext] = ACTIONS(2727), }, [267] = { [sym_block_comment] = STATE(1480), @@ -107359,252 +107913,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1480), [sym_tikz_library_import] = STATE(1480), [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3701), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(3713), - [sym_placeholder] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_STAR] = ACTIONS(3717), - [anon_sym_SLASH] = ACTIONS(3717), - [anon_sym_CARET] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3717), - [anon_sym_GT] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3717), - [anon_sym_PIPE] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_SQUOTE] = ACTIONS(3717), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), - [anon_sym_BSLASHusepackage] = ACTIONS(3727), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), - [anon_sym_BSLASHinclude] = ACTIONS(3731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), - [anon_sym_BSLASHinput] = ACTIONS(3731), - [anon_sym_BSLASHsubfile] = ACTIONS(3731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), - [anon_sym_BSLASHbibliography] = ACTIONS(3735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), - [anon_sym_BSLASHincludesvg] = ACTIONS(3739), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3745), - [anon_sym_BSLASHsubimport] = ACTIONS(3745), - [anon_sym_BSLASHinputfrom] = ACTIONS(3745), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), - [anon_sym_BSLASHincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), - [anon_sym_BSLASHcaption] = ACTIONS(3747), - [anon_sym_BSLASHcite] = ACTIONS(3749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCite] = ACTIONS(3749), - [anon_sym_BSLASHnocite] = ACTIONS(3749), - [anon_sym_BSLASHcitet] = ACTIONS(3749), - [anon_sym_BSLASHcitep] = ACTIONS(3749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteauthor] = ACTIONS(3749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitetitle] = ACTIONS(3749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteyear] = ACTIONS(3749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), - [anon_sym_BSLASHcitedate] = ACTIONS(3749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), - [anon_sym_BSLASHciteurl] = ACTIONS(3749), - [anon_sym_BSLASHfullcite] = ACTIONS(3749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), - [anon_sym_BSLASHcitealt] = ACTIONS(3749), - [anon_sym_BSLASHcitealp] = ACTIONS(3749), - [anon_sym_BSLASHcitetext] = ACTIONS(3749), - [anon_sym_BSLASHparencite] = ACTIONS(3749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHParencite] = ACTIONS(3749), - [anon_sym_BSLASHfootcite] = ACTIONS(3749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), - [anon_sym_BSLASHtextcite] = ACTIONS(3749), - [anon_sym_BSLASHTextcite] = ACTIONS(3749), - [anon_sym_BSLASHsmartcite] = ACTIONS(3749), - [anon_sym_BSLASHSmartcite] = ACTIONS(3749), - [anon_sym_BSLASHsupercite] = ACTIONS(3749), - [anon_sym_BSLASHautocite] = ACTIONS(3749), - [anon_sym_BSLASHAutocite] = ACTIONS(3749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), - [anon_sym_BSLASHvolcite] = ACTIONS(3749), - [anon_sym_BSLASHVolcite] = ACTIONS(3749), - [anon_sym_BSLASHpvolcite] = ACTIONS(3749), - [anon_sym_BSLASHPvolcite] = ACTIONS(3749), - [anon_sym_BSLASHfvolcite] = ACTIONS(3749), - [anon_sym_BSLASHftvolcite] = ACTIONS(3749), - [anon_sym_BSLASHsvolcite] = ACTIONS(3749), - [anon_sym_BSLASHSvolcite] = ACTIONS(3749), - [anon_sym_BSLASHtvolcite] = ACTIONS(3749), - [anon_sym_BSLASHTvolcite] = ACTIONS(3749), - [anon_sym_BSLASHavolcite] = ACTIONS(3749), - [anon_sym_BSLASHAvolcite] = ACTIONS(3749), - [anon_sym_BSLASHnotecite] = ACTIONS(3749), - [anon_sym_BSLASHNotecite] = ACTIONS(3749), - [anon_sym_BSLASHpnotecite] = ACTIONS(3749), - [anon_sym_BSLASHPnotecite] = ACTIONS(3749), - [anon_sym_BSLASHfnotecite] = ACTIONS(3749), - [anon_sym_BSLASHlabel] = ACTIONS(3753), - [anon_sym_BSLASHref] = ACTIONS(3755), - [anon_sym_BSLASHeqref] = ACTIONS(3755), - [anon_sym_BSLASHvref] = ACTIONS(3755), - [anon_sym_BSLASHVref] = ACTIONS(3755), - [anon_sym_BSLASHautoref] = ACTIONS(3755), - [anon_sym_BSLASHpageref] = ACTIONS(3755), - [anon_sym_BSLASHcref] = ACTIONS(3755), - [anon_sym_BSLASHCref] = ACTIONS(3755), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), - [anon_sym_BSLASHnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnameCref] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), - [anon_sym_BSLASHlabelcref] = ACTIONS(3755), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), - [anon_sym_BSLASHcrefrange] = ACTIONS(3759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHCrefrange] = ACTIONS(3759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), - [anon_sym_BSLASHnewlabel] = ACTIONS(3763), - [anon_sym_BSLASHnewcommand] = ACTIONS(3765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), - [anon_sym_BSLASHdef] = ACTIONS(3769), - [anon_sym_BSLASHlet] = ACTIONS(3771), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), - [anon_sym_BSLASHgls] = ACTIONS(3777), - [anon_sym_BSLASHGls] = ACTIONS(3777), - [anon_sym_BSLASHGLS] = ACTIONS(3777), - [anon_sym_BSLASHglspl] = ACTIONS(3777), - [anon_sym_BSLASHGlspl] = ACTIONS(3777), - [anon_sym_BSLASHGLSpl] = ACTIONS(3777), - [anon_sym_BSLASHglsdisp] = ACTIONS(3777), - [anon_sym_BSLASHglslink] = ACTIONS(3777), - [anon_sym_BSLASHglstext] = ACTIONS(3777), - [anon_sym_BSLASHGlstext] = ACTIONS(3777), - [anon_sym_BSLASHGLStext] = ACTIONS(3777), - [anon_sym_BSLASHglsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), - [anon_sym_BSLASHglsplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSplural] = ACTIONS(3777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), - [anon_sym_BSLASHglsname] = ACTIONS(3777), - [anon_sym_BSLASHGlsname] = ACTIONS(3777), - [anon_sym_BSLASHGLSname] = ACTIONS(3777), - [anon_sym_BSLASHglssymbol] = ACTIONS(3777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), - [anon_sym_BSLASHglsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), - [anon_sym_BSLASHglsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), - [anon_sym_BSLASHglsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), - [anon_sym_BSLASHglsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), - [anon_sym_BSLASHglsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), - [anon_sym_BSLASHnewacronym] = ACTIONS(3779), - [anon_sym_BSLASHacrshort] = ACTIONS(3781), - [anon_sym_BSLASHAcrshort] = ACTIONS(3781), - [anon_sym_BSLASHACRshort] = ACTIONS(3781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), - [anon_sym_BSLASHacrlong] = ACTIONS(3781), - [anon_sym_BSLASHAcrlong] = ACTIONS(3781), - [anon_sym_BSLASHACRlong] = ACTIONS(3781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), - [anon_sym_BSLASHacrfull] = ACTIONS(3781), - [anon_sym_BSLASHAcrfull] = ACTIONS(3781), - [anon_sym_BSLASHACRfull] = ACTIONS(3781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), - [anon_sym_BSLASHacs] = ACTIONS(3781), - [anon_sym_BSLASHAcs] = ACTIONS(3781), - [anon_sym_BSLASHacsp] = ACTIONS(3781), - [anon_sym_BSLASHAcsp] = ACTIONS(3781), - [anon_sym_BSLASHacl] = ACTIONS(3781), - [anon_sym_BSLASHAcl] = ACTIONS(3781), - [anon_sym_BSLASHaclp] = ACTIONS(3781), - [anon_sym_BSLASHAclp] = ACTIONS(3781), - [anon_sym_BSLASHacf] = ACTIONS(3781), - [anon_sym_BSLASHAcf] = ACTIONS(3781), - [anon_sym_BSLASHacfp] = ACTIONS(3781), - [anon_sym_BSLASHAcfp] = ACTIONS(3781), - [anon_sym_BSLASHac] = ACTIONS(3781), - [anon_sym_BSLASHAc] = ACTIONS(3781), - [anon_sym_BSLASHacp] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), - [anon_sym_BSLASHcolor] = ACTIONS(3789), - [anon_sym_BSLASHcolorbox] = ACTIONS(3789), - [anon_sym_BSLASHtextcolor] = ACTIONS(3789), - [anon_sym_BSLASHpagecolor] = ACTIONS(3789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), - [anon_sym_BSLASHtext] = ACTIONS(2677), - [anon_sym_BSLASHintertext] = ACTIONS(2677), - [anon_sym_shortintertext] = ACTIONS(2677), + [sym_command_name] = ACTIONS(3764), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(3776), + [sym_placeholder] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_SLASH] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2715), + [anon_sym_BSLASHusepackage] = ACTIONS(3790), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3790), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3792), + [anon_sym_BSLASHinclude] = ACTIONS(3794), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3794), + [anon_sym_BSLASHinput] = ACTIONS(3794), + [anon_sym_BSLASHsubfile] = ACTIONS(3794), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3796), + [anon_sym_BSLASHbibliography] = ACTIONS(3798), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3800), + [anon_sym_BSLASHincludesvg] = ACTIONS(3802), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3806), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3806), + [anon_sym_BSLASHimport] = ACTIONS(3808), + [anon_sym_BSLASHsubimport] = ACTIONS(3808), + [anon_sym_BSLASHinputfrom] = ACTIONS(3808), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3808), + [anon_sym_BSLASHincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3808), + [anon_sym_BSLASHcaption] = ACTIONS(3810), + [anon_sym_BSLASHcite] = ACTIONS(3812), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCite] = ACTIONS(3812), + [anon_sym_BSLASHnocite] = ACTIONS(3812), + [anon_sym_BSLASHcitet] = ACTIONS(3812), + [anon_sym_BSLASHcitep] = ACTIONS(3812), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteauthor] = ACTIONS(3812), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3812), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitetitle] = ACTIONS(3812), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteyear] = ACTIONS(3812), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3814), + [anon_sym_BSLASHcitedate] = ACTIONS(3812), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3814), + [anon_sym_BSLASHciteurl] = ACTIONS(3812), + [anon_sym_BSLASHfullcite] = ACTIONS(3812), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3812), + [anon_sym_BSLASHcitealt] = ACTIONS(3812), + [anon_sym_BSLASHcitealp] = ACTIONS(3812), + [anon_sym_BSLASHcitetext] = ACTIONS(3812), + [anon_sym_BSLASHparencite] = ACTIONS(3812), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHParencite] = ACTIONS(3812), + [anon_sym_BSLASHfootcite] = ACTIONS(3812), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3812), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3812), + [anon_sym_BSLASHtextcite] = ACTIONS(3812), + [anon_sym_BSLASHTextcite] = ACTIONS(3812), + [anon_sym_BSLASHsmartcite] = ACTIONS(3812), + [anon_sym_BSLASHSmartcite] = ACTIONS(3812), + [anon_sym_BSLASHsupercite] = ACTIONS(3812), + [anon_sym_BSLASHautocite] = ACTIONS(3812), + [anon_sym_BSLASHAutocite] = ACTIONS(3812), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3814), + [anon_sym_BSLASHvolcite] = ACTIONS(3812), + [anon_sym_BSLASHVolcite] = ACTIONS(3812), + [anon_sym_BSLASHpvolcite] = ACTIONS(3812), + [anon_sym_BSLASHPvolcite] = ACTIONS(3812), + [anon_sym_BSLASHfvolcite] = ACTIONS(3812), + [anon_sym_BSLASHftvolcite] = ACTIONS(3812), + [anon_sym_BSLASHsvolcite] = ACTIONS(3812), + [anon_sym_BSLASHSvolcite] = ACTIONS(3812), + [anon_sym_BSLASHtvolcite] = ACTIONS(3812), + [anon_sym_BSLASHTvolcite] = ACTIONS(3812), + [anon_sym_BSLASHavolcite] = ACTIONS(3812), + [anon_sym_BSLASHAvolcite] = ACTIONS(3812), + [anon_sym_BSLASHnotecite] = ACTIONS(3812), + [anon_sym_BSLASHNotecite] = ACTIONS(3812), + [anon_sym_BSLASHpnotecite] = ACTIONS(3812), + [anon_sym_BSLASHPnotecite] = ACTIONS(3812), + [anon_sym_BSLASHfnotecite] = ACTIONS(3812), + [anon_sym_BSLASHlabel] = ACTIONS(3816), + [anon_sym_BSLASHref] = ACTIONS(3818), + [anon_sym_BSLASHeqref] = ACTIONS(3818), + [anon_sym_BSLASHvref] = ACTIONS(3818), + [anon_sym_BSLASHVref] = ACTIONS(3818), + [anon_sym_BSLASHautoref] = ACTIONS(3818), + [anon_sym_BSLASHpageref] = ACTIONS(3818), + [anon_sym_BSLASHcref] = ACTIONS(3818), + [anon_sym_BSLASHCref] = ACTIONS(3818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3820), + [anon_sym_BSLASHnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnameCref] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3818), + [anon_sym_BSLASHlabelcref] = ACTIONS(3818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3818), + [anon_sym_BSLASHcrefrange] = ACTIONS(3822), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHCrefrange] = ACTIONS(3822), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3824), + [anon_sym_BSLASHnewlabel] = ACTIONS(3826), + [anon_sym_BSLASHnewcommand] = ACTIONS(3828), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3828), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3828), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3828), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3830), + [anon_sym_BSLASHdef] = ACTIONS(3832), + [anon_sym_BSLASHlet] = ACTIONS(3834), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3836), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3838), + [anon_sym_BSLASHgls] = ACTIONS(3840), + [anon_sym_BSLASHGls] = ACTIONS(3840), + [anon_sym_BSLASHGLS] = ACTIONS(3840), + [anon_sym_BSLASHglspl] = ACTIONS(3840), + [anon_sym_BSLASHGlspl] = ACTIONS(3840), + [anon_sym_BSLASHGLSpl] = ACTIONS(3840), + [anon_sym_BSLASHglsdisp] = ACTIONS(3840), + [anon_sym_BSLASHglslink] = ACTIONS(3840), + [anon_sym_BSLASHglstext] = ACTIONS(3840), + [anon_sym_BSLASHGlstext] = ACTIONS(3840), + [anon_sym_BSLASHGLStext] = ACTIONS(3840), + [anon_sym_BSLASHglsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3840), + [anon_sym_BSLASHglsplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSplural] = ACTIONS(3840), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3840), + [anon_sym_BSLASHglsname] = ACTIONS(3840), + [anon_sym_BSLASHGlsname] = ACTIONS(3840), + [anon_sym_BSLASHGLSname] = ACTIONS(3840), + [anon_sym_BSLASHglssymbol] = ACTIONS(3840), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3840), + [anon_sym_BSLASHglsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3840), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3840), + [anon_sym_BSLASHglsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3840), + [anon_sym_BSLASHglsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3840), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3840), + [anon_sym_BSLASHglsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3840), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3840), + [anon_sym_BSLASHglsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3840), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3840), + [anon_sym_BSLASHnewacronym] = ACTIONS(3842), + [anon_sym_BSLASHacrshort] = ACTIONS(3844), + [anon_sym_BSLASHAcrshort] = ACTIONS(3844), + [anon_sym_BSLASHACRshort] = ACTIONS(3844), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3844), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3844), + [anon_sym_BSLASHacrlong] = ACTIONS(3844), + [anon_sym_BSLASHAcrlong] = ACTIONS(3844), + [anon_sym_BSLASHACRlong] = ACTIONS(3844), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3844), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3844), + [anon_sym_BSLASHacrfull] = ACTIONS(3844), + [anon_sym_BSLASHAcrfull] = ACTIONS(3844), + [anon_sym_BSLASHACRfull] = ACTIONS(3844), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3844), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3844), + [anon_sym_BSLASHacs] = ACTIONS(3844), + [anon_sym_BSLASHAcs] = ACTIONS(3844), + [anon_sym_BSLASHacsp] = ACTIONS(3844), + [anon_sym_BSLASHAcsp] = ACTIONS(3844), + [anon_sym_BSLASHacl] = ACTIONS(3844), + [anon_sym_BSLASHAcl] = ACTIONS(3844), + [anon_sym_BSLASHaclp] = ACTIONS(3844), + [anon_sym_BSLASHAclp] = ACTIONS(3844), + [anon_sym_BSLASHacf] = ACTIONS(3844), + [anon_sym_BSLASHAcf] = ACTIONS(3844), + [anon_sym_BSLASHacfp] = ACTIONS(3844), + [anon_sym_BSLASHAcfp] = ACTIONS(3844), + [anon_sym_BSLASHac] = ACTIONS(3844), + [anon_sym_BSLASHAc] = ACTIONS(3844), + [anon_sym_BSLASHacp] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3844), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3844), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3844), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3844), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3848), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3850), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3852), + [anon_sym_BSLASHcolor] = ACTIONS(3854), + [anon_sym_BSLASHcolorbox] = ACTIONS(3854), + [anon_sym_BSLASHtextcolor] = ACTIONS(3854), + [anon_sym_BSLASHpagecolor] = ACTIONS(3854), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3856), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3856), + [anon_sym_BSLASHtext] = ACTIONS(2717), + [anon_sym_BSLASHintertext] = ACTIONS(2717), + [anon_sym_shortintertext] = ACTIONS(2717), }, [268] = { [sym_block_comment] = STATE(1560), @@ -107647,269297 +108203,271267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_comment] = ACTIONS(4369), - [anon_sym_verbatim] = ACTIONS(4371), - [anon_sym_lstlisting] = ACTIONS(4373), - [anon_sym_minted] = ACTIONS(4375), - [anon_sym_pycode] = ACTIONS(4377), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_comment] = ACTIONS(4446), + [anon_sym_verbatim] = ACTIONS(4448), + [anon_sym_lstlisting] = ACTIONS(4450), + [anon_sym_minted] = ACTIONS(4452), + [anon_sym_pycode] = ACTIONS(4454), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [269] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [270] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [271] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [272] = { [sym_curly_group] = STATE(698), [sym_mixed_group] = STATE(698), [aux_sym_generic_command_repeat1] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(4449), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_BSLASHpart] = ACTIONS(4451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddpart] = ACTIONS(4451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHchapter] = ACTIONS(4451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddchap] = ACTIONS(4451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsection] = ACTIONS(4451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddsec] = ACTIONS(4451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHparagraph] = ACTIONS(4451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHitem] = ACTIONS(4451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), + [ts_builtin_sym_end] = ACTIONS(4528), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_BSLASHpart] = ACTIONS(4530), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddpart] = ACTIONS(4530), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHchapter] = ACTIONS(4530), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddchap] = ACTIONS(4530), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsection] = ACTIONS(4530), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddsec] = ACTIONS(4530), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHparagraph] = ACTIONS(4530), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4530), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHitem] = ACTIONS(4530), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4528), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4449), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASHbegin] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [anon_sym_RBRACE] = ACTIONS(4528), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASHbegin] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [273] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [274] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [275] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [276] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [277] = { [sym__section_declaration] = STATE(142), [sym_section] = STATE(328), [aux_sym__section_repeat3] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), [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(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [278] = { [sym__chapter_declaration] = STATE(133), [sym_chapter] = STATE(329), [aux_sym__section_repeat2] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), [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(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [279] = { [sym__chapter_declaration] = STATE(133), [sym_chapter] = STATE(329), [aux_sym__section_repeat2] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), [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(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [280] = { [sym__part_declaration] = STATE(123), [sym_part] = STATE(331), [aux_sym__section_repeat1] = STATE(331), - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_command_name] = ACTIONS(4447), + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_command_name] = ACTIONS(4526), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), [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(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [281] = { [sym__section_declaration] = STATE(142), [sym_section] = STATE(328), [aux_sym__section_repeat3] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), [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(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [282] = { [sym__chapter_declaration] = STATE(133), [sym_chapter] = STATE(329), [aux_sym__section_repeat2] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), [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(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [283] = { [sym__section_declaration] = STATE(142), [sym_section] = STATE(328), [aux_sym__section_repeat3] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), [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(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [284] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [285] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [286] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [287] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [288] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [289] = { [sym_curly_group] = STATE(698), [sym_mixed_group] = STATE(698), [aux_sym_generic_command_repeat1] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(4459), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_BSLASHpart] = ACTIONS(4461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddpart] = ACTIONS(4461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHchapter] = ACTIONS(4461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddchap] = ACTIONS(4461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsection] = ACTIONS(4461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddsec] = ACTIONS(4461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHparagraph] = ACTIONS(4461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHitem] = ACTIONS(4461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4459), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASHbegin] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [ts_builtin_sym_end] = ACTIONS(4538), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_BSLASHpart] = ACTIONS(4540), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddpart] = ACTIONS(4540), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHchapter] = ACTIONS(4540), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddchap] = ACTIONS(4540), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsection] = ACTIONS(4540), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddsec] = ACTIONS(4540), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHparagraph] = ACTIONS(4540), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4540), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHitem] = ACTIONS(4540), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4538), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASHbegin] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [290] = { [sym__section_declaration] = STATE(142), [sym_section] = STATE(328), [aux_sym__section_repeat3] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), [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(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [291] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [292] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [293] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [294] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [295] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [296] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(4473), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_RBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [297] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(4473), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_RBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [298] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4473), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_RBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [299] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4473), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_RBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [300] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4473), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_RBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_RBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [301] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(4477), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [302] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4477), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [303] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4477), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [304] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4477), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [ts_builtin_sym_end] = ACTIONS(4556), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [anon_sym_LBRACE] = ACTIONS(4556), + [anon_sym_RBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [305] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4481), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [ts_builtin_sym_end] = ACTIONS(4560), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [anon_sym_RBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [306] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4481), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [ts_builtin_sym_end] = ACTIONS(4560), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [anon_sym_RBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [307] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4481), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [ts_builtin_sym_end] = ACTIONS(4560), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4481), - [anon_sym_RBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [308] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4485), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [ts_builtin_sym_end] = ACTIONS(4564), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(4485), - [anon_sym_RBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [anon_sym_BSLASHitem] = ACTIONS(4566), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_RBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [309] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4485), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), + [ts_builtin_sym_end] = ACTIONS(4564), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4566), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4564), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4485), - [anon_sym_RBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [anon_sym_LBRACE] = ACTIONS(4564), + [anon_sym_RBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [310] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4489), - [sym_command_name] = ACTIONS(4491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_BSLASHpart] = ACTIONS(4491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddpart] = ACTIONS(4491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHchapter] = ACTIONS(4491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddchap] = ACTIONS(4491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsection] = ACTIONS(4491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddsec] = ACTIONS(4491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHparagraph] = ACTIONS(4491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), + [ts_builtin_sym_end] = ACTIONS(4568), + [sym_command_name] = ACTIONS(4570), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_BSLASHpart] = ACTIONS(4570), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddpart] = ACTIONS(4570), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHchapter] = ACTIONS(4570), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddchap] = ACTIONS(4570), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsection] = ACTIONS(4570), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddsec] = ACTIONS(4570), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHparagraph] = ACTIONS(4570), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4570), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4568), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [sym_word] = ACTIONS(4491), - [sym_placeholder] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_STAR] = ACTIONS(4491), - [anon_sym_SLASH] = ACTIONS(4491), - [anon_sym_CARET] = ACTIONS(4491), - [anon_sym__] = ACTIONS(4491), - [anon_sym_LT] = ACTIONS(4491), - [anon_sym_GT] = ACTIONS(4491), - [anon_sym_BANG] = ACTIONS(4491), - [anon_sym_PIPE] = ACTIONS(4491), - [anon_sym_COLON] = ACTIONS(4491), - [anon_sym_SQUOTE] = ACTIONS(4491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), - [anon_sym_BSLASHbegin] = ACTIONS(4491), - [anon_sym_BSLASHusepackage] = ACTIONS(4491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), - [anon_sym_BSLASHinclude] = ACTIONS(4491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), - [anon_sym_BSLASHinput] = ACTIONS(4491), - [anon_sym_BSLASHsubfile] = ACTIONS(4491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), - [anon_sym_BSLASHbibliography] = ACTIONS(4491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), - [anon_sym_BSLASHincludesvg] = ACTIONS(4491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), - [anon_sym_BSLASHimport] = ACTIONS(4491), - [anon_sym_BSLASHsubimport] = ACTIONS(4491), - [anon_sym_BSLASHinputfrom] = ACTIONS(4491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), - [anon_sym_BSLASHincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHcaption] = ACTIONS(4491), - [anon_sym_BSLASHcite] = ACTIONS(4491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCite] = ACTIONS(4491), - [anon_sym_BSLASHnocite] = ACTIONS(4491), - [anon_sym_BSLASHcitet] = ACTIONS(4491), - [anon_sym_BSLASHcitep] = ACTIONS(4491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteyear] = ACTIONS(4491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitedate] = ACTIONS(4491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteurl] = ACTIONS(4491), - [anon_sym_BSLASHfullcite] = ACTIONS(4491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), - [anon_sym_BSLASHcitealt] = ACTIONS(4491), - [anon_sym_BSLASHcitealp] = ACTIONS(4491), - [anon_sym_BSLASHcitetext] = ACTIONS(4491), - [anon_sym_BSLASHparencite] = ACTIONS(4491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHParencite] = ACTIONS(4491), - [anon_sym_BSLASHfootcite] = ACTIONS(4491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), - [anon_sym_BSLASHtextcite] = ACTIONS(4491), - [anon_sym_BSLASHTextcite] = ACTIONS(4491), - [anon_sym_BSLASHsmartcite] = ACTIONS(4491), - [anon_sym_BSLASHSmartcite] = ACTIONS(4491), - [anon_sym_BSLASHsupercite] = ACTIONS(4491), - [anon_sym_BSLASHautocite] = ACTIONS(4491), - [anon_sym_BSLASHAutocite] = ACTIONS(4491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHvolcite] = ACTIONS(4491), - [anon_sym_BSLASHVolcite] = ACTIONS(4491), - [anon_sym_BSLASHpvolcite] = ACTIONS(4491), - [anon_sym_BSLASHPvolcite] = ACTIONS(4491), - [anon_sym_BSLASHfvolcite] = ACTIONS(4491), - [anon_sym_BSLASHftvolcite] = ACTIONS(4491), - [anon_sym_BSLASHsvolcite] = ACTIONS(4491), - [anon_sym_BSLASHSvolcite] = ACTIONS(4491), - [anon_sym_BSLASHtvolcite] = ACTIONS(4491), - [anon_sym_BSLASHTvolcite] = ACTIONS(4491), - [anon_sym_BSLASHavolcite] = ACTIONS(4491), - [anon_sym_BSLASHAvolcite] = ACTIONS(4491), - [anon_sym_BSLASHnotecite] = ACTIONS(4491), - [anon_sym_BSLASHNotecite] = ACTIONS(4491), - [anon_sym_BSLASHpnotecite] = ACTIONS(4491), - [anon_sym_BSLASHPnotecite] = ACTIONS(4491), - [anon_sym_BSLASHfnotecite] = ACTIONS(4491), - [anon_sym_BSLASHlabel] = ACTIONS(4491), - [anon_sym_BSLASHref] = ACTIONS(4491), - [anon_sym_BSLASHeqref] = ACTIONS(4491), - [anon_sym_BSLASHvref] = ACTIONS(4491), - [anon_sym_BSLASHVref] = ACTIONS(4491), - [anon_sym_BSLASHautoref] = ACTIONS(4491), - [anon_sym_BSLASHpageref] = ACTIONS(4491), - [anon_sym_BSLASHcref] = ACTIONS(4491), - [anon_sym_BSLASHCref] = ACTIONS(4491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnameCref] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHlabelcref] = ACTIONS(4491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnewlabel] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), - [anon_sym_BSLASHdef] = ACTIONS(4491), - [anon_sym_BSLASHlet] = ACTIONS(4491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), - [anon_sym_BSLASHgls] = ACTIONS(4491), - [anon_sym_BSLASHGls] = ACTIONS(4491), - [anon_sym_BSLASHGLS] = ACTIONS(4491), - [anon_sym_BSLASHglspl] = ACTIONS(4491), - [anon_sym_BSLASHGlspl] = ACTIONS(4491), - [anon_sym_BSLASHGLSpl] = ACTIONS(4491), - [anon_sym_BSLASHglsdisp] = ACTIONS(4491), - [anon_sym_BSLASHglslink] = ACTIONS(4491), - [anon_sym_BSLASHglstext] = ACTIONS(4491), - [anon_sym_BSLASHGlstext] = ACTIONS(4491), - [anon_sym_BSLASHGLStext] = ACTIONS(4491), - [anon_sym_BSLASHglsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), - [anon_sym_BSLASHglsplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSplural] = ACTIONS(4491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHglsname] = ACTIONS(4491), - [anon_sym_BSLASHGlsname] = ACTIONS(4491), - [anon_sym_BSLASHGLSname] = ACTIONS(4491), - [anon_sym_BSLASHglssymbol] = ACTIONS(4491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), - [anon_sym_BSLASHglsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), - [anon_sym_BSLASHglsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), - [anon_sym_BSLASHglsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), - [anon_sym_BSLASHglsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), - [anon_sym_BSLASHglsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), - [anon_sym_BSLASHnewacronym] = ACTIONS(4491), - [anon_sym_BSLASHacrshort] = ACTIONS(4491), - [anon_sym_BSLASHAcrshort] = ACTIONS(4491), - [anon_sym_BSLASHACRshort] = ACTIONS(4491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), - [anon_sym_BSLASHacrlong] = ACTIONS(4491), - [anon_sym_BSLASHAcrlong] = ACTIONS(4491), - [anon_sym_BSLASHACRlong] = ACTIONS(4491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), - [anon_sym_BSLASHacrfull] = ACTIONS(4491), - [anon_sym_BSLASHAcrfull] = ACTIONS(4491), - [anon_sym_BSLASHACRfull] = ACTIONS(4491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), - [anon_sym_BSLASHacs] = ACTIONS(4491), - [anon_sym_BSLASHAcs] = ACTIONS(4491), - [anon_sym_BSLASHacsp] = ACTIONS(4491), - [anon_sym_BSLASHAcsp] = ACTIONS(4491), - [anon_sym_BSLASHacl] = ACTIONS(4491), - [anon_sym_BSLASHAcl] = ACTIONS(4491), - [anon_sym_BSLASHaclp] = ACTIONS(4491), - [anon_sym_BSLASHAclp] = ACTIONS(4491), - [anon_sym_BSLASHacf] = ACTIONS(4491), - [anon_sym_BSLASHAcf] = ACTIONS(4491), - [anon_sym_BSLASHacfp] = ACTIONS(4491), - [anon_sym_BSLASHAcfp] = ACTIONS(4491), - [anon_sym_BSLASHac] = ACTIONS(4491), - [anon_sym_BSLASHAc] = ACTIONS(4491), - [anon_sym_BSLASHacp] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), - [anon_sym_BSLASHcolor] = ACTIONS(4491), - [anon_sym_BSLASHcolorbox] = ACTIONS(4491), - [anon_sym_BSLASHtextcolor] = ACTIONS(4491), - [anon_sym_BSLASHpagecolor] = ACTIONS(4491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), - [anon_sym_BSLASHtext] = ACTIONS(4491), - [anon_sym_BSLASHintertext] = ACTIONS(4491), - [anon_sym_shortintertext] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_RBRACE] = ACTIONS(4568), + [sym_word] = ACTIONS(4570), + [sym_placeholder] = ACTIONS(4568), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym__] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_SQUOTE] = ACTIONS(4570), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4568), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4568), + [anon_sym_BSLASHbegin] = ACTIONS(4570), + [anon_sym_BSLASHusepackage] = ACTIONS(4570), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4570), + [anon_sym_BSLASHinclude] = ACTIONS(4570), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4570), + [anon_sym_BSLASHinput] = ACTIONS(4570), + [anon_sym_BSLASHsubfile] = ACTIONS(4570), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4570), + [anon_sym_BSLASHbibliography] = ACTIONS(4570), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4570), + [anon_sym_BSLASHincludesvg] = ACTIONS(4570), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4570), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4570), + [anon_sym_BSLASHimport] = ACTIONS(4570), + [anon_sym_BSLASHsubimport] = ACTIONS(4570), + [anon_sym_BSLASHinputfrom] = ACTIONS(4570), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4570), + [anon_sym_BSLASHincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHcaption] = ACTIONS(4570), + [anon_sym_BSLASHcite] = ACTIONS(4570), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCite] = ACTIONS(4570), + [anon_sym_BSLASHnocite] = ACTIONS(4570), + [anon_sym_BSLASHcitet] = ACTIONS(4570), + [anon_sym_BSLASHcitep] = ACTIONS(4570), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteauthor] = ACTIONS(4570), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4570), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitetitle] = ACTIONS(4570), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteyear] = ACTIONS(4570), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitedate] = ACTIONS(4570), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteurl] = ACTIONS(4570), + [anon_sym_BSLASHfullcite] = ACTIONS(4570), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4570), + [anon_sym_BSLASHcitealt] = ACTIONS(4570), + [anon_sym_BSLASHcitealp] = ACTIONS(4570), + [anon_sym_BSLASHcitetext] = ACTIONS(4570), + [anon_sym_BSLASHparencite] = ACTIONS(4570), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHParencite] = ACTIONS(4570), + [anon_sym_BSLASHfootcite] = ACTIONS(4570), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4570), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4570), + [anon_sym_BSLASHtextcite] = ACTIONS(4570), + [anon_sym_BSLASHTextcite] = ACTIONS(4570), + [anon_sym_BSLASHsmartcite] = ACTIONS(4570), + [anon_sym_BSLASHSmartcite] = ACTIONS(4570), + [anon_sym_BSLASHsupercite] = ACTIONS(4570), + [anon_sym_BSLASHautocite] = ACTIONS(4570), + [anon_sym_BSLASHAutocite] = ACTIONS(4570), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHvolcite] = ACTIONS(4570), + [anon_sym_BSLASHVolcite] = ACTIONS(4570), + [anon_sym_BSLASHpvolcite] = ACTIONS(4570), + [anon_sym_BSLASHPvolcite] = ACTIONS(4570), + [anon_sym_BSLASHfvolcite] = ACTIONS(4570), + [anon_sym_BSLASHftvolcite] = ACTIONS(4570), + [anon_sym_BSLASHsvolcite] = ACTIONS(4570), + [anon_sym_BSLASHSvolcite] = ACTIONS(4570), + [anon_sym_BSLASHtvolcite] = ACTIONS(4570), + [anon_sym_BSLASHTvolcite] = ACTIONS(4570), + [anon_sym_BSLASHavolcite] = ACTIONS(4570), + [anon_sym_BSLASHAvolcite] = ACTIONS(4570), + [anon_sym_BSLASHnotecite] = ACTIONS(4570), + [anon_sym_BSLASHNotecite] = ACTIONS(4570), + [anon_sym_BSLASHpnotecite] = ACTIONS(4570), + [anon_sym_BSLASHPnotecite] = ACTIONS(4570), + [anon_sym_BSLASHfnotecite] = ACTIONS(4570), + [anon_sym_BSLASHlabel] = ACTIONS(4570), + [anon_sym_BSLASHref] = ACTIONS(4570), + [anon_sym_BSLASHeqref] = ACTIONS(4570), + [anon_sym_BSLASHvref] = ACTIONS(4570), + [anon_sym_BSLASHVref] = ACTIONS(4570), + [anon_sym_BSLASHautoref] = ACTIONS(4570), + [anon_sym_BSLASHpageref] = ACTIONS(4570), + [anon_sym_BSLASHcref] = ACTIONS(4570), + [anon_sym_BSLASHCref] = ACTIONS(4570), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnameCref] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHlabelcref] = ACTIONS(4570), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCrefrange] = ACTIONS(4570), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnewlabel] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4570), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4570), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdef] = ACTIONS(4570), + [anon_sym_BSLASHlet] = ACTIONS(4570), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4570), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4570), + [anon_sym_BSLASHgls] = ACTIONS(4570), + [anon_sym_BSLASHGls] = ACTIONS(4570), + [anon_sym_BSLASHGLS] = ACTIONS(4570), + [anon_sym_BSLASHglspl] = ACTIONS(4570), + [anon_sym_BSLASHGlspl] = ACTIONS(4570), + [anon_sym_BSLASHGLSpl] = ACTIONS(4570), + [anon_sym_BSLASHglsdisp] = ACTIONS(4570), + [anon_sym_BSLASHglslink] = ACTIONS(4570), + [anon_sym_BSLASHglstext] = ACTIONS(4570), + [anon_sym_BSLASHGlstext] = ACTIONS(4570), + [anon_sym_BSLASHGLStext] = ACTIONS(4570), + [anon_sym_BSLASHglsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4570), + [anon_sym_BSLASHglsplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSplural] = ACTIONS(4570), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHglsname] = ACTIONS(4570), + [anon_sym_BSLASHGlsname] = ACTIONS(4570), + [anon_sym_BSLASHGLSname] = ACTIONS(4570), + [anon_sym_BSLASHglssymbol] = ACTIONS(4570), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4570), + [anon_sym_BSLASHglsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4570), + [anon_sym_BSLASHglsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4570), + [anon_sym_BSLASHglsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4570), + [anon_sym_BSLASHglsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4570), + [anon_sym_BSLASHglsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4570), + [anon_sym_BSLASHnewacronym] = ACTIONS(4570), + [anon_sym_BSLASHacrshort] = ACTIONS(4570), + [anon_sym_BSLASHAcrshort] = ACTIONS(4570), + [anon_sym_BSLASHACRshort] = ACTIONS(4570), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4570), + [anon_sym_BSLASHacrlong] = ACTIONS(4570), + [anon_sym_BSLASHAcrlong] = ACTIONS(4570), + [anon_sym_BSLASHACRlong] = ACTIONS(4570), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4570), + [anon_sym_BSLASHacrfull] = ACTIONS(4570), + [anon_sym_BSLASHAcrfull] = ACTIONS(4570), + [anon_sym_BSLASHACRfull] = ACTIONS(4570), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4570), + [anon_sym_BSLASHacs] = ACTIONS(4570), + [anon_sym_BSLASHAcs] = ACTIONS(4570), + [anon_sym_BSLASHacsp] = ACTIONS(4570), + [anon_sym_BSLASHAcsp] = ACTIONS(4570), + [anon_sym_BSLASHacl] = ACTIONS(4570), + [anon_sym_BSLASHAcl] = ACTIONS(4570), + [anon_sym_BSLASHaclp] = ACTIONS(4570), + [anon_sym_BSLASHAclp] = ACTIONS(4570), + [anon_sym_BSLASHacf] = ACTIONS(4570), + [anon_sym_BSLASHAcf] = ACTIONS(4570), + [anon_sym_BSLASHacfp] = ACTIONS(4570), + [anon_sym_BSLASHAcfp] = ACTIONS(4570), + [anon_sym_BSLASHac] = ACTIONS(4570), + [anon_sym_BSLASHAc] = ACTIONS(4570), + [anon_sym_BSLASHacp] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4570), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4570), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4570), + [anon_sym_BSLASHcolor] = ACTIONS(4570), + [anon_sym_BSLASHcolorbox] = ACTIONS(4570), + [anon_sym_BSLASHtextcolor] = ACTIONS(4570), + [anon_sym_BSLASHpagecolor] = ACTIONS(4570), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4570), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4570), + [anon_sym_BSLASHtext] = ACTIONS(4570), + [anon_sym_BSLASHintertext] = ACTIONS(4570), + [anon_sym_shortintertext] = ACTIONS(4570), }, [311] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [312] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [313] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [314] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [315] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [316] = { [sym__section_declaration] = STATE(142), [sym_section] = STATE(328), [aux_sym__section_repeat3] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), [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(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [317] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [318] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [319] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [320] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [321] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [322] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [323] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(4493), - [sym_command_name] = ACTIONS(4495), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4493), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [anon_sym_RBRACK] = ACTIONS(4493), - [anon_sym_COMMA] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_BSLASHpart] = ACTIONS(4495), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddpart] = ACTIONS(4495), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHchapter] = ACTIONS(4495), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddchap] = ACTIONS(4495), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsection] = ACTIONS(4495), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddsec] = ACTIONS(4495), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHparagraph] = ACTIONS(4495), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHitem] = ACTIONS(4497), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_RBRACE] = ACTIONS(4493), - [sym_word] = ACTIONS(4495), - [sym_placeholder] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_CARET] = ACTIONS(4495), - [anon_sym__] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_PIPE] = ACTIONS(4495), - [anon_sym_COLON] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), - [anon_sym_BSLASHbegin] = ACTIONS(4495), - [anon_sym_BSLASHusepackage] = ACTIONS(4495), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), - [anon_sym_BSLASHinclude] = ACTIONS(4495), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), - [anon_sym_BSLASHinput] = ACTIONS(4495), - [anon_sym_BSLASHsubfile] = ACTIONS(4495), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), - [anon_sym_BSLASHbibliography] = ACTIONS(4495), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), - [anon_sym_BSLASHincludesvg] = ACTIONS(4495), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), - [anon_sym_BSLASHimport] = ACTIONS(4495), - [anon_sym_BSLASHsubimport] = ACTIONS(4495), - [anon_sym_BSLASHinputfrom] = ACTIONS(4495), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), - [anon_sym_BSLASHincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHcaption] = ACTIONS(4495), - [anon_sym_BSLASHcite] = ACTIONS(4495), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCite] = ACTIONS(4495), - [anon_sym_BSLASHnocite] = ACTIONS(4495), - [anon_sym_BSLASHcitet] = ACTIONS(4495), - [anon_sym_BSLASHcitep] = ACTIONS(4495), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor] = ACTIONS(4495), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle] = ACTIONS(4495), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteyear] = ACTIONS(4495), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitedate] = ACTIONS(4495), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteurl] = ACTIONS(4495), - [anon_sym_BSLASHfullcite] = ACTIONS(4495), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), - [anon_sym_BSLASHcitealt] = ACTIONS(4495), - [anon_sym_BSLASHcitealp] = ACTIONS(4495), - [anon_sym_BSLASHcitetext] = ACTIONS(4495), - [anon_sym_BSLASHparencite] = ACTIONS(4495), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHParencite] = ACTIONS(4495), - [anon_sym_BSLASHfootcite] = ACTIONS(4495), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), - [anon_sym_BSLASHtextcite] = ACTIONS(4495), - [anon_sym_BSLASHTextcite] = ACTIONS(4495), - [anon_sym_BSLASHsmartcite] = ACTIONS(4495), - [anon_sym_BSLASHSmartcite] = ACTIONS(4495), - [anon_sym_BSLASHsupercite] = ACTIONS(4495), - [anon_sym_BSLASHautocite] = ACTIONS(4495), - [anon_sym_BSLASHAutocite] = ACTIONS(4495), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHvolcite] = ACTIONS(4495), - [anon_sym_BSLASHVolcite] = ACTIONS(4495), - [anon_sym_BSLASHpvolcite] = ACTIONS(4495), - [anon_sym_BSLASHPvolcite] = ACTIONS(4495), - [anon_sym_BSLASHfvolcite] = ACTIONS(4495), - [anon_sym_BSLASHftvolcite] = ACTIONS(4495), - [anon_sym_BSLASHsvolcite] = ACTIONS(4495), - [anon_sym_BSLASHSvolcite] = ACTIONS(4495), - [anon_sym_BSLASHtvolcite] = ACTIONS(4495), - [anon_sym_BSLASHTvolcite] = ACTIONS(4495), - [anon_sym_BSLASHavolcite] = ACTIONS(4495), - [anon_sym_BSLASHAvolcite] = ACTIONS(4495), - [anon_sym_BSLASHnotecite] = ACTIONS(4495), - [anon_sym_BSLASHNotecite] = ACTIONS(4495), - [anon_sym_BSLASHpnotecite] = ACTIONS(4495), - [anon_sym_BSLASHPnotecite] = ACTIONS(4495), - [anon_sym_BSLASHfnotecite] = ACTIONS(4495), - [anon_sym_BSLASHlabel] = ACTIONS(4495), - [anon_sym_BSLASHref] = ACTIONS(4495), - [anon_sym_BSLASHeqref] = ACTIONS(4495), - [anon_sym_BSLASHvref] = ACTIONS(4495), - [anon_sym_BSLASHVref] = ACTIONS(4495), - [anon_sym_BSLASHautoref] = ACTIONS(4495), - [anon_sym_BSLASHpageref] = ACTIONS(4495), - [anon_sym_BSLASHcref] = ACTIONS(4495), - [anon_sym_BSLASHCref] = ACTIONS(4495), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnameCref] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHlabelcref] = ACTIONS(4495), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange] = ACTIONS(4495), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnewlabel] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), - [anon_sym_BSLASHdef] = ACTIONS(4495), - [anon_sym_BSLASHlet] = ACTIONS(4495), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), - [anon_sym_BSLASHgls] = ACTIONS(4495), - [anon_sym_BSLASHGls] = ACTIONS(4495), - [anon_sym_BSLASHGLS] = ACTIONS(4495), - [anon_sym_BSLASHglspl] = ACTIONS(4495), - [anon_sym_BSLASHGlspl] = ACTIONS(4495), - [anon_sym_BSLASHGLSpl] = ACTIONS(4495), - [anon_sym_BSLASHglsdisp] = ACTIONS(4495), - [anon_sym_BSLASHglslink] = ACTIONS(4495), - [anon_sym_BSLASHglstext] = ACTIONS(4495), - [anon_sym_BSLASHGlstext] = ACTIONS(4495), - [anon_sym_BSLASHGLStext] = ACTIONS(4495), - [anon_sym_BSLASHglsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), - [anon_sym_BSLASHglsplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSplural] = ACTIONS(4495), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHglsname] = ACTIONS(4495), - [anon_sym_BSLASHGlsname] = ACTIONS(4495), - [anon_sym_BSLASHGLSname] = ACTIONS(4495), - [anon_sym_BSLASHglssymbol] = ACTIONS(4495), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), - [anon_sym_BSLASHglsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), - [anon_sym_BSLASHglsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), - [anon_sym_BSLASHglsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), - [anon_sym_BSLASHglsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), - [anon_sym_BSLASHglsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), - [anon_sym_BSLASHnewacronym] = ACTIONS(4495), - [anon_sym_BSLASHacrshort] = ACTIONS(4495), - [anon_sym_BSLASHAcrshort] = ACTIONS(4495), - [anon_sym_BSLASHACRshort] = ACTIONS(4495), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), - [anon_sym_BSLASHacrlong] = ACTIONS(4495), - [anon_sym_BSLASHAcrlong] = ACTIONS(4495), - [anon_sym_BSLASHACRlong] = ACTIONS(4495), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), - [anon_sym_BSLASHacrfull] = ACTIONS(4495), - [anon_sym_BSLASHAcrfull] = ACTIONS(4495), - [anon_sym_BSLASHACRfull] = ACTIONS(4495), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), - [anon_sym_BSLASHacs] = ACTIONS(4495), - [anon_sym_BSLASHAcs] = ACTIONS(4495), - [anon_sym_BSLASHacsp] = ACTIONS(4495), - [anon_sym_BSLASHAcsp] = ACTIONS(4495), - [anon_sym_BSLASHacl] = ACTIONS(4495), - [anon_sym_BSLASHAcl] = ACTIONS(4495), - [anon_sym_BSLASHaclp] = ACTIONS(4495), - [anon_sym_BSLASHAclp] = ACTIONS(4495), - [anon_sym_BSLASHacf] = ACTIONS(4495), - [anon_sym_BSLASHAcf] = ACTIONS(4495), - [anon_sym_BSLASHacfp] = ACTIONS(4495), - [anon_sym_BSLASHAcfp] = ACTIONS(4495), - [anon_sym_BSLASHac] = ACTIONS(4495), - [anon_sym_BSLASHAc] = ACTIONS(4495), - [anon_sym_BSLASHacp] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), - [anon_sym_BSLASHcolor] = ACTIONS(4495), - [anon_sym_BSLASHcolorbox] = ACTIONS(4495), - [anon_sym_BSLASHtextcolor] = ACTIONS(4495), - [anon_sym_BSLASHpagecolor] = ACTIONS(4495), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), - [anon_sym_BSLASHtext] = ACTIONS(4495), - [anon_sym_BSLASHintertext] = ACTIONS(4495), - [anon_sym_shortintertext] = ACTIONS(4495), + [ts_builtin_sym_end] = ACTIONS(4572), + [sym_command_name] = ACTIONS(4574), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4574), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_BSLASHpart] = ACTIONS(4574), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddpart] = ACTIONS(4574), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHchapter] = ACTIONS(4574), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddchap] = ACTIONS(4574), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsection] = ACTIONS(4574), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddsec] = ACTIONS(4574), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHparagraph] = ACTIONS(4574), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4574), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHitem] = ACTIONS(4576), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4579), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_RBRACE] = ACTIONS(4572), + [sym_word] = ACTIONS(4574), + [sym_placeholder] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4574), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4574), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4574), + [anon_sym_BANG] = ACTIONS(4574), + [anon_sym_PIPE] = ACTIONS(4574), + [anon_sym_COLON] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4574), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4574), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4572), + [anon_sym_BSLASHbegin] = ACTIONS(4574), + [anon_sym_BSLASHusepackage] = ACTIONS(4574), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4574), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4574), + [anon_sym_BSLASHinclude] = ACTIONS(4574), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4574), + [anon_sym_BSLASHinput] = ACTIONS(4574), + [anon_sym_BSLASHsubfile] = ACTIONS(4574), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4574), + [anon_sym_BSLASHbibliography] = ACTIONS(4574), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4574), + [anon_sym_BSLASHincludesvg] = ACTIONS(4574), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4574), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4574), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4574), + [anon_sym_BSLASHimport] = ACTIONS(4574), + [anon_sym_BSLASHsubimport] = ACTIONS(4574), + [anon_sym_BSLASHinputfrom] = ACTIONS(4574), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4574), + [anon_sym_BSLASHincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHcaption] = ACTIONS(4574), + [anon_sym_BSLASHcite] = ACTIONS(4574), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCite] = ACTIONS(4574), + [anon_sym_BSLASHnocite] = ACTIONS(4574), + [anon_sym_BSLASHcitet] = ACTIONS(4574), + [anon_sym_BSLASHcitep] = ACTIONS(4574), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteauthor] = ACTIONS(4574), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4574), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitetitle] = ACTIONS(4574), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteyear] = ACTIONS(4574), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitedate] = ACTIONS(4574), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteurl] = ACTIONS(4574), + [anon_sym_BSLASHfullcite] = ACTIONS(4574), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4574), + [anon_sym_BSLASHcitealt] = ACTIONS(4574), + [anon_sym_BSLASHcitealp] = ACTIONS(4574), + [anon_sym_BSLASHcitetext] = ACTIONS(4574), + [anon_sym_BSLASHparencite] = ACTIONS(4574), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHParencite] = ACTIONS(4574), + [anon_sym_BSLASHfootcite] = ACTIONS(4574), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4574), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4574), + [anon_sym_BSLASHtextcite] = ACTIONS(4574), + [anon_sym_BSLASHTextcite] = ACTIONS(4574), + [anon_sym_BSLASHsmartcite] = ACTIONS(4574), + [anon_sym_BSLASHSmartcite] = ACTIONS(4574), + [anon_sym_BSLASHsupercite] = ACTIONS(4574), + [anon_sym_BSLASHautocite] = ACTIONS(4574), + [anon_sym_BSLASHAutocite] = ACTIONS(4574), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHvolcite] = ACTIONS(4574), + [anon_sym_BSLASHVolcite] = ACTIONS(4574), + [anon_sym_BSLASHpvolcite] = ACTIONS(4574), + [anon_sym_BSLASHPvolcite] = ACTIONS(4574), + [anon_sym_BSLASHfvolcite] = ACTIONS(4574), + [anon_sym_BSLASHftvolcite] = ACTIONS(4574), + [anon_sym_BSLASHsvolcite] = ACTIONS(4574), + [anon_sym_BSLASHSvolcite] = ACTIONS(4574), + [anon_sym_BSLASHtvolcite] = ACTIONS(4574), + [anon_sym_BSLASHTvolcite] = ACTIONS(4574), + [anon_sym_BSLASHavolcite] = ACTIONS(4574), + [anon_sym_BSLASHAvolcite] = ACTIONS(4574), + [anon_sym_BSLASHnotecite] = ACTIONS(4574), + [anon_sym_BSLASHNotecite] = ACTIONS(4574), + [anon_sym_BSLASHpnotecite] = ACTIONS(4574), + [anon_sym_BSLASHPnotecite] = ACTIONS(4574), + [anon_sym_BSLASHfnotecite] = ACTIONS(4574), + [anon_sym_BSLASHlabel] = ACTIONS(4574), + [anon_sym_BSLASHref] = ACTIONS(4574), + [anon_sym_BSLASHeqref] = ACTIONS(4574), + [anon_sym_BSLASHvref] = ACTIONS(4574), + [anon_sym_BSLASHVref] = ACTIONS(4574), + [anon_sym_BSLASHautoref] = ACTIONS(4574), + [anon_sym_BSLASHpageref] = ACTIONS(4574), + [anon_sym_BSLASHcref] = ACTIONS(4574), + [anon_sym_BSLASHCref] = ACTIONS(4574), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnameCref] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHlabelcref] = ACTIONS(4574), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCrefrange] = ACTIONS(4574), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnewlabel] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4574), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4574), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4574), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdef] = ACTIONS(4574), + [anon_sym_BSLASHlet] = ACTIONS(4574), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4574), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4574), + [anon_sym_BSLASHgls] = ACTIONS(4574), + [anon_sym_BSLASHGls] = ACTIONS(4574), + [anon_sym_BSLASHGLS] = ACTIONS(4574), + [anon_sym_BSLASHglspl] = ACTIONS(4574), + [anon_sym_BSLASHGlspl] = ACTIONS(4574), + [anon_sym_BSLASHGLSpl] = ACTIONS(4574), + [anon_sym_BSLASHglsdisp] = ACTIONS(4574), + [anon_sym_BSLASHglslink] = ACTIONS(4574), + [anon_sym_BSLASHglstext] = ACTIONS(4574), + [anon_sym_BSLASHGlstext] = ACTIONS(4574), + [anon_sym_BSLASHGLStext] = ACTIONS(4574), + [anon_sym_BSLASHglsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4574), + [anon_sym_BSLASHglsplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSplural] = ACTIONS(4574), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHglsname] = ACTIONS(4574), + [anon_sym_BSLASHGlsname] = ACTIONS(4574), + [anon_sym_BSLASHGLSname] = ACTIONS(4574), + [anon_sym_BSLASHglssymbol] = ACTIONS(4574), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4574), + [anon_sym_BSLASHglsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4574), + [anon_sym_BSLASHglsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4574), + [anon_sym_BSLASHglsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4574), + [anon_sym_BSLASHglsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4574), + [anon_sym_BSLASHglsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4574), + [anon_sym_BSLASHnewacronym] = ACTIONS(4574), + [anon_sym_BSLASHacrshort] = ACTIONS(4574), + [anon_sym_BSLASHAcrshort] = ACTIONS(4574), + [anon_sym_BSLASHACRshort] = ACTIONS(4574), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4574), + [anon_sym_BSLASHacrlong] = ACTIONS(4574), + [anon_sym_BSLASHAcrlong] = ACTIONS(4574), + [anon_sym_BSLASHACRlong] = ACTIONS(4574), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4574), + [anon_sym_BSLASHacrfull] = ACTIONS(4574), + [anon_sym_BSLASHAcrfull] = ACTIONS(4574), + [anon_sym_BSLASHACRfull] = ACTIONS(4574), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4574), + [anon_sym_BSLASHacs] = ACTIONS(4574), + [anon_sym_BSLASHAcs] = ACTIONS(4574), + [anon_sym_BSLASHacsp] = ACTIONS(4574), + [anon_sym_BSLASHAcsp] = ACTIONS(4574), + [anon_sym_BSLASHacl] = ACTIONS(4574), + [anon_sym_BSLASHAcl] = ACTIONS(4574), + [anon_sym_BSLASHaclp] = ACTIONS(4574), + [anon_sym_BSLASHAclp] = ACTIONS(4574), + [anon_sym_BSLASHacf] = ACTIONS(4574), + [anon_sym_BSLASHAcf] = ACTIONS(4574), + [anon_sym_BSLASHacfp] = ACTIONS(4574), + [anon_sym_BSLASHAcfp] = ACTIONS(4574), + [anon_sym_BSLASHac] = ACTIONS(4574), + [anon_sym_BSLASHAc] = ACTIONS(4574), + [anon_sym_BSLASHacp] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4574), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4574), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4574), + [anon_sym_BSLASHcolor] = ACTIONS(4574), + [anon_sym_BSLASHcolorbox] = ACTIONS(4574), + [anon_sym_BSLASHtextcolor] = ACTIONS(4574), + [anon_sym_BSLASHpagecolor] = ACTIONS(4574), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4574), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4574), + [anon_sym_BSLASHtext] = ACTIONS(4574), + [anon_sym_BSLASHintertext] = ACTIONS(4574), + [anon_sym_shortintertext] = ACTIONS(4574), }, [324] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(4503), - [sym_command_name] = ACTIONS(4505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_BSLASHpart] = ACTIONS(4505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddpart] = ACTIONS(4505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHchapter] = ACTIONS(4505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddchap] = ACTIONS(4505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsection] = ACTIONS(4505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddsec] = ACTIONS(4505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHparagraph] = ACTIONS(4505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4507), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4510), - [anon_sym_BSLASHitem] = ACTIONS(4505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), - [anon_sym_LBRACE] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4503), - [sym_word] = ACTIONS(4505), - [sym_placeholder] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(4505), - [anon_sym_SLASH] = ACTIONS(4505), - [anon_sym_CARET] = ACTIONS(4505), - [anon_sym__] = ACTIONS(4505), - [anon_sym_LT] = ACTIONS(4505), - [anon_sym_GT] = ACTIONS(4505), - [anon_sym_BANG] = ACTIONS(4505), - [anon_sym_PIPE] = ACTIONS(4505), - [anon_sym_COLON] = ACTIONS(4505), - [anon_sym_SQUOTE] = ACTIONS(4505), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), - [anon_sym_BSLASHbegin] = ACTIONS(4505), - [anon_sym_BSLASHusepackage] = ACTIONS(4505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), - [anon_sym_BSLASHinclude] = ACTIONS(4505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), - [anon_sym_BSLASHinput] = ACTIONS(4505), - [anon_sym_BSLASHsubfile] = ACTIONS(4505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), - [anon_sym_BSLASHbibliography] = ACTIONS(4505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), - [anon_sym_BSLASHincludesvg] = ACTIONS(4505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), - [anon_sym_BSLASHimport] = ACTIONS(4505), - [anon_sym_BSLASHsubimport] = ACTIONS(4505), - [anon_sym_BSLASHinputfrom] = ACTIONS(4505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), - [anon_sym_BSLASHincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHcaption] = ACTIONS(4505), - [anon_sym_BSLASHcite] = ACTIONS(4505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCite] = ACTIONS(4505), - [anon_sym_BSLASHnocite] = ACTIONS(4505), - [anon_sym_BSLASHcitet] = ACTIONS(4505), - [anon_sym_BSLASHcitep] = ACTIONS(4505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor] = ACTIONS(4505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle] = ACTIONS(4505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteyear] = ACTIONS(4505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitedate] = ACTIONS(4505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteurl] = ACTIONS(4505), - [anon_sym_BSLASHfullcite] = ACTIONS(4505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), - [anon_sym_BSLASHcitealt] = ACTIONS(4505), - [anon_sym_BSLASHcitealp] = ACTIONS(4505), - [anon_sym_BSLASHcitetext] = ACTIONS(4505), - [anon_sym_BSLASHparencite] = ACTIONS(4505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHParencite] = ACTIONS(4505), - [anon_sym_BSLASHfootcite] = ACTIONS(4505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), - [anon_sym_BSLASHtextcite] = ACTIONS(4505), - [anon_sym_BSLASHTextcite] = ACTIONS(4505), - [anon_sym_BSLASHsmartcite] = ACTIONS(4505), - [anon_sym_BSLASHSmartcite] = ACTIONS(4505), - [anon_sym_BSLASHsupercite] = ACTIONS(4505), - [anon_sym_BSLASHautocite] = ACTIONS(4505), - [anon_sym_BSLASHAutocite] = ACTIONS(4505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHvolcite] = ACTIONS(4505), - [anon_sym_BSLASHVolcite] = ACTIONS(4505), - [anon_sym_BSLASHpvolcite] = ACTIONS(4505), - [anon_sym_BSLASHPvolcite] = ACTIONS(4505), - [anon_sym_BSLASHfvolcite] = ACTIONS(4505), - [anon_sym_BSLASHftvolcite] = ACTIONS(4505), - [anon_sym_BSLASHsvolcite] = ACTIONS(4505), - [anon_sym_BSLASHSvolcite] = ACTIONS(4505), - [anon_sym_BSLASHtvolcite] = ACTIONS(4505), - [anon_sym_BSLASHTvolcite] = ACTIONS(4505), - [anon_sym_BSLASHavolcite] = ACTIONS(4505), - [anon_sym_BSLASHAvolcite] = ACTIONS(4505), - [anon_sym_BSLASHnotecite] = ACTIONS(4505), - [anon_sym_BSLASHNotecite] = ACTIONS(4505), - [anon_sym_BSLASHpnotecite] = ACTIONS(4505), - [anon_sym_BSLASHPnotecite] = ACTIONS(4505), - [anon_sym_BSLASHfnotecite] = ACTIONS(4505), - [anon_sym_BSLASHlabel] = ACTIONS(4505), - [anon_sym_BSLASHref] = ACTIONS(4505), - [anon_sym_BSLASHeqref] = ACTIONS(4505), - [anon_sym_BSLASHvref] = ACTIONS(4505), - [anon_sym_BSLASHVref] = ACTIONS(4505), - [anon_sym_BSLASHautoref] = ACTIONS(4505), - [anon_sym_BSLASHpageref] = ACTIONS(4505), - [anon_sym_BSLASHcref] = ACTIONS(4505), - [anon_sym_BSLASHCref] = ACTIONS(4505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnameCref] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHlabelcref] = ACTIONS(4505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange] = ACTIONS(4505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnewlabel] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), - [anon_sym_BSLASHdef] = ACTIONS(4505), - [anon_sym_BSLASHlet] = ACTIONS(4505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), - [anon_sym_BSLASHgls] = ACTIONS(4505), - [anon_sym_BSLASHGls] = ACTIONS(4505), - [anon_sym_BSLASHGLS] = ACTIONS(4505), - [anon_sym_BSLASHglspl] = ACTIONS(4505), - [anon_sym_BSLASHGlspl] = ACTIONS(4505), - [anon_sym_BSLASHGLSpl] = ACTIONS(4505), - [anon_sym_BSLASHglsdisp] = ACTIONS(4505), - [anon_sym_BSLASHglslink] = ACTIONS(4505), - [anon_sym_BSLASHglstext] = ACTIONS(4505), - [anon_sym_BSLASHGlstext] = ACTIONS(4505), - [anon_sym_BSLASHGLStext] = ACTIONS(4505), - [anon_sym_BSLASHglsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), - [anon_sym_BSLASHglsplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSplural] = ACTIONS(4505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHglsname] = ACTIONS(4505), - [anon_sym_BSLASHGlsname] = ACTIONS(4505), - [anon_sym_BSLASHGLSname] = ACTIONS(4505), - [anon_sym_BSLASHglssymbol] = ACTIONS(4505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), - [anon_sym_BSLASHglsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), - [anon_sym_BSLASHglsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), - [anon_sym_BSLASHglsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), - [anon_sym_BSLASHglsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), - [anon_sym_BSLASHglsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), - [anon_sym_BSLASHnewacronym] = ACTIONS(4505), - [anon_sym_BSLASHacrshort] = ACTIONS(4505), - [anon_sym_BSLASHAcrshort] = ACTIONS(4505), - [anon_sym_BSLASHACRshort] = ACTIONS(4505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), - [anon_sym_BSLASHacrlong] = ACTIONS(4505), - [anon_sym_BSLASHAcrlong] = ACTIONS(4505), - [anon_sym_BSLASHACRlong] = ACTIONS(4505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), - [anon_sym_BSLASHacrfull] = ACTIONS(4505), - [anon_sym_BSLASHAcrfull] = ACTIONS(4505), - [anon_sym_BSLASHACRfull] = ACTIONS(4505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), - [anon_sym_BSLASHacs] = ACTIONS(4505), - [anon_sym_BSLASHAcs] = ACTIONS(4505), - [anon_sym_BSLASHacsp] = ACTIONS(4505), - [anon_sym_BSLASHAcsp] = ACTIONS(4505), - [anon_sym_BSLASHacl] = ACTIONS(4505), - [anon_sym_BSLASHAcl] = ACTIONS(4505), - [anon_sym_BSLASHaclp] = ACTIONS(4505), - [anon_sym_BSLASHAclp] = ACTIONS(4505), - [anon_sym_BSLASHacf] = ACTIONS(4505), - [anon_sym_BSLASHAcf] = ACTIONS(4505), - [anon_sym_BSLASHacfp] = ACTIONS(4505), - [anon_sym_BSLASHAcfp] = ACTIONS(4505), - [anon_sym_BSLASHac] = ACTIONS(4505), - [anon_sym_BSLASHAc] = ACTIONS(4505), - [anon_sym_BSLASHacp] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), - [anon_sym_BSLASHcolor] = ACTIONS(4505), - [anon_sym_BSLASHcolorbox] = ACTIONS(4505), - [anon_sym_BSLASHtextcolor] = ACTIONS(4505), - [anon_sym_BSLASHpagecolor] = ACTIONS(4505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), - [anon_sym_BSLASHtext] = ACTIONS(4505), - [anon_sym_BSLASHintertext] = ACTIONS(4505), - [anon_sym_shortintertext] = ACTIONS(4505), + [ts_builtin_sym_end] = ACTIONS(4582), + [sym_command_name] = ACTIONS(4584), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_RBRACK] = ACTIONS(4582), + [anon_sym_COMMA] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_BSLASHpart] = ACTIONS(4584), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddpart] = ACTIONS(4584), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHchapter] = ACTIONS(4584), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddchap] = ACTIONS(4584), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsection] = ACTIONS(4584), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddsec] = ACTIONS(4584), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHparagraph] = ACTIONS(4584), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4586), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4589), + [anon_sym_BSLASHitem] = ACTIONS(4584), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4582), + [anon_sym_RBRACE] = ACTIONS(4582), + [sym_word] = ACTIONS(4584), + [sym_placeholder] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym__] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4582), + [anon_sym_BSLASHbegin] = ACTIONS(4584), + [anon_sym_BSLASHusepackage] = ACTIONS(4584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4584), + [anon_sym_BSLASHinclude] = ACTIONS(4584), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4584), + [anon_sym_BSLASHinput] = ACTIONS(4584), + [anon_sym_BSLASHsubfile] = ACTIONS(4584), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4584), + [anon_sym_BSLASHbibliography] = ACTIONS(4584), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4584), + [anon_sym_BSLASHincludesvg] = ACTIONS(4584), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4584), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4584), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4584), + [anon_sym_BSLASHimport] = ACTIONS(4584), + [anon_sym_BSLASHsubimport] = ACTIONS(4584), + [anon_sym_BSLASHinputfrom] = ACTIONS(4584), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4584), + [anon_sym_BSLASHincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHcaption] = ACTIONS(4584), + [anon_sym_BSLASHcite] = ACTIONS(4584), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCite] = ACTIONS(4584), + [anon_sym_BSLASHnocite] = ACTIONS(4584), + [anon_sym_BSLASHcitet] = ACTIONS(4584), + [anon_sym_BSLASHcitep] = ACTIONS(4584), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteauthor] = ACTIONS(4584), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4584), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitetitle] = ACTIONS(4584), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteyear] = ACTIONS(4584), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitedate] = ACTIONS(4584), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteurl] = ACTIONS(4584), + [anon_sym_BSLASHfullcite] = ACTIONS(4584), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4584), + [anon_sym_BSLASHcitealt] = ACTIONS(4584), + [anon_sym_BSLASHcitealp] = ACTIONS(4584), + [anon_sym_BSLASHcitetext] = ACTIONS(4584), + [anon_sym_BSLASHparencite] = ACTIONS(4584), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHParencite] = ACTIONS(4584), + [anon_sym_BSLASHfootcite] = ACTIONS(4584), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4584), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4584), + [anon_sym_BSLASHtextcite] = ACTIONS(4584), + [anon_sym_BSLASHTextcite] = ACTIONS(4584), + [anon_sym_BSLASHsmartcite] = ACTIONS(4584), + [anon_sym_BSLASHSmartcite] = ACTIONS(4584), + [anon_sym_BSLASHsupercite] = ACTIONS(4584), + [anon_sym_BSLASHautocite] = ACTIONS(4584), + [anon_sym_BSLASHAutocite] = ACTIONS(4584), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHvolcite] = ACTIONS(4584), + [anon_sym_BSLASHVolcite] = ACTIONS(4584), + [anon_sym_BSLASHpvolcite] = ACTIONS(4584), + [anon_sym_BSLASHPvolcite] = ACTIONS(4584), + [anon_sym_BSLASHfvolcite] = ACTIONS(4584), + [anon_sym_BSLASHftvolcite] = ACTIONS(4584), + [anon_sym_BSLASHsvolcite] = ACTIONS(4584), + [anon_sym_BSLASHSvolcite] = ACTIONS(4584), + [anon_sym_BSLASHtvolcite] = ACTIONS(4584), + [anon_sym_BSLASHTvolcite] = ACTIONS(4584), + [anon_sym_BSLASHavolcite] = ACTIONS(4584), + [anon_sym_BSLASHAvolcite] = ACTIONS(4584), + [anon_sym_BSLASHnotecite] = ACTIONS(4584), + [anon_sym_BSLASHNotecite] = ACTIONS(4584), + [anon_sym_BSLASHpnotecite] = ACTIONS(4584), + [anon_sym_BSLASHPnotecite] = ACTIONS(4584), + [anon_sym_BSLASHfnotecite] = ACTIONS(4584), + [anon_sym_BSLASHlabel] = ACTIONS(4584), + [anon_sym_BSLASHref] = ACTIONS(4584), + [anon_sym_BSLASHeqref] = ACTIONS(4584), + [anon_sym_BSLASHvref] = ACTIONS(4584), + [anon_sym_BSLASHVref] = ACTIONS(4584), + [anon_sym_BSLASHautoref] = ACTIONS(4584), + [anon_sym_BSLASHpageref] = ACTIONS(4584), + [anon_sym_BSLASHcref] = ACTIONS(4584), + [anon_sym_BSLASHCref] = ACTIONS(4584), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnameCref] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHlabelcref] = ACTIONS(4584), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCrefrange] = ACTIONS(4584), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnewlabel] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4584), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4584), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4584), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdef] = ACTIONS(4584), + [anon_sym_BSLASHlet] = ACTIONS(4584), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4584), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4584), + [anon_sym_BSLASHgls] = ACTIONS(4584), + [anon_sym_BSLASHGls] = ACTIONS(4584), + [anon_sym_BSLASHGLS] = ACTIONS(4584), + [anon_sym_BSLASHglspl] = ACTIONS(4584), + [anon_sym_BSLASHGlspl] = ACTIONS(4584), + [anon_sym_BSLASHGLSpl] = ACTIONS(4584), + [anon_sym_BSLASHglsdisp] = ACTIONS(4584), + [anon_sym_BSLASHglslink] = ACTIONS(4584), + [anon_sym_BSLASHglstext] = ACTIONS(4584), + [anon_sym_BSLASHGlstext] = ACTIONS(4584), + [anon_sym_BSLASHGLStext] = ACTIONS(4584), + [anon_sym_BSLASHglsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4584), + [anon_sym_BSLASHglsplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSplural] = ACTIONS(4584), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHglsname] = ACTIONS(4584), + [anon_sym_BSLASHGlsname] = ACTIONS(4584), + [anon_sym_BSLASHGLSname] = ACTIONS(4584), + [anon_sym_BSLASHglssymbol] = ACTIONS(4584), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4584), + [anon_sym_BSLASHglsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4584), + [anon_sym_BSLASHglsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4584), + [anon_sym_BSLASHglsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4584), + [anon_sym_BSLASHglsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4584), + [anon_sym_BSLASHglsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4584), + [anon_sym_BSLASHnewacronym] = ACTIONS(4584), + [anon_sym_BSLASHacrshort] = ACTIONS(4584), + [anon_sym_BSLASHAcrshort] = ACTIONS(4584), + [anon_sym_BSLASHACRshort] = ACTIONS(4584), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4584), + [anon_sym_BSLASHacrlong] = ACTIONS(4584), + [anon_sym_BSLASHAcrlong] = ACTIONS(4584), + [anon_sym_BSLASHACRlong] = ACTIONS(4584), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4584), + [anon_sym_BSLASHacrfull] = ACTIONS(4584), + [anon_sym_BSLASHAcrfull] = ACTIONS(4584), + [anon_sym_BSLASHACRfull] = ACTIONS(4584), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4584), + [anon_sym_BSLASHacs] = ACTIONS(4584), + [anon_sym_BSLASHAcs] = ACTIONS(4584), + [anon_sym_BSLASHacsp] = ACTIONS(4584), + [anon_sym_BSLASHAcsp] = ACTIONS(4584), + [anon_sym_BSLASHacl] = ACTIONS(4584), + [anon_sym_BSLASHAcl] = ACTIONS(4584), + [anon_sym_BSLASHaclp] = ACTIONS(4584), + [anon_sym_BSLASHAclp] = ACTIONS(4584), + [anon_sym_BSLASHacf] = ACTIONS(4584), + [anon_sym_BSLASHAcf] = ACTIONS(4584), + [anon_sym_BSLASHacfp] = ACTIONS(4584), + [anon_sym_BSLASHAcfp] = ACTIONS(4584), + [anon_sym_BSLASHac] = ACTIONS(4584), + [anon_sym_BSLASHAc] = ACTIONS(4584), + [anon_sym_BSLASHacp] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4584), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4584), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4584), + [anon_sym_BSLASHcolor] = ACTIONS(4584), + [anon_sym_BSLASHcolorbox] = ACTIONS(4584), + [anon_sym_BSLASHtextcolor] = ACTIONS(4584), + [anon_sym_BSLASHpagecolor] = ACTIONS(4584), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4584), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4584), + [anon_sym_BSLASHtext] = ACTIONS(4584), + [anon_sym_BSLASHintertext] = ACTIONS(4584), + [anon_sym_shortintertext] = ACTIONS(4584), }, [325] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(4513), - [sym_command_name] = ACTIONS(4515), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_RPAREN] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [anon_sym_RBRACK] = ACTIONS(4513), - [anon_sym_COMMA] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_BSLASHpart] = ACTIONS(4515), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddpart] = ACTIONS(4515), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHchapter] = ACTIONS(4515), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddchap] = ACTIONS(4515), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsection] = ACTIONS(4515), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddsec] = ACTIONS(4515), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHparagraph] = ACTIONS(4517), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4520), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), - [anon_sym_BSLASHitem] = ACTIONS(4515), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4513), - [anon_sym_RBRACE] = ACTIONS(4513), - [sym_word] = ACTIONS(4515), - [sym_placeholder] = ACTIONS(4513), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_SLASH] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym__] = ACTIONS(4515), - [anon_sym_LT] = ACTIONS(4515), - [anon_sym_GT] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_PIPE] = ACTIONS(4515), - [anon_sym_COLON] = ACTIONS(4515), - [anon_sym_SQUOTE] = ACTIONS(4515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), - [anon_sym_DOLLAR] = ACTIONS(4515), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), - [anon_sym_BSLASHbegin] = ACTIONS(4515), - [anon_sym_BSLASHusepackage] = ACTIONS(4515), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), - [anon_sym_BSLASHinclude] = ACTIONS(4515), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), - [anon_sym_BSLASHinput] = ACTIONS(4515), - [anon_sym_BSLASHsubfile] = ACTIONS(4515), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), - [anon_sym_BSLASHbibliography] = ACTIONS(4515), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), - [anon_sym_BSLASHincludesvg] = ACTIONS(4515), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), - [anon_sym_BSLASHimport] = ACTIONS(4515), - [anon_sym_BSLASHsubimport] = ACTIONS(4515), - [anon_sym_BSLASHinputfrom] = ACTIONS(4515), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), - [anon_sym_BSLASHincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHcaption] = ACTIONS(4515), - [anon_sym_BSLASHcite] = ACTIONS(4515), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCite] = ACTIONS(4515), - [anon_sym_BSLASHnocite] = ACTIONS(4515), - [anon_sym_BSLASHcitet] = ACTIONS(4515), - [anon_sym_BSLASHcitep] = ACTIONS(4515), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor] = ACTIONS(4515), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle] = ACTIONS(4515), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteyear] = ACTIONS(4515), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitedate] = ACTIONS(4515), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteurl] = ACTIONS(4515), - [anon_sym_BSLASHfullcite] = ACTIONS(4515), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), - [anon_sym_BSLASHcitealt] = ACTIONS(4515), - [anon_sym_BSLASHcitealp] = ACTIONS(4515), - [anon_sym_BSLASHcitetext] = ACTIONS(4515), - [anon_sym_BSLASHparencite] = ACTIONS(4515), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHParencite] = ACTIONS(4515), - [anon_sym_BSLASHfootcite] = ACTIONS(4515), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), - [anon_sym_BSLASHtextcite] = ACTIONS(4515), - [anon_sym_BSLASHTextcite] = ACTIONS(4515), - [anon_sym_BSLASHsmartcite] = ACTIONS(4515), - [anon_sym_BSLASHSmartcite] = ACTIONS(4515), - [anon_sym_BSLASHsupercite] = ACTIONS(4515), - [anon_sym_BSLASHautocite] = ACTIONS(4515), - [anon_sym_BSLASHAutocite] = ACTIONS(4515), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHvolcite] = ACTIONS(4515), - [anon_sym_BSLASHVolcite] = ACTIONS(4515), - [anon_sym_BSLASHpvolcite] = ACTIONS(4515), - [anon_sym_BSLASHPvolcite] = ACTIONS(4515), - [anon_sym_BSLASHfvolcite] = ACTIONS(4515), - [anon_sym_BSLASHftvolcite] = ACTIONS(4515), - [anon_sym_BSLASHsvolcite] = ACTIONS(4515), - [anon_sym_BSLASHSvolcite] = ACTIONS(4515), - [anon_sym_BSLASHtvolcite] = ACTIONS(4515), - [anon_sym_BSLASHTvolcite] = ACTIONS(4515), - [anon_sym_BSLASHavolcite] = ACTIONS(4515), - [anon_sym_BSLASHAvolcite] = ACTIONS(4515), - [anon_sym_BSLASHnotecite] = ACTIONS(4515), - [anon_sym_BSLASHNotecite] = ACTIONS(4515), - [anon_sym_BSLASHpnotecite] = ACTIONS(4515), - [anon_sym_BSLASHPnotecite] = ACTIONS(4515), - [anon_sym_BSLASHfnotecite] = ACTIONS(4515), - [anon_sym_BSLASHlabel] = ACTIONS(4515), - [anon_sym_BSLASHref] = ACTIONS(4515), - [anon_sym_BSLASHeqref] = ACTIONS(4515), - [anon_sym_BSLASHvref] = ACTIONS(4515), - [anon_sym_BSLASHVref] = ACTIONS(4515), - [anon_sym_BSLASHautoref] = ACTIONS(4515), - [anon_sym_BSLASHpageref] = ACTIONS(4515), - [anon_sym_BSLASHcref] = ACTIONS(4515), - [anon_sym_BSLASHCref] = ACTIONS(4515), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnameCref] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHlabelcref] = ACTIONS(4515), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange] = ACTIONS(4515), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnewlabel] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), - [anon_sym_BSLASHdef] = ACTIONS(4515), - [anon_sym_BSLASHlet] = ACTIONS(4515), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), - [anon_sym_BSLASHgls] = ACTIONS(4515), - [anon_sym_BSLASHGls] = ACTIONS(4515), - [anon_sym_BSLASHGLS] = ACTIONS(4515), - [anon_sym_BSLASHglspl] = ACTIONS(4515), - [anon_sym_BSLASHGlspl] = ACTIONS(4515), - [anon_sym_BSLASHGLSpl] = ACTIONS(4515), - [anon_sym_BSLASHglsdisp] = ACTIONS(4515), - [anon_sym_BSLASHglslink] = ACTIONS(4515), - [anon_sym_BSLASHglstext] = ACTIONS(4515), - [anon_sym_BSLASHGlstext] = ACTIONS(4515), - [anon_sym_BSLASHGLStext] = ACTIONS(4515), - [anon_sym_BSLASHglsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), - [anon_sym_BSLASHglsplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSplural] = ACTIONS(4515), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHglsname] = ACTIONS(4515), - [anon_sym_BSLASHGlsname] = ACTIONS(4515), - [anon_sym_BSLASHGLSname] = ACTIONS(4515), - [anon_sym_BSLASHglssymbol] = ACTIONS(4515), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), - [anon_sym_BSLASHglsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), - [anon_sym_BSLASHglsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), - [anon_sym_BSLASHglsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), - [anon_sym_BSLASHglsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), - [anon_sym_BSLASHglsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), - [anon_sym_BSLASHnewacronym] = ACTIONS(4515), - [anon_sym_BSLASHacrshort] = ACTIONS(4515), - [anon_sym_BSLASHAcrshort] = ACTIONS(4515), - [anon_sym_BSLASHACRshort] = ACTIONS(4515), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), - [anon_sym_BSLASHacrlong] = ACTIONS(4515), - [anon_sym_BSLASHAcrlong] = ACTIONS(4515), - [anon_sym_BSLASHACRlong] = ACTIONS(4515), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), - [anon_sym_BSLASHacrfull] = ACTIONS(4515), - [anon_sym_BSLASHAcrfull] = ACTIONS(4515), - [anon_sym_BSLASHACRfull] = ACTIONS(4515), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), - [anon_sym_BSLASHacs] = ACTIONS(4515), - [anon_sym_BSLASHAcs] = ACTIONS(4515), - [anon_sym_BSLASHacsp] = ACTIONS(4515), - [anon_sym_BSLASHAcsp] = ACTIONS(4515), - [anon_sym_BSLASHacl] = ACTIONS(4515), - [anon_sym_BSLASHAcl] = ACTIONS(4515), - [anon_sym_BSLASHaclp] = ACTIONS(4515), - [anon_sym_BSLASHAclp] = ACTIONS(4515), - [anon_sym_BSLASHacf] = ACTIONS(4515), - [anon_sym_BSLASHAcf] = ACTIONS(4515), - [anon_sym_BSLASHacfp] = ACTIONS(4515), - [anon_sym_BSLASHAcfp] = ACTIONS(4515), - [anon_sym_BSLASHac] = ACTIONS(4515), - [anon_sym_BSLASHAc] = ACTIONS(4515), - [anon_sym_BSLASHacp] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), - [anon_sym_BSLASHcolor] = ACTIONS(4515), - [anon_sym_BSLASHcolorbox] = ACTIONS(4515), - [anon_sym_BSLASHtextcolor] = ACTIONS(4515), - [anon_sym_BSLASHpagecolor] = ACTIONS(4515), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), - [anon_sym_BSLASHtext] = ACTIONS(4515), - [anon_sym_BSLASHintertext] = ACTIONS(4515), - [anon_sym_shortintertext] = ACTIONS(4515), + [ts_builtin_sym_end] = ACTIONS(4592), + [sym_command_name] = ACTIONS(4594), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_BSLASHpart] = ACTIONS(4594), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddpart] = ACTIONS(4594), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHchapter] = ACTIONS(4594), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddchap] = ACTIONS(4594), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsection] = ACTIONS(4594), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddsec] = ACTIONS(4594), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHparagraph] = ACTIONS(4596), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4599), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4594), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4592), + [anon_sym_BSLASHitem] = ACTIONS(4594), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4592), + [sym_word] = ACTIONS(4594), + [sym_placeholder] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4594), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4592), + [anon_sym_BSLASHbegin] = ACTIONS(4594), + [anon_sym_BSLASHusepackage] = ACTIONS(4594), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4594), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4594), + [anon_sym_BSLASHinclude] = ACTIONS(4594), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4594), + [anon_sym_BSLASHinput] = ACTIONS(4594), + [anon_sym_BSLASHsubfile] = ACTIONS(4594), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4594), + [anon_sym_BSLASHbibliography] = ACTIONS(4594), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4594), + [anon_sym_BSLASHincludesvg] = ACTIONS(4594), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4594), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4594), + [anon_sym_BSLASHimport] = ACTIONS(4594), + [anon_sym_BSLASHsubimport] = ACTIONS(4594), + [anon_sym_BSLASHinputfrom] = ACTIONS(4594), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4594), + [anon_sym_BSLASHincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHcaption] = ACTIONS(4594), + [anon_sym_BSLASHcite] = ACTIONS(4594), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCite] = ACTIONS(4594), + [anon_sym_BSLASHnocite] = ACTIONS(4594), + [anon_sym_BSLASHcitet] = ACTIONS(4594), + [anon_sym_BSLASHcitep] = ACTIONS(4594), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteauthor] = ACTIONS(4594), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4594), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitetitle] = ACTIONS(4594), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteyear] = ACTIONS(4594), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitedate] = ACTIONS(4594), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteurl] = ACTIONS(4594), + [anon_sym_BSLASHfullcite] = ACTIONS(4594), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4594), + [anon_sym_BSLASHcitealt] = ACTIONS(4594), + [anon_sym_BSLASHcitealp] = ACTIONS(4594), + [anon_sym_BSLASHcitetext] = ACTIONS(4594), + [anon_sym_BSLASHparencite] = ACTIONS(4594), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHParencite] = ACTIONS(4594), + [anon_sym_BSLASHfootcite] = ACTIONS(4594), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4594), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4594), + [anon_sym_BSLASHtextcite] = ACTIONS(4594), + [anon_sym_BSLASHTextcite] = ACTIONS(4594), + [anon_sym_BSLASHsmartcite] = ACTIONS(4594), + [anon_sym_BSLASHSmartcite] = ACTIONS(4594), + [anon_sym_BSLASHsupercite] = ACTIONS(4594), + [anon_sym_BSLASHautocite] = ACTIONS(4594), + [anon_sym_BSLASHAutocite] = ACTIONS(4594), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHvolcite] = ACTIONS(4594), + [anon_sym_BSLASHVolcite] = ACTIONS(4594), + [anon_sym_BSLASHpvolcite] = ACTIONS(4594), + [anon_sym_BSLASHPvolcite] = ACTIONS(4594), + [anon_sym_BSLASHfvolcite] = ACTIONS(4594), + [anon_sym_BSLASHftvolcite] = ACTIONS(4594), + [anon_sym_BSLASHsvolcite] = ACTIONS(4594), + [anon_sym_BSLASHSvolcite] = ACTIONS(4594), + [anon_sym_BSLASHtvolcite] = ACTIONS(4594), + [anon_sym_BSLASHTvolcite] = ACTIONS(4594), + [anon_sym_BSLASHavolcite] = ACTIONS(4594), + [anon_sym_BSLASHAvolcite] = ACTIONS(4594), + [anon_sym_BSLASHnotecite] = ACTIONS(4594), + [anon_sym_BSLASHNotecite] = ACTIONS(4594), + [anon_sym_BSLASHpnotecite] = ACTIONS(4594), + [anon_sym_BSLASHPnotecite] = ACTIONS(4594), + [anon_sym_BSLASHfnotecite] = ACTIONS(4594), + [anon_sym_BSLASHlabel] = ACTIONS(4594), + [anon_sym_BSLASHref] = ACTIONS(4594), + [anon_sym_BSLASHeqref] = ACTIONS(4594), + [anon_sym_BSLASHvref] = ACTIONS(4594), + [anon_sym_BSLASHVref] = ACTIONS(4594), + [anon_sym_BSLASHautoref] = ACTIONS(4594), + [anon_sym_BSLASHpageref] = ACTIONS(4594), + [anon_sym_BSLASHcref] = ACTIONS(4594), + [anon_sym_BSLASHCref] = ACTIONS(4594), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnameCref] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHlabelcref] = ACTIONS(4594), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCrefrange] = ACTIONS(4594), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnewlabel] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4594), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4594), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4594), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdef] = ACTIONS(4594), + [anon_sym_BSLASHlet] = ACTIONS(4594), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4594), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4594), + [anon_sym_BSLASHgls] = ACTIONS(4594), + [anon_sym_BSLASHGls] = ACTIONS(4594), + [anon_sym_BSLASHGLS] = ACTIONS(4594), + [anon_sym_BSLASHglspl] = ACTIONS(4594), + [anon_sym_BSLASHGlspl] = ACTIONS(4594), + [anon_sym_BSLASHGLSpl] = ACTIONS(4594), + [anon_sym_BSLASHglsdisp] = ACTIONS(4594), + [anon_sym_BSLASHglslink] = ACTIONS(4594), + [anon_sym_BSLASHglstext] = ACTIONS(4594), + [anon_sym_BSLASHGlstext] = ACTIONS(4594), + [anon_sym_BSLASHGLStext] = ACTIONS(4594), + [anon_sym_BSLASHglsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4594), + [anon_sym_BSLASHglsplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSplural] = ACTIONS(4594), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHglsname] = ACTIONS(4594), + [anon_sym_BSLASHGlsname] = ACTIONS(4594), + [anon_sym_BSLASHGLSname] = ACTIONS(4594), + [anon_sym_BSLASHglssymbol] = ACTIONS(4594), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4594), + [anon_sym_BSLASHglsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4594), + [anon_sym_BSLASHglsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4594), + [anon_sym_BSLASHglsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4594), + [anon_sym_BSLASHglsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4594), + [anon_sym_BSLASHglsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4594), + [anon_sym_BSLASHnewacronym] = ACTIONS(4594), + [anon_sym_BSLASHacrshort] = ACTIONS(4594), + [anon_sym_BSLASHAcrshort] = ACTIONS(4594), + [anon_sym_BSLASHACRshort] = ACTIONS(4594), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4594), + [anon_sym_BSLASHacrlong] = ACTIONS(4594), + [anon_sym_BSLASHAcrlong] = ACTIONS(4594), + [anon_sym_BSLASHACRlong] = ACTIONS(4594), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4594), + [anon_sym_BSLASHacrfull] = ACTIONS(4594), + [anon_sym_BSLASHAcrfull] = ACTIONS(4594), + [anon_sym_BSLASHACRfull] = ACTIONS(4594), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4594), + [anon_sym_BSLASHacs] = ACTIONS(4594), + [anon_sym_BSLASHAcs] = ACTIONS(4594), + [anon_sym_BSLASHacsp] = ACTIONS(4594), + [anon_sym_BSLASHAcsp] = ACTIONS(4594), + [anon_sym_BSLASHacl] = ACTIONS(4594), + [anon_sym_BSLASHAcl] = ACTIONS(4594), + [anon_sym_BSLASHaclp] = ACTIONS(4594), + [anon_sym_BSLASHAclp] = ACTIONS(4594), + [anon_sym_BSLASHacf] = ACTIONS(4594), + [anon_sym_BSLASHAcf] = ACTIONS(4594), + [anon_sym_BSLASHacfp] = ACTIONS(4594), + [anon_sym_BSLASHAcfp] = ACTIONS(4594), + [anon_sym_BSLASHac] = ACTIONS(4594), + [anon_sym_BSLASHAc] = ACTIONS(4594), + [anon_sym_BSLASHacp] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4594), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4594), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4594), + [anon_sym_BSLASHcolor] = ACTIONS(4594), + [anon_sym_BSLASHcolorbox] = ACTIONS(4594), + [anon_sym_BSLASHtextcolor] = ACTIONS(4594), + [anon_sym_BSLASHpagecolor] = ACTIONS(4594), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4594), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4594), + [anon_sym_BSLASHtext] = ACTIONS(4594), + [anon_sym_BSLASHintertext] = ACTIONS(4594), + [anon_sym_shortintertext] = ACTIONS(4594), }, [326] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(4523), - [sym_command_name] = ACTIONS(4525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4525), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4523), - [anon_sym_BSLASHpart] = ACTIONS(4525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddpart] = ACTIONS(4525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHchapter] = ACTIONS(4525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddchap] = ACTIONS(4525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsection] = ACTIONS(4525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddsec] = ACTIONS(4525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsection] = ACTIONS(4525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4527), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4530), - [anon_sym_BSLASHparagraph] = ACTIONS(4525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHitem] = ACTIONS(4525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), - [anon_sym_LBRACE] = ACTIONS(4523), - [anon_sym_RBRACE] = ACTIONS(4523), - [sym_word] = ACTIONS(4525), - [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_DOLLAR_DOLLAR] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), - [anon_sym_DOLLAR] = ACTIONS(4525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), - [anon_sym_BSLASHbegin] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), - [anon_sym_BSLASHinclude] = ACTIONS(4525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), - [anon_sym_BSLASHinput] = ACTIONS(4525), - [anon_sym_BSLASHsubfile] = ACTIONS(4525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), - [anon_sym_BSLASHbibliography] = ACTIONS(4525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), - [anon_sym_BSLASHincludesvg] = ACTIONS(4525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), - [anon_sym_BSLASHimport] = ACTIONS(4525), - [anon_sym_BSLASHsubimport] = ACTIONS(4525), - [anon_sym_BSLASHinputfrom] = ACTIONS(4525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), - [anon_sym_BSLASHincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHcaption] = ACTIONS(4525), - [anon_sym_BSLASHcite] = ACTIONS(4525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCite] = ACTIONS(4525), - [anon_sym_BSLASHnocite] = ACTIONS(4525), - [anon_sym_BSLASHcitet] = ACTIONS(4525), - [anon_sym_BSLASHcitep] = ACTIONS(4525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteauthor] = ACTIONS(4525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitetitle] = ACTIONS(4525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteyear] = ACTIONS(4525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitedate] = ACTIONS(4525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteurl] = ACTIONS(4525), - [anon_sym_BSLASHfullcite] = ACTIONS(4525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), - [anon_sym_BSLASHcitealt] = ACTIONS(4525), - [anon_sym_BSLASHcitealp] = ACTIONS(4525), - [anon_sym_BSLASHcitetext] = ACTIONS(4525), - [anon_sym_BSLASHparencite] = ACTIONS(4525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHParencite] = ACTIONS(4525), - [anon_sym_BSLASHfootcite] = ACTIONS(4525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), - [anon_sym_BSLASHtextcite] = ACTIONS(4525), - [anon_sym_BSLASHTextcite] = ACTIONS(4525), - [anon_sym_BSLASHsmartcite] = ACTIONS(4525), - [anon_sym_BSLASHSmartcite] = ACTIONS(4525), - [anon_sym_BSLASHsupercite] = ACTIONS(4525), - [anon_sym_BSLASHautocite] = ACTIONS(4525), - [anon_sym_BSLASHAutocite] = ACTIONS(4525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHvolcite] = ACTIONS(4525), - [anon_sym_BSLASHVolcite] = ACTIONS(4525), - [anon_sym_BSLASHpvolcite] = ACTIONS(4525), - [anon_sym_BSLASHPvolcite] = ACTIONS(4525), - [anon_sym_BSLASHfvolcite] = ACTIONS(4525), - [anon_sym_BSLASHftvolcite] = ACTIONS(4525), - [anon_sym_BSLASHsvolcite] = ACTIONS(4525), - [anon_sym_BSLASHSvolcite] = ACTIONS(4525), - [anon_sym_BSLASHtvolcite] = ACTIONS(4525), - [anon_sym_BSLASHTvolcite] = ACTIONS(4525), - [anon_sym_BSLASHavolcite] = ACTIONS(4525), - [anon_sym_BSLASHAvolcite] = ACTIONS(4525), - [anon_sym_BSLASHnotecite] = ACTIONS(4525), - [anon_sym_BSLASHNotecite] = ACTIONS(4525), - [anon_sym_BSLASHpnotecite] = ACTIONS(4525), - [anon_sym_BSLASHPnotecite] = ACTIONS(4525), - [anon_sym_BSLASHfnotecite] = ACTIONS(4525), - [anon_sym_BSLASHlabel] = ACTIONS(4525), - [anon_sym_BSLASHref] = ACTIONS(4525), - [anon_sym_BSLASHeqref] = ACTIONS(4525), - [anon_sym_BSLASHvref] = ACTIONS(4525), - [anon_sym_BSLASHVref] = ACTIONS(4525), - [anon_sym_BSLASHautoref] = ACTIONS(4525), - [anon_sym_BSLASHpageref] = ACTIONS(4525), - [anon_sym_BSLASHcref] = ACTIONS(4525), - [anon_sym_BSLASHCref] = ACTIONS(4525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnameCref] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHlabelcref] = ACTIONS(4525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCrefrange] = ACTIONS(4525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnewlabel] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), - [anon_sym_BSLASHdef] = ACTIONS(4525), - [anon_sym_BSLASHlet] = ACTIONS(4525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), - [anon_sym_BSLASHgls] = ACTIONS(4525), - [anon_sym_BSLASHGls] = ACTIONS(4525), - [anon_sym_BSLASHGLS] = ACTIONS(4525), - [anon_sym_BSLASHglspl] = ACTIONS(4525), - [anon_sym_BSLASHGlspl] = ACTIONS(4525), - [anon_sym_BSLASHGLSpl] = ACTIONS(4525), - [anon_sym_BSLASHglsdisp] = ACTIONS(4525), - [anon_sym_BSLASHglslink] = ACTIONS(4525), - [anon_sym_BSLASHglstext] = ACTIONS(4525), - [anon_sym_BSLASHGlstext] = ACTIONS(4525), - [anon_sym_BSLASHGLStext] = ACTIONS(4525), - [anon_sym_BSLASHglsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), - [anon_sym_BSLASHglsplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSplural] = ACTIONS(4525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHglsname] = ACTIONS(4525), - [anon_sym_BSLASHGlsname] = ACTIONS(4525), - [anon_sym_BSLASHGLSname] = ACTIONS(4525), - [anon_sym_BSLASHglssymbol] = ACTIONS(4525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), - [anon_sym_BSLASHglsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), - [anon_sym_BSLASHglsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), - [anon_sym_BSLASHglsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), - [anon_sym_BSLASHglsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), - [anon_sym_BSLASHglsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), - [anon_sym_BSLASHnewacronym] = ACTIONS(4525), - [anon_sym_BSLASHacrshort] = ACTIONS(4525), - [anon_sym_BSLASHAcrshort] = ACTIONS(4525), - [anon_sym_BSLASHACRshort] = ACTIONS(4525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), - [anon_sym_BSLASHacrlong] = ACTIONS(4525), - [anon_sym_BSLASHAcrlong] = ACTIONS(4525), - [anon_sym_BSLASHACRlong] = ACTIONS(4525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), - [anon_sym_BSLASHacrfull] = ACTIONS(4525), - [anon_sym_BSLASHAcrfull] = ACTIONS(4525), - [anon_sym_BSLASHACRfull] = ACTIONS(4525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), - [anon_sym_BSLASHacs] = ACTIONS(4525), - [anon_sym_BSLASHAcs] = ACTIONS(4525), - [anon_sym_BSLASHacsp] = ACTIONS(4525), - [anon_sym_BSLASHAcsp] = ACTIONS(4525), - [anon_sym_BSLASHacl] = ACTIONS(4525), - [anon_sym_BSLASHAcl] = ACTIONS(4525), - [anon_sym_BSLASHaclp] = ACTIONS(4525), - [anon_sym_BSLASHAclp] = ACTIONS(4525), - [anon_sym_BSLASHacf] = ACTIONS(4525), - [anon_sym_BSLASHAcf] = ACTIONS(4525), - [anon_sym_BSLASHacfp] = ACTIONS(4525), - [anon_sym_BSLASHAcfp] = ACTIONS(4525), - [anon_sym_BSLASHac] = ACTIONS(4525), - [anon_sym_BSLASHAc] = ACTIONS(4525), - [anon_sym_BSLASHacp] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), - [anon_sym_BSLASHcolor] = ACTIONS(4525), - [anon_sym_BSLASHcolorbox] = ACTIONS(4525), - [anon_sym_BSLASHtextcolor] = ACTIONS(4525), - [anon_sym_BSLASHpagecolor] = ACTIONS(4525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), - [anon_sym_BSLASHtext] = ACTIONS(4525), - [anon_sym_BSLASHintertext] = ACTIONS(4525), - [anon_sym_shortintertext] = ACTIONS(4525), + [ts_builtin_sym_end] = ACTIONS(4602), + [sym_command_name] = ACTIONS(4604), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(4602), + [anon_sym_COMMA] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_BSLASHpart] = ACTIONS(4604), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddpart] = ACTIONS(4604), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHchapter] = ACTIONS(4604), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddchap] = ACTIONS(4604), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsection] = ACTIONS(4604), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddsec] = ACTIONS(4604), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsection] = ACTIONS(4604), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4606), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4609), + [anon_sym_BSLASHparagraph] = ACTIONS(4604), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4604), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHitem] = ACTIONS(4604), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(4602), + [anon_sym_RBRACE] = ACTIONS(4602), + [sym_word] = ACTIONS(4604), + [sym_placeholder] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym__] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_SQUOTE] = ACTIONS(4604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4602), + [anon_sym_BSLASHbegin] = ACTIONS(4604), + [anon_sym_BSLASHusepackage] = ACTIONS(4604), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4604), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4604), + [anon_sym_BSLASHinclude] = ACTIONS(4604), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4604), + [anon_sym_BSLASHinput] = ACTIONS(4604), + [anon_sym_BSLASHsubfile] = ACTIONS(4604), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4604), + [anon_sym_BSLASHbibliography] = ACTIONS(4604), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4604), + [anon_sym_BSLASHincludesvg] = ACTIONS(4604), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4604), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4604), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4604), + [anon_sym_BSLASHimport] = ACTIONS(4604), + [anon_sym_BSLASHsubimport] = ACTIONS(4604), + [anon_sym_BSLASHinputfrom] = ACTIONS(4604), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4604), + [anon_sym_BSLASHincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHcaption] = ACTIONS(4604), + [anon_sym_BSLASHcite] = ACTIONS(4604), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCite] = ACTIONS(4604), + [anon_sym_BSLASHnocite] = ACTIONS(4604), + [anon_sym_BSLASHcitet] = ACTIONS(4604), + [anon_sym_BSLASHcitep] = ACTIONS(4604), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteauthor] = ACTIONS(4604), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4604), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitetitle] = ACTIONS(4604), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteyear] = ACTIONS(4604), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitedate] = ACTIONS(4604), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteurl] = ACTIONS(4604), + [anon_sym_BSLASHfullcite] = ACTIONS(4604), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4604), + [anon_sym_BSLASHcitealt] = ACTIONS(4604), + [anon_sym_BSLASHcitealp] = ACTIONS(4604), + [anon_sym_BSLASHcitetext] = ACTIONS(4604), + [anon_sym_BSLASHparencite] = ACTIONS(4604), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHParencite] = ACTIONS(4604), + [anon_sym_BSLASHfootcite] = ACTIONS(4604), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4604), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4604), + [anon_sym_BSLASHtextcite] = ACTIONS(4604), + [anon_sym_BSLASHTextcite] = ACTIONS(4604), + [anon_sym_BSLASHsmartcite] = ACTIONS(4604), + [anon_sym_BSLASHSmartcite] = ACTIONS(4604), + [anon_sym_BSLASHsupercite] = ACTIONS(4604), + [anon_sym_BSLASHautocite] = ACTIONS(4604), + [anon_sym_BSLASHAutocite] = ACTIONS(4604), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHvolcite] = ACTIONS(4604), + [anon_sym_BSLASHVolcite] = ACTIONS(4604), + [anon_sym_BSLASHpvolcite] = ACTIONS(4604), + [anon_sym_BSLASHPvolcite] = ACTIONS(4604), + [anon_sym_BSLASHfvolcite] = ACTIONS(4604), + [anon_sym_BSLASHftvolcite] = ACTIONS(4604), + [anon_sym_BSLASHsvolcite] = ACTIONS(4604), + [anon_sym_BSLASHSvolcite] = ACTIONS(4604), + [anon_sym_BSLASHtvolcite] = ACTIONS(4604), + [anon_sym_BSLASHTvolcite] = ACTIONS(4604), + [anon_sym_BSLASHavolcite] = ACTIONS(4604), + [anon_sym_BSLASHAvolcite] = ACTIONS(4604), + [anon_sym_BSLASHnotecite] = ACTIONS(4604), + [anon_sym_BSLASHNotecite] = ACTIONS(4604), + [anon_sym_BSLASHpnotecite] = ACTIONS(4604), + [anon_sym_BSLASHPnotecite] = ACTIONS(4604), + [anon_sym_BSLASHfnotecite] = ACTIONS(4604), + [anon_sym_BSLASHlabel] = ACTIONS(4604), + [anon_sym_BSLASHref] = ACTIONS(4604), + [anon_sym_BSLASHeqref] = ACTIONS(4604), + [anon_sym_BSLASHvref] = ACTIONS(4604), + [anon_sym_BSLASHVref] = ACTIONS(4604), + [anon_sym_BSLASHautoref] = ACTIONS(4604), + [anon_sym_BSLASHpageref] = ACTIONS(4604), + [anon_sym_BSLASHcref] = ACTIONS(4604), + [anon_sym_BSLASHCref] = ACTIONS(4604), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnameCref] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHlabelcref] = ACTIONS(4604), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCrefrange] = ACTIONS(4604), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnewlabel] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4604), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4604), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4604), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdef] = ACTIONS(4604), + [anon_sym_BSLASHlet] = ACTIONS(4604), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4604), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4604), + [anon_sym_BSLASHgls] = ACTIONS(4604), + [anon_sym_BSLASHGls] = ACTIONS(4604), + [anon_sym_BSLASHGLS] = ACTIONS(4604), + [anon_sym_BSLASHglspl] = ACTIONS(4604), + [anon_sym_BSLASHGlspl] = ACTIONS(4604), + [anon_sym_BSLASHGLSpl] = ACTIONS(4604), + [anon_sym_BSLASHglsdisp] = ACTIONS(4604), + [anon_sym_BSLASHglslink] = ACTIONS(4604), + [anon_sym_BSLASHglstext] = ACTIONS(4604), + [anon_sym_BSLASHGlstext] = ACTIONS(4604), + [anon_sym_BSLASHGLStext] = ACTIONS(4604), + [anon_sym_BSLASHglsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4604), + [anon_sym_BSLASHglsplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSplural] = ACTIONS(4604), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHglsname] = ACTIONS(4604), + [anon_sym_BSLASHGlsname] = ACTIONS(4604), + [anon_sym_BSLASHGLSname] = ACTIONS(4604), + [anon_sym_BSLASHglssymbol] = ACTIONS(4604), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4604), + [anon_sym_BSLASHglsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4604), + [anon_sym_BSLASHglsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4604), + [anon_sym_BSLASHglsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4604), + [anon_sym_BSLASHglsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4604), + [anon_sym_BSLASHglsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4604), + [anon_sym_BSLASHnewacronym] = ACTIONS(4604), + [anon_sym_BSLASHacrshort] = ACTIONS(4604), + [anon_sym_BSLASHAcrshort] = ACTIONS(4604), + [anon_sym_BSLASHACRshort] = ACTIONS(4604), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4604), + [anon_sym_BSLASHacrlong] = ACTIONS(4604), + [anon_sym_BSLASHAcrlong] = ACTIONS(4604), + [anon_sym_BSLASHACRlong] = ACTIONS(4604), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4604), + [anon_sym_BSLASHacrfull] = ACTIONS(4604), + [anon_sym_BSLASHAcrfull] = ACTIONS(4604), + [anon_sym_BSLASHACRfull] = ACTIONS(4604), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4604), + [anon_sym_BSLASHacs] = ACTIONS(4604), + [anon_sym_BSLASHAcs] = ACTIONS(4604), + [anon_sym_BSLASHacsp] = ACTIONS(4604), + [anon_sym_BSLASHAcsp] = ACTIONS(4604), + [anon_sym_BSLASHacl] = ACTIONS(4604), + [anon_sym_BSLASHAcl] = ACTIONS(4604), + [anon_sym_BSLASHaclp] = ACTIONS(4604), + [anon_sym_BSLASHAclp] = ACTIONS(4604), + [anon_sym_BSLASHacf] = ACTIONS(4604), + [anon_sym_BSLASHAcf] = ACTIONS(4604), + [anon_sym_BSLASHacfp] = ACTIONS(4604), + [anon_sym_BSLASHAcfp] = ACTIONS(4604), + [anon_sym_BSLASHac] = ACTIONS(4604), + [anon_sym_BSLASHAc] = ACTIONS(4604), + [anon_sym_BSLASHacp] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4604), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4604), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4604), + [anon_sym_BSLASHcolor] = ACTIONS(4604), + [anon_sym_BSLASHcolorbox] = ACTIONS(4604), + [anon_sym_BSLASHtextcolor] = ACTIONS(4604), + [anon_sym_BSLASHpagecolor] = ACTIONS(4604), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4604), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4604), + [anon_sym_BSLASHtext] = ACTIONS(4604), + [anon_sym_BSLASHintertext] = ACTIONS(4604), + [anon_sym_shortintertext] = ACTIONS(4604), }, [327] = { [sym__subsection_declaration] = STATE(152), [sym_subsection] = STATE(327), [aux_sym__section_repeat4] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(4533), - [sym_command_name] = ACTIONS(4535), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_RBRACK] = ACTIONS(4533), - [anon_sym_COMMA] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_BSLASHpart] = ACTIONS(4535), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddpart] = ACTIONS(4535), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHchapter] = ACTIONS(4535), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddchap] = ACTIONS(4535), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsection] = ACTIONS(4535), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddsec] = ACTIONS(4535), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubsection] = ACTIONS(4537), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4540), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHparagraph] = ACTIONS(4535), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHitem] = ACTIONS(4535), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [anon_sym_RBRACE] = ACTIONS(4533), - [sym_word] = ACTIONS(4535), - [sym_placeholder] = ACTIONS(4533), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym__] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), - [anon_sym_BSLASHbegin] = ACTIONS(4535), - [anon_sym_BSLASHusepackage] = ACTIONS(4535), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), - [anon_sym_BSLASHinclude] = ACTIONS(4535), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), - [anon_sym_BSLASHinput] = ACTIONS(4535), - [anon_sym_BSLASHsubfile] = ACTIONS(4535), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), - [anon_sym_BSLASHbibliography] = ACTIONS(4535), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), - [anon_sym_BSLASHincludesvg] = ACTIONS(4535), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), - [anon_sym_BSLASHimport] = ACTIONS(4535), - [anon_sym_BSLASHsubimport] = ACTIONS(4535), - [anon_sym_BSLASHinputfrom] = ACTIONS(4535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), - [anon_sym_BSLASHincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHcaption] = ACTIONS(4535), - [anon_sym_BSLASHcite] = ACTIONS(4535), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCite] = ACTIONS(4535), - [anon_sym_BSLASHnocite] = ACTIONS(4535), - [anon_sym_BSLASHcitet] = ACTIONS(4535), - [anon_sym_BSLASHcitep] = ACTIONS(4535), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteauthor] = ACTIONS(4535), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitetitle] = ACTIONS(4535), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteyear] = ACTIONS(4535), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitedate] = ACTIONS(4535), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteurl] = ACTIONS(4535), - [anon_sym_BSLASHfullcite] = ACTIONS(4535), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), - [anon_sym_BSLASHcitealt] = ACTIONS(4535), - [anon_sym_BSLASHcitealp] = ACTIONS(4535), - [anon_sym_BSLASHcitetext] = ACTIONS(4535), - [anon_sym_BSLASHparencite] = ACTIONS(4535), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHParencite] = ACTIONS(4535), - [anon_sym_BSLASHfootcite] = ACTIONS(4535), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), - [anon_sym_BSLASHtextcite] = ACTIONS(4535), - [anon_sym_BSLASHTextcite] = ACTIONS(4535), - [anon_sym_BSLASHsmartcite] = ACTIONS(4535), - [anon_sym_BSLASHSmartcite] = ACTIONS(4535), - [anon_sym_BSLASHsupercite] = ACTIONS(4535), - [anon_sym_BSLASHautocite] = ACTIONS(4535), - [anon_sym_BSLASHAutocite] = ACTIONS(4535), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHvolcite] = ACTIONS(4535), - [anon_sym_BSLASHVolcite] = ACTIONS(4535), - [anon_sym_BSLASHpvolcite] = ACTIONS(4535), - [anon_sym_BSLASHPvolcite] = ACTIONS(4535), - [anon_sym_BSLASHfvolcite] = ACTIONS(4535), - [anon_sym_BSLASHftvolcite] = ACTIONS(4535), - [anon_sym_BSLASHsvolcite] = ACTIONS(4535), - [anon_sym_BSLASHSvolcite] = ACTIONS(4535), - [anon_sym_BSLASHtvolcite] = ACTIONS(4535), - [anon_sym_BSLASHTvolcite] = ACTIONS(4535), - [anon_sym_BSLASHavolcite] = ACTIONS(4535), - [anon_sym_BSLASHAvolcite] = ACTIONS(4535), - [anon_sym_BSLASHnotecite] = ACTIONS(4535), - [anon_sym_BSLASHNotecite] = ACTIONS(4535), - [anon_sym_BSLASHpnotecite] = ACTIONS(4535), - [anon_sym_BSLASHPnotecite] = ACTIONS(4535), - [anon_sym_BSLASHfnotecite] = ACTIONS(4535), - [anon_sym_BSLASHlabel] = ACTIONS(4535), - [anon_sym_BSLASHref] = ACTIONS(4535), - [anon_sym_BSLASHeqref] = ACTIONS(4535), - [anon_sym_BSLASHvref] = ACTIONS(4535), - [anon_sym_BSLASHVref] = ACTIONS(4535), - [anon_sym_BSLASHautoref] = ACTIONS(4535), - [anon_sym_BSLASHpageref] = ACTIONS(4535), - [anon_sym_BSLASHcref] = ACTIONS(4535), - [anon_sym_BSLASHCref] = ACTIONS(4535), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnameCref] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHlabelcref] = ACTIONS(4535), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCrefrange] = ACTIONS(4535), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnewlabel] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), - [anon_sym_BSLASHdef] = ACTIONS(4535), - [anon_sym_BSLASHlet] = ACTIONS(4535), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), - [anon_sym_BSLASHgls] = ACTIONS(4535), - [anon_sym_BSLASHGls] = ACTIONS(4535), - [anon_sym_BSLASHGLS] = ACTIONS(4535), - [anon_sym_BSLASHglspl] = ACTIONS(4535), - [anon_sym_BSLASHGlspl] = ACTIONS(4535), - [anon_sym_BSLASHGLSpl] = ACTIONS(4535), - [anon_sym_BSLASHglsdisp] = ACTIONS(4535), - [anon_sym_BSLASHglslink] = ACTIONS(4535), - [anon_sym_BSLASHglstext] = ACTIONS(4535), - [anon_sym_BSLASHGlstext] = ACTIONS(4535), - [anon_sym_BSLASHGLStext] = ACTIONS(4535), - [anon_sym_BSLASHglsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), - [anon_sym_BSLASHglsplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSplural] = ACTIONS(4535), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHglsname] = ACTIONS(4535), - [anon_sym_BSLASHGlsname] = ACTIONS(4535), - [anon_sym_BSLASHGLSname] = ACTIONS(4535), - [anon_sym_BSLASHglssymbol] = ACTIONS(4535), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), - [anon_sym_BSLASHglsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), - [anon_sym_BSLASHglsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), - [anon_sym_BSLASHglsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), - [anon_sym_BSLASHglsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), - [anon_sym_BSLASHglsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), - [anon_sym_BSLASHnewacronym] = ACTIONS(4535), - [anon_sym_BSLASHacrshort] = ACTIONS(4535), - [anon_sym_BSLASHAcrshort] = ACTIONS(4535), - [anon_sym_BSLASHACRshort] = ACTIONS(4535), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), - [anon_sym_BSLASHacrlong] = ACTIONS(4535), - [anon_sym_BSLASHAcrlong] = ACTIONS(4535), - [anon_sym_BSLASHACRlong] = ACTIONS(4535), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), - [anon_sym_BSLASHacrfull] = ACTIONS(4535), - [anon_sym_BSLASHAcrfull] = ACTIONS(4535), - [anon_sym_BSLASHACRfull] = ACTIONS(4535), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), - [anon_sym_BSLASHacs] = ACTIONS(4535), - [anon_sym_BSLASHAcs] = ACTIONS(4535), - [anon_sym_BSLASHacsp] = ACTIONS(4535), - [anon_sym_BSLASHAcsp] = ACTIONS(4535), - [anon_sym_BSLASHacl] = ACTIONS(4535), - [anon_sym_BSLASHAcl] = ACTIONS(4535), - [anon_sym_BSLASHaclp] = ACTIONS(4535), - [anon_sym_BSLASHAclp] = ACTIONS(4535), - [anon_sym_BSLASHacf] = ACTIONS(4535), - [anon_sym_BSLASHAcf] = ACTIONS(4535), - [anon_sym_BSLASHacfp] = ACTIONS(4535), - [anon_sym_BSLASHAcfp] = ACTIONS(4535), - [anon_sym_BSLASHac] = ACTIONS(4535), - [anon_sym_BSLASHAc] = ACTIONS(4535), - [anon_sym_BSLASHacp] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), - [anon_sym_BSLASHcolor] = ACTIONS(4535), - [anon_sym_BSLASHcolorbox] = ACTIONS(4535), - [anon_sym_BSLASHtextcolor] = ACTIONS(4535), - [anon_sym_BSLASHpagecolor] = ACTIONS(4535), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), - [anon_sym_BSLASHtext] = ACTIONS(4535), - [anon_sym_BSLASHintertext] = ACTIONS(4535), - [anon_sym_shortintertext] = ACTIONS(4535), + [ts_builtin_sym_end] = ACTIONS(4612), + [sym_command_name] = ACTIONS(4614), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_EQ] = ACTIONS(4612), + [anon_sym_BSLASHpart] = ACTIONS(4614), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddpart] = ACTIONS(4614), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHchapter] = ACTIONS(4614), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddchap] = ACTIONS(4614), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsection] = ACTIONS(4614), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddsec] = ACTIONS(4614), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubsection] = ACTIONS(4616), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4619), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4614), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHparagraph] = ACTIONS(4614), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4614), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHitem] = ACTIONS(4614), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_RBRACE] = ACTIONS(4612), + [sym_word] = ACTIONS(4614), + [sym_placeholder] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4614), + [anon_sym__] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_SQUOTE] = ACTIONS(4614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4612), + [anon_sym_BSLASHbegin] = ACTIONS(4614), + [anon_sym_BSLASHusepackage] = ACTIONS(4614), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4614), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4614), + [anon_sym_BSLASHinclude] = ACTIONS(4614), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4614), + [anon_sym_BSLASHinput] = ACTIONS(4614), + [anon_sym_BSLASHsubfile] = ACTIONS(4614), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4614), + [anon_sym_BSLASHbibliography] = ACTIONS(4614), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4614), + [anon_sym_BSLASHincludesvg] = ACTIONS(4614), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4614), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4614), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4614), + [anon_sym_BSLASHimport] = ACTIONS(4614), + [anon_sym_BSLASHsubimport] = ACTIONS(4614), + [anon_sym_BSLASHinputfrom] = ACTIONS(4614), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4614), + [anon_sym_BSLASHincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHcaption] = ACTIONS(4614), + [anon_sym_BSLASHcite] = ACTIONS(4614), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCite] = ACTIONS(4614), + [anon_sym_BSLASHnocite] = ACTIONS(4614), + [anon_sym_BSLASHcitet] = ACTIONS(4614), + [anon_sym_BSLASHcitep] = ACTIONS(4614), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteauthor] = ACTIONS(4614), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4614), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitetitle] = ACTIONS(4614), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteyear] = ACTIONS(4614), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitedate] = ACTIONS(4614), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteurl] = ACTIONS(4614), + [anon_sym_BSLASHfullcite] = ACTIONS(4614), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4614), + [anon_sym_BSLASHcitealt] = ACTIONS(4614), + [anon_sym_BSLASHcitealp] = ACTIONS(4614), + [anon_sym_BSLASHcitetext] = ACTIONS(4614), + [anon_sym_BSLASHparencite] = ACTIONS(4614), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHParencite] = ACTIONS(4614), + [anon_sym_BSLASHfootcite] = ACTIONS(4614), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4614), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4614), + [anon_sym_BSLASHtextcite] = ACTIONS(4614), + [anon_sym_BSLASHTextcite] = ACTIONS(4614), + [anon_sym_BSLASHsmartcite] = ACTIONS(4614), + [anon_sym_BSLASHSmartcite] = ACTIONS(4614), + [anon_sym_BSLASHsupercite] = ACTIONS(4614), + [anon_sym_BSLASHautocite] = ACTIONS(4614), + [anon_sym_BSLASHAutocite] = ACTIONS(4614), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHvolcite] = ACTIONS(4614), + [anon_sym_BSLASHVolcite] = ACTIONS(4614), + [anon_sym_BSLASHpvolcite] = ACTIONS(4614), + [anon_sym_BSLASHPvolcite] = ACTIONS(4614), + [anon_sym_BSLASHfvolcite] = ACTIONS(4614), + [anon_sym_BSLASHftvolcite] = ACTIONS(4614), + [anon_sym_BSLASHsvolcite] = ACTIONS(4614), + [anon_sym_BSLASHSvolcite] = ACTIONS(4614), + [anon_sym_BSLASHtvolcite] = ACTIONS(4614), + [anon_sym_BSLASHTvolcite] = ACTIONS(4614), + [anon_sym_BSLASHavolcite] = ACTIONS(4614), + [anon_sym_BSLASHAvolcite] = ACTIONS(4614), + [anon_sym_BSLASHnotecite] = ACTIONS(4614), + [anon_sym_BSLASHNotecite] = ACTIONS(4614), + [anon_sym_BSLASHpnotecite] = ACTIONS(4614), + [anon_sym_BSLASHPnotecite] = ACTIONS(4614), + [anon_sym_BSLASHfnotecite] = ACTIONS(4614), + [anon_sym_BSLASHlabel] = ACTIONS(4614), + [anon_sym_BSLASHref] = ACTIONS(4614), + [anon_sym_BSLASHeqref] = ACTIONS(4614), + [anon_sym_BSLASHvref] = ACTIONS(4614), + [anon_sym_BSLASHVref] = ACTIONS(4614), + [anon_sym_BSLASHautoref] = ACTIONS(4614), + [anon_sym_BSLASHpageref] = ACTIONS(4614), + [anon_sym_BSLASHcref] = ACTIONS(4614), + [anon_sym_BSLASHCref] = ACTIONS(4614), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnameCref] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHlabelcref] = ACTIONS(4614), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCrefrange] = ACTIONS(4614), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnewlabel] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4614), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4614), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4614), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdef] = ACTIONS(4614), + [anon_sym_BSLASHlet] = ACTIONS(4614), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4614), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4614), + [anon_sym_BSLASHgls] = ACTIONS(4614), + [anon_sym_BSLASHGls] = ACTIONS(4614), + [anon_sym_BSLASHGLS] = ACTIONS(4614), + [anon_sym_BSLASHglspl] = ACTIONS(4614), + [anon_sym_BSLASHGlspl] = ACTIONS(4614), + [anon_sym_BSLASHGLSpl] = ACTIONS(4614), + [anon_sym_BSLASHglsdisp] = ACTIONS(4614), + [anon_sym_BSLASHglslink] = ACTIONS(4614), + [anon_sym_BSLASHglstext] = ACTIONS(4614), + [anon_sym_BSLASHGlstext] = ACTIONS(4614), + [anon_sym_BSLASHGLStext] = ACTIONS(4614), + [anon_sym_BSLASHglsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4614), + [anon_sym_BSLASHglsplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSplural] = ACTIONS(4614), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHglsname] = ACTIONS(4614), + [anon_sym_BSLASHGlsname] = ACTIONS(4614), + [anon_sym_BSLASHGLSname] = ACTIONS(4614), + [anon_sym_BSLASHglssymbol] = ACTIONS(4614), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4614), + [anon_sym_BSLASHglsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4614), + [anon_sym_BSLASHglsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4614), + [anon_sym_BSLASHglsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4614), + [anon_sym_BSLASHglsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4614), + [anon_sym_BSLASHglsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4614), + [anon_sym_BSLASHnewacronym] = ACTIONS(4614), + [anon_sym_BSLASHacrshort] = ACTIONS(4614), + [anon_sym_BSLASHAcrshort] = ACTIONS(4614), + [anon_sym_BSLASHACRshort] = ACTIONS(4614), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4614), + [anon_sym_BSLASHacrlong] = ACTIONS(4614), + [anon_sym_BSLASHAcrlong] = ACTIONS(4614), + [anon_sym_BSLASHACRlong] = ACTIONS(4614), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4614), + [anon_sym_BSLASHacrfull] = ACTIONS(4614), + [anon_sym_BSLASHAcrfull] = ACTIONS(4614), + [anon_sym_BSLASHACRfull] = ACTIONS(4614), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4614), + [anon_sym_BSLASHacs] = ACTIONS(4614), + [anon_sym_BSLASHAcs] = ACTIONS(4614), + [anon_sym_BSLASHacsp] = ACTIONS(4614), + [anon_sym_BSLASHAcsp] = ACTIONS(4614), + [anon_sym_BSLASHacl] = ACTIONS(4614), + [anon_sym_BSLASHAcl] = ACTIONS(4614), + [anon_sym_BSLASHaclp] = ACTIONS(4614), + [anon_sym_BSLASHAclp] = ACTIONS(4614), + [anon_sym_BSLASHacf] = ACTIONS(4614), + [anon_sym_BSLASHAcf] = ACTIONS(4614), + [anon_sym_BSLASHacfp] = ACTIONS(4614), + [anon_sym_BSLASHAcfp] = ACTIONS(4614), + [anon_sym_BSLASHac] = ACTIONS(4614), + [anon_sym_BSLASHAc] = ACTIONS(4614), + [anon_sym_BSLASHacp] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4614), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4614), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4614), + [anon_sym_BSLASHcolor] = ACTIONS(4614), + [anon_sym_BSLASHcolorbox] = ACTIONS(4614), + [anon_sym_BSLASHtextcolor] = ACTIONS(4614), + [anon_sym_BSLASHpagecolor] = ACTIONS(4614), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4614), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4614), + [anon_sym_BSLASHtext] = ACTIONS(4614), + [anon_sym_BSLASHintertext] = ACTIONS(4614), + [anon_sym_shortintertext] = ACTIONS(4614), }, [328] = { [sym__section_declaration] = STATE(142), [sym_section] = STATE(328), [aux_sym__section_repeat3] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(4543), - [sym_command_name] = ACTIONS(4545), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4545), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_RBRACK] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_BSLASHpart] = ACTIONS(4545), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddpart] = ACTIONS(4545), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHchapter] = ACTIONS(4545), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddchap] = ACTIONS(4545), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsection] = ACTIONS(4547), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4550), - [anon_sym_BSLASHaddsec] = ACTIONS(4547), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4550), - [anon_sym_BSLASHsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHparagraph] = ACTIONS(4545), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(4545), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4543), - [sym_word] = ACTIONS(4545), - [sym_placeholder] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym__] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_PIPE] = ACTIONS(4545), - [anon_sym_COLON] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4545), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), - [anon_sym_BSLASHbegin] = ACTIONS(4545), - [anon_sym_BSLASHusepackage] = ACTIONS(4545), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), - [anon_sym_BSLASHinclude] = ACTIONS(4545), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), - [anon_sym_BSLASHinput] = ACTIONS(4545), - [anon_sym_BSLASHsubfile] = ACTIONS(4545), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), - [anon_sym_BSLASHincludesvg] = ACTIONS(4545), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), - [anon_sym_BSLASHimport] = ACTIONS(4545), - [anon_sym_BSLASHsubimport] = ACTIONS(4545), - [anon_sym_BSLASHinputfrom] = ACTIONS(4545), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), - [anon_sym_BSLASHincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHcaption] = ACTIONS(4545), - [anon_sym_BSLASHcite] = ACTIONS(4545), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCite] = ACTIONS(4545), - [anon_sym_BSLASHnocite] = ACTIONS(4545), - [anon_sym_BSLASHcitet] = ACTIONS(4545), - [anon_sym_BSLASHcitep] = ACTIONS(4545), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteauthor] = ACTIONS(4545), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitetitle] = ACTIONS(4545), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteyear] = ACTIONS(4545), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitedate] = ACTIONS(4545), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteurl] = ACTIONS(4545), - [anon_sym_BSLASHfullcite] = ACTIONS(4545), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), - [anon_sym_BSLASHcitealt] = ACTIONS(4545), - [anon_sym_BSLASHcitealp] = ACTIONS(4545), - [anon_sym_BSLASHcitetext] = ACTIONS(4545), - [anon_sym_BSLASHparencite] = ACTIONS(4545), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHParencite] = ACTIONS(4545), - [anon_sym_BSLASHfootcite] = ACTIONS(4545), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), - [anon_sym_BSLASHtextcite] = ACTIONS(4545), - [anon_sym_BSLASHTextcite] = ACTIONS(4545), - [anon_sym_BSLASHsmartcite] = ACTIONS(4545), - [anon_sym_BSLASHSmartcite] = ACTIONS(4545), - [anon_sym_BSLASHsupercite] = ACTIONS(4545), - [anon_sym_BSLASHautocite] = ACTIONS(4545), - [anon_sym_BSLASHAutocite] = ACTIONS(4545), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHvolcite] = ACTIONS(4545), - [anon_sym_BSLASHVolcite] = ACTIONS(4545), - [anon_sym_BSLASHpvolcite] = ACTIONS(4545), - [anon_sym_BSLASHPvolcite] = ACTIONS(4545), - [anon_sym_BSLASHfvolcite] = ACTIONS(4545), - [anon_sym_BSLASHftvolcite] = ACTIONS(4545), - [anon_sym_BSLASHsvolcite] = ACTIONS(4545), - [anon_sym_BSLASHSvolcite] = ACTIONS(4545), - [anon_sym_BSLASHtvolcite] = ACTIONS(4545), - [anon_sym_BSLASHTvolcite] = ACTIONS(4545), - [anon_sym_BSLASHavolcite] = ACTIONS(4545), - [anon_sym_BSLASHAvolcite] = ACTIONS(4545), - [anon_sym_BSLASHnotecite] = ACTIONS(4545), - [anon_sym_BSLASHNotecite] = ACTIONS(4545), - [anon_sym_BSLASHpnotecite] = ACTIONS(4545), - [anon_sym_BSLASHPnotecite] = ACTIONS(4545), - [anon_sym_BSLASHfnotecite] = ACTIONS(4545), - [anon_sym_BSLASHlabel] = ACTIONS(4545), - [anon_sym_BSLASHref] = ACTIONS(4545), - [anon_sym_BSLASHeqref] = ACTIONS(4545), - [anon_sym_BSLASHvref] = ACTIONS(4545), - [anon_sym_BSLASHVref] = ACTIONS(4545), - [anon_sym_BSLASHautoref] = ACTIONS(4545), - [anon_sym_BSLASHpageref] = ACTIONS(4545), - [anon_sym_BSLASHcref] = ACTIONS(4545), - [anon_sym_BSLASHCref] = ACTIONS(4545), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnameCref] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHlabelcref] = ACTIONS(4545), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCrefrange] = ACTIONS(4545), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnewlabel] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), - [anon_sym_BSLASHdef] = ACTIONS(4545), - [anon_sym_BSLASHlet] = ACTIONS(4545), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), - [anon_sym_BSLASHgls] = ACTIONS(4545), - [anon_sym_BSLASHGls] = ACTIONS(4545), - [anon_sym_BSLASHGLS] = ACTIONS(4545), - [anon_sym_BSLASHglspl] = ACTIONS(4545), - [anon_sym_BSLASHGlspl] = ACTIONS(4545), - [anon_sym_BSLASHGLSpl] = ACTIONS(4545), - [anon_sym_BSLASHglsdisp] = ACTIONS(4545), - [anon_sym_BSLASHglslink] = ACTIONS(4545), - [anon_sym_BSLASHglstext] = ACTIONS(4545), - [anon_sym_BSLASHGlstext] = ACTIONS(4545), - [anon_sym_BSLASHGLStext] = ACTIONS(4545), - [anon_sym_BSLASHglsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), - [anon_sym_BSLASHglsplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSplural] = ACTIONS(4545), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHglsname] = ACTIONS(4545), - [anon_sym_BSLASHGlsname] = ACTIONS(4545), - [anon_sym_BSLASHGLSname] = ACTIONS(4545), - [anon_sym_BSLASHglssymbol] = ACTIONS(4545), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), - [anon_sym_BSLASHglsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), - [anon_sym_BSLASHglsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), - [anon_sym_BSLASHglsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), - [anon_sym_BSLASHglsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), - [anon_sym_BSLASHglsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), - [anon_sym_BSLASHnewacronym] = ACTIONS(4545), - [anon_sym_BSLASHacrshort] = ACTIONS(4545), - [anon_sym_BSLASHAcrshort] = ACTIONS(4545), - [anon_sym_BSLASHACRshort] = ACTIONS(4545), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), - [anon_sym_BSLASHacrlong] = ACTIONS(4545), - [anon_sym_BSLASHAcrlong] = ACTIONS(4545), - [anon_sym_BSLASHACRlong] = ACTIONS(4545), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), - [anon_sym_BSLASHacrfull] = ACTIONS(4545), - [anon_sym_BSLASHAcrfull] = ACTIONS(4545), - [anon_sym_BSLASHACRfull] = ACTIONS(4545), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), - [anon_sym_BSLASHacs] = ACTIONS(4545), - [anon_sym_BSLASHAcs] = ACTIONS(4545), - [anon_sym_BSLASHacsp] = ACTIONS(4545), - [anon_sym_BSLASHAcsp] = ACTIONS(4545), - [anon_sym_BSLASHacl] = ACTIONS(4545), - [anon_sym_BSLASHAcl] = ACTIONS(4545), - [anon_sym_BSLASHaclp] = ACTIONS(4545), - [anon_sym_BSLASHAclp] = ACTIONS(4545), - [anon_sym_BSLASHacf] = ACTIONS(4545), - [anon_sym_BSLASHAcf] = ACTIONS(4545), - [anon_sym_BSLASHacfp] = ACTIONS(4545), - [anon_sym_BSLASHAcfp] = ACTIONS(4545), - [anon_sym_BSLASHac] = ACTIONS(4545), - [anon_sym_BSLASHAc] = ACTIONS(4545), - [anon_sym_BSLASHacp] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), - [anon_sym_BSLASHcolor] = ACTIONS(4545), - [anon_sym_BSLASHcolorbox] = ACTIONS(4545), - [anon_sym_BSLASHtextcolor] = ACTIONS(4545), - [anon_sym_BSLASHpagecolor] = ACTIONS(4545), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), - [anon_sym_BSLASHtext] = ACTIONS(4545), - [anon_sym_BSLASHintertext] = ACTIONS(4545), - [anon_sym_shortintertext] = ACTIONS(4545), + [ts_builtin_sym_end] = ACTIONS(4622), + [sym_command_name] = ACTIONS(4624), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(4622), + [anon_sym_BSLASHpart] = ACTIONS(4624), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddpart] = ACTIONS(4624), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHchapter] = ACTIONS(4624), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddchap] = ACTIONS(4624), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsection] = ACTIONS(4626), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4629), + [anon_sym_BSLASHaddsec] = ACTIONS(4626), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4629), + [anon_sym_BSLASHsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHparagraph] = ACTIONS(4624), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4624), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHitem] = ACTIONS(4624), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4622), + [sym_word] = ACTIONS(4624), + [sym_placeholder] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4624), + [anon_sym__] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_SQUOTE] = ACTIONS(4624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4624), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4622), + [anon_sym_BSLASHbegin] = ACTIONS(4624), + [anon_sym_BSLASHusepackage] = ACTIONS(4624), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4624), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4624), + [anon_sym_BSLASHinclude] = ACTIONS(4624), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4624), + [anon_sym_BSLASHinput] = ACTIONS(4624), + [anon_sym_BSLASHsubfile] = ACTIONS(4624), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4624), + [anon_sym_BSLASHbibliography] = ACTIONS(4624), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4624), + [anon_sym_BSLASHincludesvg] = ACTIONS(4624), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4624), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4624), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4624), + [anon_sym_BSLASHimport] = ACTIONS(4624), + [anon_sym_BSLASHsubimport] = ACTIONS(4624), + [anon_sym_BSLASHinputfrom] = ACTIONS(4624), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4624), + [anon_sym_BSLASHincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHcaption] = ACTIONS(4624), + [anon_sym_BSLASHcite] = ACTIONS(4624), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCite] = ACTIONS(4624), + [anon_sym_BSLASHnocite] = ACTIONS(4624), + [anon_sym_BSLASHcitet] = ACTIONS(4624), + [anon_sym_BSLASHcitep] = ACTIONS(4624), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteauthor] = ACTIONS(4624), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4624), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitetitle] = ACTIONS(4624), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteyear] = ACTIONS(4624), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitedate] = ACTIONS(4624), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteurl] = ACTIONS(4624), + [anon_sym_BSLASHfullcite] = ACTIONS(4624), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4624), + [anon_sym_BSLASHcitealt] = ACTIONS(4624), + [anon_sym_BSLASHcitealp] = ACTIONS(4624), + [anon_sym_BSLASHcitetext] = ACTIONS(4624), + [anon_sym_BSLASHparencite] = ACTIONS(4624), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHParencite] = ACTIONS(4624), + [anon_sym_BSLASHfootcite] = ACTIONS(4624), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4624), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4624), + [anon_sym_BSLASHtextcite] = ACTIONS(4624), + [anon_sym_BSLASHTextcite] = ACTIONS(4624), + [anon_sym_BSLASHsmartcite] = ACTIONS(4624), + [anon_sym_BSLASHSmartcite] = ACTIONS(4624), + [anon_sym_BSLASHsupercite] = ACTIONS(4624), + [anon_sym_BSLASHautocite] = ACTIONS(4624), + [anon_sym_BSLASHAutocite] = ACTIONS(4624), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHvolcite] = ACTIONS(4624), + [anon_sym_BSLASHVolcite] = ACTIONS(4624), + [anon_sym_BSLASHpvolcite] = ACTIONS(4624), + [anon_sym_BSLASHPvolcite] = ACTIONS(4624), + [anon_sym_BSLASHfvolcite] = ACTIONS(4624), + [anon_sym_BSLASHftvolcite] = ACTIONS(4624), + [anon_sym_BSLASHsvolcite] = ACTIONS(4624), + [anon_sym_BSLASHSvolcite] = ACTIONS(4624), + [anon_sym_BSLASHtvolcite] = ACTIONS(4624), + [anon_sym_BSLASHTvolcite] = ACTIONS(4624), + [anon_sym_BSLASHavolcite] = ACTIONS(4624), + [anon_sym_BSLASHAvolcite] = ACTIONS(4624), + [anon_sym_BSLASHnotecite] = ACTIONS(4624), + [anon_sym_BSLASHNotecite] = ACTIONS(4624), + [anon_sym_BSLASHpnotecite] = ACTIONS(4624), + [anon_sym_BSLASHPnotecite] = ACTIONS(4624), + [anon_sym_BSLASHfnotecite] = ACTIONS(4624), + [anon_sym_BSLASHlabel] = ACTIONS(4624), + [anon_sym_BSLASHref] = ACTIONS(4624), + [anon_sym_BSLASHeqref] = ACTIONS(4624), + [anon_sym_BSLASHvref] = ACTIONS(4624), + [anon_sym_BSLASHVref] = ACTIONS(4624), + [anon_sym_BSLASHautoref] = ACTIONS(4624), + [anon_sym_BSLASHpageref] = ACTIONS(4624), + [anon_sym_BSLASHcref] = ACTIONS(4624), + [anon_sym_BSLASHCref] = ACTIONS(4624), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnameCref] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHlabelcref] = ACTIONS(4624), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCrefrange] = ACTIONS(4624), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnewlabel] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4624), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4624), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4624), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdef] = ACTIONS(4624), + [anon_sym_BSLASHlet] = ACTIONS(4624), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4624), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4624), + [anon_sym_BSLASHgls] = ACTIONS(4624), + [anon_sym_BSLASHGls] = ACTIONS(4624), + [anon_sym_BSLASHGLS] = ACTIONS(4624), + [anon_sym_BSLASHglspl] = ACTIONS(4624), + [anon_sym_BSLASHGlspl] = ACTIONS(4624), + [anon_sym_BSLASHGLSpl] = ACTIONS(4624), + [anon_sym_BSLASHglsdisp] = ACTIONS(4624), + [anon_sym_BSLASHglslink] = ACTIONS(4624), + [anon_sym_BSLASHglstext] = ACTIONS(4624), + [anon_sym_BSLASHGlstext] = ACTIONS(4624), + [anon_sym_BSLASHGLStext] = ACTIONS(4624), + [anon_sym_BSLASHglsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4624), + [anon_sym_BSLASHglsplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSplural] = ACTIONS(4624), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHglsname] = ACTIONS(4624), + [anon_sym_BSLASHGlsname] = ACTIONS(4624), + [anon_sym_BSLASHGLSname] = ACTIONS(4624), + [anon_sym_BSLASHglssymbol] = ACTIONS(4624), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4624), + [anon_sym_BSLASHglsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4624), + [anon_sym_BSLASHglsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4624), + [anon_sym_BSLASHglsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4624), + [anon_sym_BSLASHglsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4624), + [anon_sym_BSLASHglsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4624), + [anon_sym_BSLASHnewacronym] = ACTIONS(4624), + [anon_sym_BSLASHacrshort] = ACTIONS(4624), + [anon_sym_BSLASHAcrshort] = ACTIONS(4624), + [anon_sym_BSLASHACRshort] = ACTIONS(4624), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4624), + [anon_sym_BSLASHacrlong] = ACTIONS(4624), + [anon_sym_BSLASHAcrlong] = ACTIONS(4624), + [anon_sym_BSLASHACRlong] = ACTIONS(4624), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4624), + [anon_sym_BSLASHacrfull] = ACTIONS(4624), + [anon_sym_BSLASHAcrfull] = ACTIONS(4624), + [anon_sym_BSLASHACRfull] = ACTIONS(4624), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4624), + [anon_sym_BSLASHacs] = ACTIONS(4624), + [anon_sym_BSLASHAcs] = ACTIONS(4624), + [anon_sym_BSLASHacsp] = ACTIONS(4624), + [anon_sym_BSLASHAcsp] = ACTIONS(4624), + [anon_sym_BSLASHacl] = ACTIONS(4624), + [anon_sym_BSLASHAcl] = ACTIONS(4624), + [anon_sym_BSLASHaclp] = ACTIONS(4624), + [anon_sym_BSLASHAclp] = ACTIONS(4624), + [anon_sym_BSLASHacf] = ACTIONS(4624), + [anon_sym_BSLASHAcf] = ACTIONS(4624), + [anon_sym_BSLASHacfp] = ACTIONS(4624), + [anon_sym_BSLASHAcfp] = ACTIONS(4624), + [anon_sym_BSLASHac] = ACTIONS(4624), + [anon_sym_BSLASHAc] = ACTIONS(4624), + [anon_sym_BSLASHacp] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4624), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4624), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4624), + [anon_sym_BSLASHcolor] = ACTIONS(4624), + [anon_sym_BSLASHcolorbox] = ACTIONS(4624), + [anon_sym_BSLASHtextcolor] = ACTIONS(4624), + [anon_sym_BSLASHpagecolor] = ACTIONS(4624), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4624), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4624), + [anon_sym_BSLASHtext] = ACTIONS(4624), + [anon_sym_BSLASHintertext] = ACTIONS(4624), + [anon_sym_shortintertext] = ACTIONS(4624), }, [329] = { [sym__chapter_declaration] = STATE(133), [sym_chapter] = STATE(329), [aux_sym__section_repeat2] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(4553), - [sym_command_name] = ACTIONS(4555), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_RPAREN] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_RBRACK] = ACTIONS(4553), - [anon_sym_COMMA] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_BSLASHpart] = ACTIONS(4555), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddpart] = ACTIONS(4555), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHchapter] = ACTIONS(4557), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), - [anon_sym_BSLASHaddchap] = ACTIONS(4557), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), - [anon_sym_BSLASHsection] = ACTIONS(4555), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddsec] = ACTIONS(4555), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHparagraph] = ACTIONS(4555), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHitem] = ACTIONS(4555), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_RBRACE] = ACTIONS(4553), - [sym_word] = ACTIONS(4555), - [sym_placeholder] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym__] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), - [anon_sym_BSLASHbegin] = ACTIONS(4555), - [anon_sym_BSLASHusepackage] = ACTIONS(4555), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), - [anon_sym_BSLASHinclude] = ACTIONS(4555), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), - [anon_sym_BSLASHinput] = ACTIONS(4555), - [anon_sym_BSLASHsubfile] = ACTIONS(4555), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), - [anon_sym_BSLASHbibliography] = ACTIONS(4555), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), - [anon_sym_BSLASHincludesvg] = ACTIONS(4555), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), - [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(4555), - [anon_sym_BSLASHcite] = ACTIONS(4555), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCite] = ACTIONS(4555), - [anon_sym_BSLASHnocite] = ACTIONS(4555), - [anon_sym_BSLASHcitet] = ACTIONS(4555), - [anon_sym_BSLASHcitep] = ACTIONS(4555), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteauthor] = ACTIONS(4555), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitetitle] = ACTIONS(4555), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteyear] = ACTIONS(4555), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitedate] = ACTIONS(4555), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteurl] = ACTIONS(4555), - [anon_sym_BSLASHfullcite] = ACTIONS(4555), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), - [anon_sym_BSLASHcitealt] = ACTIONS(4555), - [anon_sym_BSLASHcitealp] = ACTIONS(4555), - [anon_sym_BSLASHcitetext] = ACTIONS(4555), - [anon_sym_BSLASHparencite] = ACTIONS(4555), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHParencite] = ACTIONS(4555), - [anon_sym_BSLASHfootcite] = ACTIONS(4555), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), - [anon_sym_BSLASHtextcite] = ACTIONS(4555), - [anon_sym_BSLASHTextcite] = ACTIONS(4555), - [anon_sym_BSLASHsmartcite] = ACTIONS(4555), - [anon_sym_BSLASHSmartcite] = ACTIONS(4555), - [anon_sym_BSLASHsupercite] = ACTIONS(4555), - [anon_sym_BSLASHautocite] = ACTIONS(4555), - [anon_sym_BSLASHAutocite] = ACTIONS(4555), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHvolcite] = ACTIONS(4555), - [anon_sym_BSLASHVolcite] = ACTIONS(4555), - [anon_sym_BSLASHpvolcite] = ACTIONS(4555), - [anon_sym_BSLASHPvolcite] = ACTIONS(4555), - [anon_sym_BSLASHfvolcite] = ACTIONS(4555), - [anon_sym_BSLASHftvolcite] = ACTIONS(4555), - [anon_sym_BSLASHsvolcite] = ACTIONS(4555), - [anon_sym_BSLASHSvolcite] = ACTIONS(4555), - [anon_sym_BSLASHtvolcite] = ACTIONS(4555), - [anon_sym_BSLASHTvolcite] = ACTIONS(4555), - [anon_sym_BSLASHavolcite] = ACTIONS(4555), - [anon_sym_BSLASHAvolcite] = ACTIONS(4555), - [anon_sym_BSLASHnotecite] = ACTIONS(4555), - [anon_sym_BSLASHNotecite] = ACTIONS(4555), - [anon_sym_BSLASHpnotecite] = ACTIONS(4555), - [anon_sym_BSLASHPnotecite] = ACTIONS(4555), - [anon_sym_BSLASHfnotecite] = ACTIONS(4555), - [anon_sym_BSLASHlabel] = ACTIONS(4555), - [anon_sym_BSLASHref] = ACTIONS(4555), - [anon_sym_BSLASHeqref] = ACTIONS(4555), - [anon_sym_BSLASHvref] = ACTIONS(4555), - [anon_sym_BSLASHVref] = ACTIONS(4555), - [anon_sym_BSLASHautoref] = ACTIONS(4555), - [anon_sym_BSLASHpageref] = ACTIONS(4555), - [anon_sym_BSLASHcref] = ACTIONS(4555), - [anon_sym_BSLASHCref] = ACTIONS(4555), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnameCref] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHlabelcref] = ACTIONS(4555), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCrefrange] = ACTIONS(4555), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnewlabel] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), - [anon_sym_BSLASHdef] = ACTIONS(4555), - [anon_sym_BSLASHlet] = ACTIONS(4555), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), - [anon_sym_BSLASHgls] = ACTIONS(4555), - [anon_sym_BSLASHGls] = ACTIONS(4555), - [anon_sym_BSLASHGLS] = ACTIONS(4555), - [anon_sym_BSLASHglspl] = ACTIONS(4555), - [anon_sym_BSLASHGlspl] = ACTIONS(4555), - [anon_sym_BSLASHGLSpl] = ACTIONS(4555), - [anon_sym_BSLASHglsdisp] = ACTIONS(4555), - [anon_sym_BSLASHglslink] = ACTIONS(4555), - [anon_sym_BSLASHglstext] = ACTIONS(4555), - [anon_sym_BSLASHGlstext] = ACTIONS(4555), - [anon_sym_BSLASHGLStext] = ACTIONS(4555), - [anon_sym_BSLASHglsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), - [anon_sym_BSLASHglsplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSplural] = ACTIONS(4555), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHglsname] = ACTIONS(4555), - [anon_sym_BSLASHGlsname] = ACTIONS(4555), - [anon_sym_BSLASHGLSname] = ACTIONS(4555), - [anon_sym_BSLASHglssymbol] = ACTIONS(4555), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), - [anon_sym_BSLASHglsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), - [anon_sym_BSLASHglsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), - [anon_sym_BSLASHglsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), - [anon_sym_BSLASHglsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), - [anon_sym_BSLASHglsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), - [anon_sym_BSLASHnewacronym] = ACTIONS(4555), - [anon_sym_BSLASHacrshort] = ACTIONS(4555), - [anon_sym_BSLASHAcrshort] = ACTIONS(4555), - [anon_sym_BSLASHACRshort] = ACTIONS(4555), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), - [anon_sym_BSLASHacrlong] = ACTIONS(4555), - [anon_sym_BSLASHAcrlong] = ACTIONS(4555), - [anon_sym_BSLASHACRlong] = ACTIONS(4555), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), - [anon_sym_BSLASHacrfull] = ACTIONS(4555), - [anon_sym_BSLASHAcrfull] = ACTIONS(4555), - [anon_sym_BSLASHACRfull] = ACTIONS(4555), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), - [anon_sym_BSLASHacs] = ACTIONS(4555), - [anon_sym_BSLASHAcs] = ACTIONS(4555), - [anon_sym_BSLASHacsp] = ACTIONS(4555), - [anon_sym_BSLASHAcsp] = ACTIONS(4555), - [anon_sym_BSLASHacl] = ACTIONS(4555), - [anon_sym_BSLASHAcl] = ACTIONS(4555), - [anon_sym_BSLASHaclp] = ACTIONS(4555), - [anon_sym_BSLASHAclp] = ACTIONS(4555), - [anon_sym_BSLASHacf] = ACTIONS(4555), - [anon_sym_BSLASHAcf] = ACTIONS(4555), - [anon_sym_BSLASHacfp] = ACTIONS(4555), - [anon_sym_BSLASHAcfp] = ACTIONS(4555), - [anon_sym_BSLASHac] = ACTIONS(4555), - [anon_sym_BSLASHAc] = ACTIONS(4555), - [anon_sym_BSLASHacp] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), - [anon_sym_BSLASHcolor] = ACTIONS(4555), - [anon_sym_BSLASHcolorbox] = ACTIONS(4555), - [anon_sym_BSLASHtextcolor] = ACTIONS(4555), - [anon_sym_BSLASHpagecolor] = ACTIONS(4555), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), - [anon_sym_BSLASHtext] = ACTIONS(4555), - [anon_sym_BSLASHintertext] = ACTIONS(4555), - [anon_sym_shortintertext] = ACTIONS(4555), + [ts_builtin_sym_end] = ACTIONS(4632), + [sym_command_name] = ACTIONS(4634), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_BSLASHpart] = ACTIONS(4634), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddpart] = ACTIONS(4634), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHchapter] = ACTIONS(4636), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4639), + [anon_sym_BSLASHaddchap] = ACTIONS(4636), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4639), + [anon_sym_BSLASHsection] = ACTIONS(4634), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddsec] = ACTIONS(4634), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHparagraph] = ACTIONS(4634), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4634), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHitem] = ACTIONS(4634), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4632), + [sym_word] = ACTIONS(4634), + [sym_placeholder] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym__] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4632), + [anon_sym_BSLASHbegin] = ACTIONS(4634), + [anon_sym_BSLASHusepackage] = ACTIONS(4634), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4634), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4634), + [anon_sym_BSLASHinclude] = ACTIONS(4634), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4634), + [anon_sym_BSLASHinput] = ACTIONS(4634), + [anon_sym_BSLASHsubfile] = ACTIONS(4634), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4634), + [anon_sym_BSLASHbibliography] = ACTIONS(4634), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4634), + [anon_sym_BSLASHincludesvg] = ACTIONS(4634), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4634), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4634), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4634), + [anon_sym_BSLASHimport] = ACTIONS(4634), + [anon_sym_BSLASHsubimport] = ACTIONS(4634), + [anon_sym_BSLASHinputfrom] = ACTIONS(4634), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4634), + [anon_sym_BSLASHincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHcaption] = ACTIONS(4634), + [anon_sym_BSLASHcite] = ACTIONS(4634), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCite] = ACTIONS(4634), + [anon_sym_BSLASHnocite] = ACTIONS(4634), + [anon_sym_BSLASHcitet] = ACTIONS(4634), + [anon_sym_BSLASHcitep] = ACTIONS(4634), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteauthor] = ACTIONS(4634), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4634), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitetitle] = ACTIONS(4634), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteyear] = ACTIONS(4634), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitedate] = ACTIONS(4634), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteurl] = ACTIONS(4634), + [anon_sym_BSLASHfullcite] = ACTIONS(4634), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4634), + [anon_sym_BSLASHcitealt] = ACTIONS(4634), + [anon_sym_BSLASHcitealp] = ACTIONS(4634), + [anon_sym_BSLASHcitetext] = ACTIONS(4634), + [anon_sym_BSLASHparencite] = ACTIONS(4634), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHParencite] = ACTIONS(4634), + [anon_sym_BSLASHfootcite] = ACTIONS(4634), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4634), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4634), + [anon_sym_BSLASHtextcite] = ACTIONS(4634), + [anon_sym_BSLASHTextcite] = ACTIONS(4634), + [anon_sym_BSLASHsmartcite] = ACTIONS(4634), + [anon_sym_BSLASHSmartcite] = ACTIONS(4634), + [anon_sym_BSLASHsupercite] = ACTIONS(4634), + [anon_sym_BSLASHautocite] = ACTIONS(4634), + [anon_sym_BSLASHAutocite] = ACTIONS(4634), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHvolcite] = ACTIONS(4634), + [anon_sym_BSLASHVolcite] = ACTIONS(4634), + [anon_sym_BSLASHpvolcite] = ACTIONS(4634), + [anon_sym_BSLASHPvolcite] = ACTIONS(4634), + [anon_sym_BSLASHfvolcite] = ACTIONS(4634), + [anon_sym_BSLASHftvolcite] = ACTIONS(4634), + [anon_sym_BSLASHsvolcite] = ACTIONS(4634), + [anon_sym_BSLASHSvolcite] = ACTIONS(4634), + [anon_sym_BSLASHtvolcite] = ACTIONS(4634), + [anon_sym_BSLASHTvolcite] = ACTIONS(4634), + [anon_sym_BSLASHavolcite] = ACTIONS(4634), + [anon_sym_BSLASHAvolcite] = ACTIONS(4634), + [anon_sym_BSLASHnotecite] = ACTIONS(4634), + [anon_sym_BSLASHNotecite] = ACTIONS(4634), + [anon_sym_BSLASHpnotecite] = ACTIONS(4634), + [anon_sym_BSLASHPnotecite] = ACTIONS(4634), + [anon_sym_BSLASHfnotecite] = ACTIONS(4634), + [anon_sym_BSLASHlabel] = ACTIONS(4634), + [anon_sym_BSLASHref] = ACTIONS(4634), + [anon_sym_BSLASHeqref] = ACTIONS(4634), + [anon_sym_BSLASHvref] = ACTIONS(4634), + [anon_sym_BSLASHVref] = ACTIONS(4634), + [anon_sym_BSLASHautoref] = ACTIONS(4634), + [anon_sym_BSLASHpageref] = ACTIONS(4634), + [anon_sym_BSLASHcref] = ACTIONS(4634), + [anon_sym_BSLASHCref] = ACTIONS(4634), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnameCref] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHlabelcref] = ACTIONS(4634), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCrefrange] = ACTIONS(4634), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnewlabel] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4634), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4634), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4634), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdef] = ACTIONS(4634), + [anon_sym_BSLASHlet] = ACTIONS(4634), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4634), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4634), + [anon_sym_BSLASHgls] = ACTIONS(4634), + [anon_sym_BSLASHGls] = ACTIONS(4634), + [anon_sym_BSLASHGLS] = ACTIONS(4634), + [anon_sym_BSLASHglspl] = ACTIONS(4634), + [anon_sym_BSLASHGlspl] = ACTIONS(4634), + [anon_sym_BSLASHGLSpl] = ACTIONS(4634), + [anon_sym_BSLASHglsdisp] = ACTIONS(4634), + [anon_sym_BSLASHglslink] = ACTIONS(4634), + [anon_sym_BSLASHglstext] = ACTIONS(4634), + [anon_sym_BSLASHGlstext] = ACTIONS(4634), + [anon_sym_BSLASHGLStext] = ACTIONS(4634), + [anon_sym_BSLASHglsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4634), + [anon_sym_BSLASHglsplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSplural] = ACTIONS(4634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHglsname] = ACTIONS(4634), + [anon_sym_BSLASHGlsname] = ACTIONS(4634), + [anon_sym_BSLASHGLSname] = ACTIONS(4634), + [anon_sym_BSLASHglssymbol] = ACTIONS(4634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4634), + [anon_sym_BSLASHglsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4634), + [anon_sym_BSLASHglsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4634), + [anon_sym_BSLASHglsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4634), + [anon_sym_BSLASHglsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4634), + [anon_sym_BSLASHglsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4634), + [anon_sym_BSLASHnewacronym] = ACTIONS(4634), + [anon_sym_BSLASHacrshort] = ACTIONS(4634), + [anon_sym_BSLASHAcrshort] = ACTIONS(4634), + [anon_sym_BSLASHACRshort] = ACTIONS(4634), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4634), + [anon_sym_BSLASHacrlong] = ACTIONS(4634), + [anon_sym_BSLASHAcrlong] = ACTIONS(4634), + [anon_sym_BSLASHACRlong] = ACTIONS(4634), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4634), + [anon_sym_BSLASHacrfull] = ACTIONS(4634), + [anon_sym_BSLASHAcrfull] = ACTIONS(4634), + [anon_sym_BSLASHACRfull] = ACTIONS(4634), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4634), + [anon_sym_BSLASHacs] = ACTIONS(4634), + [anon_sym_BSLASHAcs] = ACTIONS(4634), + [anon_sym_BSLASHacsp] = ACTIONS(4634), + [anon_sym_BSLASHAcsp] = ACTIONS(4634), + [anon_sym_BSLASHacl] = ACTIONS(4634), + [anon_sym_BSLASHAcl] = ACTIONS(4634), + [anon_sym_BSLASHaclp] = ACTIONS(4634), + [anon_sym_BSLASHAclp] = ACTIONS(4634), + [anon_sym_BSLASHacf] = ACTIONS(4634), + [anon_sym_BSLASHAcf] = ACTIONS(4634), + [anon_sym_BSLASHacfp] = ACTIONS(4634), + [anon_sym_BSLASHAcfp] = ACTIONS(4634), + [anon_sym_BSLASHac] = ACTIONS(4634), + [anon_sym_BSLASHAc] = ACTIONS(4634), + [anon_sym_BSLASHacp] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4634), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4634), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4634), + [anon_sym_BSLASHcolor] = ACTIONS(4634), + [anon_sym_BSLASHcolorbox] = ACTIONS(4634), + [anon_sym_BSLASHtextcolor] = ACTIONS(4634), + [anon_sym_BSLASHpagecolor] = ACTIONS(4634), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4634), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4634), + [anon_sym_BSLASHtext] = ACTIONS(4634), + [anon_sym_BSLASHintertext] = ACTIONS(4634), + [anon_sym_shortintertext] = ACTIONS(4634), }, [330] = { [sym_curly_group] = STATE(698), [sym_mixed_group] = STATE(698), [aux_sym_generic_command_repeat1] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(4563), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_BSLASHpart] = ACTIONS(4565), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddpart] = ACTIONS(4565), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHchapter] = ACTIONS(4565), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddchap] = ACTIONS(4565), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsection] = ACTIONS(4565), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddsec] = ACTIONS(4565), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHparagraph] = ACTIONS(4565), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHitem] = ACTIONS(4565), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), + [ts_builtin_sym_end] = ACTIONS(4642), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_BSLASHpart] = ACTIONS(4644), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddpart] = ACTIONS(4644), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHchapter] = ACTIONS(4644), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddchap] = ACTIONS(4644), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsection] = ACTIONS(4644), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddsec] = ACTIONS(4644), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHparagraph] = ACTIONS(4644), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4644), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHitem] = ACTIONS(4644), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4642), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4563), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASHbegin] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4642), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASHbegin] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [331] = { [sym__part_declaration] = STATE(123), [sym_part] = STATE(331), [aux_sym__section_repeat1] = STATE(331), - [ts_builtin_sym_end] = ACTIONS(4567), - [sym_command_name] = ACTIONS(4569), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4569), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4567), - [anon_sym_RBRACK] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_BSLASHpart] = ACTIONS(4571), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4574), - [anon_sym_BSLASHaddpart] = ACTIONS(4571), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4574), - [anon_sym_BSLASHchapter] = ACTIONS(4569), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddchap] = ACTIONS(4569), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsection] = ACTIONS(4569), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddsec] = ACTIONS(4569), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHparagraph] = ACTIONS(4569), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHitem] = ACTIONS(4569), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4567), - [sym_word] = ACTIONS(4569), - [sym_placeholder] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym__] = ACTIONS(4569), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_PIPE] = ACTIONS(4569), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), - [anon_sym_BSLASHbegin] = ACTIONS(4569), - [anon_sym_BSLASHusepackage] = ACTIONS(4569), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), - [anon_sym_BSLASHinclude] = ACTIONS(4569), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), - [anon_sym_BSLASHinput] = ACTIONS(4569), - [anon_sym_BSLASHsubfile] = ACTIONS(4569), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), - [anon_sym_BSLASHbibliography] = ACTIONS(4569), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), - [anon_sym_BSLASHincludesvg] = ACTIONS(4569), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), - [anon_sym_BSLASHimport] = ACTIONS(4569), - [anon_sym_BSLASHsubimport] = ACTIONS(4569), - [anon_sym_BSLASHinputfrom] = ACTIONS(4569), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), - [anon_sym_BSLASHincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHcaption] = ACTIONS(4569), - [anon_sym_BSLASHcite] = ACTIONS(4569), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCite] = ACTIONS(4569), - [anon_sym_BSLASHnocite] = ACTIONS(4569), - [anon_sym_BSLASHcitet] = ACTIONS(4569), - [anon_sym_BSLASHcitep] = ACTIONS(4569), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteauthor] = ACTIONS(4569), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitetitle] = ACTIONS(4569), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteyear] = ACTIONS(4569), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitedate] = ACTIONS(4569), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteurl] = ACTIONS(4569), - [anon_sym_BSLASHfullcite] = ACTIONS(4569), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), - [anon_sym_BSLASHcitealt] = ACTIONS(4569), - [anon_sym_BSLASHcitealp] = ACTIONS(4569), - [anon_sym_BSLASHcitetext] = ACTIONS(4569), - [anon_sym_BSLASHparencite] = ACTIONS(4569), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHParencite] = ACTIONS(4569), - [anon_sym_BSLASHfootcite] = ACTIONS(4569), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), - [anon_sym_BSLASHtextcite] = ACTIONS(4569), - [anon_sym_BSLASHTextcite] = ACTIONS(4569), - [anon_sym_BSLASHsmartcite] = ACTIONS(4569), - [anon_sym_BSLASHSmartcite] = ACTIONS(4569), - [anon_sym_BSLASHsupercite] = ACTIONS(4569), - [anon_sym_BSLASHautocite] = ACTIONS(4569), - [anon_sym_BSLASHAutocite] = ACTIONS(4569), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHvolcite] = ACTIONS(4569), - [anon_sym_BSLASHVolcite] = ACTIONS(4569), - [anon_sym_BSLASHpvolcite] = ACTIONS(4569), - [anon_sym_BSLASHPvolcite] = ACTIONS(4569), - [anon_sym_BSLASHfvolcite] = ACTIONS(4569), - [anon_sym_BSLASHftvolcite] = ACTIONS(4569), - [anon_sym_BSLASHsvolcite] = ACTIONS(4569), - [anon_sym_BSLASHSvolcite] = ACTIONS(4569), - [anon_sym_BSLASHtvolcite] = ACTIONS(4569), - [anon_sym_BSLASHTvolcite] = ACTIONS(4569), - [anon_sym_BSLASHavolcite] = ACTIONS(4569), - [anon_sym_BSLASHAvolcite] = ACTIONS(4569), - [anon_sym_BSLASHnotecite] = ACTIONS(4569), - [anon_sym_BSLASHNotecite] = ACTIONS(4569), - [anon_sym_BSLASHpnotecite] = ACTIONS(4569), - [anon_sym_BSLASHPnotecite] = ACTIONS(4569), - [anon_sym_BSLASHfnotecite] = ACTIONS(4569), - [anon_sym_BSLASHlabel] = ACTIONS(4569), - [anon_sym_BSLASHref] = ACTIONS(4569), - [anon_sym_BSLASHeqref] = ACTIONS(4569), - [anon_sym_BSLASHvref] = ACTIONS(4569), - [anon_sym_BSLASHVref] = ACTIONS(4569), - [anon_sym_BSLASHautoref] = ACTIONS(4569), - [anon_sym_BSLASHpageref] = ACTIONS(4569), - [anon_sym_BSLASHcref] = ACTIONS(4569), - [anon_sym_BSLASHCref] = ACTIONS(4569), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnameCref] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHlabelcref] = ACTIONS(4569), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnewlabel] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), - [anon_sym_BSLASHdef] = ACTIONS(4569), - [anon_sym_BSLASHlet] = ACTIONS(4569), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), - [anon_sym_BSLASHgls] = ACTIONS(4569), - [anon_sym_BSLASHGls] = ACTIONS(4569), - [anon_sym_BSLASHGLS] = ACTIONS(4569), - [anon_sym_BSLASHglspl] = ACTIONS(4569), - [anon_sym_BSLASHGlspl] = ACTIONS(4569), - [anon_sym_BSLASHGLSpl] = ACTIONS(4569), - [anon_sym_BSLASHglsdisp] = ACTIONS(4569), - [anon_sym_BSLASHglslink] = ACTIONS(4569), - [anon_sym_BSLASHglstext] = ACTIONS(4569), - [anon_sym_BSLASHGlstext] = ACTIONS(4569), - [anon_sym_BSLASHGLStext] = ACTIONS(4569), - [anon_sym_BSLASHglsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), - [anon_sym_BSLASHglsplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSplural] = ACTIONS(4569), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHglsname] = ACTIONS(4569), - [anon_sym_BSLASHGlsname] = ACTIONS(4569), - [anon_sym_BSLASHGLSname] = ACTIONS(4569), - [anon_sym_BSLASHglssymbol] = ACTIONS(4569), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), - [anon_sym_BSLASHglsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), - [anon_sym_BSLASHglsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), - [anon_sym_BSLASHglsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), - [anon_sym_BSLASHglsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), - [anon_sym_BSLASHglsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), - [anon_sym_BSLASHnewacronym] = ACTIONS(4569), - [anon_sym_BSLASHacrshort] = ACTIONS(4569), - [anon_sym_BSLASHAcrshort] = ACTIONS(4569), - [anon_sym_BSLASHACRshort] = ACTIONS(4569), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), - [anon_sym_BSLASHacrlong] = ACTIONS(4569), - [anon_sym_BSLASHAcrlong] = ACTIONS(4569), - [anon_sym_BSLASHACRlong] = ACTIONS(4569), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), - [anon_sym_BSLASHacrfull] = ACTIONS(4569), - [anon_sym_BSLASHAcrfull] = ACTIONS(4569), - [anon_sym_BSLASHACRfull] = ACTIONS(4569), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), - [anon_sym_BSLASHacs] = ACTIONS(4569), - [anon_sym_BSLASHAcs] = ACTIONS(4569), - [anon_sym_BSLASHacsp] = ACTIONS(4569), - [anon_sym_BSLASHAcsp] = ACTIONS(4569), - [anon_sym_BSLASHacl] = ACTIONS(4569), - [anon_sym_BSLASHAcl] = ACTIONS(4569), - [anon_sym_BSLASHaclp] = ACTIONS(4569), - [anon_sym_BSLASHAclp] = ACTIONS(4569), - [anon_sym_BSLASHacf] = ACTIONS(4569), - [anon_sym_BSLASHAcf] = ACTIONS(4569), - [anon_sym_BSLASHacfp] = ACTIONS(4569), - [anon_sym_BSLASHAcfp] = ACTIONS(4569), - [anon_sym_BSLASHac] = ACTIONS(4569), - [anon_sym_BSLASHAc] = ACTIONS(4569), - [anon_sym_BSLASHacp] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), - [anon_sym_BSLASHcolor] = ACTIONS(4569), - [anon_sym_BSLASHcolorbox] = ACTIONS(4569), - [anon_sym_BSLASHtextcolor] = ACTIONS(4569), - [anon_sym_BSLASHpagecolor] = ACTIONS(4569), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), - [anon_sym_BSLASHtext] = ACTIONS(4569), - [anon_sym_BSLASHintertext] = ACTIONS(4569), - [anon_sym_shortintertext] = ACTIONS(4569), + [ts_builtin_sym_end] = ACTIONS(4646), + [sym_command_name] = ACTIONS(4648), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_BSLASHpart] = ACTIONS(4650), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4653), + [anon_sym_BSLASHaddpart] = ACTIONS(4650), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4653), + [anon_sym_BSLASHchapter] = ACTIONS(4648), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddchap] = ACTIONS(4648), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsection] = ACTIONS(4648), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddsec] = ACTIONS(4648), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHparagraph] = ACTIONS(4648), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4648), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHitem] = ACTIONS(4648), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [sym_word] = ACTIONS(4648), + [sym_placeholder] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym__] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4646), + [anon_sym_BSLASHbegin] = ACTIONS(4648), + [anon_sym_BSLASHusepackage] = ACTIONS(4648), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4648), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4648), + [anon_sym_BSLASHinclude] = ACTIONS(4648), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4648), + [anon_sym_BSLASHinput] = ACTIONS(4648), + [anon_sym_BSLASHsubfile] = ACTIONS(4648), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4648), + [anon_sym_BSLASHbibliography] = ACTIONS(4648), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4648), + [anon_sym_BSLASHincludesvg] = ACTIONS(4648), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4648), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4648), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4648), + [anon_sym_BSLASHimport] = ACTIONS(4648), + [anon_sym_BSLASHsubimport] = ACTIONS(4648), + [anon_sym_BSLASHinputfrom] = ACTIONS(4648), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4648), + [anon_sym_BSLASHincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHcaption] = ACTIONS(4648), + [anon_sym_BSLASHcite] = ACTIONS(4648), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCite] = ACTIONS(4648), + [anon_sym_BSLASHnocite] = ACTIONS(4648), + [anon_sym_BSLASHcitet] = ACTIONS(4648), + [anon_sym_BSLASHcitep] = ACTIONS(4648), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteauthor] = ACTIONS(4648), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4648), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitetitle] = ACTIONS(4648), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteyear] = ACTIONS(4648), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitedate] = ACTIONS(4648), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteurl] = ACTIONS(4648), + [anon_sym_BSLASHfullcite] = ACTIONS(4648), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4648), + [anon_sym_BSLASHcitealt] = ACTIONS(4648), + [anon_sym_BSLASHcitealp] = ACTIONS(4648), + [anon_sym_BSLASHcitetext] = ACTIONS(4648), + [anon_sym_BSLASHparencite] = ACTIONS(4648), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHParencite] = ACTIONS(4648), + [anon_sym_BSLASHfootcite] = ACTIONS(4648), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4648), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4648), + [anon_sym_BSLASHtextcite] = ACTIONS(4648), + [anon_sym_BSLASHTextcite] = ACTIONS(4648), + [anon_sym_BSLASHsmartcite] = ACTIONS(4648), + [anon_sym_BSLASHSmartcite] = ACTIONS(4648), + [anon_sym_BSLASHsupercite] = ACTIONS(4648), + [anon_sym_BSLASHautocite] = ACTIONS(4648), + [anon_sym_BSLASHAutocite] = ACTIONS(4648), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHvolcite] = ACTIONS(4648), + [anon_sym_BSLASHVolcite] = ACTIONS(4648), + [anon_sym_BSLASHpvolcite] = ACTIONS(4648), + [anon_sym_BSLASHPvolcite] = ACTIONS(4648), + [anon_sym_BSLASHfvolcite] = ACTIONS(4648), + [anon_sym_BSLASHftvolcite] = ACTIONS(4648), + [anon_sym_BSLASHsvolcite] = ACTIONS(4648), + [anon_sym_BSLASHSvolcite] = ACTIONS(4648), + [anon_sym_BSLASHtvolcite] = ACTIONS(4648), + [anon_sym_BSLASHTvolcite] = ACTIONS(4648), + [anon_sym_BSLASHavolcite] = ACTIONS(4648), + [anon_sym_BSLASHAvolcite] = ACTIONS(4648), + [anon_sym_BSLASHnotecite] = ACTIONS(4648), + [anon_sym_BSLASHNotecite] = ACTIONS(4648), + [anon_sym_BSLASHpnotecite] = ACTIONS(4648), + [anon_sym_BSLASHPnotecite] = ACTIONS(4648), + [anon_sym_BSLASHfnotecite] = ACTIONS(4648), + [anon_sym_BSLASHlabel] = ACTIONS(4648), + [anon_sym_BSLASHref] = ACTIONS(4648), + [anon_sym_BSLASHeqref] = ACTIONS(4648), + [anon_sym_BSLASHvref] = ACTIONS(4648), + [anon_sym_BSLASHVref] = ACTIONS(4648), + [anon_sym_BSLASHautoref] = ACTIONS(4648), + [anon_sym_BSLASHpageref] = ACTIONS(4648), + [anon_sym_BSLASHcref] = ACTIONS(4648), + [anon_sym_BSLASHCref] = ACTIONS(4648), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnameCref] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHlabelcref] = ACTIONS(4648), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCrefrange] = ACTIONS(4648), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnewlabel] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4648), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4648), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4648), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdef] = ACTIONS(4648), + [anon_sym_BSLASHlet] = ACTIONS(4648), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4648), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4648), + [anon_sym_BSLASHgls] = ACTIONS(4648), + [anon_sym_BSLASHGls] = ACTIONS(4648), + [anon_sym_BSLASHGLS] = ACTIONS(4648), + [anon_sym_BSLASHglspl] = ACTIONS(4648), + [anon_sym_BSLASHGlspl] = ACTIONS(4648), + [anon_sym_BSLASHGLSpl] = ACTIONS(4648), + [anon_sym_BSLASHglsdisp] = ACTIONS(4648), + [anon_sym_BSLASHglslink] = ACTIONS(4648), + [anon_sym_BSLASHglstext] = ACTIONS(4648), + [anon_sym_BSLASHGlstext] = ACTIONS(4648), + [anon_sym_BSLASHGLStext] = ACTIONS(4648), + [anon_sym_BSLASHglsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4648), + [anon_sym_BSLASHglsplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSplural] = ACTIONS(4648), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHglsname] = ACTIONS(4648), + [anon_sym_BSLASHGlsname] = ACTIONS(4648), + [anon_sym_BSLASHGLSname] = ACTIONS(4648), + [anon_sym_BSLASHglssymbol] = ACTIONS(4648), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4648), + [anon_sym_BSLASHglsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4648), + [anon_sym_BSLASHglsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4648), + [anon_sym_BSLASHglsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4648), + [anon_sym_BSLASHglsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4648), + [anon_sym_BSLASHglsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4648), + [anon_sym_BSLASHnewacronym] = ACTIONS(4648), + [anon_sym_BSLASHacrshort] = ACTIONS(4648), + [anon_sym_BSLASHAcrshort] = ACTIONS(4648), + [anon_sym_BSLASHACRshort] = ACTIONS(4648), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4648), + [anon_sym_BSLASHacrlong] = ACTIONS(4648), + [anon_sym_BSLASHAcrlong] = ACTIONS(4648), + [anon_sym_BSLASHACRlong] = ACTIONS(4648), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4648), + [anon_sym_BSLASHacrfull] = ACTIONS(4648), + [anon_sym_BSLASHAcrfull] = ACTIONS(4648), + [anon_sym_BSLASHACRfull] = ACTIONS(4648), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4648), + [anon_sym_BSLASHacs] = ACTIONS(4648), + [anon_sym_BSLASHAcs] = ACTIONS(4648), + [anon_sym_BSLASHacsp] = ACTIONS(4648), + [anon_sym_BSLASHAcsp] = ACTIONS(4648), + [anon_sym_BSLASHacl] = ACTIONS(4648), + [anon_sym_BSLASHAcl] = ACTIONS(4648), + [anon_sym_BSLASHaclp] = ACTIONS(4648), + [anon_sym_BSLASHAclp] = ACTIONS(4648), + [anon_sym_BSLASHacf] = ACTIONS(4648), + [anon_sym_BSLASHAcf] = ACTIONS(4648), + [anon_sym_BSLASHacfp] = ACTIONS(4648), + [anon_sym_BSLASHAcfp] = ACTIONS(4648), + [anon_sym_BSLASHac] = ACTIONS(4648), + [anon_sym_BSLASHAc] = ACTIONS(4648), + [anon_sym_BSLASHacp] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4648), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4648), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4648), + [anon_sym_BSLASHcolor] = ACTIONS(4648), + [anon_sym_BSLASHcolorbox] = ACTIONS(4648), + [anon_sym_BSLASHtextcolor] = ACTIONS(4648), + [anon_sym_BSLASHpagecolor] = ACTIONS(4648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4648), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4648), + [anon_sym_BSLASHtext] = ACTIONS(4648), + [anon_sym_BSLASHintertext] = ACTIONS(4648), + [anon_sym_shortintertext] = ACTIONS(4648), }, [332] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_command_name] = ACTIONS(1965), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1965), - [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(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_command_name] = ACTIONS(1990), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1988), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [sym_word] = ACTIONS(1965), - [sym_placeholder] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym__] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), - [anon_sym_BSLASHbegin] = ACTIONS(1965), - [anon_sym_BSLASHusepackage] = ACTIONS(1965), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), - [anon_sym_BSLASHinclude] = ACTIONS(1965), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), - [anon_sym_BSLASHinput] = ACTIONS(1965), - [anon_sym_BSLASHsubfile] = ACTIONS(1965), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), - [anon_sym_BSLASHbibliography] = ACTIONS(1965), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), - [anon_sym_BSLASHincludesvg] = ACTIONS(1965), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), - [anon_sym_BSLASHimport] = ACTIONS(1965), - [anon_sym_BSLASHsubimport] = ACTIONS(1965), - [anon_sym_BSLASHinputfrom] = ACTIONS(1965), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), - [anon_sym_BSLASHincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHcaption] = ACTIONS(1965), - [anon_sym_BSLASHcite] = ACTIONS(1965), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCite] = ACTIONS(1965), - [anon_sym_BSLASHnocite] = ACTIONS(1965), - [anon_sym_BSLASHcitet] = ACTIONS(1965), - [anon_sym_BSLASHcitep] = ACTIONS(1965), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteauthor] = ACTIONS(1965), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitetitle] = ACTIONS(1965), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteyear] = ACTIONS(1965), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitedate] = ACTIONS(1965), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteurl] = ACTIONS(1965), - [anon_sym_BSLASHfullcite] = ACTIONS(1965), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), - [anon_sym_BSLASHcitealt] = ACTIONS(1965), - [anon_sym_BSLASHcitealp] = ACTIONS(1965), - [anon_sym_BSLASHcitetext] = ACTIONS(1965), - [anon_sym_BSLASHparencite] = ACTIONS(1965), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHParencite] = ACTIONS(1965), - [anon_sym_BSLASHfootcite] = ACTIONS(1965), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), - [anon_sym_BSLASHtextcite] = ACTIONS(1965), - [anon_sym_BSLASHTextcite] = ACTIONS(1965), - [anon_sym_BSLASHsmartcite] = ACTIONS(1965), - [anon_sym_BSLASHSmartcite] = ACTIONS(1965), - [anon_sym_BSLASHsupercite] = ACTIONS(1965), - [anon_sym_BSLASHautocite] = ACTIONS(1965), - [anon_sym_BSLASHAutocite] = ACTIONS(1965), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHvolcite] = ACTIONS(1965), - [anon_sym_BSLASHVolcite] = ACTIONS(1965), - [anon_sym_BSLASHpvolcite] = ACTIONS(1965), - [anon_sym_BSLASHPvolcite] = ACTIONS(1965), - [anon_sym_BSLASHfvolcite] = ACTIONS(1965), - [anon_sym_BSLASHftvolcite] = ACTIONS(1965), - [anon_sym_BSLASHsvolcite] = ACTIONS(1965), - [anon_sym_BSLASHSvolcite] = ACTIONS(1965), - [anon_sym_BSLASHtvolcite] = ACTIONS(1965), - [anon_sym_BSLASHTvolcite] = ACTIONS(1965), - [anon_sym_BSLASHavolcite] = ACTIONS(1965), - [anon_sym_BSLASHAvolcite] = ACTIONS(1965), - [anon_sym_BSLASHnotecite] = ACTIONS(1965), - [anon_sym_BSLASHNotecite] = ACTIONS(1965), - [anon_sym_BSLASHpnotecite] = ACTIONS(1965), - [anon_sym_BSLASHPnotecite] = ACTIONS(1965), - [anon_sym_BSLASHfnotecite] = ACTIONS(1965), - [anon_sym_BSLASHlabel] = ACTIONS(1965), - [anon_sym_BSLASHref] = ACTIONS(1965), - [anon_sym_BSLASHeqref] = ACTIONS(1965), - [anon_sym_BSLASHvref] = ACTIONS(1965), - [anon_sym_BSLASHVref] = ACTIONS(1965), - [anon_sym_BSLASHautoref] = ACTIONS(1965), - [anon_sym_BSLASHpageref] = ACTIONS(1965), - [anon_sym_BSLASHcref] = ACTIONS(1965), - [anon_sym_BSLASHCref] = ACTIONS(1965), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnameCref] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHlabelcref] = ACTIONS(1965), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCrefrange] = ACTIONS(1965), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnewlabel] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), - [anon_sym_BSLASHdef] = ACTIONS(1965), - [anon_sym_BSLASHlet] = ACTIONS(1965), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), - [anon_sym_BSLASHgls] = ACTIONS(1965), - [anon_sym_BSLASHGls] = ACTIONS(1965), - [anon_sym_BSLASHGLS] = ACTIONS(1965), - [anon_sym_BSLASHglspl] = ACTIONS(1965), - [anon_sym_BSLASHGlspl] = ACTIONS(1965), - [anon_sym_BSLASHGLSpl] = ACTIONS(1965), - [anon_sym_BSLASHglsdisp] = ACTIONS(1965), - [anon_sym_BSLASHglslink] = ACTIONS(1965), - [anon_sym_BSLASHglstext] = ACTIONS(1965), - [anon_sym_BSLASHGlstext] = ACTIONS(1965), - [anon_sym_BSLASHGLStext] = ACTIONS(1965), - [anon_sym_BSLASHglsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), - [anon_sym_BSLASHglsplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSplural] = ACTIONS(1965), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHglsname] = ACTIONS(1965), - [anon_sym_BSLASHGlsname] = ACTIONS(1965), - [anon_sym_BSLASHGLSname] = ACTIONS(1965), - [anon_sym_BSLASHglssymbol] = ACTIONS(1965), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), - [anon_sym_BSLASHglsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), - [anon_sym_BSLASHglsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), - [anon_sym_BSLASHglsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), - [anon_sym_BSLASHglsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), - [anon_sym_BSLASHglsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), - [anon_sym_BSLASHnewacronym] = ACTIONS(1965), - [anon_sym_BSLASHacrshort] = ACTIONS(1965), - [anon_sym_BSLASHAcrshort] = ACTIONS(1965), - [anon_sym_BSLASHACRshort] = ACTIONS(1965), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), - [anon_sym_BSLASHacrlong] = ACTIONS(1965), - [anon_sym_BSLASHAcrlong] = ACTIONS(1965), - [anon_sym_BSLASHACRlong] = ACTIONS(1965), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), - [anon_sym_BSLASHacrfull] = ACTIONS(1965), - [anon_sym_BSLASHAcrfull] = ACTIONS(1965), - [anon_sym_BSLASHACRfull] = ACTIONS(1965), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), - [anon_sym_BSLASHacs] = ACTIONS(1965), - [anon_sym_BSLASHAcs] = ACTIONS(1965), - [anon_sym_BSLASHacsp] = ACTIONS(1965), - [anon_sym_BSLASHAcsp] = ACTIONS(1965), - [anon_sym_BSLASHacl] = ACTIONS(1965), - [anon_sym_BSLASHAcl] = ACTIONS(1965), - [anon_sym_BSLASHaclp] = ACTIONS(1965), - [anon_sym_BSLASHAclp] = ACTIONS(1965), - [anon_sym_BSLASHacf] = ACTIONS(1965), - [anon_sym_BSLASHAcf] = ACTIONS(1965), - [anon_sym_BSLASHacfp] = ACTIONS(1965), - [anon_sym_BSLASHAcfp] = ACTIONS(1965), - [anon_sym_BSLASHac] = ACTIONS(1965), - [anon_sym_BSLASHAc] = ACTIONS(1965), - [anon_sym_BSLASHacp] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), - [anon_sym_BSLASHcolor] = ACTIONS(1965), - [anon_sym_BSLASHcolorbox] = ACTIONS(1965), - [anon_sym_BSLASHtextcolor] = ACTIONS(1965), - [anon_sym_BSLASHpagecolor] = ACTIONS(1965), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), - [anon_sym_BSLASHtext] = ACTIONS(1965), - [anon_sym_BSLASHintertext] = ACTIONS(1965), - [anon_sym_shortintertext] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [sym_word] = ACTIONS(1990), + [sym_placeholder] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym__] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1988), + [anon_sym_BSLASHbegin] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(1990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1990), + [anon_sym_BSLASHinclude] = ACTIONS(1990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1990), + [anon_sym_BSLASHinput] = ACTIONS(1990), + [anon_sym_BSLASHsubfile] = ACTIONS(1990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1990), + [anon_sym_BSLASHbibliography] = ACTIONS(1990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1990), + [anon_sym_BSLASHincludesvg] = ACTIONS(1990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1990), + [anon_sym_BSLASHimport] = ACTIONS(1990), + [anon_sym_BSLASHsubimport] = ACTIONS(1990), + [anon_sym_BSLASHinputfrom] = ACTIONS(1990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1990), + [anon_sym_BSLASHincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHcaption] = ACTIONS(1990), + [anon_sym_BSLASHcite] = ACTIONS(1990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCite] = ACTIONS(1990), + [anon_sym_BSLASHnocite] = ACTIONS(1990), + [anon_sym_BSLASHcitet] = ACTIONS(1990), + [anon_sym_BSLASHcitep] = ACTIONS(1990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteauthor] = ACTIONS(1990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitetitle] = ACTIONS(1990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteyear] = ACTIONS(1990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitedate] = ACTIONS(1990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteurl] = ACTIONS(1990), + [anon_sym_BSLASHfullcite] = ACTIONS(1990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1990), + [anon_sym_BSLASHcitealt] = ACTIONS(1990), + [anon_sym_BSLASHcitealp] = ACTIONS(1990), + [anon_sym_BSLASHcitetext] = ACTIONS(1990), + [anon_sym_BSLASHparencite] = ACTIONS(1990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHParencite] = ACTIONS(1990), + [anon_sym_BSLASHfootcite] = ACTIONS(1990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1990), + [anon_sym_BSLASHtextcite] = ACTIONS(1990), + [anon_sym_BSLASHTextcite] = ACTIONS(1990), + [anon_sym_BSLASHsmartcite] = ACTIONS(1990), + [anon_sym_BSLASHSmartcite] = ACTIONS(1990), + [anon_sym_BSLASHsupercite] = ACTIONS(1990), + [anon_sym_BSLASHautocite] = ACTIONS(1990), + [anon_sym_BSLASHAutocite] = ACTIONS(1990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHvolcite] = ACTIONS(1990), + [anon_sym_BSLASHVolcite] = ACTIONS(1990), + [anon_sym_BSLASHpvolcite] = ACTIONS(1990), + [anon_sym_BSLASHPvolcite] = ACTIONS(1990), + [anon_sym_BSLASHfvolcite] = ACTIONS(1990), + [anon_sym_BSLASHftvolcite] = ACTIONS(1990), + [anon_sym_BSLASHsvolcite] = ACTIONS(1990), + [anon_sym_BSLASHSvolcite] = ACTIONS(1990), + [anon_sym_BSLASHtvolcite] = ACTIONS(1990), + [anon_sym_BSLASHTvolcite] = ACTIONS(1990), + [anon_sym_BSLASHavolcite] = ACTIONS(1990), + [anon_sym_BSLASHAvolcite] = ACTIONS(1990), + [anon_sym_BSLASHnotecite] = ACTIONS(1990), + [anon_sym_BSLASHNotecite] = ACTIONS(1990), + [anon_sym_BSLASHpnotecite] = ACTIONS(1990), + [anon_sym_BSLASHPnotecite] = ACTIONS(1990), + [anon_sym_BSLASHfnotecite] = ACTIONS(1990), + [anon_sym_BSLASHlabel] = ACTIONS(1990), + [anon_sym_BSLASHref] = ACTIONS(1990), + [anon_sym_BSLASHeqref] = ACTIONS(1990), + [anon_sym_BSLASHvref] = ACTIONS(1990), + [anon_sym_BSLASHVref] = ACTIONS(1990), + [anon_sym_BSLASHautoref] = ACTIONS(1990), + [anon_sym_BSLASHpageref] = ACTIONS(1990), + [anon_sym_BSLASHcref] = ACTIONS(1990), + [anon_sym_BSLASHCref] = ACTIONS(1990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnameCref] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHlabelcref] = ACTIONS(1990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCrefrange] = ACTIONS(1990), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnewlabel] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1990), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1990), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdef] = ACTIONS(1990), + [anon_sym_BSLASHlet] = ACTIONS(1990), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1990), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1990), + [anon_sym_BSLASHgls] = ACTIONS(1990), + [anon_sym_BSLASHGls] = ACTIONS(1990), + [anon_sym_BSLASHGLS] = ACTIONS(1990), + [anon_sym_BSLASHglspl] = ACTIONS(1990), + [anon_sym_BSLASHGlspl] = ACTIONS(1990), + [anon_sym_BSLASHGLSpl] = ACTIONS(1990), + [anon_sym_BSLASHglsdisp] = ACTIONS(1990), + [anon_sym_BSLASHglslink] = ACTIONS(1990), + [anon_sym_BSLASHglstext] = ACTIONS(1990), + [anon_sym_BSLASHGlstext] = ACTIONS(1990), + [anon_sym_BSLASHGLStext] = ACTIONS(1990), + [anon_sym_BSLASHglsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1990), + [anon_sym_BSLASHglsplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSplural] = ACTIONS(1990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHglsname] = ACTIONS(1990), + [anon_sym_BSLASHGlsname] = ACTIONS(1990), + [anon_sym_BSLASHGLSname] = ACTIONS(1990), + [anon_sym_BSLASHglssymbol] = ACTIONS(1990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1990), + [anon_sym_BSLASHglsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1990), + [anon_sym_BSLASHglsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1990), + [anon_sym_BSLASHglsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1990), + [anon_sym_BSLASHglsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1990), + [anon_sym_BSLASHglsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1990), + [anon_sym_BSLASHnewacronym] = ACTIONS(1990), + [anon_sym_BSLASHacrshort] = ACTIONS(1990), + [anon_sym_BSLASHAcrshort] = ACTIONS(1990), + [anon_sym_BSLASHACRshort] = ACTIONS(1990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1990), + [anon_sym_BSLASHacrlong] = ACTIONS(1990), + [anon_sym_BSLASHAcrlong] = ACTIONS(1990), + [anon_sym_BSLASHACRlong] = ACTIONS(1990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1990), + [anon_sym_BSLASHacrfull] = ACTIONS(1990), + [anon_sym_BSLASHAcrfull] = ACTIONS(1990), + [anon_sym_BSLASHACRfull] = ACTIONS(1990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1990), + [anon_sym_BSLASHacs] = ACTIONS(1990), + [anon_sym_BSLASHAcs] = ACTIONS(1990), + [anon_sym_BSLASHacsp] = ACTIONS(1990), + [anon_sym_BSLASHAcsp] = ACTIONS(1990), + [anon_sym_BSLASHacl] = ACTIONS(1990), + [anon_sym_BSLASHAcl] = ACTIONS(1990), + [anon_sym_BSLASHaclp] = ACTIONS(1990), + [anon_sym_BSLASHAclp] = ACTIONS(1990), + [anon_sym_BSLASHacf] = ACTIONS(1990), + [anon_sym_BSLASHAcf] = ACTIONS(1990), + [anon_sym_BSLASHacfp] = ACTIONS(1990), + [anon_sym_BSLASHAcfp] = ACTIONS(1990), + [anon_sym_BSLASHac] = ACTIONS(1990), + [anon_sym_BSLASHAc] = ACTIONS(1990), + [anon_sym_BSLASHacp] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1990), + [anon_sym_BSLASHcolor] = ACTIONS(1990), + [anon_sym_BSLASHcolorbox] = ACTIONS(1990), + [anon_sym_BSLASHtextcolor] = ACTIONS(1990), + [anon_sym_BSLASHpagecolor] = ACTIONS(1990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1990), + [anon_sym_BSLASHtext] = ACTIONS(1990), + [anon_sym_BSLASHintertext] = ACTIONS(1990), + [anon_sym_shortintertext] = ACTIONS(1990), }, [333] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1972), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1970), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [334] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [anon_sym_BSLASHitem] = ACTIONS(1972), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [335] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [336] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [337] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [338] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [339] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [340] = { [sym__paragraph_declaration] = STATE(172), [sym_paragraph] = STATE(325), [aux_sym__section_repeat6] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [341] = { [sym__subsubsection_declaration] = STATE(163), [sym_subsubsection] = STATE(326), [aux_sym__section_repeat5] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [342] = { [sym__enum_itemdeclaration] = STATE(194), [sym_enum_item] = STATE(323), [aux_sym__section_repeat8] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [343] = { [sym__subparagraph_declaration] = STATE(182), [sym_subparagraph] = STATE(324), [aux_sym__section_repeat7] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [344] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [345] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [346] = { [sym_curly_group] = STATE(898), [sym_mixed_group] = STATE(898), [aux_sym_generic_command_repeat1] = STATE(411), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_BSLASHpart] = ACTIONS(4565), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddpart] = ACTIONS(4565), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHchapter] = ACTIONS(4565), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddchap] = ACTIONS(4565), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsection] = ACTIONS(4565), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddsec] = ACTIONS(4565), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHparagraph] = ACTIONS(4565), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHitem] = ACTIONS(4565), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4563), - [anon_sym_BSLASHbegin] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4656), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_BSLASHpart] = ACTIONS(4644), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddpart] = ACTIONS(4644), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHchapter] = ACTIONS(4644), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddchap] = ACTIONS(4644), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsection] = ACTIONS(4644), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddsec] = ACTIONS(4644), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHparagraph] = ACTIONS(4644), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4644), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHitem] = ACTIONS(4644), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4642), + [anon_sym_BSLASHbegin] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [347] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHend] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHend] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [348] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHend] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHend] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [349] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_BSLASHpart] = ACTIONS(4491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddpart] = ACTIONS(4491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHchapter] = ACTIONS(4491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddchap] = ACTIONS(4491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsection] = ACTIONS(4491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddsec] = ACTIONS(4491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHparagraph] = ACTIONS(4491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4489), - [sym_word] = ACTIONS(4491), - [sym_placeholder] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_STAR] = ACTIONS(4491), - [anon_sym_SLASH] = ACTIONS(4491), - [anon_sym_CARET] = ACTIONS(4491), - [anon_sym__] = ACTIONS(4491), - [anon_sym_LT] = ACTIONS(4491), - [anon_sym_GT] = ACTIONS(4491), - [anon_sym_BANG] = ACTIONS(4491), - [anon_sym_PIPE] = ACTIONS(4491), - [anon_sym_COLON] = ACTIONS(4491), - [anon_sym_SQUOTE] = ACTIONS(4491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), - [anon_sym_BSLASHbegin] = ACTIONS(4491), - [anon_sym_BSLASHusepackage] = ACTIONS(4491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), - [anon_sym_BSLASHinclude] = ACTIONS(4491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), - [anon_sym_BSLASHinput] = ACTIONS(4491), - [anon_sym_BSLASHsubfile] = ACTIONS(4491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), - [anon_sym_BSLASHbibliography] = ACTIONS(4491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), - [anon_sym_BSLASHincludesvg] = ACTIONS(4491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), - [anon_sym_BSLASHimport] = ACTIONS(4491), - [anon_sym_BSLASHsubimport] = ACTIONS(4491), - [anon_sym_BSLASHinputfrom] = ACTIONS(4491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), - [anon_sym_BSLASHincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHcaption] = ACTIONS(4491), - [anon_sym_BSLASHcite] = ACTIONS(4491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCite] = ACTIONS(4491), - [anon_sym_BSLASHnocite] = ACTIONS(4491), - [anon_sym_BSLASHcitet] = ACTIONS(4491), - [anon_sym_BSLASHcitep] = ACTIONS(4491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteyear] = ACTIONS(4491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitedate] = ACTIONS(4491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteurl] = ACTIONS(4491), - [anon_sym_BSLASHfullcite] = ACTIONS(4491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), - [anon_sym_BSLASHcitealt] = ACTIONS(4491), - [anon_sym_BSLASHcitealp] = ACTIONS(4491), - [anon_sym_BSLASHcitetext] = ACTIONS(4491), - [anon_sym_BSLASHparencite] = ACTIONS(4491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHParencite] = ACTIONS(4491), - [anon_sym_BSLASHfootcite] = ACTIONS(4491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), - [anon_sym_BSLASHtextcite] = ACTIONS(4491), - [anon_sym_BSLASHTextcite] = ACTIONS(4491), - [anon_sym_BSLASHsmartcite] = ACTIONS(4491), - [anon_sym_BSLASHSmartcite] = ACTIONS(4491), - [anon_sym_BSLASHsupercite] = ACTIONS(4491), - [anon_sym_BSLASHautocite] = ACTIONS(4491), - [anon_sym_BSLASHAutocite] = ACTIONS(4491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHvolcite] = ACTIONS(4491), - [anon_sym_BSLASHVolcite] = ACTIONS(4491), - [anon_sym_BSLASHpvolcite] = ACTIONS(4491), - [anon_sym_BSLASHPvolcite] = ACTIONS(4491), - [anon_sym_BSLASHfvolcite] = ACTIONS(4491), - [anon_sym_BSLASHftvolcite] = ACTIONS(4491), - [anon_sym_BSLASHsvolcite] = ACTIONS(4491), - [anon_sym_BSLASHSvolcite] = ACTIONS(4491), - [anon_sym_BSLASHtvolcite] = ACTIONS(4491), - [anon_sym_BSLASHTvolcite] = ACTIONS(4491), - [anon_sym_BSLASHavolcite] = ACTIONS(4491), - [anon_sym_BSLASHAvolcite] = ACTIONS(4491), - [anon_sym_BSLASHnotecite] = ACTIONS(4491), - [anon_sym_BSLASHNotecite] = ACTIONS(4491), - [anon_sym_BSLASHpnotecite] = ACTIONS(4491), - [anon_sym_BSLASHPnotecite] = ACTIONS(4491), - [anon_sym_BSLASHfnotecite] = ACTIONS(4491), - [anon_sym_BSLASHlabel] = ACTIONS(4491), - [anon_sym_BSLASHref] = ACTIONS(4491), - [anon_sym_BSLASHeqref] = ACTIONS(4491), - [anon_sym_BSLASHvref] = ACTIONS(4491), - [anon_sym_BSLASHVref] = ACTIONS(4491), - [anon_sym_BSLASHautoref] = ACTIONS(4491), - [anon_sym_BSLASHpageref] = ACTIONS(4491), - [anon_sym_BSLASHcref] = ACTIONS(4491), - [anon_sym_BSLASHCref] = ACTIONS(4491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnameCref] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHlabelcref] = ACTIONS(4491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnewlabel] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), - [anon_sym_BSLASHdef] = ACTIONS(4491), - [anon_sym_BSLASHlet] = ACTIONS(4491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), - [anon_sym_BSLASHgls] = ACTIONS(4491), - [anon_sym_BSLASHGls] = ACTIONS(4491), - [anon_sym_BSLASHGLS] = ACTIONS(4491), - [anon_sym_BSLASHglspl] = ACTIONS(4491), - [anon_sym_BSLASHGlspl] = ACTIONS(4491), - [anon_sym_BSLASHGLSpl] = ACTIONS(4491), - [anon_sym_BSLASHglsdisp] = ACTIONS(4491), - [anon_sym_BSLASHglslink] = ACTIONS(4491), - [anon_sym_BSLASHglstext] = ACTIONS(4491), - [anon_sym_BSLASHGlstext] = ACTIONS(4491), - [anon_sym_BSLASHGLStext] = ACTIONS(4491), - [anon_sym_BSLASHglsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), - [anon_sym_BSLASHglsplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSplural] = ACTIONS(4491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHglsname] = ACTIONS(4491), - [anon_sym_BSLASHGlsname] = ACTIONS(4491), - [anon_sym_BSLASHGLSname] = ACTIONS(4491), - [anon_sym_BSLASHglssymbol] = ACTIONS(4491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), - [anon_sym_BSLASHglsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), - [anon_sym_BSLASHglsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), - [anon_sym_BSLASHglsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), - [anon_sym_BSLASHglsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), - [anon_sym_BSLASHglsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), - [anon_sym_BSLASHnewacronym] = ACTIONS(4491), - [anon_sym_BSLASHacrshort] = ACTIONS(4491), - [anon_sym_BSLASHAcrshort] = ACTIONS(4491), - [anon_sym_BSLASHACRshort] = ACTIONS(4491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), - [anon_sym_BSLASHacrlong] = ACTIONS(4491), - [anon_sym_BSLASHAcrlong] = ACTIONS(4491), - [anon_sym_BSLASHACRlong] = ACTIONS(4491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), - [anon_sym_BSLASHacrfull] = ACTIONS(4491), - [anon_sym_BSLASHAcrfull] = ACTIONS(4491), - [anon_sym_BSLASHACRfull] = ACTIONS(4491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), - [anon_sym_BSLASHacs] = ACTIONS(4491), - [anon_sym_BSLASHAcs] = ACTIONS(4491), - [anon_sym_BSLASHacsp] = ACTIONS(4491), - [anon_sym_BSLASHAcsp] = ACTIONS(4491), - [anon_sym_BSLASHacl] = ACTIONS(4491), - [anon_sym_BSLASHAcl] = ACTIONS(4491), - [anon_sym_BSLASHaclp] = ACTIONS(4491), - [anon_sym_BSLASHAclp] = ACTIONS(4491), - [anon_sym_BSLASHacf] = ACTIONS(4491), - [anon_sym_BSLASHAcf] = ACTIONS(4491), - [anon_sym_BSLASHacfp] = ACTIONS(4491), - [anon_sym_BSLASHAcfp] = ACTIONS(4491), - [anon_sym_BSLASHac] = ACTIONS(4491), - [anon_sym_BSLASHAc] = ACTIONS(4491), - [anon_sym_BSLASHacp] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), - [anon_sym_BSLASHcolor] = ACTIONS(4491), - [anon_sym_BSLASHcolorbox] = ACTIONS(4491), - [anon_sym_BSLASHtextcolor] = ACTIONS(4491), - [anon_sym_BSLASHpagecolor] = ACTIONS(4491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), - [anon_sym_BSLASHtext] = ACTIONS(4491), - [anon_sym_BSLASHintertext] = ACTIONS(4491), - [anon_sym_shortintertext] = ACTIONS(4491), + [sym_command_name] = ACTIONS(4570), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_BSLASHpart] = ACTIONS(4570), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddpart] = ACTIONS(4570), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHchapter] = ACTIONS(4570), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddchap] = ACTIONS(4570), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsection] = ACTIONS(4570), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddsec] = ACTIONS(4570), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHparagraph] = ACTIONS(4570), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4570), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4568), + [sym_word] = ACTIONS(4570), + [sym_placeholder] = ACTIONS(4568), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym__] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_SQUOTE] = ACTIONS(4570), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4568), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4568), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4568), + [anon_sym_BSLASHbegin] = ACTIONS(4570), + [anon_sym_BSLASHusepackage] = ACTIONS(4570), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4570), + [anon_sym_BSLASHinclude] = ACTIONS(4570), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4570), + [anon_sym_BSLASHinput] = ACTIONS(4570), + [anon_sym_BSLASHsubfile] = ACTIONS(4570), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4570), + [anon_sym_BSLASHbibliography] = ACTIONS(4570), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4570), + [anon_sym_BSLASHincludesvg] = ACTIONS(4570), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4570), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4570), + [anon_sym_BSLASHimport] = ACTIONS(4570), + [anon_sym_BSLASHsubimport] = ACTIONS(4570), + [anon_sym_BSLASHinputfrom] = ACTIONS(4570), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4570), + [anon_sym_BSLASHincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHcaption] = ACTIONS(4570), + [anon_sym_BSLASHcite] = ACTIONS(4570), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCite] = ACTIONS(4570), + [anon_sym_BSLASHnocite] = ACTIONS(4570), + [anon_sym_BSLASHcitet] = ACTIONS(4570), + [anon_sym_BSLASHcitep] = ACTIONS(4570), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteauthor] = ACTIONS(4570), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4570), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitetitle] = ACTIONS(4570), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteyear] = ACTIONS(4570), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitedate] = ACTIONS(4570), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteurl] = ACTIONS(4570), + [anon_sym_BSLASHfullcite] = ACTIONS(4570), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4570), + [anon_sym_BSLASHcitealt] = ACTIONS(4570), + [anon_sym_BSLASHcitealp] = ACTIONS(4570), + [anon_sym_BSLASHcitetext] = ACTIONS(4570), + [anon_sym_BSLASHparencite] = ACTIONS(4570), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHParencite] = ACTIONS(4570), + [anon_sym_BSLASHfootcite] = ACTIONS(4570), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4570), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4570), + [anon_sym_BSLASHtextcite] = ACTIONS(4570), + [anon_sym_BSLASHTextcite] = ACTIONS(4570), + [anon_sym_BSLASHsmartcite] = ACTIONS(4570), + [anon_sym_BSLASHSmartcite] = ACTIONS(4570), + [anon_sym_BSLASHsupercite] = ACTIONS(4570), + [anon_sym_BSLASHautocite] = ACTIONS(4570), + [anon_sym_BSLASHAutocite] = ACTIONS(4570), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHvolcite] = ACTIONS(4570), + [anon_sym_BSLASHVolcite] = ACTIONS(4570), + [anon_sym_BSLASHpvolcite] = ACTIONS(4570), + [anon_sym_BSLASHPvolcite] = ACTIONS(4570), + [anon_sym_BSLASHfvolcite] = ACTIONS(4570), + [anon_sym_BSLASHftvolcite] = ACTIONS(4570), + [anon_sym_BSLASHsvolcite] = ACTIONS(4570), + [anon_sym_BSLASHSvolcite] = ACTIONS(4570), + [anon_sym_BSLASHtvolcite] = ACTIONS(4570), + [anon_sym_BSLASHTvolcite] = ACTIONS(4570), + [anon_sym_BSLASHavolcite] = ACTIONS(4570), + [anon_sym_BSLASHAvolcite] = ACTIONS(4570), + [anon_sym_BSLASHnotecite] = ACTIONS(4570), + [anon_sym_BSLASHNotecite] = ACTIONS(4570), + [anon_sym_BSLASHpnotecite] = ACTIONS(4570), + [anon_sym_BSLASHPnotecite] = ACTIONS(4570), + [anon_sym_BSLASHfnotecite] = ACTIONS(4570), + [anon_sym_BSLASHlabel] = ACTIONS(4570), + [anon_sym_BSLASHref] = ACTIONS(4570), + [anon_sym_BSLASHeqref] = ACTIONS(4570), + [anon_sym_BSLASHvref] = ACTIONS(4570), + [anon_sym_BSLASHVref] = ACTIONS(4570), + [anon_sym_BSLASHautoref] = ACTIONS(4570), + [anon_sym_BSLASHpageref] = ACTIONS(4570), + [anon_sym_BSLASHcref] = ACTIONS(4570), + [anon_sym_BSLASHCref] = ACTIONS(4570), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnameCref] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHlabelcref] = ACTIONS(4570), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCrefrange] = ACTIONS(4570), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnewlabel] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4570), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4570), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdef] = ACTIONS(4570), + [anon_sym_BSLASHlet] = ACTIONS(4570), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4570), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4570), + [anon_sym_BSLASHgls] = ACTIONS(4570), + [anon_sym_BSLASHGls] = ACTIONS(4570), + [anon_sym_BSLASHGLS] = ACTIONS(4570), + [anon_sym_BSLASHglspl] = ACTIONS(4570), + [anon_sym_BSLASHGlspl] = ACTIONS(4570), + [anon_sym_BSLASHGLSpl] = ACTIONS(4570), + [anon_sym_BSLASHglsdisp] = ACTIONS(4570), + [anon_sym_BSLASHglslink] = ACTIONS(4570), + [anon_sym_BSLASHglstext] = ACTIONS(4570), + [anon_sym_BSLASHGlstext] = ACTIONS(4570), + [anon_sym_BSLASHGLStext] = ACTIONS(4570), + [anon_sym_BSLASHglsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4570), + [anon_sym_BSLASHglsplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSplural] = ACTIONS(4570), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHglsname] = ACTIONS(4570), + [anon_sym_BSLASHGlsname] = ACTIONS(4570), + [anon_sym_BSLASHGLSname] = ACTIONS(4570), + [anon_sym_BSLASHglssymbol] = ACTIONS(4570), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4570), + [anon_sym_BSLASHglsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4570), + [anon_sym_BSLASHglsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4570), + [anon_sym_BSLASHglsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4570), + [anon_sym_BSLASHglsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4570), + [anon_sym_BSLASHglsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4570), + [anon_sym_BSLASHnewacronym] = ACTIONS(4570), + [anon_sym_BSLASHacrshort] = ACTIONS(4570), + [anon_sym_BSLASHAcrshort] = ACTIONS(4570), + [anon_sym_BSLASHACRshort] = ACTIONS(4570), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4570), + [anon_sym_BSLASHacrlong] = ACTIONS(4570), + [anon_sym_BSLASHAcrlong] = ACTIONS(4570), + [anon_sym_BSLASHACRlong] = ACTIONS(4570), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4570), + [anon_sym_BSLASHacrfull] = ACTIONS(4570), + [anon_sym_BSLASHAcrfull] = ACTIONS(4570), + [anon_sym_BSLASHACRfull] = ACTIONS(4570), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4570), + [anon_sym_BSLASHacs] = ACTIONS(4570), + [anon_sym_BSLASHAcs] = ACTIONS(4570), + [anon_sym_BSLASHacsp] = ACTIONS(4570), + [anon_sym_BSLASHAcsp] = ACTIONS(4570), + [anon_sym_BSLASHacl] = ACTIONS(4570), + [anon_sym_BSLASHAcl] = ACTIONS(4570), + [anon_sym_BSLASHaclp] = ACTIONS(4570), + [anon_sym_BSLASHAclp] = ACTIONS(4570), + [anon_sym_BSLASHacf] = ACTIONS(4570), + [anon_sym_BSLASHAcf] = ACTIONS(4570), + [anon_sym_BSLASHacfp] = ACTIONS(4570), + [anon_sym_BSLASHAcfp] = ACTIONS(4570), + [anon_sym_BSLASHac] = ACTIONS(4570), + [anon_sym_BSLASHAc] = ACTIONS(4570), + [anon_sym_BSLASHacp] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4570), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4570), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4570), + [anon_sym_BSLASHcolor] = ACTIONS(4570), + [anon_sym_BSLASHcolorbox] = ACTIONS(4570), + [anon_sym_BSLASHtextcolor] = ACTIONS(4570), + [anon_sym_BSLASHpagecolor] = ACTIONS(4570), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4570), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4570), + [anon_sym_BSLASHtext] = ACTIONS(4570), + [anon_sym_BSLASHintertext] = ACTIONS(4570), + [anon_sym_shortintertext] = ACTIONS(4570), }, [350] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHend] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHend] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [351] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHend] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHend] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [352] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHend] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHend] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [353] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4566), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [354] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHend] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHend] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [355] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4566), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [356] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHend] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHend] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [357] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHend] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHend] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [358] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [359] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHend] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHend] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [360] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [361] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [362] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [363] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHend] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHend] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [364] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [365] = { [sym__section_declaration] = STATE(145), [sym_section] = STATE(393), [aux_sym__section_repeat3] = STATE(393), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHend] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHend] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [366] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [367] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [368] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [369] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [370] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [371] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [372] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [373] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [374] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [375] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [376] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [377] = { [sym__section_declaration] = STATE(145), [sym_section] = STATE(393), [aux_sym__section_repeat3] = STATE(393), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [378] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [379] = { [sym__chapter_declaration] = STATE(141), [sym_chapter] = STATE(399), [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHend] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHend] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [380] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [381] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [382] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [383] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [384] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [385] = { [sym_curly_group] = STATE(1118), [sym_mixed_group] = STATE(1118), [aux_sym_generic_command_repeat1] = STATE(385), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4579), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4579), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_BSLASHpart] = ACTIONS(4461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddpart] = ACTIONS(4461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHchapter] = ACTIONS(4461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddchap] = ACTIONS(4461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsection] = ACTIONS(4461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddsec] = ACTIONS(4461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHparagraph] = ACTIONS(4461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHitem] = ACTIONS(4461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(4582), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASHbegin] = ACTIONS(4461), - [anon_sym_BSLASHend] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_BSLASHpart] = ACTIONS(4540), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddpart] = ACTIONS(4540), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHchapter] = ACTIONS(4540), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddchap] = ACTIONS(4540), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsection] = ACTIONS(4540), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddsec] = ACTIONS(4540), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHparagraph] = ACTIONS(4540), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4540), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHitem] = ACTIONS(4540), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4661), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASHbegin] = ACTIONS(4540), + [anon_sym_BSLASHend] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [386] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4495), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4493), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [anon_sym_RBRACK] = ACTIONS(4493), - [anon_sym_COMMA] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_BSLASHpart] = ACTIONS(4495), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddpart] = ACTIONS(4495), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHchapter] = ACTIONS(4495), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddchap] = ACTIONS(4495), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsection] = ACTIONS(4495), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddsec] = ACTIONS(4495), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHparagraph] = ACTIONS(4495), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHitem] = ACTIONS(4585), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4588), - [anon_sym_LBRACE] = ACTIONS(4493), - [sym_word] = ACTIONS(4495), - [sym_placeholder] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_CARET] = ACTIONS(4495), - [anon_sym__] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_PIPE] = ACTIONS(4495), - [anon_sym_COLON] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), - [anon_sym_BSLASHbegin] = ACTIONS(4495), - [anon_sym_BSLASHend] = ACTIONS(4495), - [anon_sym_BSLASHusepackage] = ACTIONS(4495), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), - [anon_sym_BSLASHinclude] = ACTIONS(4495), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), - [anon_sym_BSLASHinput] = ACTIONS(4495), - [anon_sym_BSLASHsubfile] = ACTIONS(4495), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), - [anon_sym_BSLASHbibliography] = ACTIONS(4495), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), - [anon_sym_BSLASHincludesvg] = ACTIONS(4495), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), - [anon_sym_BSLASHimport] = ACTIONS(4495), - [anon_sym_BSLASHsubimport] = ACTIONS(4495), - [anon_sym_BSLASHinputfrom] = ACTIONS(4495), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), - [anon_sym_BSLASHincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHcaption] = ACTIONS(4495), - [anon_sym_BSLASHcite] = ACTIONS(4495), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCite] = ACTIONS(4495), - [anon_sym_BSLASHnocite] = ACTIONS(4495), - [anon_sym_BSLASHcitet] = ACTIONS(4495), - [anon_sym_BSLASHcitep] = ACTIONS(4495), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor] = ACTIONS(4495), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle] = ACTIONS(4495), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteyear] = ACTIONS(4495), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitedate] = ACTIONS(4495), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteurl] = ACTIONS(4495), - [anon_sym_BSLASHfullcite] = ACTIONS(4495), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), - [anon_sym_BSLASHcitealt] = ACTIONS(4495), - [anon_sym_BSLASHcitealp] = ACTIONS(4495), - [anon_sym_BSLASHcitetext] = ACTIONS(4495), - [anon_sym_BSLASHparencite] = ACTIONS(4495), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHParencite] = ACTIONS(4495), - [anon_sym_BSLASHfootcite] = ACTIONS(4495), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), - [anon_sym_BSLASHtextcite] = ACTIONS(4495), - [anon_sym_BSLASHTextcite] = ACTIONS(4495), - [anon_sym_BSLASHsmartcite] = ACTIONS(4495), - [anon_sym_BSLASHSmartcite] = ACTIONS(4495), - [anon_sym_BSLASHsupercite] = ACTIONS(4495), - [anon_sym_BSLASHautocite] = ACTIONS(4495), - [anon_sym_BSLASHAutocite] = ACTIONS(4495), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHvolcite] = ACTIONS(4495), - [anon_sym_BSLASHVolcite] = ACTIONS(4495), - [anon_sym_BSLASHpvolcite] = ACTIONS(4495), - [anon_sym_BSLASHPvolcite] = ACTIONS(4495), - [anon_sym_BSLASHfvolcite] = ACTIONS(4495), - [anon_sym_BSLASHftvolcite] = ACTIONS(4495), - [anon_sym_BSLASHsvolcite] = ACTIONS(4495), - [anon_sym_BSLASHSvolcite] = ACTIONS(4495), - [anon_sym_BSLASHtvolcite] = ACTIONS(4495), - [anon_sym_BSLASHTvolcite] = ACTIONS(4495), - [anon_sym_BSLASHavolcite] = ACTIONS(4495), - [anon_sym_BSLASHAvolcite] = ACTIONS(4495), - [anon_sym_BSLASHnotecite] = ACTIONS(4495), - [anon_sym_BSLASHNotecite] = ACTIONS(4495), - [anon_sym_BSLASHpnotecite] = ACTIONS(4495), - [anon_sym_BSLASHPnotecite] = ACTIONS(4495), - [anon_sym_BSLASHfnotecite] = ACTIONS(4495), - [anon_sym_BSLASHlabel] = ACTIONS(4495), - [anon_sym_BSLASHref] = ACTIONS(4495), - [anon_sym_BSLASHeqref] = ACTIONS(4495), - [anon_sym_BSLASHvref] = ACTIONS(4495), - [anon_sym_BSLASHVref] = ACTIONS(4495), - [anon_sym_BSLASHautoref] = ACTIONS(4495), - [anon_sym_BSLASHpageref] = ACTIONS(4495), - [anon_sym_BSLASHcref] = ACTIONS(4495), - [anon_sym_BSLASHCref] = ACTIONS(4495), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnameCref] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHlabelcref] = ACTIONS(4495), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange] = ACTIONS(4495), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnewlabel] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), - [anon_sym_BSLASHdef] = ACTIONS(4495), - [anon_sym_BSLASHlet] = ACTIONS(4495), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), - [anon_sym_BSLASHgls] = ACTIONS(4495), - [anon_sym_BSLASHGls] = ACTIONS(4495), - [anon_sym_BSLASHGLS] = ACTIONS(4495), - [anon_sym_BSLASHglspl] = ACTIONS(4495), - [anon_sym_BSLASHGlspl] = ACTIONS(4495), - [anon_sym_BSLASHGLSpl] = ACTIONS(4495), - [anon_sym_BSLASHglsdisp] = ACTIONS(4495), - [anon_sym_BSLASHglslink] = ACTIONS(4495), - [anon_sym_BSLASHglstext] = ACTIONS(4495), - [anon_sym_BSLASHGlstext] = ACTIONS(4495), - [anon_sym_BSLASHGLStext] = ACTIONS(4495), - [anon_sym_BSLASHglsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), - [anon_sym_BSLASHglsplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSplural] = ACTIONS(4495), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHglsname] = ACTIONS(4495), - [anon_sym_BSLASHGlsname] = ACTIONS(4495), - [anon_sym_BSLASHGLSname] = ACTIONS(4495), - [anon_sym_BSLASHglssymbol] = ACTIONS(4495), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), - [anon_sym_BSLASHglsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), - [anon_sym_BSLASHglsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), - [anon_sym_BSLASHglsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), - [anon_sym_BSLASHglsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), - [anon_sym_BSLASHglsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), - [anon_sym_BSLASHnewacronym] = ACTIONS(4495), - [anon_sym_BSLASHacrshort] = ACTIONS(4495), - [anon_sym_BSLASHAcrshort] = ACTIONS(4495), - [anon_sym_BSLASHACRshort] = ACTIONS(4495), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), - [anon_sym_BSLASHacrlong] = ACTIONS(4495), - [anon_sym_BSLASHAcrlong] = ACTIONS(4495), - [anon_sym_BSLASHACRlong] = ACTIONS(4495), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), - [anon_sym_BSLASHacrfull] = ACTIONS(4495), - [anon_sym_BSLASHAcrfull] = ACTIONS(4495), - [anon_sym_BSLASHACRfull] = ACTIONS(4495), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), - [anon_sym_BSLASHacs] = ACTIONS(4495), - [anon_sym_BSLASHAcs] = ACTIONS(4495), - [anon_sym_BSLASHacsp] = ACTIONS(4495), - [anon_sym_BSLASHAcsp] = ACTIONS(4495), - [anon_sym_BSLASHacl] = ACTIONS(4495), - [anon_sym_BSLASHAcl] = ACTIONS(4495), - [anon_sym_BSLASHaclp] = ACTIONS(4495), - [anon_sym_BSLASHAclp] = ACTIONS(4495), - [anon_sym_BSLASHacf] = ACTIONS(4495), - [anon_sym_BSLASHAcf] = ACTIONS(4495), - [anon_sym_BSLASHacfp] = ACTIONS(4495), - [anon_sym_BSLASHAcfp] = ACTIONS(4495), - [anon_sym_BSLASHac] = ACTIONS(4495), - [anon_sym_BSLASHAc] = ACTIONS(4495), - [anon_sym_BSLASHacp] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), - [anon_sym_BSLASHcolor] = ACTIONS(4495), - [anon_sym_BSLASHcolorbox] = ACTIONS(4495), - [anon_sym_BSLASHtextcolor] = ACTIONS(4495), - [anon_sym_BSLASHpagecolor] = ACTIONS(4495), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), - [anon_sym_BSLASHtext] = ACTIONS(4495), - [anon_sym_BSLASHintertext] = ACTIONS(4495), - [anon_sym_shortintertext] = ACTIONS(4495), + [sym_command_name] = ACTIONS(4574), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4574), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_BSLASHpart] = ACTIONS(4574), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddpart] = ACTIONS(4574), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHchapter] = ACTIONS(4574), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddchap] = ACTIONS(4574), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsection] = ACTIONS(4574), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddsec] = ACTIONS(4574), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHparagraph] = ACTIONS(4574), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4574), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHitem] = ACTIONS(4664), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4667), + [anon_sym_LBRACE] = ACTIONS(4572), + [sym_word] = ACTIONS(4574), + [sym_placeholder] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4574), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4574), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4574), + [anon_sym_BANG] = ACTIONS(4574), + [anon_sym_PIPE] = ACTIONS(4574), + [anon_sym_COLON] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4574), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4574), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4572), + [anon_sym_BSLASHbegin] = ACTIONS(4574), + [anon_sym_BSLASHend] = ACTIONS(4574), + [anon_sym_BSLASHusepackage] = ACTIONS(4574), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4574), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4574), + [anon_sym_BSLASHinclude] = ACTIONS(4574), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4574), + [anon_sym_BSLASHinput] = ACTIONS(4574), + [anon_sym_BSLASHsubfile] = ACTIONS(4574), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4574), + [anon_sym_BSLASHbibliography] = ACTIONS(4574), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4574), + [anon_sym_BSLASHincludesvg] = ACTIONS(4574), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4574), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4574), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4574), + [anon_sym_BSLASHimport] = ACTIONS(4574), + [anon_sym_BSLASHsubimport] = ACTIONS(4574), + [anon_sym_BSLASHinputfrom] = ACTIONS(4574), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4574), + [anon_sym_BSLASHincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHcaption] = ACTIONS(4574), + [anon_sym_BSLASHcite] = ACTIONS(4574), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCite] = ACTIONS(4574), + [anon_sym_BSLASHnocite] = ACTIONS(4574), + [anon_sym_BSLASHcitet] = ACTIONS(4574), + [anon_sym_BSLASHcitep] = ACTIONS(4574), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteauthor] = ACTIONS(4574), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4574), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitetitle] = ACTIONS(4574), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteyear] = ACTIONS(4574), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitedate] = ACTIONS(4574), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteurl] = ACTIONS(4574), + [anon_sym_BSLASHfullcite] = ACTIONS(4574), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4574), + [anon_sym_BSLASHcitealt] = ACTIONS(4574), + [anon_sym_BSLASHcitealp] = ACTIONS(4574), + [anon_sym_BSLASHcitetext] = ACTIONS(4574), + [anon_sym_BSLASHparencite] = ACTIONS(4574), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHParencite] = ACTIONS(4574), + [anon_sym_BSLASHfootcite] = ACTIONS(4574), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4574), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4574), + [anon_sym_BSLASHtextcite] = ACTIONS(4574), + [anon_sym_BSLASHTextcite] = ACTIONS(4574), + [anon_sym_BSLASHsmartcite] = ACTIONS(4574), + [anon_sym_BSLASHSmartcite] = ACTIONS(4574), + [anon_sym_BSLASHsupercite] = ACTIONS(4574), + [anon_sym_BSLASHautocite] = ACTIONS(4574), + [anon_sym_BSLASHAutocite] = ACTIONS(4574), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHvolcite] = ACTIONS(4574), + [anon_sym_BSLASHVolcite] = ACTIONS(4574), + [anon_sym_BSLASHpvolcite] = ACTIONS(4574), + [anon_sym_BSLASHPvolcite] = ACTIONS(4574), + [anon_sym_BSLASHfvolcite] = ACTIONS(4574), + [anon_sym_BSLASHftvolcite] = ACTIONS(4574), + [anon_sym_BSLASHsvolcite] = ACTIONS(4574), + [anon_sym_BSLASHSvolcite] = ACTIONS(4574), + [anon_sym_BSLASHtvolcite] = ACTIONS(4574), + [anon_sym_BSLASHTvolcite] = ACTIONS(4574), + [anon_sym_BSLASHavolcite] = ACTIONS(4574), + [anon_sym_BSLASHAvolcite] = ACTIONS(4574), + [anon_sym_BSLASHnotecite] = ACTIONS(4574), + [anon_sym_BSLASHNotecite] = ACTIONS(4574), + [anon_sym_BSLASHpnotecite] = ACTIONS(4574), + [anon_sym_BSLASHPnotecite] = ACTIONS(4574), + [anon_sym_BSLASHfnotecite] = ACTIONS(4574), + [anon_sym_BSLASHlabel] = ACTIONS(4574), + [anon_sym_BSLASHref] = ACTIONS(4574), + [anon_sym_BSLASHeqref] = ACTIONS(4574), + [anon_sym_BSLASHvref] = ACTIONS(4574), + [anon_sym_BSLASHVref] = ACTIONS(4574), + [anon_sym_BSLASHautoref] = ACTIONS(4574), + [anon_sym_BSLASHpageref] = ACTIONS(4574), + [anon_sym_BSLASHcref] = ACTIONS(4574), + [anon_sym_BSLASHCref] = ACTIONS(4574), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnameCref] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHlabelcref] = ACTIONS(4574), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCrefrange] = ACTIONS(4574), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnewlabel] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4574), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4574), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4574), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdef] = ACTIONS(4574), + [anon_sym_BSLASHlet] = ACTIONS(4574), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4574), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4574), + [anon_sym_BSLASHgls] = ACTIONS(4574), + [anon_sym_BSLASHGls] = ACTIONS(4574), + [anon_sym_BSLASHGLS] = ACTIONS(4574), + [anon_sym_BSLASHglspl] = ACTIONS(4574), + [anon_sym_BSLASHGlspl] = ACTIONS(4574), + [anon_sym_BSLASHGLSpl] = ACTIONS(4574), + [anon_sym_BSLASHglsdisp] = ACTIONS(4574), + [anon_sym_BSLASHglslink] = ACTIONS(4574), + [anon_sym_BSLASHglstext] = ACTIONS(4574), + [anon_sym_BSLASHGlstext] = ACTIONS(4574), + [anon_sym_BSLASHGLStext] = ACTIONS(4574), + [anon_sym_BSLASHglsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4574), + [anon_sym_BSLASHglsplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSplural] = ACTIONS(4574), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHglsname] = ACTIONS(4574), + [anon_sym_BSLASHGlsname] = ACTIONS(4574), + [anon_sym_BSLASHGLSname] = ACTIONS(4574), + [anon_sym_BSLASHglssymbol] = ACTIONS(4574), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4574), + [anon_sym_BSLASHglsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4574), + [anon_sym_BSLASHglsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4574), + [anon_sym_BSLASHglsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4574), + [anon_sym_BSLASHglsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4574), + [anon_sym_BSLASHglsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4574), + [anon_sym_BSLASHnewacronym] = ACTIONS(4574), + [anon_sym_BSLASHacrshort] = ACTIONS(4574), + [anon_sym_BSLASHAcrshort] = ACTIONS(4574), + [anon_sym_BSLASHACRshort] = ACTIONS(4574), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4574), + [anon_sym_BSLASHacrlong] = ACTIONS(4574), + [anon_sym_BSLASHAcrlong] = ACTIONS(4574), + [anon_sym_BSLASHACRlong] = ACTIONS(4574), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4574), + [anon_sym_BSLASHacrfull] = ACTIONS(4574), + [anon_sym_BSLASHAcrfull] = ACTIONS(4574), + [anon_sym_BSLASHACRfull] = ACTIONS(4574), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4574), + [anon_sym_BSLASHacs] = ACTIONS(4574), + [anon_sym_BSLASHAcs] = ACTIONS(4574), + [anon_sym_BSLASHacsp] = ACTIONS(4574), + [anon_sym_BSLASHAcsp] = ACTIONS(4574), + [anon_sym_BSLASHacl] = ACTIONS(4574), + [anon_sym_BSLASHAcl] = ACTIONS(4574), + [anon_sym_BSLASHaclp] = ACTIONS(4574), + [anon_sym_BSLASHAclp] = ACTIONS(4574), + [anon_sym_BSLASHacf] = ACTIONS(4574), + [anon_sym_BSLASHAcf] = ACTIONS(4574), + [anon_sym_BSLASHacfp] = ACTIONS(4574), + [anon_sym_BSLASHAcfp] = ACTIONS(4574), + [anon_sym_BSLASHac] = ACTIONS(4574), + [anon_sym_BSLASHAc] = ACTIONS(4574), + [anon_sym_BSLASHacp] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4574), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4574), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4574), + [anon_sym_BSLASHcolor] = ACTIONS(4574), + [anon_sym_BSLASHcolorbox] = ACTIONS(4574), + [anon_sym_BSLASHtextcolor] = ACTIONS(4574), + [anon_sym_BSLASHpagecolor] = ACTIONS(4574), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4574), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4574), + [anon_sym_BSLASHtext] = ACTIONS(4574), + [anon_sym_BSLASHintertext] = ACTIONS(4574), + [anon_sym_shortintertext] = ACTIONS(4574), }, [387] = { [sym__section_declaration] = STATE(148), [sym_section] = STATE(456), [aux_sym__section_repeat3] = STATE(456), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [388] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_BSLASHpart] = ACTIONS(4505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddpart] = ACTIONS(4505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHchapter] = ACTIONS(4505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddchap] = ACTIONS(4505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsection] = ACTIONS(4505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddsec] = ACTIONS(4505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHparagraph] = ACTIONS(4505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4591), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4594), - [anon_sym_BSLASHitem] = ACTIONS(4505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), - [anon_sym_LBRACE] = ACTIONS(4503), - [sym_word] = ACTIONS(4505), - [sym_placeholder] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(4505), - [anon_sym_SLASH] = ACTIONS(4505), - [anon_sym_CARET] = ACTIONS(4505), - [anon_sym__] = ACTIONS(4505), - [anon_sym_LT] = ACTIONS(4505), - [anon_sym_GT] = ACTIONS(4505), - [anon_sym_BANG] = ACTIONS(4505), - [anon_sym_PIPE] = ACTIONS(4505), - [anon_sym_COLON] = ACTIONS(4505), - [anon_sym_SQUOTE] = ACTIONS(4505), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), - [anon_sym_BSLASHbegin] = ACTIONS(4505), - [anon_sym_BSLASHend] = ACTIONS(4505), - [anon_sym_BSLASHusepackage] = ACTIONS(4505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), - [anon_sym_BSLASHinclude] = ACTIONS(4505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), - [anon_sym_BSLASHinput] = ACTIONS(4505), - [anon_sym_BSLASHsubfile] = ACTIONS(4505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), - [anon_sym_BSLASHbibliography] = ACTIONS(4505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), - [anon_sym_BSLASHincludesvg] = ACTIONS(4505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), - [anon_sym_BSLASHimport] = ACTIONS(4505), - [anon_sym_BSLASHsubimport] = ACTIONS(4505), - [anon_sym_BSLASHinputfrom] = ACTIONS(4505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), - [anon_sym_BSLASHincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHcaption] = ACTIONS(4505), - [anon_sym_BSLASHcite] = ACTIONS(4505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCite] = ACTIONS(4505), - [anon_sym_BSLASHnocite] = ACTIONS(4505), - [anon_sym_BSLASHcitet] = ACTIONS(4505), - [anon_sym_BSLASHcitep] = ACTIONS(4505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor] = ACTIONS(4505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle] = ACTIONS(4505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteyear] = ACTIONS(4505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitedate] = ACTIONS(4505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteurl] = ACTIONS(4505), - [anon_sym_BSLASHfullcite] = ACTIONS(4505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), - [anon_sym_BSLASHcitealt] = ACTIONS(4505), - [anon_sym_BSLASHcitealp] = ACTIONS(4505), - [anon_sym_BSLASHcitetext] = ACTIONS(4505), - [anon_sym_BSLASHparencite] = ACTIONS(4505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHParencite] = ACTIONS(4505), - [anon_sym_BSLASHfootcite] = ACTIONS(4505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), - [anon_sym_BSLASHtextcite] = ACTIONS(4505), - [anon_sym_BSLASHTextcite] = ACTIONS(4505), - [anon_sym_BSLASHsmartcite] = ACTIONS(4505), - [anon_sym_BSLASHSmartcite] = ACTIONS(4505), - [anon_sym_BSLASHsupercite] = ACTIONS(4505), - [anon_sym_BSLASHautocite] = ACTIONS(4505), - [anon_sym_BSLASHAutocite] = ACTIONS(4505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHvolcite] = ACTIONS(4505), - [anon_sym_BSLASHVolcite] = ACTIONS(4505), - [anon_sym_BSLASHpvolcite] = ACTIONS(4505), - [anon_sym_BSLASHPvolcite] = ACTIONS(4505), - [anon_sym_BSLASHfvolcite] = ACTIONS(4505), - [anon_sym_BSLASHftvolcite] = ACTIONS(4505), - [anon_sym_BSLASHsvolcite] = ACTIONS(4505), - [anon_sym_BSLASHSvolcite] = ACTIONS(4505), - [anon_sym_BSLASHtvolcite] = ACTIONS(4505), - [anon_sym_BSLASHTvolcite] = ACTIONS(4505), - [anon_sym_BSLASHavolcite] = ACTIONS(4505), - [anon_sym_BSLASHAvolcite] = ACTIONS(4505), - [anon_sym_BSLASHnotecite] = ACTIONS(4505), - [anon_sym_BSLASHNotecite] = ACTIONS(4505), - [anon_sym_BSLASHpnotecite] = ACTIONS(4505), - [anon_sym_BSLASHPnotecite] = ACTIONS(4505), - [anon_sym_BSLASHfnotecite] = ACTIONS(4505), - [anon_sym_BSLASHlabel] = ACTIONS(4505), - [anon_sym_BSLASHref] = ACTIONS(4505), - [anon_sym_BSLASHeqref] = ACTIONS(4505), - [anon_sym_BSLASHvref] = ACTIONS(4505), - [anon_sym_BSLASHVref] = ACTIONS(4505), - [anon_sym_BSLASHautoref] = ACTIONS(4505), - [anon_sym_BSLASHpageref] = ACTIONS(4505), - [anon_sym_BSLASHcref] = ACTIONS(4505), - [anon_sym_BSLASHCref] = ACTIONS(4505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnameCref] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHlabelcref] = ACTIONS(4505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange] = ACTIONS(4505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnewlabel] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), - [anon_sym_BSLASHdef] = ACTIONS(4505), - [anon_sym_BSLASHlet] = ACTIONS(4505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), - [anon_sym_BSLASHgls] = ACTIONS(4505), - [anon_sym_BSLASHGls] = ACTIONS(4505), - [anon_sym_BSLASHGLS] = ACTIONS(4505), - [anon_sym_BSLASHglspl] = ACTIONS(4505), - [anon_sym_BSLASHGlspl] = ACTIONS(4505), - [anon_sym_BSLASHGLSpl] = ACTIONS(4505), - [anon_sym_BSLASHglsdisp] = ACTIONS(4505), - [anon_sym_BSLASHglslink] = ACTIONS(4505), - [anon_sym_BSLASHglstext] = ACTIONS(4505), - [anon_sym_BSLASHGlstext] = ACTIONS(4505), - [anon_sym_BSLASHGLStext] = ACTIONS(4505), - [anon_sym_BSLASHglsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), - [anon_sym_BSLASHglsplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSplural] = ACTIONS(4505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHglsname] = ACTIONS(4505), - [anon_sym_BSLASHGlsname] = ACTIONS(4505), - [anon_sym_BSLASHGLSname] = ACTIONS(4505), - [anon_sym_BSLASHglssymbol] = ACTIONS(4505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), - [anon_sym_BSLASHglsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), - [anon_sym_BSLASHglsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), - [anon_sym_BSLASHglsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), - [anon_sym_BSLASHglsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), - [anon_sym_BSLASHglsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), - [anon_sym_BSLASHnewacronym] = ACTIONS(4505), - [anon_sym_BSLASHacrshort] = ACTIONS(4505), - [anon_sym_BSLASHAcrshort] = ACTIONS(4505), - [anon_sym_BSLASHACRshort] = ACTIONS(4505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), - [anon_sym_BSLASHacrlong] = ACTIONS(4505), - [anon_sym_BSLASHAcrlong] = ACTIONS(4505), - [anon_sym_BSLASHACRlong] = ACTIONS(4505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), - [anon_sym_BSLASHacrfull] = ACTIONS(4505), - [anon_sym_BSLASHAcrfull] = ACTIONS(4505), - [anon_sym_BSLASHACRfull] = ACTIONS(4505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), - [anon_sym_BSLASHacs] = ACTIONS(4505), - [anon_sym_BSLASHAcs] = ACTIONS(4505), - [anon_sym_BSLASHacsp] = ACTIONS(4505), - [anon_sym_BSLASHAcsp] = ACTIONS(4505), - [anon_sym_BSLASHacl] = ACTIONS(4505), - [anon_sym_BSLASHAcl] = ACTIONS(4505), - [anon_sym_BSLASHaclp] = ACTIONS(4505), - [anon_sym_BSLASHAclp] = ACTIONS(4505), - [anon_sym_BSLASHacf] = ACTIONS(4505), - [anon_sym_BSLASHAcf] = ACTIONS(4505), - [anon_sym_BSLASHacfp] = ACTIONS(4505), - [anon_sym_BSLASHAcfp] = ACTIONS(4505), - [anon_sym_BSLASHac] = ACTIONS(4505), - [anon_sym_BSLASHAc] = ACTIONS(4505), - [anon_sym_BSLASHacp] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), - [anon_sym_BSLASHcolor] = ACTIONS(4505), - [anon_sym_BSLASHcolorbox] = ACTIONS(4505), - [anon_sym_BSLASHtextcolor] = ACTIONS(4505), - [anon_sym_BSLASHpagecolor] = ACTIONS(4505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), - [anon_sym_BSLASHtext] = ACTIONS(4505), - [anon_sym_BSLASHintertext] = ACTIONS(4505), - [anon_sym_shortintertext] = ACTIONS(4505), + [sym_command_name] = ACTIONS(4584), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_RBRACK] = ACTIONS(4582), + [anon_sym_COMMA] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_BSLASHpart] = ACTIONS(4584), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddpart] = ACTIONS(4584), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHchapter] = ACTIONS(4584), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddchap] = ACTIONS(4584), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsection] = ACTIONS(4584), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddsec] = ACTIONS(4584), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHparagraph] = ACTIONS(4584), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4670), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4673), + [anon_sym_BSLASHitem] = ACTIONS(4584), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4582), + [sym_word] = ACTIONS(4584), + [sym_placeholder] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym__] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4582), + [anon_sym_BSLASHbegin] = ACTIONS(4584), + [anon_sym_BSLASHend] = ACTIONS(4584), + [anon_sym_BSLASHusepackage] = ACTIONS(4584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4584), + [anon_sym_BSLASHinclude] = ACTIONS(4584), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4584), + [anon_sym_BSLASHinput] = ACTIONS(4584), + [anon_sym_BSLASHsubfile] = ACTIONS(4584), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4584), + [anon_sym_BSLASHbibliography] = ACTIONS(4584), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4584), + [anon_sym_BSLASHincludesvg] = ACTIONS(4584), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4584), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4584), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4584), + [anon_sym_BSLASHimport] = ACTIONS(4584), + [anon_sym_BSLASHsubimport] = ACTIONS(4584), + [anon_sym_BSLASHinputfrom] = ACTIONS(4584), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4584), + [anon_sym_BSLASHincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHcaption] = ACTIONS(4584), + [anon_sym_BSLASHcite] = ACTIONS(4584), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCite] = ACTIONS(4584), + [anon_sym_BSLASHnocite] = ACTIONS(4584), + [anon_sym_BSLASHcitet] = ACTIONS(4584), + [anon_sym_BSLASHcitep] = ACTIONS(4584), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteauthor] = ACTIONS(4584), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4584), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitetitle] = ACTIONS(4584), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteyear] = ACTIONS(4584), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitedate] = ACTIONS(4584), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteurl] = ACTIONS(4584), + [anon_sym_BSLASHfullcite] = ACTIONS(4584), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4584), + [anon_sym_BSLASHcitealt] = ACTIONS(4584), + [anon_sym_BSLASHcitealp] = ACTIONS(4584), + [anon_sym_BSLASHcitetext] = ACTIONS(4584), + [anon_sym_BSLASHparencite] = ACTIONS(4584), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHParencite] = ACTIONS(4584), + [anon_sym_BSLASHfootcite] = ACTIONS(4584), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4584), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4584), + [anon_sym_BSLASHtextcite] = ACTIONS(4584), + [anon_sym_BSLASHTextcite] = ACTIONS(4584), + [anon_sym_BSLASHsmartcite] = ACTIONS(4584), + [anon_sym_BSLASHSmartcite] = ACTIONS(4584), + [anon_sym_BSLASHsupercite] = ACTIONS(4584), + [anon_sym_BSLASHautocite] = ACTIONS(4584), + [anon_sym_BSLASHAutocite] = ACTIONS(4584), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHvolcite] = ACTIONS(4584), + [anon_sym_BSLASHVolcite] = ACTIONS(4584), + [anon_sym_BSLASHpvolcite] = ACTIONS(4584), + [anon_sym_BSLASHPvolcite] = ACTIONS(4584), + [anon_sym_BSLASHfvolcite] = ACTIONS(4584), + [anon_sym_BSLASHftvolcite] = ACTIONS(4584), + [anon_sym_BSLASHsvolcite] = ACTIONS(4584), + [anon_sym_BSLASHSvolcite] = ACTIONS(4584), + [anon_sym_BSLASHtvolcite] = ACTIONS(4584), + [anon_sym_BSLASHTvolcite] = ACTIONS(4584), + [anon_sym_BSLASHavolcite] = ACTIONS(4584), + [anon_sym_BSLASHAvolcite] = ACTIONS(4584), + [anon_sym_BSLASHnotecite] = ACTIONS(4584), + [anon_sym_BSLASHNotecite] = ACTIONS(4584), + [anon_sym_BSLASHpnotecite] = ACTIONS(4584), + [anon_sym_BSLASHPnotecite] = ACTIONS(4584), + [anon_sym_BSLASHfnotecite] = ACTIONS(4584), + [anon_sym_BSLASHlabel] = ACTIONS(4584), + [anon_sym_BSLASHref] = ACTIONS(4584), + [anon_sym_BSLASHeqref] = ACTIONS(4584), + [anon_sym_BSLASHvref] = ACTIONS(4584), + [anon_sym_BSLASHVref] = ACTIONS(4584), + [anon_sym_BSLASHautoref] = ACTIONS(4584), + [anon_sym_BSLASHpageref] = ACTIONS(4584), + [anon_sym_BSLASHcref] = ACTIONS(4584), + [anon_sym_BSLASHCref] = ACTIONS(4584), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnameCref] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHlabelcref] = ACTIONS(4584), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCrefrange] = ACTIONS(4584), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnewlabel] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4584), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4584), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4584), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdef] = ACTIONS(4584), + [anon_sym_BSLASHlet] = ACTIONS(4584), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4584), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4584), + [anon_sym_BSLASHgls] = ACTIONS(4584), + [anon_sym_BSLASHGls] = ACTIONS(4584), + [anon_sym_BSLASHGLS] = ACTIONS(4584), + [anon_sym_BSLASHglspl] = ACTIONS(4584), + [anon_sym_BSLASHGlspl] = ACTIONS(4584), + [anon_sym_BSLASHGLSpl] = ACTIONS(4584), + [anon_sym_BSLASHglsdisp] = ACTIONS(4584), + [anon_sym_BSLASHglslink] = ACTIONS(4584), + [anon_sym_BSLASHglstext] = ACTIONS(4584), + [anon_sym_BSLASHGlstext] = ACTIONS(4584), + [anon_sym_BSLASHGLStext] = ACTIONS(4584), + [anon_sym_BSLASHglsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4584), + [anon_sym_BSLASHglsplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSplural] = ACTIONS(4584), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHglsname] = ACTIONS(4584), + [anon_sym_BSLASHGlsname] = ACTIONS(4584), + [anon_sym_BSLASHGLSname] = ACTIONS(4584), + [anon_sym_BSLASHglssymbol] = ACTIONS(4584), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4584), + [anon_sym_BSLASHglsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4584), + [anon_sym_BSLASHglsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4584), + [anon_sym_BSLASHglsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4584), + [anon_sym_BSLASHglsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4584), + [anon_sym_BSLASHglsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4584), + [anon_sym_BSLASHnewacronym] = ACTIONS(4584), + [anon_sym_BSLASHacrshort] = ACTIONS(4584), + [anon_sym_BSLASHAcrshort] = ACTIONS(4584), + [anon_sym_BSLASHACRshort] = ACTIONS(4584), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4584), + [anon_sym_BSLASHacrlong] = ACTIONS(4584), + [anon_sym_BSLASHAcrlong] = ACTIONS(4584), + [anon_sym_BSLASHACRlong] = ACTIONS(4584), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4584), + [anon_sym_BSLASHacrfull] = ACTIONS(4584), + [anon_sym_BSLASHAcrfull] = ACTIONS(4584), + [anon_sym_BSLASHACRfull] = ACTIONS(4584), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4584), + [anon_sym_BSLASHacs] = ACTIONS(4584), + [anon_sym_BSLASHAcs] = ACTIONS(4584), + [anon_sym_BSLASHacsp] = ACTIONS(4584), + [anon_sym_BSLASHAcsp] = ACTIONS(4584), + [anon_sym_BSLASHacl] = ACTIONS(4584), + [anon_sym_BSLASHAcl] = ACTIONS(4584), + [anon_sym_BSLASHaclp] = ACTIONS(4584), + [anon_sym_BSLASHAclp] = ACTIONS(4584), + [anon_sym_BSLASHacf] = ACTIONS(4584), + [anon_sym_BSLASHAcf] = ACTIONS(4584), + [anon_sym_BSLASHacfp] = ACTIONS(4584), + [anon_sym_BSLASHAcfp] = ACTIONS(4584), + [anon_sym_BSLASHac] = ACTIONS(4584), + [anon_sym_BSLASHAc] = ACTIONS(4584), + [anon_sym_BSLASHacp] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4584), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4584), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4584), + [anon_sym_BSLASHcolor] = ACTIONS(4584), + [anon_sym_BSLASHcolorbox] = ACTIONS(4584), + [anon_sym_BSLASHtextcolor] = ACTIONS(4584), + [anon_sym_BSLASHpagecolor] = ACTIONS(4584), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4584), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4584), + [anon_sym_BSLASHtext] = ACTIONS(4584), + [anon_sym_BSLASHintertext] = ACTIONS(4584), + [anon_sym_shortintertext] = ACTIONS(4584), }, [389] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4515), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_RPAREN] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [anon_sym_RBRACK] = ACTIONS(4513), - [anon_sym_COMMA] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_BSLASHpart] = ACTIONS(4515), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddpart] = ACTIONS(4515), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHchapter] = ACTIONS(4515), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddchap] = ACTIONS(4515), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsection] = ACTIONS(4515), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddsec] = ACTIONS(4515), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHparagraph] = ACTIONS(4597), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4600), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), - [anon_sym_BSLASHitem] = ACTIONS(4515), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4513), - [sym_word] = ACTIONS(4515), - [sym_placeholder] = ACTIONS(4513), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_SLASH] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym__] = ACTIONS(4515), - [anon_sym_LT] = ACTIONS(4515), - [anon_sym_GT] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_PIPE] = ACTIONS(4515), - [anon_sym_COLON] = ACTIONS(4515), - [anon_sym_SQUOTE] = ACTIONS(4515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), - [anon_sym_DOLLAR] = ACTIONS(4515), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), - [anon_sym_BSLASHbegin] = ACTIONS(4515), - [anon_sym_BSLASHend] = ACTIONS(4515), - [anon_sym_BSLASHusepackage] = ACTIONS(4515), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), - [anon_sym_BSLASHinclude] = ACTIONS(4515), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), - [anon_sym_BSLASHinput] = ACTIONS(4515), - [anon_sym_BSLASHsubfile] = ACTIONS(4515), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), - [anon_sym_BSLASHbibliography] = ACTIONS(4515), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), - [anon_sym_BSLASHincludesvg] = ACTIONS(4515), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), - [anon_sym_BSLASHimport] = ACTIONS(4515), - [anon_sym_BSLASHsubimport] = ACTIONS(4515), - [anon_sym_BSLASHinputfrom] = ACTIONS(4515), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), - [anon_sym_BSLASHincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHcaption] = ACTIONS(4515), - [anon_sym_BSLASHcite] = ACTIONS(4515), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCite] = ACTIONS(4515), - [anon_sym_BSLASHnocite] = ACTIONS(4515), - [anon_sym_BSLASHcitet] = ACTIONS(4515), - [anon_sym_BSLASHcitep] = ACTIONS(4515), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor] = ACTIONS(4515), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle] = ACTIONS(4515), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteyear] = ACTIONS(4515), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitedate] = ACTIONS(4515), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteurl] = ACTIONS(4515), - [anon_sym_BSLASHfullcite] = ACTIONS(4515), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), - [anon_sym_BSLASHcitealt] = ACTIONS(4515), - [anon_sym_BSLASHcitealp] = ACTIONS(4515), - [anon_sym_BSLASHcitetext] = ACTIONS(4515), - [anon_sym_BSLASHparencite] = ACTIONS(4515), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHParencite] = ACTIONS(4515), - [anon_sym_BSLASHfootcite] = ACTIONS(4515), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), - [anon_sym_BSLASHtextcite] = ACTIONS(4515), - [anon_sym_BSLASHTextcite] = ACTIONS(4515), - [anon_sym_BSLASHsmartcite] = ACTIONS(4515), - [anon_sym_BSLASHSmartcite] = ACTIONS(4515), - [anon_sym_BSLASHsupercite] = ACTIONS(4515), - [anon_sym_BSLASHautocite] = ACTIONS(4515), - [anon_sym_BSLASHAutocite] = ACTIONS(4515), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHvolcite] = ACTIONS(4515), - [anon_sym_BSLASHVolcite] = ACTIONS(4515), - [anon_sym_BSLASHpvolcite] = ACTIONS(4515), - [anon_sym_BSLASHPvolcite] = ACTIONS(4515), - [anon_sym_BSLASHfvolcite] = ACTIONS(4515), - [anon_sym_BSLASHftvolcite] = ACTIONS(4515), - [anon_sym_BSLASHsvolcite] = ACTIONS(4515), - [anon_sym_BSLASHSvolcite] = ACTIONS(4515), - [anon_sym_BSLASHtvolcite] = ACTIONS(4515), - [anon_sym_BSLASHTvolcite] = ACTIONS(4515), - [anon_sym_BSLASHavolcite] = ACTIONS(4515), - [anon_sym_BSLASHAvolcite] = ACTIONS(4515), - [anon_sym_BSLASHnotecite] = ACTIONS(4515), - [anon_sym_BSLASHNotecite] = ACTIONS(4515), - [anon_sym_BSLASHpnotecite] = ACTIONS(4515), - [anon_sym_BSLASHPnotecite] = ACTIONS(4515), - [anon_sym_BSLASHfnotecite] = ACTIONS(4515), - [anon_sym_BSLASHlabel] = ACTIONS(4515), - [anon_sym_BSLASHref] = ACTIONS(4515), - [anon_sym_BSLASHeqref] = ACTIONS(4515), - [anon_sym_BSLASHvref] = ACTIONS(4515), - [anon_sym_BSLASHVref] = ACTIONS(4515), - [anon_sym_BSLASHautoref] = ACTIONS(4515), - [anon_sym_BSLASHpageref] = ACTIONS(4515), - [anon_sym_BSLASHcref] = ACTIONS(4515), - [anon_sym_BSLASHCref] = ACTIONS(4515), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnameCref] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHlabelcref] = ACTIONS(4515), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange] = ACTIONS(4515), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnewlabel] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), - [anon_sym_BSLASHdef] = ACTIONS(4515), - [anon_sym_BSLASHlet] = ACTIONS(4515), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), - [anon_sym_BSLASHgls] = ACTIONS(4515), - [anon_sym_BSLASHGls] = ACTIONS(4515), - [anon_sym_BSLASHGLS] = ACTIONS(4515), - [anon_sym_BSLASHglspl] = ACTIONS(4515), - [anon_sym_BSLASHGlspl] = ACTIONS(4515), - [anon_sym_BSLASHGLSpl] = ACTIONS(4515), - [anon_sym_BSLASHglsdisp] = ACTIONS(4515), - [anon_sym_BSLASHglslink] = ACTIONS(4515), - [anon_sym_BSLASHglstext] = ACTIONS(4515), - [anon_sym_BSLASHGlstext] = ACTIONS(4515), - [anon_sym_BSLASHGLStext] = ACTIONS(4515), - [anon_sym_BSLASHglsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), - [anon_sym_BSLASHglsplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSplural] = ACTIONS(4515), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHglsname] = ACTIONS(4515), - [anon_sym_BSLASHGlsname] = ACTIONS(4515), - [anon_sym_BSLASHGLSname] = ACTIONS(4515), - [anon_sym_BSLASHglssymbol] = ACTIONS(4515), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), - [anon_sym_BSLASHglsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), - [anon_sym_BSLASHglsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), - [anon_sym_BSLASHglsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), - [anon_sym_BSLASHglsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), - [anon_sym_BSLASHglsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), - [anon_sym_BSLASHnewacronym] = ACTIONS(4515), - [anon_sym_BSLASHacrshort] = ACTIONS(4515), - [anon_sym_BSLASHAcrshort] = ACTIONS(4515), - [anon_sym_BSLASHACRshort] = ACTIONS(4515), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), - [anon_sym_BSLASHacrlong] = ACTIONS(4515), - [anon_sym_BSLASHAcrlong] = ACTIONS(4515), - [anon_sym_BSLASHACRlong] = ACTIONS(4515), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), - [anon_sym_BSLASHacrfull] = ACTIONS(4515), - [anon_sym_BSLASHAcrfull] = ACTIONS(4515), - [anon_sym_BSLASHACRfull] = ACTIONS(4515), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), - [anon_sym_BSLASHacs] = ACTIONS(4515), - [anon_sym_BSLASHAcs] = ACTIONS(4515), - [anon_sym_BSLASHacsp] = ACTIONS(4515), - [anon_sym_BSLASHAcsp] = ACTIONS(4515), - [anon_sym_BSLASHacl] = ACTIONS(4515), - [anon_sym_BSLASHAcl] = ACTIONS(4515), - [anon_sym_BSLASHaclp] = ACTIONS(4515), - [anon_sym_BSLASHAclp] = ACTIONS(4515), - [anon_sym_BSLASHacf] = ACTIONS(4515), - [anon_sym_BSLASHAcf] = ACTIONS(4515), - [anon_sym_BSLASHacfp] = ACTIONS(4515), - [anon_sym_BSLASHAcfp] = ACTIONS(4515), - [anon_sym_BSLASHac] = ACTIONS(4515), - [anon_sym_BSLASHAc] = ACTIONS(4515), - [anon_sym_BSLASHacp] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), - [anon_sym_BSLASHcolor] = ACTIONS(4515), - [anon_sym_BSLASHcolorbox] = ACTIONS(4515), - [anon_sym_BSLASHtextcolor] = ACTIONS(4515), - [anon_sym_BSLASHpagecolor] = ACTIONS(4515), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), - [anon_sym_BSLASHtext] = ACTIONS(4515), - [anon_sym_BSLASHintertext] = ACTIONS(4515), - [anon_sym_shortintertext] = ACTIONS(4515), + [sym_command_name] = ACTIONS(4594), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_BSLASHpart] = ACTIONS(4594), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddpart] = ACTIONS(4594), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHchapter] = ACTIONS(4594), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddchap] = ACTIONS(4594), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsection] = ACTIONS(4594), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddsec] = ACTIONS(4594), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHparagraph] = ACTIONS(4676), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4679), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4594), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4592), + [anon_sym_BSLASHitem] = ACTIONS(4594), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [sym_word] = ACTIONS(4594), + [sym_placeholder] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4594), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4592), + [anon_sym_BSLASHbegin] = ACTIONS(4594), + [anon_sym_BSLASHend] = ACTIONS(4594), + [anon_sym_BSLASHusepackage] = ACTIONS(4594), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4594), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4594), + [anon_sym_BSLASHinclude] = ACTIONS(4594), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4594), + [anon_sym_BSLASHinput] = ACTIONS(4594), + [anon_sym_BSLASHsubfile] = ACTIONS(4594), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4594), + [anon_sym_BSLASHbibliography] = ACTIONS(4594), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4594), + [anon_sym_BSLASHincludesvg] = ACTIONS(4594), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4594), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4594), + [anon_sym_BSLASHimport] = ACTIONS(4594), + [anon_sym_BSLASHsubimport] = ACTIONS(4594), + [anon_sym_BSLASHinputfrom] = ACTIONS(4594), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4594), + [anon_sym_BSLASHincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHcaption] = ACTIONS(4594), + [anon_sym_BSLASHcite] = ACTIONS(4594), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCite] = ACTIONS(4594), + [anon_sym_BSLASHnocite] = ACTIONS(4594), + [anon_sym_BSLASHcitet] = ACTIONS(4594), + [anon_sym_BSLASHcitep] = ACTIONS(4594), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteauthor] = ACTIONS(4594), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4594), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitetitle] = ACTIONS(4594), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteyear] = ACTIONS(4594), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitedate] = ACTIONS(4594), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteurl] = ACTIONS(4594), + [anon_sym_BSLASHfullcite] = ACTIONS(4594), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4594), + [anon_sym_BSLASHcitealt] = ACTIONS(4594), + [anon_sym_BSLASHcitealp] = ACTIONS(4594), + [anon_sym_BSLASHcitetext] = ACTIONS(4594), + [anon_sym_BSLASHparencite] = ACTIONS(4594), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHParencite] = ACTIONS(4594), + [anon_sym_BSLASHfootcite] = ACTIONS(4594), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4594), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4594), + [anon_sym_BSLASHtextcite] = ACTIONS(4594), + [anon_sym_BSLASHTextcite] = ACTIONS(4594), + [anon_sym_BSLASHsmartcite] = ACTIONS(4594), + [anon_sym_BSLASHSmartcite] = ACTIONS(4594), + [anon_sym_BSLASHsupercite] = ACTIONS(4594), + [anon_sym_BSLASHautocite] = ACTIONS(4594), + [anon_sym_BSLASHAutocite] = ACTIONS(4594), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHvolcite] = ACTIONS(4594), + [anon_sym_BSLASHVolcite] = ACTIONS(4594), + [anon_sym_BSLASHpvolcite] = ACTIONS(4594), + [anon_sym_BSLASHPvolcite] = ACTIONS(4594), + [anon_sym_BSLASHfvolcite] = ACTIONS(4594), + [anon_sym_BSLASHftvolcite] = ACTIONS(4594), + [anon_sym_BSLASHsvolcite] = ACTIONS(4594), + [anon_sym_BSLASHSvolcite] = ACTIONS(4594), + [anon_sym_BSLASHtvolcite] = ACTIONS(4594), + [anon_sym_BSLASHTvolcite] = ACTIONS(4594), + [anon_sym_BSLASHavolcite] = ACTIONS(4594), + [anon_sym_BSLASHAvolcite] = ACTIONS(4594), + [anon_sym_BSLASHnotecite] = ACTIONS(4594), + [anon_sym_BSLASHNotecite] = ACTIONS(4594), + [anon_sym_BSLASHpnotecite] = ACTIONS(4594), + [anon_sym_BSLASHPnotecite] = ACTIONS(4594), + [anon_sym_BSLASHfnotecite] = ACTIONS(4594), + [anon_sym_BSLASHlabel] = ACTIONS(4594), + [anon_sym_BSLASHref] = ACTIONS(4594), + [anon_sym_BSLASHeqref] = ACTIONS(4594), + [anon_sym_BSLASHvref] = ACTIONS(4594), + [anon_sym_BSLASHVref] = ACTIONS(4594), + [anon_sym_BSLASHautoref] = ACTIONS(4594), + [anon_sym_BSLASHpageref] = ACTIONS(4594), + [anon_sym_BSLASHcref] = ACTIONS(4594), + [anon_sym_BSLASHCref] = ACTIONS(4594), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnameCref] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHlabelcref] = ACTIONS(4594), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCrefrange] = ACTIONS(4594), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnewlabel] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4594), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4594), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4594), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdef] = ACTIONS(4594), + [anon_sym_BSLASHlet] = ACTIONS(4594), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4594), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4594), + [anon_sym_BSLASHgls] = ACTIONS(4594), + [anon_sym_BSLASHGls] = ACTIONS(4594), + [anon_sym_BSLASHGLS] = ACTIONS(4594), + [anon_sym_BSLASHglspl] = ACTIONS(4594), + [anon_sym_BSLASHGlspl] = ACTIONS(4594), + [anon_sym_BSLASHGLSpl] = ACTIONS(4594), + [anon_sym_BSLASHglsdisp] = ACTIONS(4594), + [anon_sym_BSLASHglslink] = ACTIONS(4594), + [anon_sym_BSLASHglstext] = ACTIONS(4594), + [anon_sym_BSLASHGlstext] = ACTIONS(4594), + [anon_sym_BSLASHGLStext] = ACTIONS(4594), + [anon_sym_BSLASHglsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4594), + [anon_sym_BSLASHglsplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSplural] = ACTIONS(4594), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHglsname] = ACTIONS(4594), + [anon_sym_BSLASHGlsname] = ACTIONS(4594), + [anon_sym_BSLASHGLSname] = ACTIONS(4594), + [anon_sym_BSLASHglssymbol] = ACTIONS(4594), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4594), + [anon_sym_BSLASHglsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4594), + [anon_sym_BSLASHglsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4594), + [anon_sym_BSLASHglsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4594), + [anon_sym_BSLASHglsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4594), + [anon_sym_BSLASHglsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4594), + [anon_sym_BSLASHnewacronym] = ACTIONS(4594), + [anon_sym_BSLASHacrshort] = ACTIONS(4594), + [anon_sym_BSLASHAcrshort] = ACTIONS(4594), + [anon_sym_BSLASHACRshort] = ACTIONS(4594), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4594), + [anon_sym_BSLASHacrlong] = ACTIONS(4594), + [anon_sym_BSLASHAcrlong] = ACTIONS(4594), + [anon_sym_BSLASHACRlong] = ACTIONS(4594), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4594), + [anon_sym_BSLASHacrfull] = ACTIONS(4594), + [anon_sym_BSLASHAcrfull] = ACTIONS(4594), + [anon_sym_BSLASHACRfull] = ACTIONS(4594), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4594), + [anon_sym_BSLASHacs] = ACTIONS(4594), + [anon_sym_BSLASHAcs] = ACTIONS(4594), + [anon_sym_BSLASHacsp] = ACTIONS(4594), + [anon_sym_BSLASHAcsp] = ACTIONS(4594), + [anon_sym_BSLASHacl] = ACTIONS(4594), + [anon_sym_BSLASHAcl] = ACTIONS(4594), + [anon_sym_BSLASHaclp] = ACTIONS(4594), + [anon_sym_BSLASHAclp] = ACTIONS(4594), + [anon_sym_BSLASHacf] = ACTIONS(4594), + [anon_sym_BSLASHAcf] = ACTIONS(4594), + [anon_sym_BSLASHacfp] = ACTIONS(4594), + [anon_sym_BSLASHAcfp] = ACTIONS(4594), + [anon_sym_BSLASHac] = ACTIONS(4594), + [anon_sym_BSLASHAc] = ACTIONS(4594), + [anon_sym_BSLASHacp] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4594), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4594), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4594), + [anon_sym_BSLASHcolor] = ACTIONS(4594), + [anon_sym_BSLASHcolorbox] = ACTIONS(4594), + [anon_sym_BSLASHtextcolor] = ACTIONS(4594), + [anon_sym_BSLASHpagecolor] = ACTIONS(4594), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4594), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4594), + [anon_sym_BSLASHtext] = ACTIONS(4594), + [anon_sym_BSLASHintertext] = ACTIONS(4594), + [anon_sym_shortintertext] = ACTIONS(4594), }, [390] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(4525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4525), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4523), - [anon_sym_BSLASHpart] = ACTIONS(4525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddpart] = ACTIONS(4525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHchapter] = ACTIONS(4525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddchap] = ACTIONS(4525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsection] = ACTIONS(4525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddsec] = ACTIONS(4525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsection] = ACTIONS(4525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4603), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4606), - [anon_sym_BSLASHparagraph] = ACTIONS(4525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHitem] = ACTIONS(4525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), - [anon_sym_LBRACE] = ACTIONS(4523), - [sym_word] = ACTIONS(4525), - [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_DOLLAR_DOLLAR] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), - [anon_sym_DOLLAR] = ACTIONS(4525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), - [anon_sym_BSLASHbegin] = ACTIONS(4525), - [anon_sym_BSLASHend] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), - [anon_sym_BSLASHinclude] = ACTIONS(4525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), - [anon_sym_BSLASHinput] = ACTIONS(4525), - [anon_sym_BSLASHsubfile] = ACTIONS(4525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), - [anon_sym_BSLASHbibliography] = ACTIONS(4525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), - [anon_sym_BSLASHincludesvg] = ACTIONS(4525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), - [anon_sym_BSLASHimport] = ACTIONS(4525), - [anon_sym_BSLASHsubimport] = ACTIONS(4525), - [anon_sym_BSLASHinputfrom] = ACTIONS(4525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), - [anon_sym_BSLASHincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHcaption] = ACTIONS(4525), - [anon_sym_BSLASHcite] = ACTIONS(4525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCite] = ACTIONS(4525), - [anon_sym_BSLASHnocite] = ACTIONS(4525), - [anon_sym_BSLASHcitet] = ACTIONS(4525), - [anon_sym_BSLASHcitep] = ACTIONS(4525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteauthor] = ACTIONS(4525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitetitle] = ACTIONS(4525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteyear] = ACTIONS(4525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitedate] = ACTIONS(4525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteurl] = ACTIONS(4525), - [anon_sym_BSLASHfullcite] = ACTIONS(4525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), - [anon_sym_BSLASHcitealt] = ACTIONS(4525), - [anon_sym_BSLASHcitealp] = ACTIONS(4525), - [anon_sym_BSLASHcitetext] = ACTIONS(4525), - [anon_sym_BSLASHparencite] = ACTIONS(4525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHParencite] = ACTIONS(4525), - [anon_sym_BSLASHfootcite] = ACTIONS(4525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), - [anon_sym_BSLASHtextcite] = ACTIONS(4525), - [anon_sym_BSLASHTextcite] = ACTIONS(4525), - [anon_sym_BSLASHsmartcite] = ACTIONS(4525), - [anon_sym_BSLASHSmartcite] = ACTIONS(4525), - [anon_sym_BSLASHsupercite] = ACTIONS(4525), - [anon_sym_BSLASHautocite] = ACTIONS(4525), - [anon_sym_BSLASHAutocite] = ACTIONS(4525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHvolcite] = ACTIONS(4525), - [anon_sym_BSLASHVolcite] = ACTIONS(4525), - [anon_sym_BSLASHpvolcite] = ACTIONS(4525), - [anon_sym_BSLASHPvolcite] = ACTIONS(4525), - [anon_sym_BSLASHfvolcite] = ACTIONS(4525), - [anon_sym_BSLASHftvolcite] = ACTIONS(4525), - [anon_sym_BSLASHsvolcite] = ACTIONS(4525), - [anon_sym_BSLASHSvolcite] = ACTIONS(4525), - [anon_sym_BSLASHtvolcite] = ACTIONS(4525), - [anon_sym_BSLASHTvolcite] = ACTIONS(4525), - [anon_sym_BSLASHavolcite] = ACTIONS(4525), - [anon_sym_BSLASHAvolcite] = ACTIONS(4525), - [anon_sym_BSLASHnotecite] = ACTIONS(4525), - [anon_sym_BSLASHNotecite] = ACTIONS(4525), - [anon_sym_BSLASHpnotecite] = ACTIONS(4525), - [anon_sym_BSLASHPnotecite] = ACTIONS(4525), - [anon_sym_BSLASHfnotecite] = ACTIONS(4525), - [anon_sym_BSLASHlabel] = ACTIONS(4525), - [anon_sym_BSLASHref] = ACTIONS(4525), - [anon_sym_BSLASHeqref] = ACTIONS(4525), - [anon_sym_BSLASHvref] = ACTIONS(4525), - [anon_sym_BSLASHVref] = ACTIONS(4525), - [anon_sym_BSLASHautoref] = ACTIONS(4525), - [anon_sym_BSLASHpageref] = ACTIONS(4525), - [anon_sym_BSLASHcref] = ACTIONS(4525), - [anon_sym_BSLASHCref] = ACTIONS(4525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnameCref] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHlabelcref] = ACTIONS(4525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCrefrange] = ACTIONS(4525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnewlabel] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), - [anon_sym_BSLASHdef] = ACTIONS(4525), - [anon_sym_BSLASHlet] = ACTIONS(4525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), - [anon_sym_BSLASHgls] = ACTIONS(4525), - [anon_sym_BSLASHGls] = ACTIONS(4525), - [anon_sym_BSLASHGLS] = ACTIONS(4525), - [anon_sym_BSLASHglspl] = ACTIONS(4525), - [anon_sym_BSLASHGlspl] = ACTIONS(4525), - [anon_sym_BSLASHGLSpl] = ACTIONS(4525), - [anon_sym_BSLASHglsdisp] = ACTIONS(4525), - [anon_sym_BSLASHglslink] = ACTIONS(4525), - [anon_sym_BSLASHglstext] = ACTIONS(4525), - [anon_sym_BSLASHGlstext] = ACTIONS(4525), - [anon_sym_BSLASHGLStext] = ACTIONS(4525), - [anon_sym_BSLASHglsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), - [anon_sym_BSLASHglsplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSplural] = ACTIONS(4525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHglsname] = ACTIONS(4525), - [anon_sym_BSLASHGlsname] = ACTIONS(4525), - [anon_sym_BSLASHGLSname] = ACTIONS(4525), - [anon_sym_BSLASHglssymbol] = ACTIONS(4525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), - [anon_sym_BSLASHglsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), - [anon_sym_BSLASHglsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), - [anon_sym_BSLASHglsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), - [anon_sym_BSLASHglsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), - [anon_sym_BSLASHglsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), - [anon_sym_BSLASHnewacronym] = ACTIONS(4525), - [anon_sym_BSLASHacrshort] = ACTIONS(4525), - [anon_sym_BSLASHAcrshort] = ACTIONS(4525), - [anon_sym_BSLASHACRshort] = ACTIONS(4525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), - [anon_sym_BSLASHacrlong] = ACTIONS(4525), - [anon_sym_BSLASHAcrlong] = ACTIONS(4525), - [anon_sym_BSLASHACRlong] = ACTIONS(4525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), - [anon_sym_BSLASHacrfull] = ACTIONS(4525), - [anon_sym_BSLASHAcrfull] = ACTIONS(4525), - [anon_sym_BSLASHACRfull] = ACTIONS(4525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), - [anon_sym_BSLASHacs] = ACTIONS(4525), - [anon_sym_BSLASHAcs] = ACTIONS(4525), - [anon_sym_BSLASHacsp] = ACTIONS(4525), - [anon_sym_BSLASHAcsp] = ACTIONS(4525), - [anon_sym_BSLASHacl] = ACTIONS(4525), - [anon_sym_BSLASHAcl] = ACTIONS(4525), - [anon_sym_BSLASHaclp] = ACTIONS(4525), - [anon_sym_BSLASHAclp] = ACTIONS(4525), - [anon_sym_BSLASHacf] = ACTIONS(4525), - [anon_sym_BSLASHAcf] = ACTIONS(4525), - [anon_sym_BSLASHacfp] = ACTIONS(4525), - [anon_sym_BSLASHAcfp] = ACTIONS(4525), - [anon_sym_BSLASHac] = ACTIONS(4525), - [anon_sym_BSLASHAc] = ACTIONS(4525), - [anon_sym_BSLASHacp] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), - [anon_sym_BSLASHcolor] = ACTIONS(4525), - [anon_sym_BSLASHcolorbox] = ACTIONS(4525), - [anon_sym_BSLASHtextcolor] = ACTIONS(4525), - [anon_sym_BSLASHpagecolor] = ACTIONS(4525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), - [anon_sym_BSLASHtext] = ACTIONS(4525), - [anon_sym_BSLASHintertext] = ACTIONS(4525), - [anon_sym_shortintertext] = ACTIONS(4525), + [sym_command_name] = ACTIONS(4604), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(4602), + [anon_sym_COMMA] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_BSLASHpart] = ACTIONS(4604), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddpart] = ACTIONS(4604), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHchapter] = ACTIONS(4604), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddchap] = ACTIONS(4604), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsection] = ACTIONS(4604), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddsec] = ACTIONS(4604), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsection] = ACTIONS(4604), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4682), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), + [anon_sym_BSLASHparagraph] = ACTIONS(4604), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4604), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHitem] = ACTIONS(4604), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(4602), + [sym_word] = ACTIONS(4604), + [sym_placeholder] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym__] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_SQUOTE] = ACTIONS(4604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4602), + [anon_sym_BSLASHbegin] = ACTIONS(4604), + [anon_sym_BSLASHend] = ACTIONS(4604), + [anon_sym_BSLASHusepackage] = ACTIONS(4604), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4604), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4604), + [anon_sym_BSLASHinclude] = ACTIONS(4604), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4604), + [anon_sym_BSLASHinput] = ACTIONS(4604), + [anon_sym_BSLASHsubfile] = ACTIONS(4604), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4604), + [anon_sym_BSLASHbibliography] = ACTIONS(4604), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4604), + [anon_sym_BSLASHincludesvg] = ACTIONS(4604), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4604), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4604), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4604), + [anon_sym_BSLASHimport] = ACTIONS(4604), + [anon_sym_BSLASHsubimport] = ACTIONS(4604), + [anon_sym_BSLASHinputfrom] = ACTIONS(4604), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4604), + [anon_sym_BSLASHincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHcaption] = ACTIONS(4604), + [anon_sym_BSLASHcite] = ACTIONS(4604), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCite] = ACTIONS(4604), + [anon_sym_BSLASHnocite] = ACTIONS(4604), + [anon_sym_BSLASHcitet] = ACTIONS(4604), + [anon_sym_BSLASHcitep] = ACTIONS(4604), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteauthor] = ACTIONS(4604), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4604), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitetitle] = ACTIONS(4604), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteyear] = ACTIONS(4604), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitedate] = ACTIONS(4604), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteurl] = ACTIONS(4604), + [anon_sym_BSLASHfullcite] = ACTIONS(4604), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4604), + [anon_sym_BSLASHcitealt] = ACTIONS(4604), + [anon_sym_BSLASHcitealp] = ACTIONS(4604), + [anon_sym_BSLASHcitetext] = ACTIONS(4604), + [anon_sym_BSLASHparencite] = ACTIONS(4604), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHParencite] = ACTIONS(4604), + [anon_sym_BSLASHfootcite] = ACTIONS(4604), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4604), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4604), + [anon_sym_BSLASHtextcite] = ACTIONS(4604), + [anon_sym_BSLASHTextcite] = ACTIONS(4604), + [anon_sym_BSLASHsmartcite] = ACTIONS(4604), + [anon_sym_BSLASHSmartcite] = ACTIONS(4604), + [anon_sym_BSLASHsupercite] = ACTIONS(4604), + [anon_sym_BSLASHautocite] = ACTIONS(4604), + [anon_sym_BSLASHAutocite] = ACTIONS(4604), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHvolcite] = ACTIONS(4604), + [anon_sym_BSLASHVolcite] = ACTIONS(4604), + [anon_sym_BSLASHpvolcite] = ACTIONS(4604), + [anon_sym_BSLASHPvolcite] = ACTIONS(4604), + [anon_sym_BSLASHfvolcite] = ACTIONS(4604), + [anon_sym_BSLASHftvolcite] = ACTIONS(4604), + [anon_sym_BSLASHsvolcite] = ACTIONS(4604), + [anon_sym_BSLASHSvolcite] = ACTIONS(4604), + [anon_sym_BSLASHtvolcite] = ACTIONS(4604), + [anon_sym_BSLASHTvolcite] = ACTIONS(4604), + [anon_sym_BSLASHavolcite] = ACTIONS(4604), + [anon_sym_BSLASHAvolcite] = ACTIONS(4604), + [anon_sym_BSLASHnotecite] = ACTIONS(4604), + [anon_sym_BSLASHNotecite] = ACTIONS(4604), + [anon_sym_BSLASHpnotecite] = ACTIONS(4604), + [anon_sym_BSLASHPnotecite] = ACTIONS(4604), + [anon_sym_BSLASHfnotecite] = ACTIONS(4604), + [anon_sym_BSLASHlabel] = ACTIONS(4604), + [anon_sym_BSLASHref] = ACTIONS(4604), + [anon_sym_BSLASHeqref] = ACTIONS(4604), + [anon_sym_BSLASHvref] = ACTIONS(4604), + [anon_sym_BSLASHVref] = ACTIONS(4604), + [anon_sym_BSLASHautoref] = ACTIONS(4604), + [anon_sym_BSLASHpageref] = ACTIONS(4604), + [anon_sym_BSLASHcref] = ACTIONS(4604), + [anon_sym_BSLASHCref] = ACTIONS(4604), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnameCref] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHlabelcref] = ACTIONS(4604), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCrefrange] = ACTIONS(4604), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnewlabel] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4604), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4604), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4604), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdef] = ACTIONS(4604), + [anon_sym_BSLASHlet] = ACTIONS(4604), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4604), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4604), + [anon_sym_BSLASHgls] = ACTIONS(4604), + [anon_sym_BSLASHGls] = ACTIONS(4604), + [anon_sym_BSLASHGLS] = ACTIONS(4604), + [anon_sym_BSLASHglspl] = ACTIONS(4604), + [anon_sym_BSLASHGlspl] = ACTIONS(4604), + [anon_sym_BSLASHGLSpl] = ACTIONS(4604), + [anon_sym_BSLASHglsdisp] = ACTIONS(4604), + [anon_sym_BSLASHglslink] = ACTIONS(4604), + [anon_sym_BSLASHglstext] = ACTIONS(4604), + [anon_sym_BSLASHGlstext] = ACTIONS(4604), + [anon_sym_BSLASHGLStext] = ACTIONS(4604), + [anon_sym_BSLASHglsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4604), + [anon_sym_BSLASHglsplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSplural] = ACTIONS(4604), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHglsname] = ACTIONS(4604), + [anon_sym_BSLASHGlsname] = ACTIONS(4604), + [anon_sym_BSLASHGLSname] = ACTIONS(4604), + [anon_sym_BSLASHglssymbol] = ACTIONS(4604), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4604), + [anon_sym_BSLASHglsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4604), + [anon_sym_BSLASHglsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4604), + [anon_sym_BSLASHglsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4604), + [anon_sym_BSLASHglsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4604), + [anon_sym_BSLASHglsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4604), + [anon_sym_BSLASHnewacronym] = ACTIONS(4604), + [anon_sym_BSLASHacrshort] = ACTIONS(4604), + [anon_sym_BSLASHAcrshort] = ACTIONS(4604), + [anon_sym_BSLASHACRshort] = ACTIONS(4604), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4604), + [anon_sym_BSLASHacrlong] = ACTIONS(4604), + [anon_sym_BSLASHAcrlong] = ACTIONS(4604), + [anon_sym_BSLASHACRlong] = ACTIONS(4604), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4604), + [anon_sym_BSLASHacrfull] = ACTIONS(4604), + [anon_sym_BSLASHAcrfull] = ACTIONS(4604), + [anon_sym_BSLASHACRfull] = ACTIONS(4604), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4604), + [anon_sym_BSLASHacs] = ACTIONS(4604), + [anon_sym_BSLASHAcs] = ACTIONS(4604), + [anon_sym_BSLASHacsp] = ACTIONS(4604), + [anon_sym_BSLASHAcsp] = ACTIONS(4604), + [anon_sym_BSLASHacl] = ACTIONS(4604), + [anon_sym_BSLASHAcl] = ACTIONS(4604), + [anon_sym_BSLASHaclp] = ACTIONS(4604), + [anon_sym_BSLASHAclp] = ACTIONS(4604), + [anon_sym_BSLASHacf] = ACTIONS(4604), + [anon_sym_BSLASHAcf] = ACTIONS(4604), + [anon_sym_BSLASHacfp] = ACTIONS(4604), + [anon_sym_BSLASHAcfp] = ACTIONS(4604), + [anon_sym_BSLASHac] = ACTIONS(4604), + [anon_sym_BSLASHAc] = ACTIONS(4604), + [anon_sym_BSLASHacp] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4604), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4604), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4604), + [anon_sym_BSLASHcolor] = ACTIONS(4604), + [anon_sym_BSLASHcolorbox] = ACTIONS(4604), + [anon_sym_BSLASHtextcolor] = ACTIONS(4604), + [anon_sym_BSLASHpagecolor] = ACTIONS(4604), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4604), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4604), + [anon_sym_BSLASHtext] = ACTIONS(4604), + [anon_sym_BSLASHintertext] = ACTIONS(4604), + [anon_sym_shortintertext] = ACTIONS(4604), }, [391] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [392] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(4535), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_RBRACK] = ACTIONS(4533), - [anon_sym_COMMA] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_BSLASHpart] = ACTIONS(4535), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddpart] = ACTIONS(4535), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHchapter] = ACTIONS(4535), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddchap] = ACTIONS(4535), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsection] = ACTIONS(4535), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddsec] = ACTIONS(4535), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4612), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHparagraph] = ACTIONS(4535), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHitem] = ACTIONS(4535), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [sym_word] = ACTIONS(4535), - [sym_placeholder] = ACTIONS(4533), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym__] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), - [anon_sym_BSLASHbegin] = ACTIONS(4535), - [anon_sym_BSLASHend] = ACTIONS(4535), - [anon_sym_BSLASHusepackage] = ACTIONS(4535), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), - [anon_sym_BSLASHinclude] = ACTIONS(4535), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), - [anon_sym_BSLASHinput] = ACTIONS(4535), - [anon_sym_BSLASHsubfile] = ACTIONS(4535), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), - [anon_sym_BSLASHbibliography] = ACTIONS(4535), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), - [anon_sym_BSLASHincludesvg] = ACTIONS(4535), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), - [anon_sym_BSLASHimport] = ACTIONS(4535), - [anon_sym_BSLASHsubimport] = ACTIONS(4535), - [anon_sym_BSLASHinputfrom] = ACTIONS(4535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), - [anon_sym_BSLASHincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHcaption] = ACTIONS(4535), - [anon_sym_BSLASHcite] = ACTIONS(4535), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCite] = ACTIONS(4535), - [anon_sym_BSLASHnocite] = ACTIONS(4535), - [anon_sym_BSLASHcitet] = ACTIONS(4535), - [anon_sym_BSLASHcitep] = ACTIONS(4535), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteauthor] = ACTIONS(4535), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitetitle] = ACTIONS(4535), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteyear] = ACTIONS(4535), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitedate] = ACTIONS(4535), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteurl] = ACTIONS(4535), - [anon_sym_BSLASHfullcite] = ACTIONS(4535), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), - [anon_sym_BSLASHcitealt] = ACTIONS(4535), - [anon_sym_BSLASHcitealp] = ACTIONS(4535), - [anon_sym_BSLASHcitetext] = ACTIONS(4535), - [anon_sym_BSLASHparencite] = ACTIONS(4535), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHParencite] = ACTIONS(4535), - [anon_sym_BSLASHfootcite] = ACTIONS(4535), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), - [anon_sym_BSLASHtextcite] = ACTIONS(4535), - [anon_sym_BSLASHTextcite] = ACTIONS(4535), - [anon_sym_BSLASHsmartcite] = ACTIONS(4535), - [anon_sym_BSLASHSmartcite] = ACTIONS(4535), - [anon_sym_BSLASHsupercite] = ACTIONS(4535), - [anon_sym_BSLASHautocite] = ACTIONS(4535), - [anon_sym_BSLASHAutocite] = ACTIONS(4535), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHvolcite] = ACTIONS(4535), - [anon_sym_BSLASHVolcite] = ACTIONS(4535), - [anon_sym_BSLASHpvolcite] = ACTIONS(4535), - [anon_sym_BSLASHPvolcite] = ACTIONS(4535), - [anon_sym_BSLASHfvolcite] = ACTIONS(4535), - [anon_sym_BSLASHftvolcite] = ACTIONS(4535), - [anon_sym_BSLASHsvolcite] = ACTIONS(4535), - [anon_sym_BSLASHSvolcite] = ACTIONS(4535), - [anon_sym_BSLASHtvolcite] = ACTIONS(4535), - [anon_sym_BSLASHTvolcite] = ACTIONS(4535), - [anon_sym_BSLASHavolcite] = ACTIONS(4535), - [anon_sym_BSLASHAvolcite] = ACTIONS(4535), - [anon_sym_BSLASHnotecite] = ACTIONS(4535), - [anon_sym_BSLASHNotecite] = ACTIONS(4535), - [anon_sym_BSLASHpnotecite] = ACTIONS(4535), - [anon_sym_BSLASHPnotecite] = ACTIONS(4535), - [anon_sym_BSLASHfnotecite] = ACTIONS(4535), - [anon_sym_BSLASHlabel] = ACTIONS(4535), - [anon_sym_BSLASHref] = ACTIONS(4535), - [anon_sym_BSLASHeqref] = ACTIONS(4535), - [anon_sym_BSLASHvref] = ACTIONS(4535), - [anon_sym_BSLASHVref] = ACTIONS(4535), - [anon_sym_BSLASHautoref] = ACTIONS(4535), - [anon_sym_BSLASHpageref] = ACTIONS(4535), - [anon_sym_BSLASHcref] = ACTIONS(4535), - [anon_sym_BSLASHCref] = ACTIONS(4535), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnameCref] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHlabelcref] = ACTIONS(4535), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCrefrange] = ACTIONS(4535), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnewlabel] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), - [anon_sym_BSLASHdef] = ACTIONS(4535), - [anon_sym_BSLASHlet] = ACTIONS(4535), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), - [anon_sym_BSLASHgls] = ACTIONS(4535), - [anon_sym_BSLASHGls] = ACTIONS(4535), - [anon_sym_BSLASHGLS] = ACTIONS(4535), - [anon_sym_BSLASHglspl] = ACTIONS(4535), - [anon_sym_BSLASHGlspl] = ACTIONS(4535), - [anon_sym_BSLASHGLSpl] = ACTIONS(4535), - [anon_sym_BSLASHglsdisp] = ACTIONS(4535), - [anon_sym_BSLASHglslink] = ACTIONS(4535), - [anon_sym_BSLASHglstext] = ACTIONS(4535), - [anon_sym_BSLASHGlstext] = ACTIONS(4535), - [anon_sym_BSLASHGLStext] = ACTIONS(4535), - [anon_sym_BSLASHglsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), - [anon_sym_BSLASHglsplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSplural] = ACTIONS(4535), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHglsname] = ACTIONS(4535), - [anon_sym_BSLASHGlsname] = ACTIONS(4535), - [anon_sym_BSLASHGLSname] = ACTIONS(4535), - [anon_sym_BSLASHglssymbol] = ACTIONS(4535), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), - [anon_sym_BSLASHglsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), - [anon_sym_BSLASHglsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), - [anon_sym_BSLASHglsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), - [anon_sym_BSLASHglsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), - [anon_sym_BSLASHglsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), - [anon_sym_BSLASHnewacronym] = ACTIONS(4535), - [anon_sym_BSLASHacrshort] = ACTIONS(4535), - [anon_sym_BSLASHAcrshort] = ACTIONS(4535), - [anon_sym_BSLASHACRshort] = ACTIONS(4535), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), - [anon_sym_BSLASHacrlong] = ACTIONS(4535), - [anon_sym_BSLASHAcrlong] = ACTIONS(4535), - [anon_sym_BSLASHACRlong] = ACTIONS(4535), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), - [anon_sym_BSLASHacrfull] = ACTIONS(4535), - [anon_sym_BSLASHAcrfull] = ACTIONS(4535), - [anon_sym_BSLASHACRfull] = ACTIONS(4535), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), - [anon_sym_BSLASHacs] = ACTIONS(4535), - [anon_sym_BSLASHAcs] = ACTIONS(4535), - [anon_sym_BSLASHacsp] = ACTIONS(4535), - [anon_sym_BSLASHAcsp] = ACTIONS(4535), - [anon_sym_BSLASHacl] = ACTIONS(4535), - [anon_sym_BSLASHAcl] = ACTIONS(4535), - [anon_sym_BSLASHaclp] = ACTIONS(4535), - [anon_sym_BSLASHAclp] = ACTIONS(4535), - [anon_sym_BSLASHacf] = ACTIONS(4535), - [anon_sym_BSLASHAcf] = ACTIONS(4535), - [anon_sym_BSLASHacfp] = ACTIONS(4535), - [anon_sym_BSLASHAcfp] = ACTIONS(4535), - [anon_sym_BSLASHac] = ACTIONS(4535), - [anon_sym_BSLASHAc] = ACTIONS(4535), - [anon_sym_BSLASHacp] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), - [anon_sym_BSLASHcolor] = ACTIONS(4535), - [anon_sym_BSLASHcolorbox] = ACTIONS(4535), - [anon_sym_BSLASHtextcolor] = ACTIONS(4535), - [anon_sym_BSLASHpagecolor] = ACTIONS(4535), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), - [anon_sym_BSLASHtext] = ACTIONS(4535), - [anon_sym_BSLASHintertext] = ACTIONS(4535), - [anon_sym_shortintertext] = ACTIONS(4535), + [sym_command_name] = ACTIONS(4614), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_EQ] = ACTIONS(4612), + [anon_sym_BSLASHpart] = ACTIONS(4614), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddpart] = ACTIONS(4614), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHchapter] = ACTIONS(4614), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddchap] = ACTIONS(4614), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsection] = ACTIONS(4614), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddsec] = ACTIONS(4614), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubsection] = ACTIONS(4688), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4691), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4614), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHparagraph] = ACTIONS(4614), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4614), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHitem] = ACTIONS(4614), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [sym_word] = ACTIONS(4614), + [sym_placeholder] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4614), + [anon_sym__] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_SQUOTE] = ACTIONS(4614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4612), + [anon_sym_BSLASHbegin] = ACTIONS(4614), + [anon_sym_BSLASHend] = ACTIONS(4614), + [anon_sym_BSLASHusepackage] = ACTIONS(4614), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4614), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4614), + [anon_sym_BSLASHinclude] = ACTIONS(4614), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4614), + [anon_sym_BSLASHinput] = ACTIONS(4614), + [anon_sym_BSLASHsubfile] = ACTIONS(4614), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4614), + [anon_sym_BSLASHbibliography] = ACTIONS(4614), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4614), + [anon_sym_BSLASHincludesvg] = ACTIONS(4614), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4614), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4614), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4614), + [anon_sym_BSLASHimport] = ACTIONS(4614), + [anon_sym_BSLASHsubimport] = ACTIONS(4614), + [anon_sym_BSLASHinputfrom] = ACTIONS(4614), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4614), + [anon_sym_BSLASHincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHcaption] = ACTIONS(4614), + [anon_sym_BSLASHcite] = ACTIONS(4614), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCite] = ACTIONS(4614), + [anon_sym_BSLASHnocite] = ACTIONS(4614), + [anon_sym_BSLASHcitet] = ACTIONS(4614), + [anon_sym_BSLASHcitep] = ACTIONS(4614), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteauthor] = ACTIONS(4614), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4614), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitetitle] = ACTIONS(4614), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteyear] = ACTIONS(4614), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitedate] = ACTIONS(4614), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteurl] = ACTIONS(4614), + [anon_sym_BSLASHfullcite] = ACTIONS(4614), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4614), + [anon_sym_BSLASHcitealt] = ACTIONS(4614), + [anon_sym_BSLASHcitealp] = ACTIONS(4614), + [anon_sym_BSLASHcitetext] = ACTIONS(4614), + [anon_sym_BSLASHparencite] = ACTIONS(4614), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHParencite] = ACTIONS(4614), + [anon_sym_BSLASHfootcite] = ACTIONS(4614), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4614), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4614), + [anon_sym_BSLASHtextcite] = ACTIONS(4614), + [anon_sym_BSLASHTextcite] = ACTIONS(4614), + [anon_sym_BSLASHsmartcite] = ACTIONS(4614), + [anon_sym_BSLASHSmartcite] = ACTIONS(4614), + [anon_sym_BSLASHsupercite] = ACTIONS(4614), + [anon_sym_BSLASHautocite] = ACTIONS(4614), + [anon_sym_BSLASHAutocite] = ACTIONS(4614), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHvolcite] = ACTIONS(4614), + [anon_sym_BSLASHVolcite] = ACTIONS(4614), + [anon_sym_BSLASHpvolcite] = ACTIONS(4614), + [anon_sym_BSLASHPvolcite] = ACTIONS(4614), + [anon_sym_BSLASHfvolcite] = ACTIONS(4614), + [anon_sym_BSLASHftvolcite] = ACTIONS(4614), + [anon_sym_BSLASHsvolcite] = ACTIONS(4614), + [anon_sym_BSLASHSvolcite] = ACTIONS(4614), + [anon_sym_BSLASHtvolcite] = ACTIONS(4614), + [anon_sym_BSLASHTvolcite] = ACTIONS(4614), + [anon_sym_BSLASHavolcite] = ACTIONS(4614), + [anon_sym_BSLASHAvolcite] = ACTIONS(4614), + [anon_sym_BSLASHnotecite] = ACTIONS(4614), + [anon_sym_BSLASHNotecite] = ACTIONS(4614), + [anon_sym_BSLASHpnotecite] = ACTIONS(4614), + [anon_sym_BSLASHPnotecite] = ACTIONS(4614), + [anon_sym_BSLASHfnotecite] = ACTIONS(4614), + [anon_sym_BSLASHlabel] = ACTIONS(4614), + [anon_sym_BSLASHref] = ACTIONS(4614), + [anon_sym_BSLASHeqref] = ACTIONS(4614), + [anon_sym_BSLASHvref] = ACTIONS(4614), + [anon_sym_BSLASHVref] = ACTIONS(4614), + [anon_sym_BSLASHautoref] = ACTIONS(4614), + [anon_sym_BSLASHpageref] = ACTIONS(4614), + [anon_sym_BSLASHcref] = ACTIONS(4614), + [anon_sym_BSLASHCref] = ACTIONS(4614), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnameCref] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHlabelcref] = ACTIONS(4614), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCrefrange] = ACTIONS(4614), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnewlabel] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4614), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4614), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4614), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdef] = ACTIONS(4614), + [anon_sym_BSLASHlet] = ACTIONS(4614), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4614), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4614), + [anon_sym_BSLASHgls] = ACTIONS(4614), + [anon_sym_BSLASHGls] = ACTIONS(4614), + [anon_sym_BSLASHGLS] = ACTIONS(4614), + [anon_sym_BSLASHglspl] = ACTIONS(4614), + [anon_sym_BSLASHGlspl] = ACTIONS(4614), + [anon_sym_BSLASHGLSpl] = ACTIONS(4614), + [anon_sym_BSLASHglsdisp] = ACTIONS(4614), + [anon_sym_BSLASHglslink] = ACTIONS(4614), + [anon_sym_BSLASHglstext] = ACTIONS(4614), + [anon_sym_BSLASHGlstext] = ACTIONS(4614), + [anon_sym_BSLASHGLStext] = ACTIONS(4614), + [anon_sym_BSLASHglsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4614), + [anon_sym_BSLASHglsplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSplural] = ACTIONS(4614), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHglsname] = ACTIONS(4614), + [anon_sym_BSLASHGlsname] = ACTIONS(4614), + [anon_sym_BSLASHGLSname] = ACTIONS(4614), + [anon_sym_BSLASHglssymbol] = ACTIONS(4614), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4614), + [anon_sym_BSLASHglsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4614), + [anon_sym_BSLASHglsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4614), + [anon_sym_BSLASHglsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4614), + [anon_sym_BSLASHglsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4614), + [anon_sym_BSLASHglsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4614), + [anon_sym_BSLASHnewacronym] = ACTIONS(4614), + [anon_sym_BSLASHacrshort] = ACTIONS(4614), + [anon_sym_BSLASHAcrshort] = ACTIONS(4614), + [anon_sym_BSLASHACRshort] = ACTIONS(4614), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4614), + [anon_sym_BSLASHacrlong] = ACTIONS(4614), + [anon_sym_BSLASHAcrlong] = ACTIONS(4614), + [anon_sym_BSLASHACRlong] = ACTIONS(4614), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4614), + [anon_sym_BSLASHacrfull] = ACTIONS(4614), + [anon_sym_BSLASHAcrfull] = ACTIONS(4614), + [anon_sym_BSLASHACRfull] = ACTIONS(4614), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4614), + [anon_sym_BSLASHacs] = ACTIONS(4614), + [anon_sym_BSLASHAcs] = ACTIONS(4614), + [anon_sym_BSLASHacsp] = ACTIONS(4614), + [anon_sym_BSLASHAcsp] = ACTIONS(4614), + [anon_sym_BSLASHacl] = ACTIONS(4614), + [anon_sym_BSLASHAcl] = ACTIONS(4614), + [anon_sym_BSLASHaclp] = ACTIONS(4614), + [anon_sym_BSLASHAclp] = ACTIONS(4614), + [anon_sym_BSLASHacf] = ACTIONS(4614), + [anon_sym_BSLASHAcf] = ACTIONS(4614), + [anon_sym_BSLASHacfp] = ACTIONS(4614), + [anon_sym_BSLASHAcfp] = ACTIONS(4614), + [anon_sym_BSLASHac] = ACTIONS(4614), + [anon_sym_BSLASHAc] = ACTIONS(4614), + [anon_sym_BSLASHacp] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4614), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4614), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4614), + [anon_sym_BSLASHcolor] = ACTIONS(4614), + [anon_sym_BSLASHcolorbox] = ACTIONS(4614), + [anon_sym_BSLASHtextcolor] = ACTIONS(4614), + [anon_sym_BSLASHpagecolor] = ACTIONS(4614), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4614), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4614), + [anon_sym_BSLASHtext] = ACTIONS(4614), + [anon_sym_BSLASHintertext] = ACTIONS(4614), + [anon_sym_shortintertext] = ACTIONS(4614), }, [393] = { [sym__section_declaration] = STATE(145), [sym_section] = STATE(393), [aux_sym__section_repeat3] = STATE(393), - [sym_command_name] = ACTIONS(4545), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4545), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_RBRACK] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_BSLASHpart] = ACTIONS(4545), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddpart] = ACTIONS(4545), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHchapter] = ACTIONS(4545), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddchap] = ACTIONS(4545), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsection] = ACTIONS(4615), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4618), - [anon_sym_BSLASHaddsec] = ACTIONS(4615), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4618), - [anon_sym_BSLASHsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHparagraph] = ACTIONS(4545), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(4545), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [sym_word] = ACTIONS(4545), - [sym_placeholder] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym__] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_PIPE] = ACTIONS(4545), - [anon_sym_COLON] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4545), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), - [anon_sym_BSLASHbegin] = ACTIONS(4545), - [anon_sym_BSLASHend] = ACTIONS(4545), - [anon_sym_BSLASHusepackage] = ACTIONS(4545), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), - [anon_sym_BSLASHinclude] = ACTIONS(4545), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), - [anon_sym_BSLASHinput] = ACTIONS(4545), - [anon_sym_BSLASHsubfile] = ACTIONS(4545), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), - [anon_sym_BSLASHincludesvg] = ACTIONS(4545), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), - [anon_sym_BSLASHimport] = ACTIONS(4545), - [anon_sym_BSLASHsubimport] = ACTIONS(4545), - [anon_sym_BSLASHinputfrom] = ACTIONS(4545), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), - [anon_sym_BSLASHincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHcaption] = ACTIONS(4545), - [anon_sym_BSLASHcite] = ACTIONS(4545), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCite] = ACTIONS(4545), - [anon_sym_BSLASHnocite] = ACTIONS(4545), - [anon_sym_BSLASHcitet] = ACTIONS(4545), - [anon_sym_BSLASHcitep] = ACTIONS(4545), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteauthor] = ACTIONS(4545), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitetitle] = ACTIONS(4545), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteyear] = ACTIONS(4545), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitedate] = ACTIONS(4545), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteurl] = ACTIONS(4545), - [anon_sym_BSLASHfullcite] = ACTIONS(4545), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), - [anon_sym_BSLASHcitealt] = ACTIONS(4545), - [anon_sym_BSLASHcitealp] = ACTIONS(4545), - [anon_sym_BSLASHcitetext] = ACTIONS(4545), - [anon_sym_BSLASHparencite] = ACTIONS(4545), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHParencite] = ACTIONS(4545), - [anon_sym_BSLASHfootcite] = ACTIONS(4545), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), - [anon_sym_BSLASHtextcite] = ACTIONS(4545), - [anon_sym_BSLASHTextcite] = ACTIONS(4545), - [anon_sym_BSLASHsmartcite] = ACTIONS(4545), - [anon_sym_BSLASHSmartcite] = ACTIONS(4545), - [anon_sym_BSLASHsupercite] = ACTIONS(4545), - [anon_sym_BSLASHautocite] = ACTIONS(4545), - [anon_sym_BSLASHAutocite] = ACTIONS(4545), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHvolcite] = ACTIONS(4545), - [anon_sym_BSLASHVolcite] = ACTIONS(4545), - [anon_sym_BSLASHpvolcite] = ACTIONS(4545), - [anon_sym_BSLASHPvolcite] = ACTIONS(4545), - [anon_sym_BSLASHfvolcite] = ACTIONS(4545), - [anon_sym_BSLASHftvolcite] = ACTIONS(4545), - [anon_sym_BSLASHsvolcite] = ACTIONS(4545), - [anon_sym_BSLASHSvolcite] = ACTIONS(4545), - [anon_sym_BSLASHtvolcite] = ACTIONS(4545), - [anon_sym_BSLASHTvolcite] = ACTIONS(4545), - [anon_sym_BSLASHavolcite] = ACTIONS(4545), - [anon_sym_BSLASHAvolcite] = ACTIONS(4545), - [anon_sym_BSLASHnotecite] = ACTIONS(4545), - [anon_sym_BSLASHNotecite] = ACTIONS(4545), - [anon_sym_BSLASHpnotecite] = ACTIONS(4545), - [anon_sym_BSLASHPnotecite] = ACTIONS(4545), - [anon_sym_BSLASHfnotecite] = ACTIONS(4545), - [anon_sym_BSLASHlabel] = ACTIONS(4545), - [anon_sym_BSLASHref] = ACTIONS(4545), - [anon_sym_BSLASHeqref] = ACTIONS(4545), - [anon_sym_BSLASHvref] = ACTIONS(4545), - [anon_sym_BSLASHVref] = ACTIONS(4545), - [anon_sym_BSLASHautoref] = ACTIONS(4545), - [anon_sym_BSLASHpageref] = ACTIONS(4545), - [anon_sym_BSLASHcref] = ACTIONS(4545), - [anon_sym_BSLASHCref] = ACTIONS(4545), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnameCref] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHlabelcref] = ACTIONS(4545), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCrefrange] = ACTIONS(4545), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnewlabel] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), - [anon_sym_BSLASHdef] = ACTIONS(4545), - [anon_sym_BSLASHlet] = ACTIONS(4545), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), - [anon_sym_BSLASHgls] = ACTIONS(4545), - [anon_sym_BSLASHGls] = ACTIONS(4545), - [anon_sym_BSLASHGLS] = ACTIONS(4545), - [anon_sym_BSLASHglspl] = ACTIONS(4545), - [anon_sym_BSLASHGlspl] = ACTIONS(4545), - [anon_sym_BSLASHGLSpl] = ACTIONS(4545), - [anon_sym_BSLASHglsdisp] = ACTIONS(4545), - [anon_sym_BSLASHglslink] = ACTIONS(4545), - [anon_sym_BSLASHglstext] = ACTIONS(4545), - [anon_sym_BSLASHGlstext] = ACTIONS(4545), - [anon_sym_BSLASHGLStext] = ACTIONS(4545), - [anon_sym_BSLASHglsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), - [anon_sym_BSLASHglsplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSplural] = ACTIONS(4545), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHglsname] = ACTIONS(4545), - [anon_sym_BSLASHGlsname] = ACTIONS(4545), - [anon_sym_BSLASHGLSname] = ACTIONS(4545), - [anon_sym_BSLASHglssymbol] = ACTIONS(4545), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), - [anon_sym_BSLASHglsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), - [anon_sym_BSLASHglsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), - [anon_sym_BSLASHglsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), - [anon_sym_BSLASHglsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), - [anon_sym_BSLASHglsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), - [anon_sym_BSLASHnewacronym] = ACTIONS(4545), - [anon_sym_BSLASHacrshort] = ACTIONS(4545), - [anon_sym_BSLASHAcrshort] = ACTIONS(4545), - [anon_sym_BSLASHACRshort] = ACTIONS(4545), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), - [anon_sym_BSLASHacrlong] = ACTIONS(4545), - [anon_sym_BSLASHAcrlong] = ACTIONS(4545), - [anon_sym_BSLASHACRlong] = ACTIONS(4545), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), - [anon_sym_BSLASHacrfull] = ACTIONS(4545), - [anon_sym_BSLASHAcrfull] = ACTIONS(4545), - [anon_sym_BSLASHACRfull] = ACTIONS(4545), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), - [anon_sym_BSLASHacs] = ACTIONS(4545), - [anon_sym_BSLASHAcs] = ACTIONS(4545), - [anon_sym_BSLASHacsp] = ACTIONS(4545), - [anon_sym_BSLASHAcsp] = ACTIONS(4545), - [anon_sym_BSLASHacl] = ACTIONS(4545), - [anon_sym_BSLASHAcl] = ACTIONS(4545), - [anon_sym_BSLASHaclp] = ACTIONS(4545), - [anon_sym_BSLASHAclp] = ACTIONS(4545), - [anon_sym_BSLASHacf] = ACTIONS(4545), - [anon_sym_BSLASHAcf] = ACTIONS(4545), - [anon_sym_BSLASHacfp] = ACTIONS(4545), - [anon_sym_BSLASHAcfp] = ACTIONS(4545), - [anon_sym_BSLASHac] = ACTIONS(4545), - [anon_sym_BSLASHAc] = ACTIONS(4545), - [anon_sym_BSLASHacp] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), - [anon_sym_BSLASHcolor] = ACTIONS(4545), - [anon_sym_BSLASHcolorbox] = ACTIONS(4545), - [anon_sym_BSLASHtextcolor] = ACTIONS(4545), - [anon_sym_BSLASHpagecolor] = ACTIONS(4545), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), - [anon_sym_BSLASHtext] = ACTIONS(4545), - [anon_sym_BSLASHintertext] = ACTIONS(4545), - [anon_sym_shortintertext] = ACTIONS(4545), + [sym_command_name] = ACTIONS(4624), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(4622), + [anon_sym_BSLASHpart] = ACTIONS(4624), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddpart] = ACTIONS(4624), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHchapter] = ACTIONS(4624), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddchap] = ACTIONS(4624), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsection] = ACTIONS(4694), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), + [anon_sym_BSLASHaddsec] = ACTIONS(4694), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), + [anon_sym_BSLASHsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHparagraph] = ACTIONS(4624), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4624), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHitem] = ACTIONS(4624), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [sym_word] = ACTIONS(4624), + [sym_placeholder] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4624), + [anon_sym__] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_SQUOTE] = ACTIONS(4624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4624), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4622), + [anon_sym_BSLASHbegin] = ACTIONS(4624), + [anon_sym_BSLASHend] = ACTIONS(4624), + [anon_sym_BSLASHusepackage] = ACTIONS(4624), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4624), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4624), + [anon_sym_BSLASHinclude] = ACTIONS(4624), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4624), + [anon_sym_BSLASHinput] = ACTIONS(4624), + [anon_sym_BSLASHsubfile] = ACTIONS(4624), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4624), + [anon_sym_BSLASHbibliography] = ACTIONS(4624), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4624), + [anon_sym_BSLASHincludesvg] = ACTIONS(4624), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4624), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4624), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4624), + [anon_sym_BSLASHimport] = ACTIONS(4624), + [anon_sym_BSLASHsubimport] = ACTIONS(4624), + [anon_sym_BSLASHinputfrom] = ACTIONS(4624), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4624), + [anon_sym_BSLASHincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHcaption] = ACTIONS(4624), + [anon_sym_BSLASHcite] = ACTIONS(4624), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCite] = ACTIONS(4624), + [anon_sym_BSLASHnocite] = ACTIONS(4624), + [anon_sym_BSLASHcitet] = ACTIONS(4624), + [anon_sym_BSLASHcitep] = ACTIONS(4624), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteauthor] = ACTIONS(4624), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4624), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitetitle] = ACTIONS(4624), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteyear] = ACTIONS(4624), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitedate] = ACTIONS(4624), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteurl] = ACTIONS(4624), + [anon_sym_BSLASHfullcite] = ACTIONS(4624), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4624), + [anon_sym_BSLASHcitealt] = ACTIONS(4624), + [anon_sym_BSLASHcitealp] = ACTIONS(4624), + [anon_sym_BSLASHcitetext] = ACTIONS(4624), + [anon_sym_BSLASHparencite] = ACTIONS(4624), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHParencite] = ACTIONS(4624), + [anon_sym_BSLASHfootcite] = ACTIONS(4624), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4624), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4624), + [anon_sym_BSLASHtextcite] = ACTIONS(4624), + [anon_sym_BSLASHTextcite] = ACTIONS(4624), + [anon_sym_BSLASHsmartcite] = ACTIONS(4624), + [anon_sym_BSLASHSmartcite] = ACTIONS(4624), + [anon_sym_BSLASHsupercite] = ACTIONS(4624), + [anon_sym_BSLASHautocite] = ACTIONS(4624), + [anon_sym_BSLASHAutocite] = ACTIONS(4624), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHvolcite] = ACTIONS(4624), + [anon_sym_BSLASHVolcite] = ACTIONS(4624), + [anon_sym_BSLASHpvolcite] = ACTIONS(4624), + [anon_sym_BSLASHPvolcite] = ACTIONS(4624), + [anon_sym_BSLASHfvolcite] = ACTIONS(4624), + [anon_sym_BSLASHftvolcite] = ACTIONS(4624), + [anon_sym_BSLASHsvolcite] = ACTIONS(4624), + [anon_sym_BSLASHSvolcite] = ACTIONS(4624), + [anon_sym_BSLASHtvolcite] = ACTIONS(4624), + [anon_sym_BSLASHTvolcite] = ACTIONS(4624), + [anon_sym_BSLASHavolcite] = ACTIONS(4624), + [anon_sym_BSLASHAvolcite] = ACTIONS(4624), + [anon_sym_BSLASHnotecite] = ACTIONS(4624), + [anon_sym_BSLASHNotecite] = ACTIONS(4624), + [anon_sym_BSLASHpnotecite] = ACTIONS(4624), + [anon_sym_BSLASHPnotecite] = ACTIONS(4624), + [anon_sym_BSLASHfnotecite] = ACTIONS(4624), + [anon_sym_BSLASHlabel] = ACTIONS(4624), + [anon_sym_BSLASHref] = ACTIONS(4624), + [anon_sym_BSLASHeqref] = ACTIONS(4624), + [anon_sym_BSLASHvref] = ACTIONS(4624), + [anon_sym_BSLASHVref] = ACTIONS(4624), + [anon_sym_BSLASHautoref] = ACTIONS(4624), + [anon_sym_BSLASHpageref] = ACTIONS(4624), + [anon_sym_BSLASHcref] = ACTIONS(4624), + [anon_sym_BSLASHCref] = ACTIONS(4624), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnameCref] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHlabelcref] = ACTIONS(4624), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCrefrange] = ACTIONS(4624), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnewlabel] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4624), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4624), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4624), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdef] = ACTIONS(4624), + [anon_sym_BSLASHlet] = ACTIONS(4624), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4624), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4624), + [anon_sym_BSLASHgls] = ACTIONS(4624), + [anon_sym_BSLASHGls] = ACTIONS(4624), + [anon_sym_BSLASHGLS] = ACTIONS(4624), + [anon_sym_BSLASHglspl] = ACTIONS(4624), + [anon_sym_BSLASHGlspl] = ACTIONS(4624), + [anon_sym_BSLASHGLSpl] = ACTIONS(4624), + [anon_sym_BSLASHglsdisp] = ACTIONS(4624), + [anon_sym_BSLASHglslink] = ACTIONS(4624), + [anon_sym_BSLASHglstext] = ACTIONS(4624), + [anon_sym_BSLASHGlstext] = ACTIONS(4624), + [anon_sym_BSLASHGLStext] = ACTIONS(4624), + [anon_sym_BSLASHglsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4624), + [anon_sym_BSLASHglsplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSplural] = ACTIONS(4624), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHglsname] = ACTIONS(4624), + [anon_sym_BSLASHGlsname] = ACTIONS(4624), + [anon_sym_BSLASHGLSname] = ACTIONS(4624), + [anon_sym_BSLASHglssymbol] = ACTIONS(4624), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4624), + [anon_sym_BSLASHglsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4624), + [anon_sym_BSLASHglsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4624), + [anon_sym_BSLASHglsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4624), + [anon_sym_BSLASHglsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4624), + [anon_sym_BSLASHglsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4624), + [anon_sym_BSLASHnewacronym] = ACTIONS(4624), + [anon_sym_BSLASHacrshort] = ACTIONS(4624), + [anon_sym_BSLASHAcrshort] = ACTIONS(4624), + [anon_sym_BSLASHACRshort] = ACTIONS(4624), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4624), + [anon_sym_BSLASHacrlong] = ACTIONS(4624), + [anon_sym_BSLASHAcrlong] = ACTIONS(4624), + [anon_sym_BSLASHACRlong] = ACTIONS(4624), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4624), + [anon_sym_BSLASHacrfull] = ACTIONS(4624), + [anon_sym_BSLASHAcrfull] = ACTIONS(4624), + [anon_sym_BSLASHACRfull] = ACTIONS(4624), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4624), + [anon_sym_BSLASHacs] = ACTIONS(4624), + [anon_sym_BSLASHAcs] = ACTIONS(4624), + [anon_sym_BSLASHacsp] = ACTIONS(4624), + [anon_sym_BSLASHAcsp] = ACTIONS(4624), + [anon_sym_BSLASHacl] = ACTIONS(4624), + [anon_sym_BSLASHAcl] = ACTIONS(4624), + [anon_sym_BSLASHaclp] = ACTIONS(4624), + [anon_sym_BSLASHAclp] = ACTIONS(4624), + [anon_sym_BSLASHacf] = ACTIONS(4624), + [anon_sym_BSLASHAcf] = ACTIONS(4624), + [anon_sym_BSLASHacfp] = ACTIONS(4624), + [anon_sym_BSLASHAcfp] = ACTIONS(4624), + [anon_sym_BSLASHac] = ACTIONS(4624), + [anon_sym_BSLASHAc] = ACTIONS(4624), + [anon_sym_BSLASHacp] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4624), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4624), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4624), + [anon_sym_BSLASHcolor] = ACTIONS(4624), + [anon_sym_BSLASHcolorbox] = ACTIONS(4624), + [anon_sym_BSLASHtextcolor] = ACTIONS(4624), + [anon_sym_BSLASHpagecolor] = ACTIONS(4624), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4624), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4624), + [anon_sym_BSLASHtext] = ACTIONS(4624), + [anon_sym_BSLASHintertext] = ACTIONS(4624), + [anon_sym_shortintertext] = ACTIONS(4624), }, [394] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [395] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [396] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHend] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4566), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHend] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [397] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [398] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [399] = { [sym__chapter_declaration] = STATE(141), [sym_chapter] = STATE(399), [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(4555), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_RPAREN] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_RBRACK] = ACTIONS(4553), - [anon_sym_COMMA] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_BSLASHpart] = ACTIONS(4555), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddpart] = ACTIONS(4555), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHchapter] = ACTIONS(4621), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4624), - [anon_sym_BSLASHaddchap] = ACTIONS(4621), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4624), - [anon_sym_BSLASHsection] = ACTIONS(4555), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddsec] = ACTIONS(4555), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHparagraph] = ACTIONS(4555), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHitem] = ACTIONS(4555), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4553), - [sym_word] = ACTIONS(4555), - [sym_placeholder] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym__] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), - [anon_sym_BSLASHbegin] = ACTIONS(4555), - [anon_sym_BSLASHend] = ACTIONS(4555), - [anon_sym_BSLASHusepackage] = ACTIONS(4555), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), - [anon_sym_BSLASHinclude] = ACTIONS(4555), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), - [anon_sym_BSLASHinput] = ACTIONS(4555), - [anon_sym_BSLASHsubfile] = ACTIONS(4555), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), - [anon_sym_BSLASHbibliography] = ACTIONS(4555), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), - [anon_sym_BSLASHincludesvg] = ACTIONS(4555), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), - [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(4555), - [anon_sym_BSLASHcite] = ACTIONS(4555), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCite] = ACTIONS(4555), - [anon_sym_BSLASHnocite] = ACTIONS(4555), - [anon_sym_BSLASHcitet] = ACTIONS(4555), - [anon_sym_BSLASHcitep] = ACTIONS(4555), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteauthor] = ACTIONS(4555), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitetitle] = ACTIONS(4555), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteyear] = ACTIONS(4555), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitedate] = ACTIONS(4555), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteurl] = ACTIONS(4555), - [anon_sym_BSLASHfullcite] = ACTIONS(4555), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), - [anon_sym_BSLASHcitealt] = ACTIONS(4555), - [anon_sym_BSLASHcitealp] = ACTIONS(4555), - [anon_sym_BSLASHcitetext] = ACTIONS(4555), - [anon_sym_BSLASHparencite] = ACTIONS(4555), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHParencite] = ACTIONS(4555), - [anon_sym_BSLASHfootcite] = ACTIONS(4555), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), - [anon_sym_BSLASHtextcite] = ACTIONS(4555), - [anon_sym_BSLASHTextcite] = ACTIONS(4555), - [anon_sym_BSLASHsmartcite] = ACTIONS(4555), - [anon_sym_BSLASHSmartcite] = ACTIONS(4555), - [anon_sym_BSLASHsupercite] = ACTIONS(4555), - [anon_sym_BSLASHautocite] = ACTIONS(4555), - [anon_sym_BSLASHAutocite] = ACTIONS(4555), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHvolcite] = ACTIONS(4555), - [anon_sym_BSLASHVolcite] = ACTIONS(4555), - [anon_sym_BSLASHpvolcite] = ACTIONS(4555), - [anon_sym_BSLASHPvolcite] = ACTIONS(4555), - [anon_sym_BSLASHfvolcite] = ACTIONS(4555), - [anon_sym_BSLASHftvolcite] = ACTIONS(4555), - [anon_sym_BSLASHsvolcite] = ACTIONS(4555), - [anon_sym_BSLASHSvolcite] = ACTIONS(4555), - [anon_sym_BSLASHtvolcite] = ACTIONS(4555), - [anon_sym_BSLASHTvolcite] = ACTIONS(4555), - [anon_sym_BSLASHavolcite] = ACTIONS(4555), - [anon_sym_BSLASHAvolcite] = ACTIONS(4555), - [anon_sym_BSLASHnotecite] = ACTIONS(4555), - [anon_sym_BSLASHNotecite] = ACTIONS(4555), - [anon_sym_BSLASHpnotecite] = ACTIONS(4555), - [anon_sym_BSLASHPnotecite] = ACTIONS(4555), - [anon_sym_BSLASHfnotecite] = ACTIONS(4555), - [anon_sym_BSLASHlabel] = ACTIONS(4555), - [anon_sym_BSLASHref] = ACTIONS(4555), - [anon_sym_BSLASHeqref] = ACTIONS(4555), - [anon_sym_BSLASHvref] = ACTIONS(4555), - [anon_sym_BSLASHVref] = ACTIONS(4555), - [anon_sym_BSLASHautoref] = ACTIONS(4555), - [anon_sym_BSLASHpageref] = ACTIONS(4555), - [anon_sym_BSLASHcref] = ACTIONS(4555), - [anon_sym_BSLASHCref] = ACTIONS(4555), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnameCref] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHlabelcref] = ACTIONS(4555), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCrefrange] = ACTIONS(4555), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnewlabel] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), - [anon_sym_BSLASHdef] = ACTIONS(4555), - [anon_sym_BSLASHlet] = ACTIONS(4555), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), - [anon_sym_BSLASHgls] = ACTIONS(4555), - [anon_sym_BSLASHGls] = ACTIONS(4555), - [anon_sym_BSLASHGLS] = ACTIONS(4555), - [anon_sym_BSLASHglspl] = ACTIONS(4555), - [anon_sym_BSLASHGlspl] = ACTIONS(4555), - [anon_sym_BSLASHGLSpl] = ACTIONS(4555), - [anon_sym_BSLASHglsdisp] = ACTIONS(4555), - [anon_sym_BSLASHglslink] = ACTIONS(4555), - [anon_sym_BSLASHglstext] = ACTIONS(4555), - [anon_sym_BSLASHGlstext] = ACTIONS(4555), - [anon_sym_BSLASHGLStext] = ACTIONS(4555), - [anon_sym_BSLASHglsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), - [anon_sym_BSLASHglsplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSplural] = ACTIONS(4555), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHglsname] = ACTIONS(4555), - [anon_sym_BSLASHGlsname] = ACTIONS(4555), - [anon_sym_BSLASHGLSname] = ACTIONS(4555), - [anon_sym_BSLASHglssymbol] = ACTIONS(4555), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), - [anon_sym_BSLASHglsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), - [anon_sym_BSLASHglsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), - [anon_sym_BSLASHglsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), - [anon_sym_BSLASHglsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), - [anon_sym_BSLASHglsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), - [anon_sym_BSLASHnewacronym] = ACTIONS(4555), - [anon_sym_BSLASHacrshort] = ACTIONS(4555), - [anon_sym_BSLASHAcrshort] = ACTIONS(4555), - [anon_sym_BSLASHACRshort] = ACTIONS(4555), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), - [anon_sym_BSLASHacrlong] = ACTIONS(4555), - [anon_sym_BSLASHAcrlong] = ACTIONS(4555), - [anon_sym_BSLASHACRlong] = ACTIONS(4555), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), - [anon_sym_BSLASHacrfull] = ACTIONS(4555), - [anon_sym_BSLASHAcrfull] = ACTIONS(4555), - [anon_sym_BSLASHACRfull] = ACTIONS(4555), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), - [anon_sym_BSLASHacs] = ACTIONS(4555), - [anon_sym_BSLASHAcs] = ACTIONS(4555), - [anon_sym_BSLASHacsp] = ACTIONS(4555), - [anon_sym_BSLASHAcsp] = ACTIONS(4555), - [anon_sym_BSLASHacl] = ACTIONS(4555), - [anon_sym_BSLASHAcl] = ACTIONS(4555), - [anon_sym_BSLASHaclp] = ACTIONS(4555), - [anon_sym_BSLASHAclp] = ACTIONS(4555), - [anon_sym_BSLASHacf] = ACTIONS(4555), - [anon_sym_BSLASHAcf] = ACTIONS(4555), - [anon_sym_BSLASHacfp] = ACTIONS(4555), - [anon_sym_BSLASHAcfp] = ACTIONS(4555), - [anon_sym_BSLASHac] = ACTIONS(4555), - [anon_sym_BSLASHAc] = ACTIONS(4555), - [anon_sym_BSLASHacp] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), - [anon_sym_BSLASHcolor] = ACTIONS(4555), - [anon_sym_BSLASHcolorbox] = ACTIONS(4555), - [anon_sym_BSLASHtextcolor] = ACTIONS(4555), - [anon_sym_BSLASHpagecolor] = ACTIONS(4555), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), - [anon_sym_BSLASHtext] = ACTIONS(4555), - [anon_sym_BSLASHintertext] = ACTIONS(4555), - [anon_sym_shortintertext] = ACTIONS(4555), + [sym_command_name] = ACTIONS(4634), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_BSLASHpart] = ACTIONS(4634), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddpart] = ACTIONS(4634), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHchapter] = ACTIONS(4700), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4703), + [anon_sym_BSLASHaddchap] = ACTIONS(4700), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4703), + [anon_sym_BSLASHsection] = ACTIONS(4634), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddsec] = ACTIONS(4634), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHparagraph] = ACTIONS(4634), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4634), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHitem] = ACTIONS(4634), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4632), + [sym_word] = ACTIONS(4634), + [sym_placeholder] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym__] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4632), + [anon_sym_BSLASHbegin] = ACTIONS(4634), + [anon_sym_BSLASHend] = ACTIONS(4634), + [anon_sym_BSLASHusepackage] = ACTIONS(4634), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4634), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4634), + [anon_sym_BSLASHinclude] = ACTIONS(4634), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4634), + [anon_sym_BSLASHinput] = ACTIONS(4634), + [anon_sym_BSLASHsubfile] = ACTIONS(4634), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4634), + [anon_sym_BSLASHbibliography] = ACTIONS(4634), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4634), + [anon_sym_BSLASHincludesvg] = ACTIONS(4634), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4634), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4634), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4634), + [anon_sym_BSLASHimport] = ACTIONS(4634), + [anon_sym_BSLASHsubimport] = ACTIONS(4634), + [anon_sym_BSLASHinputfrom] = ACTIONS(4634), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4634), + [anon_sym_BSLASHincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHcaption] = ACTIONS(4634), + [anon_sym_BSLASHcite] = ACTIONS(4634), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCite] = ACTIONS(4634), + [anon_sym_BSLASHnocite] = ACTIONS(4634), + [anon_sym_BSLASHcitet] = ACTIONS(4634), + [anon_sym_BSLASHcitep] = ACTIONS(4634), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteauthor] = ACTIONS(4634), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4634), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitetitle] = ACTIONS(4634), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteyear] = ACTIONS(4634), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitedate] = ACTIONS(4634), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteurl] = ACTIONS(4634), + [anon_sym_BSLASHfullcite] = ACTIONS(4634), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4634), + [anon_sym_BSLASHcitealt] = ACTIONS(4634), + [anon_sym_BSLASHcitealp] = ACTIONS(4634), + [anon_sym_BSLASHcitetext] = ACTIONS(4634), + [anon_sym_BSLASHparencite] = ACTIONS(4634), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHParencite] = ACTIONS(4634), + [anon_sym_BSLASHfootcite] = ACTIONS(4634), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4634), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4634), + [anon_sym_BSLASHtextcite] = ACTIONS(4634), + [anon_sym_BSLASHTextcite] = ACTIONS(4634), + [anon_sym_BSLASHsmartcite] = ACTIONS(4634), + [anon_sym_BSLASHSmartcite] = ACTIONS(4634), + [anon_sym_BSLASHsupercite] = ACTIONS(4634), + [anon_sym_BSLASHautocite] = ACTIONS(4634), + [anon_sym_BSLASHAutocite] = ACTIONS(4634), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHvolcite] = ACTIONS(4634), + [anon_sym_BSLASHVolcite] = ACTIONS(4634), + [anon_sym_BSLASHpvolcite] = ACTIONS(4634), + [anon_sym_BSLASHPvolcite] = ACTIONS(4634), + [anon_sym_BSLASHfvolcite] = ACTIONS(4634), + [anon_sym_BSLASHftvolcite] = ACTIONS(4634), + [anon_sym_BSLASHsvolcite] = ACTIONS(4634), + [anon_sym_BSLASHSvolcite] = ACTIONS(4634), + [anon_sym_BSLASHtvolcite] = ACTIONS(4634), + [anon_sym_BSLASHTvolcite] = ACTIONS(4634), + [anon_sym_BSLASHavolcite] = ACTIONS(4634), + [anon_sym_BSLASHAvolcite] = ACTIONS(4634), + [anon_sym_BSLASHnotecite] = ACTIONS(4634), + [anon_sym_BSLASHNotecite] = ACTIONS(4634), + [anon_sym_BSLASHpnotecite] = ACTIONS(4634), + [anon_sym_BSLASHPnotecite] = ACTIONS(4634), + [anon_sym_BSLASHfnotecite] = ACTIONS(4634), + [anon_sym_BSLASHlabel] = ACTIONS(4634), + [anon_sym_BSLASHref] = ACTIONS(4634), + [anon_sym_BSLASHeqref] = ACTIONS(4634), + [anon_sym_BSLASHvref] = ACTIONS(4634), + [anon_sym_BSLASHVref] = ACTIONS(4634), + [anon_sym_BSLASHautoref] = ACTIONS(4634), + [anon_sym_BSLASHpageref] = ACTIONS(4634), + [anon_sym_BSLASHcref] = ACTIONS(4634), + [anon_sym_BSLASHCref] = ACTIONS(4634), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnameCref] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHlabelcref] = ACTIONS(4634), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCrefrange] = ACTIONS(4634), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnewlabel] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4634), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4634), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4634), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdef] = ACTIONS(4634), + [anon_sym_BSLASHlet] = ACTIONS(4634), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4634), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4634), + [anon_sym_BSLASHgls] = ACTIONS(4634), + [anon_sym_BSLASHGls] = ACTIONS(4634), + [anon_sym_BSLASHGLS] = ACTIONS(4634), + [anon_sym_BSLASHglspl] = ACTIONS(4634), + [anon_sym_BSLASHGlspl] = ACTIONS(4634), + [anon_sym_BSLASHGLSpl] = ACTIONS(4634), + [anon_sym_BSLASHglsdisp] = ACTIONS(4634), + [anon_sym_BSLASHglslink] = ACTIONS(4634), + [anon_sym_BSLASHglstext] = ACTIONS(4634), + [anon_sym_BSLASHGlstext] = ACTIONS(4634), + [anon_sym_BSLASHGLStext] = ACTIONS(4634), + [anon_sym_BSLASHglsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4634), + [anon_sym_BSLASHglsplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSplural] = ACTIONS(4634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHglsname] = ACTIONS(4634), + [anon_sym_BSLASHGlsname] = ACTIONS(4634), + [anon_sym_BSLASHGLSname] = ACTIONS(4634), + [anon_sym_BSLASHglssymbol] = ACTIONS(4634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4634), + [anon_sym_BSLASHglsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4634), + [anon_sym_BSLASHglsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4634), + [anon_sym_BSLASHglsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4634), + [anon_sym_BSLASHglsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4634), + [anon_sym_BSLASHglsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4634), + [anon_sym_BSLASHnewacronym] = ACTIONS(4634), + [anon_sym_BSLASHacrshort] = ACTIONS(4634), + [anon_sym_BSLASHAcrshort] = ACTIONS(4634), + [anon_sym_BSLASHACRshort] = ACTIONS(4634), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4634), + [anon_sym_BSLASHacrlong] = ACTIONS(4634), + [anon_sym_BSLASHAcrlong] = ACTIONS(4634), + [anon_sym_BSLASHACRlong] = ACTIONS(4634), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4634), + [anon_sym_BSLASHacrfull] = ACTIONS(4634), + [anon_sym_BSLASHAcrfull] = ACTIONS(4634), + [anon_sym_BSLASHACRfull] = ACTIONS(4634), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4634), + [anon_sym_BSLASHacs] = ACTIONS(4634), + [anon_sym_BSLASHAcs] = ACTIONS(4634), + [anon_sym_BSLASHacsp] = ACTIONS(4634), + [anon_sym_BSLASHAcsp] = ACTIONS(4634), + [anon_sym_BSLASHacl] = ACTIONS(4634), + [anon_sym_BSLASHAcl] = ACTIONS(4634), + [anon_sym_BSLASHaclp] = ACTIONS(4634), + [anon_sym_BSLASHAclp] = ACTIONS(4634), + [anon_sym_BSLASHacf] = ACTIONS(4634), + [anon_sym_BSLASHAcf] = ACTIONS(4634), + [anon_sym_BSLASHacfp] = ACTIONS(4634), + [anon_sym_BSLASHAcfp] = ACTIONS(4634), + [anon_sym_BSLASHac] = ACTIONS(4634), + [anon_sym_BSLASHAc] = ACTIONS(4634), + [anon_sym_BSLASHacp] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4634), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4634), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4634), + [anon_sym_BSLASHcolor] = ACTIONS(4634), + [anon_sym_BSLASHcolorbox] = ACTIONS(4634), + [anon_sym_BSLASHtextcolor] = ACTIONS(4634), + [anon_sym_BSLASHpagecolor] = ACTIONS(4634), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4634), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4634), + [anon_sym_BSLASHtext] = ACTIONS(4634), + [anon_sym_BSLASHintertext] = ACTIONS(4634), + [anon_sym_shortintertext] = ACTIONS(4634), }, [400] = { [sym__section_declaration] = STATE(148), [sym_section] = STATE(456), [aux_sym__section_repeat3] = STATE(456), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [401] = { [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(462), [aux_sym__section_repeat2] = STATE(462), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [402] = { [sym__part_declaration] = STATE(131), [sym_part] = STATE(628), [aux_sym__section_repeat1] = STATE(628), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(651), - [anon_sym_BSLASHpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHaddpart] = ACTIONS(651), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(660), + [anon_sym_BSLASHpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHaddpart] = ACTIONS(660), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(662), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [403] = { [sym__chapter_declaration] = STATE(135), [sym_chapter] = STATE(630), [aux_sym__section_repeat2] = STATE(630), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [404] = { [sym__section_declaration] = STATE(144), [sym_section] = STATE(631), [aux_sym__section_repeat3] = STATE(631), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [405] = { [sym__part_declaration] = STATE(126), [sym_part] = STATE(405), [aux_sym__section_repeat1] = STATE(405), - [sym_command_name] = ACTIONS(4569), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4569), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4567), - [anon_sym_RBRACK] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_BSLASHpart] = ACTIONS(4627), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4630), - [anon_sym_BSLASHaddpart] = ACTIONS(4627), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4630), - [anon_sym_BSLASHchapter] = ACTIONS(4569), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddchap] = ACTIONS(4569), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsection] = ACTIONS(4569), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddsec] = ACTIONS(4569), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHparagraph] = ACTIONS(4569), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHitem] = ACTIONS(4569), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [sym_word] = ACTIONS(4569), - [sym_placeholder] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym__] = ACTIONS(4569), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_PIPE] = ACTIONS(4569), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), - [anon_sym_BSLASHbegin] = ACTIONS(4569), - [anon_sym_BSLASHend] = ACTIONS(4569), - [anon_sym_BSLASHusepackage] = ACTIONS(4569), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), - [anon_sym_BSLASHinclude] = ACTIONS(4569), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), - [anon_sym_BSLASHinput] = ACTIONS(4569), - [anon_sym_BSLASHsubfile] = ACTIONS(4569), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), - [anon_sym_BSLASHbibliography] = ACTIONS(4569), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), - [anon_sym_BSLASHincludesvg] = ACTIONS(4569), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), - [anon_sym_BSLASHimport] = ACTIONS(4569), - [anon_sym_BSLASHsubimport] = ACTIONS(4569), - [anon_sym_BSLASHinputfrom] = ACTIONS(4569), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), - [anon_sym_BSLASHincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHcaption] = ACTIONS(4569), - [anon_sym_BSLASHcite] = ACTIONS(4569), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCite] = ACTIONS(4569), - [anon_sym_BSLASHnocite] = ACTIONS(4569), - [anon_sym_BSLASHcitet] = ACTIONS(4569), - [anon_sym_BSLASHcitep] = ACTIONS(4569), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteauthor] = ACTIONS(4569), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitetitle] = ACTIONS(4569), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteyear] = ACTIONS(4569), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitedate] = ACTIONS(4569), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteurl] = ACTIONS(4569), - [anon_sym_BSLASHfullcite] = ACTIONS(4569), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), - [anon_sym_BSLASHcitealt] = ACTIONS(4569), - [anon_sym_BSLASHcitealp] = ACTIONS(4569), - [anon_sym_BSLASHcitetext] = ACTIONS(4569), - [anon_sym_BSLASHparencite] = ACTIONS(4569), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHParencite] = ACTIONS(4569), - [anon_sym_BSLASHfootcite] = ACTIONS(4569), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), - [anon_sym_BSLASHtextcite] = ACTIONS(4569), - [anon_sym_BSLASHTextcite] = ACTIONS(4569), - [anon_sym_BSLASHsmartcite] = ACTIONS(4569), - [anon_sym_BSLASHSmartcite] = ACTIONS(4569), - [anon_sym_BSLASHsupercite] = ACTIONS(4569), - [anon_sym_BSLASHautocite] = ACTIONS(4569), - [anon_sym_BSLASHAutocite] = ACTIONS(4569), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHvolcite] = ACTIONS(4569), - [anon_sym_BSLASHVolcite] = ACTIONS(4569), - [anon_sym_BSLASHpvolcite] = ACTIONS(4569), - [anon_sym_BSLASHPvolcite] = ACTIONS(4569), - [anon_sym_BSLASHfvolcite] = ACTIONS(4569), - [anon_sym_BSLASHftvolcite] = ACTIONS(4569), - [anon_sym_BSLASHsvolcite] = ACTIONS(4569), - [anon_sym_BSLASHSvolcite] = ACTIONS(4569), - [anon_sym_BSLASHtvolcite] = ACTIONS(4569), - [anon_sym_BSLASHTvolcite] = ACTIONS(4569), - [anon_sym_BSLASHavolcite] = ACTIONS(4569), - [anon_sym_BSLASHAvolcite] = ACTIONS(4569), - [anon_sym_BSLASHnotecite] = ACTIONS(4569), - [anon_sym_BSLASHNotecite] = ACTIONS(4569), - [anon_sym_BSLASHpnotecite] = ACTIONS(4569), - [anon_sym_BSLASHPnotecite] = ACTIONS(4569), - [anon_sym_BSLASHfnotecite] = ACTIONS(4569), - [anon_sym_BSLASHlabel] = ACTIONS(4569), - [anon_sym_BSLASHref] = ACTIONS(4569), - [anon_sym_BSLASHeqref] = ACTIONS(4569), - [anon_sym_BSLASHvref] = ACTIONS(4569), - [anon_sym_BSLASHVref] = ACTIONS(4569), - [anon_sym_BSLASHautoref] = ACTIONS(4569), - [anon_sym_BSLASHpageref] = ACTIONS(4569), - [anon_sym_BSLASHcref] = ACTIONS(4569), - [anon_sym_BSLASHCref] = ACTIONS(4569), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnameCref] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHlabelcref] = ACTIONS(4569), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnewlabel] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), - [anon_sym_BSLASHdef] = ACTIONS(4569), - [anon_sym_BSLASHlet] = ACTIONS(4569), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), - [anon_sym_BSLASHgls] = ACTIONS(4569), - [anon_sym_BSLASHGls] = ACTIONS(4569), - [anon_sym_BSLASHGLS] = ACTIONS(4569), - [anon_sym_BSLASHglspl] = ACTIONS(4569), - [anon_sym_BSLASHGlspl] = ACTIONS(4569), - [anon_sym_BSLASHGLSpl] = ACTIONS(4569), - [anon_sym_BSLASHglsdisp] = ACTIONS(4569), - [anon_sym_BSLASHglslink] = ACTIONS(4569), - [anon_sym_BSLASHglstext] = ACTIONS(4569), - [anon_sym_BSLASHGlstext] = ACTIONS(4569), - [anon_sym_BSLASHGLStext] = ACTIONS(4569), - [anon_sym_BSLASHglsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), - [anon_sym_BSLASHglsplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSplural] = ACTIONS(4569), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHglsname] = ACTIONS(4569), - [anon_sym_BSLASHGlsname] = ACTIONS(4569), - [anon_sym_BSLASHGLSname] = ACTIONS(4569), - [anon_sym_BSLASHglssymbol] = ACTIONS(4569), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), - [anon_sym_BSLASHglsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), - [anon_sym_BSLASHglsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), - [anon_sym_BSLASHglsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), - [anon_sym_BSLASHglsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), - [anon_sym_BSLASHglsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), - [anon_sym_BSLASHnewacronym] = ACTIONS(4569), - [anon_sym_BSLASHacrshort] = ACTIONS(4569), - [anon_sym_BSLASHAcrshort] = ACTIONS(4569), - [anon_sym_BSLASHACRshort] = ACTIONS(4569), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), - [anon_sym_BSLASHacrlong] = ACTIONS(4569), - [anon_sym_BSLASHAcrlong] = ACTIONS(4569), - [anon_sym_BSLASHACRlong] = ACTIONS(4569), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), - [anon_sym_BSLASHacrfull] = ACTIONS(4569), - [anon_sym_BSLASHAcrfull] = ACTIONS(4569), - [anon_sym_BSLASHACRfull] = ACTIONS(4569), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), - [anon_sym_BSLASHacs] = ACTIONS(4569), - [anon_sym_BSLASHAcs] = ACTIONS(4569), - [anon_sym_BSLASHacsp] = ACTIONS(4569), - [anon_sym_BSLASHAcsp] = ACTIONS(4569), - [anon_sym_BSLASHacl] = ACTIONS(4569), - [anon_sym_BSLASHAcl] = ACTIONS(4569), - [anon_sym_BSLASHaclp] = ACTIONS(4569), - [anon_sym_BSLASHAclp] = ACTIONS(4569), - [anon_sym_BSLASHacf] = ACTIONS(4569), - [anon_sym_BSLASHAcf] = ACTIONS(4569), - [anon_sym_BSLASHacfp] = ACTIONS(4569), - [anon_sym_BSLASHAcfp] = ACTIONS(4569), - [anon_sym_BSLASHac] = ACTIONS(4569), - [anon_sym_BSLASHAc] = ACTIONS(4569), - [anon_sym_BSLASHacp] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), - [anon_sym_BSLASHcolor] = ACTIONS(4569), - [anon_sym_BSLASHcolorbox] = ACTIONS(4569), - [anon_sym_BSLASHtextcolor] = ACTIONS(4569), - [anon_sym_BSLASHpagecolor] = ACTIONS(4569), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), - [anon_sym_BSLASHtext] = ACTIONS(4569), - [anon_sym_BSLASHintertext] = ACTIONS(4569), - [anon_sym_shortintertext] = ACTIONS(4569), + [sym_command_name] = ACTIONS(4648), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_BSLASHpart] = ACTIONS(4706), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4709), + [anon_sym_BSLASHaddpart] = ACTIONS(4706), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4709), + [anon_sym_BSLASHchapter] = ACTIONS(4648), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddchap] = ACTIONS(4648), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsection] = ACTIONS(4648), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddsec] = ACTIONS(4648), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHparagraph] = ACTIONS(4648), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4648), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHitem] = ACTIONS(4648), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [sym_word] = ACTIONS(4648), + [sym_placeholder] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym__] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4646), + [anon_sym_BSLASHbegin] = ACTIONS(4648), + [anon_sym_BSLASHend] = ACTIONS(4648), + [anon_sym_BSLASHusepackage] = ACTIONS(4648), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4648), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4648), + [anon_sym_BSLASHinclude] = ACTIONS(4648), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4648), + [anon_sym_BSLASHinput] = ACTIONS(4648), + [anon_sym_BSLASHsubfile] = ACTIONS(4648), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4648), + [anon_sym_BSLASHbibliography] = ACTIONS(4648), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4648), + [anon_sym_BSLASHincludesvg] = ACTIONS(4648), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4648), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4648), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4648), + [anon_sym_BSLASHimport] = ACTIONS(4648), + [anon_sym_BSLASHsubimport] = ACTIONS(4648), + [anon_sym_BSLASHinputfrom] = ACTIONS(4648), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4648), + [anon_sym_BSLASHincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHcaption] = ACTIONS(4648), + [anon_sym_BSLASHcite] = ACTIONS(4648), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCite] = ACTIONS(4648), + [anon_sym_BSLASHnocite] = ACTIONS(4648), + [anon_sym_BSLASHcitet] = ACTIONS(4648), + [anon_sym_BSLASHcitep] = ACTIONS(4648), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteauthor] = ACTIONS(4648), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4648), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitetitle] = ACTIONS(4648), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteyear] = ACTIONS(4648), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitedate] = ACTIONS(4648), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteurl] = ACTIONS(4648), + [anon_sym_BSLASHfullcite] = ACTIONS(4648), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4648), + [anon_sym_BSLASHcitealt] = ACTIONS(4648), + [anon_sym_BSLASHcitealp] = ACTIONS(4648), + [anon_sym_BSLASHcitetext] = ACTIONS(4648), + [anon_sym_BSLASHparencite] = ACTIONS(4648), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHParencite] = ACTIONS(4648), + [anon_sym_BSLASHfootcite] = ACTIONS(4648), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4648), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4648), + [anon_sym_BSLASHtextcite] = ACTIONS(4648), + [anon_sym_BSLASHTextcite] = ACTIONS(4648), + [anon_sym_BSLASHsmartcite] = ACTIONS(4648), + [anon_sym_BSLASHSmartcite] = ACTIONS(4648), + [anon_sym_BSLASHsupercite] = ACTIONS(4648), + [anon_sym_BSLASHautocite] = ACTIONS(4648), + [anon_sym_BSLASHAutocite] = ACTIONS(4648), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHvolcite] = ACTIONS(4648), + [anon_sym_BSLASHVolcite] = ACTIONS(4648), + [anon_sym_BSLASHpvolcite] = ACTIONS(4648), + [anon_sym_BSLASHPvolcite] = ACTIONS(4648), + [anon_sym_BSLASHfvolcite] = ACTIONS(4648), + [anon_sym_BSLASHftvolcite] = ACTIONS(4648), + [anon_sym_BSLASHsvolcite] = ACTIONS(4648), + [anon_sym_BSLASHSvolcite] = ACTIONS(4648), + [anon_sym_BSLASHtvolcite] = ACTIONS(4648), + [anon_sym_BSLASHTvolcite] = ACTIONS(4648), + [anon_sym_BSLASHavolcite] = ACTIONS(4648), + [anon_sym_BSLASHAvolcite] = ACTIONS(4648), + [anon_sym_BSLASHnotecite] = ACTIONS(4648), + [anon_sym_BSLASHNotecite] = ACTIONS(4648), + [anon_sym_BSLASHpnotecite] = ACTIONS(4648), + [anon_sym_BSLASHPnotecite] = ACTIONS(4648), + [anon_sym_BSLASHfnotecite] = ACTIONS(4648), + [anon_sym_BSLASHlabel] = ACTIONS(4648), + [anon_sym_BSLASHref] = ACTIONS(4648), + [anon_sym_BSLASHeqref] = ACTIONS(4648), + [anon_sym_BSLASHvref] = ACTIONS(4648), + [anon_sym_BSLASHVref] = ACTIONS(4648), + [anon_sym_BSLASHautoref] = ACTIONS(4648), + [anon_sym_BSLASHpageref] = ACTIONS(4648), + [anon_sym_BSLASHcref] = ACTIONS(4648), + [anon_sym_BSLASHCref] = ACTIONS(4648), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnameCref] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHlabelcref] = ACTIONS(4648), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCrefrange] = ACTIONS(4648), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnewlabel] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4648), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4648), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4648), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdef] = ACTIONS(4648), + [anon_sym_BSLASHlet] = ACTIONS(4648), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4648), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4648), + [anon_sym_BSLASHgls] = ACTIONS(4648), + [anon_sym_BSLASHGls] = ACTIONS(4648), + [anon_sym_BSLASHGLS] = ACTIONS(4648), + [anon_sym_BSLASHglspl] = ACTIONS(4648), + [anon_sym_BSLASHGlspl] = ACTIONS(4648), + [anon_sym_BSLASHGLSpl] = ACTIONS(4648), + [anon_sym_BSLASHglsdisp] = ACTIONS(4648), + [anon_sym_BSLASHglslink] = ACTIONS(4648), + [anon_sym_BSLASHglstext] = ACTIONS(4648), + [anon_sym_BSLASHGlstext] = ACTIONS(4648), + [anon_sym_BSLASHGLStext] = ACTIONS(4648), + [anon_sym_BSLASHglsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4648), + [anon_sym_BSLASHglsplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSplural] = ACTIONS(4648), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHglsname] = ACTIONS(4648), + [anon_sym_BSLASHGlsname] = ACTIONS(4648), + [anon_sym_BSLASHGLSname] = ACTIONS(4648), + [anon_sym_BSLASHglssymbol] = ACTIONS(4648), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4648), + [anon_sym_BSLASHglsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4648), + [anon_sym_BSLASHglsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4648), + [anon_sym_BSLASHglsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4648), + [anon_sym_BSLASHglsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4648), + [anon_sym_BSLASHglsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4648), + [anon_sym_BSLASHnewacronym] = ACTIONS(4648), + [anon_sym_BSLASHacrshort] = ACTIONS(4648), + [anon_sym_BSLASHAcrshort] = ACTIONS(4648), + [anon_sym_BSLASHACRshort] = ACTIONS(4648), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4648), + [anon_sym_BSLASHacrlong] = ACTIONS(4648), + [anon_sym_BSLASHAcrlong] = ACTIONS(4648), + [anon_sym_BSLASHACRlong] = ACTIONS(4648), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4648), + [anon_sym_BSLASHacrfull] = ACTIONS(4648), + [anon_sym_BSLASHAcrfull] = ACTIONS(4648), + [anon_sym_BSLASHACRfull] = ACTIONS(4648), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4648), + [anon_sym_BSLASHacs] = ACTIONS(4648), + [anon_sym_BSLASHAcs] = ACTIONS(4648), + [anon_sym_BSLASHacsp] = ACTIONS(4648), + [anon_sym_BSLASHAcsp] = ACTIONS(4648), + [anon_sym_BSLASHacl] = ACTIONS(4648), + [anon_sym_BSLASHAcl] = ACTIONS(4648), + [anon_sym_BSLASHaclp] = ACTIONS(4648), + [anon_sym_BSLASHAclp] = ACTIONS(4648), + [anon_sym_BSLASHacf] = ACTIONS(4648), + [anon_sym_BSLASHAcf] = ACTIONS(4648), + [anon_sym_BSLASHacfp] = ACTIONS(4648), + [anon_sym_BSLASHAcfp] = ACTIONS(4648), + [anon_sym_BSLASHac] = ACTIONS(4648), + [anon_sym_BSLASHAc] = ACTIONS(4648), + [anon_sym_BSLASHacp] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4648), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4648), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4648), + [anon_sym_BSLASHcolor] = ACTIONS(4648), + [anon_sym_BSLASHcolorbox] = ACTIONS(4648), + [anon_sym_BSLASHtextcolor] = ACTIONS(4648), + [anon_sym_BSLASHpagecolor] = ACTIONS(4648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4648), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4648), + [anon_sym_BSLASHtext] = ACTIONS(4648), + [anon_sym_BSLASHintertext] = ACTIONS(4648), + [anon_sym_shortintertext] = ACTIONS(4648), }, [406] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [407] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [408] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [409] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [410] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [411] = { [sym_curly_group] = STATE(898), [sym_mixed_group] = STATE(898), [aux_sym_generic_command_repeat1] = STATE(629), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_BSLASHpart] = ACTIONS(4451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddpart] = ACTIONS(4451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHchapter] = ACTIONS(4451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddchap] = ACTIONS(4451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsection] = ACTIONS(4451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddsec] = ACTIONS(4451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHparagraph] = ACTIONS(4451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHitem] = ACTIONS(4451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4449), - [anon_sym_BSLASHbegin] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4656), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_BSLASHpart] = ACTIONS(4530), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddpart] = ACTIONS(4530), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHchapter] = ACTIONS(4530), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddchap] = ACTIONS(4530), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsection] = ACTIONS(4530), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddsec] = ACTIONS(4530), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHparagraph] = ACTIONS(4530), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4530), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHitem] = ACTIONS(4530), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4528), + [anon_sym_BSLASHbegin] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [412] = { [sym__chapter_declaration] = STATE(135), [sym_chapter] = STATE(630), [aux_sym__section_repeat2] = STATE(630), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [413] = { [sym__section_declaration] = STATE(144), [sym_section] = STATE(631), [aux_sym__section_repeat3] = STATE(631), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [414] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [415] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [416] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [417] = { [sym_curly_group] = STATE(952), [sym_mixed_group] = STATE(952), [aux_sym_generic_command_repeat1] = STATE(417), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4633), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_BSLASHpart] = ACTIONS(4461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddpart] = ACTIONS(4461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHchapter] = ACTIONS(4461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddchap] = ACTIONS(4461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsection] = ACTIONS(4461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddsec] = ACTIONS(4461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHparagraph] = ACTIONS(4461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHitem] = ACTIONS(4461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(4636), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASHbegin] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_BSLASHpart] = ACTIONS(4540), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddpart] = ACTIONS(4540), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHchapter] = ACTIONS(4540), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddchap] = ACTIONS(4540), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsection] = ACTIONS(4540), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddsec] = ACTIONS(4540), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHparagraph] = ACTIONS(4540), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4540), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHitem] = ACTIONS(4540), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4715), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASHbegin] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [418] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHend] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHend] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [419] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHend] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHend] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [420] = { [sym_curly_group] = STATE(1162), [sym_mixed_group] = STATE(1162), [aux_sym_generic_command_repeat1] = STATE(455), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_BSLASHpart] = ACTIONS(4565), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddpart] = ACTIONS(4565), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHchapter] = ACTIONS(4565), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddchap] = ACTIONS(4565), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsection] = ACTIONS(4565), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddsec] = ACTIONS(4565), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHparagraph] = ACTIONS(4565), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHitem] = ACTIONS(4565), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASHbegin] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_BSLASHpart] = ACTIONS(4644), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddpart] = ACTIONS(4644), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHchapter] = ACTIONS(4644), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddchap] = ACTIONS(4644), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsection] = ACTIONS(4644), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddsec] = ACTIONS(4644), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHparagraph] = ACTIONS(4644), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4644), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHitem] = ACTIONS(4644), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASHbegin] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [421] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHend] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHend] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [422] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHend] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHend] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [423] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [424] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHend] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHend] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [425] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [426] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHend] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHend] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [427] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHend] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4566), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHend] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [428] = { [sym__section_declaration] = STATE(144), [sym_section] = STATE(631), [aux_sym__section_repeat3] = STATE(631), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [429] = { [sym__part_declaration] = STATE(125), [sym_part] = STATE(514), [aux_sym__section_repeat1] = STATE(514), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHaddpart] = ACTIONS(315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddpart] = ACTIONS(319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(321), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [430] = { [sym__chapter_declaration] = STATE(137), [sym_chapter] = STATE(515), [aux_sym__section_repeat2] = STATE(515), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [431] = { [sym__section_declaration] = STATE(151), [sym_section] = STATE(516), [aux_sym__section_repeat3] = STATE(516), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [432] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [433] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [434] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [435] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [436] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [437] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_BSLASHpart] = ACTIONS(4491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddpart] = ACTIONS(4491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHchapter] = ACTIONS(4491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddchap] = ACTIONS(4491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsection] = ACTIONS(4491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddsec] = ACTIONS(4491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHparagraph] = ACTIONS(4491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4489), - [sym_word] = ACTIONS(4491), - [sym_placeholder] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_STAR] = ACTIONS(4491), - [anon_sym_SLASH] = ACTIONS(4491), - [anon_sym_CARET] = ACTIONS(4491), - [anon_sym__] = ACTIONS(4491), - [anon_sym_LT] = ACTIONS(4491), - [anon_sym_GT] = ACTIONS(4491), - [anon_sym_BANG] = ACTIONS(4491), - [anon_sym_PIPE] = ACTIONS(4491), - [anon_sym_COLON] = ACTIONS(4491), - [anon_sym_SQUOTE] = ACTIONS(4491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), - [anon_sym_BSLASHbegin] = ACTIONS(4491), - [anon_sym_BSLASHend] = ACTIONS(4491), - [anon_sym_BSLASHusepackage] = ACTIONS(4491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), - [anon_sym_BSLASHinclude] = ACTIONS(4491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), - [anon_sym_BSLASHinput] = ACTIONS(4491), - [anon_sym_BSLASHsubfile] = ACTIONS(4491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), - [anon_sym_BSLASHbibliography] = ACTIONS(4491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), - [anon_sym_BSLASHincludesvg] = ACTIONS(4491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), - [anon_sym_BSLASHimport] = ACTIONS(4491), - [anon_sym_BSLASHsubimport] = ACTIONS(4491), - [anon_sym_BSLASHinputfrom] = ACTIONS(4491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), - [anon_sym_BSLASHincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHcaption] = ACTIONS(4491), - [anon_sym_BSLASHcite] = ACTIONS(4491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCite] = ACTIONS(4491), - [anon_sym_BSLASHnocite] = ACTIONS(4491), - [anon_sym_BSLASHcitet] = ACTIONS(4491), - [anon_sym_BSLASHcitep] = ACTIONS(4491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteyear] = ACTIONS(4491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitedate] = ACTIONS(4491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteurl] = ACTIONS(4491), - [anon_sym_BSLASHfullcite] = ACTIONS(4491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), - [anon_sym_BSLASHcitealt] = ACTIONS(4491), - [anon_sym_BSLASHcitealp] = ACTIONS(4491), - [anon_sym_BSLASHcitetext] = ACTIONS(4491), - [anon_sym_BSLASHparencite] = ACTIONS(4491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHParencite] = ACTIONS(4491), - [anon_sym_BSLASHfootcite] = ACTIONS(4491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), - [anon_sym_BSLASHtextcite] = ACTIONS(4491), - [anon_sym_BSLASHTextcite] = ACTIONS(4491), - [anon_sym_BSLASHsmartcite] = ACTIONS(4491), - [anon_sym_BSLASHSmartcite] = ACTIONS(4491), - [anon_sym_BSLASHsupercite] = ACTIONS(4491), - [anon_sym_BSLASHautocite] = ACTIONS(4491), - [anon_sym_BSLASHAutocite] = ACTIONS(4491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHvolcite] = ACTIONS(4491), - [anon_sym_BSLASHVolcite] = ACTIONS(4491), - [anon_sym_BSLASHpvolcite] = ACTIONS(4491), - [anon_sym_BSLASHPvolcite] = ACTIONS(4491), - [anon_sym_BSLASHfvolcite] = ACTIONS(4491), - [anon_sym_BSLASHftvolcite] = ACTIONS(4491), - [anon_sym_BSLASHsvolcite] = ACTIONS(4491), - [anon_sym_BSLASHSvolcite] = ACTIONS(4491), - [anon_sym_BSLASHtvolcite] = ACTIONS(4491), - [anon_sym_BSLASHTvolcite] = ACTIONS(4491), - [anon_sym_BSLASHavolcite] = ACTIONS(4491), - [anon_sym_BSLASHAvolcite] = ACTIONS(4491), - [anon_sym_BSLASHnotecite] = ACTIONS(4491), - [anon_sym_BSLASHNotecite] = ACTIONS(4491), - [anon_sym_BSLASHpnotecite] = ACTIONS(4491), - [anon_sym_BSLASHPnotecite] = ACTIONS(4491), - [anon_sym_BSLASHfnotecite] = ACTIONS(4491), - [anon_sym_BSLASHlabel] = ACTIONS(4491), - [anon_sym_BSLASHref] = ACTIONS(4491), - [anon_sym_BSLASHeqref] = ACTIONS(4491), - [anon_sym_BSLASHvref] = ACTIONS(4491), - [anon_sym_BSLASHVref] = ACTIONS(4491), - [anon_sym_BSLASHautoref] = ACTIONS(4491), - [anon_sym_BSLASHpageref] = ACTIONS(4491), - [anon_sym_BSLASHcref] = ACTIONS(4491), - [anon_sym_BSLASHCref] = ACTIONS(4491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnameCref] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHlabelcref] = ACTIONS(4491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnewlabel] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), - [anon_sym_BSLASHdef] = ACTIONS(4491), - [anon_sym_BSLASHlet] = ACTIONS(4491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), - [anon_sym_BSLASHgls] = ACTIONS(4491), - [anon_sym_BSLASHGls] = ACTIONS(4491), - [anon_sym_BSLASHGLS] = ACTIONS(4491), - [anon_sym_BSLASHglspl] = ACTIONS(4491), - [anon_sym_BSLASHGlspl] = ACTIONS(4491), - [anon_sym_BSLASHGLSpl] = ACTIONS(4491), - [anon_sym_BSLASHglsdisp] = ACTIONS(4491), - [anon_sym_BSLASHglslink] = ACTIONS(4491), - [anon_sym_BSLASHglstext] = ACTIONS(4491), - [anon_sym_BSLASHGlstext] = ACTIONS(4491), - [anon_sym_BSLASHGLStext] = ACTIONS(4491), - [anon_sym_BSLASHglsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), - [anon_sym_BSLASHglsplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSplural] = ACTIONS(4491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHglsname] = ACTIONS(4491), - [anon_sym_BSLASHGlsname] = ACTIONS(4491), - [anon_sym_BSLASHGLSname] = ACTIONS(4491), - [anon_sym_BSLASHglssymbol] = ACTIONS(4491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), - [anon_sym_BSLASHglsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), - [anon_sym_BSLASHglsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), - [anon_sym_BSLASHglsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), - [anon_sym_BSLASHglsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), - [anon_sym_BSLASHglsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), - [anon_sym_BSLASHnewacronym] = ACTIONS(4491), - [anon_sym_BSLASHacrshort] = ACTIONS(4491), - [anon_sym_BSLASHAcrshort] = ACTIONS(4491), - [anon_sym_BSLASHACRshort] = ACTIONS(4491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), - [anon_sym_BSLASHacrlong] = ACTIONS(4491), - [anon_sym_BSLASHAcrlong] = ACTIONS(4491), - [anon_sym_BSLASHACRlong] = ACTIONS(4491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), - [anon_sym_BSLASHacrfull] = ACTIONS(4491), - [anon_sym_BSLASHAcrfull] = ACTIONS(4491), - [anon_sym_BSLASHACRfull] = ACTIONS(4491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), - [anon_sym_BSLASHacs] = ACTIONS(4491), - [anon_sym_BSLASHAcs] = ACTIONS(4491), - [anon_sym_BSLASHacsp] = ACTIONS(4491), - [anon_sym_BSLASHAcsp] = ACTIONS(4491), - [anon_sym_BSLASHacl] = ACTIONS(4491), - [anon_sym_BSLASHAcl] = ACTIONS(4491), - [anon_sym_BSLASHaclp] = ACTIONS(4491), - [anon_sym_BSLASHAclp] = ACTIONS(4491), - [anon_sym_BSLASHacf] = ACTIONS(4491), - [anon_sym_BSLASHAcf] = ACTIONS(4491), - [anon_sym_BSLASHacfp] = ACTIONS(4491), - [anon_sym_BSLASHAcfp] = ACTIONS(4491), - [anon_sym_BSLASHac] = ACTIONS(4491), - [anon_sym_BSLASHAc] = ACTIONS(4491), - [anon_sym_BSLASHacp] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), - [anon_sym_BSLASHcolor] = ACTIONS(4491), - [anon_sym_BSLASHcolorbox] = ACTIONS(4491), - [anon_sym_BSLASHtextcolor] = ACTIONS(4491), - [anon_sym_BSLASHpagecolor] = ACTIONS(4491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), - [anon_sym_BSLASHtext] = ACTIONS(4491), - [anon_sym_BSLASHintertext] = ACTIONS(4491), - [anon_sym_shortintertext] = ACTIONS(4491), + [sym_command_name] = ACTIONS(4570), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_BSLASHpart] = ACTIONS(4570), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddpart] = ACTIONS(4570), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHchapter] = ACTIONS(4570), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddchap] = ACTIONS(4570), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsection] = ACTIONS(4570), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddsec] = ACTIONS(4570), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHparagraph] = ACTIONS(4570), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4570), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4568), + [sym_word] = ACTIONS(4570), + [sym_placeholder] = ACTIONS(4568), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym__] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_SQUOTE] = ACTIONS(4570), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4568), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4568), + [anon_sym_BSLASHbegin] = ACTIONS(4570), + [anon_sym_BSLASHend] = ACTIONS(4570), + [anon_sym_BSLASHusepackage] = ACTIONS(4570), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4570), + [anon_sym_BSLASHinclude] = ACTIONS(4570), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4570), + [anon_sym_BSLASHinput] = ACTIONS(4570), + [anon_sym_BSLASHsubfile] = ACTIONS(4570), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4570), + [anon_sym_BSLASHbibliography] = ACTIONS(4570), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4570), + [anon_sym_BSLASHincludesvg] = ACTIONS(4570), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4570), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4570), + [anon_sym_BSLASHimport] = ACTIONS(4570), + [anon_sym_BSLASHsubimport] = ACTIONS(4570), + [anon_sym_BSLASHinputfrom] = ACTIONS(4570), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4570), + [anon_sym_BSLASHincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHcaption] = ACTIONS(4570), + [anon_sym_BSLASHcite] = ACTIONS(4570), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCite] = ACTIONS(4570), + [anon_sym_BSLASHnocite] = ACTIONS(4570), + [anon_sym_BSLASHcitet] = ACTIONS(4570), + [anon_sym_BSLASHcitep] = ACTIONS(4570), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteauthor] = ACTIONS(4570), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4570), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitetitle] = ACTIONS(4570), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteyear] = ACTIONS(4570), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitedate] = ACTIONS(4570), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteurl] = ACTIONS(4570), + [anon_sym_BSLASHfullcite] = ACTIONS(4570), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4570), + [anon_sym_BSLASHcitealt] = ACTIONS(4570), + [anon_sym_BSLASHcitealp] = ACTIONS(4570), + [anon_sym_BSLASHcitetext] = ACTIONS(4570), + [anon_sym_BSLASHparencite] = ACTIONS(4570), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHParencite] = ACTIONS(4570), + [anon_sym_BSLASHfootcite] = ACTIONS(4570), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4570), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4570), + [anon_sym_BSLASHtextcite] = ACTIONS(4570), + [anon_sym_BSLASHTextcite] = ACTIONS(4570), + [anon_sym_BSLASHsmartcite] = ACTIONS(4570), + [anon_sym_BSLASHSmartcite] = ACTIONS(4570), + [anon_sym_BSLASHsupercite] = ACTIONS(4570), + [anon_sym_BSLASHautocite] = ACTIONS(4570), + [anon_sym_BSLASHAutocite] = ACTIONS(4570), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHvolcite] = ACTIONS(4570), + [anon_sym_BSLASHVolcite] = ACTIONS(4570), + [anon_sym_BSLASHpvolcite] = ACTIONS(4570), + [anon_sym_BSLASHPvolcite] = ACTIONS(4570), + [anon_sym_BSLASHfvolcite] = ACTIONS(4570), + [anon_sym_BSLASHftvolcite] = ACTIONS(4570), + [anon_sym_BSLASHsvolcite] = ACTIONS(4570), + [anon_sym_BSLASHSvolcite] = ACTIONS(4570), + [anon_sym_BSLASHtvolcite] = ACTIONS(4570), + [anon_sym_BSLASHTvolcite] = ACTIONS(4570), + [anon_sym_BSLASHavolcite] = ACTIONS(4570), + [anon_sym_BSLASHAvolcite] = ACTIONS(4570), + [anon_sym_BSLASHnotecite] = ACTIONS(4570), + [anon_sym_BSLASHNotecite] = ACTIONS(4570), + [anon_sym_BSLASHpnotecite] = ACTIONS(4570), + [anon_sym_BSLASHPnotecite] = ACTIONS(4570), + [anon_sym_BSLASHfnotecite] = ACTIONS(4570), + [anon_sym_BSLASHlabel] = ACTIONS(4570), + [anon_sym_BSLASHref] = ACTIONS(4570), + [anon_sym_BSLASHeqref] = ACTIONS(4570), + [anon_sym_BSLASHvref] = ACTIONS(4570), + [anon_sym_BSLASHVref] = ACTIONS(4570), + [anon_sym_BSLASHautoref] = ACTIONS(4570), + [anon_sym_BSLASHpageref] = ACTIONS(4570), + [anon_sym_BSLASHcref] = ACTIONS(4570), + [anon_sym_BSLASHCref] = ACTIONS(4570), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnameCref] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHlabelcref] = ACTIONS(4570), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCrefrange] = ACTIONS(4570), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnewlabel] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4570), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4570), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdef] = ACTIONS(4570), + [anon_sym_BSLASHlet] = ACTIONS(4570), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4570), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4570), + [anon_sym_BSLASHgls] = ACTIONS(4570), + [anon_sym_BSLASHGls] = ACTIONS(4570), + [anon_sym_BSLASHGLS] = ACTIONS(4570), + [anon_sym_BSLASHglspl] = ACTIONS(4570), + [anon_sym_BSLASHGlspl] = ACTIONS(4570), + [anon_sym_BSLASHGLSpl] = ACTIONS(4570), + [anon_sym_BSLASHglsdisp] = ACTIONS(4570), + [anon_sym_BSLASHglslink] = ACTIONS(4570), + [anon_sym_BSLASHglstext] = ACTIONS(4570), + [anon_sym_BSLASHGlstext] = ACTIONS(4570), + [anon_sym_BSLASHGLStext] = ACTIONS(4570), + [anon_sym_BSLASHglsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4570), + [anon_sym_BSLASHglsplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSplural] = ACTIONS(4570), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHglsname] = ACTIONS(4570), + [anon_sym_BSLASHGlsname] = ACTIONS(4570), + [anon_sym_BSLASHGLSname] = ACTIONS(4570), + [anon_sym_BSLASHglssymbol] = ACTIONS(4570), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4570), + [anon_sym_BSLASHglsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4570), + [anon_sym_BSLASHglsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4570), + [anon_sym_BSLASHglsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4570), + [anon_sym_BSLASHglsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4570), + [anon_sym_BSLASHglsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4570), + [anon_sym_BSLASHnewacronym] = ACTIONS(4570), + [anon_sym_BSLASHacrshort] = ACTIONS(4570), + [anon_sym_BSLASHAcrshort] = ACTIONS(4570), + [anon_sym_BSLASHACRshort] = ACTIONS(4570), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4570), + [anon_sym_BSLASHacrlong] = ACTIONS(4570), + [anon_sym_BSLASHAcrlong] = ACTIONS(4570), + [anon_sym_BSLASHACRlong] = ACTIONS(4570), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4570), + [anon_sym_BSLASHacrfull] = ACTIONS(4570), + [anon_sym_BSLASHAcrfull] = ACTIONS(4570), + [anon_sym_BSLASHACRfull] = ACTIONS(4570), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4570), + [anon_sym_BSLASHacs] = ACTIONS(4570), + [anon_sym_BSLASHAcs] = ACTIONS(4570), + [anon_sym_BSLASHacsp] = ACTIONS(4570), + [anon_sym_BSLASHAcsp] = ACTIONS(4570), + [anon_sym_BSLASHacl] = ACTIONS(4570), + [anon_sym_BSLASHAcl] = ACTIONS(4570), + [anon_sym_BSLASHaclp] = ACTIONS(4570), + [anon_sym_BSLASHAclp] = ACTIONS(4570), + [anon_sym_BSLASHacf] = ACTIONS(4570), + [anon_sym_BSLASHAcf] = ACTIONS(4570), + [anon_sym_BSLASHacfp] = ACTIONS(4570), + [anon_sym_BSLASHAcfp] = ACTIONS(4570), + [anon_sym_BSLASHac] = ACTIONS(4570), + [anon_sym_BSLASHAc] = ACTIONS(4570), + [anon_sym_BSLASHacp] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4570), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4570), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4570), + [anon_sym_BSLASHcolor] = ACTIONS(4570), + [anon_sym_BSLASHcolorbox] = ACTIONS(4570), + [anon_sym_BSLASHtextcolor] = ACTIONS(4570), + [anon_sym_BSLASHpagecolor] = ACTIONS(4570), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4570), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4570), + [anon_sym_BSLASHtext] = ACTIONS(4570), + [anon_sym_BSLASHintertext] = ACTIONS(4570), + [anon_sym_shortintertext] = ACTIONS(4570), }, [438] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [439] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [440] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1965), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1965), - [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(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1963), - [sym_word] = ACTIONS(1965), - [sym_placeholder] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym__] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), - [anon_sym_BSLASHbegin] = ACTIONS(1965), - [anon_sym_BSLASHend] = ACTIONS(1965), - [anon_sym_BSLASHusepackage] = ACTIONS(1965), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), - [anon_sym_BSLASHinclude] = ACTIONS(1965), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), - [anon_sym_BSLASHinput] = ACTIONS(1965), - [anon_sym_BSLASHsubfile] = ACTIONS(1965), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), - [anon_sym_BSLASHbibliography] = ACTIONS(1965), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), - [anon_sym_BSLASHincludesvg] = ACTIONS(1965), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), - [anon_sym_BSLASHimport] = ACTIONS(1965), - [anon_sym_BSLASHsubimport] = ACTIONS(1965), - [anon_sym_BSLASHinputfrom] = ACTIONS(1965), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), - [anon_sym_BSLASHincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHcaption] = ACTIONS(1965), - [anon_sym_BSLASHcite] = ACTIONS(1965), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCite] = ACTIONS(1965), - [anon_sym_BSLASHnocite] = ACTIONS(1965), - [anon_sym_BSLASHcitet] = ACTIONS(1965), - [anon_sym_BSLASHcitep] = ACTIONS(1965), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteauthor] = ACTIONS(1965), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitetitle] = ACTIONS(1965), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteyear] = ACTIONS(1965), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitedate] = ACTIONS(1965), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteurl] = ACTIONS(1965), - [anon_sym_BSLASHfullcite] = ACTIONS(1965), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), - [anon_sym_BSLASHcitealt] = ACTIONS(1965), - [anon_sym_BSLASHcitealp] = ACTIONS(1965), - [anon_sym_BSLASHcitetext] = ACTIONS(1965), - [anon_sym_BSLASHparencite] = ACTIONS(1965), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHParencite] = ACTIONS(1965), - [anon_sym_BSLASHfootcite] = ACTIONS(1965), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), - [anon_sym_BSLASHtextcite] = ACTIONS(1965), - [anon_sym_BSLASHTextcite] = ACTIONS(1965), - [anon_sym_BSLASHsmartcite] = ACTIONS(1965), - [anon_sym_BSLASHSmartcite] = ACTIONS(1965), - [anon_sym_BSLASHsupercite] = ACTIONS(1965), - [anon_sym_BSLASHautocite] = ACTIONS(1965), - [anon_sym_BSLASHAutocite] = ACTIONS(1965), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHvolcite] = ACTIONS(1965), - [anon_sym_BSLASHVolcite] = ACTIONS(1965), - [anon_sym_BSLASHpvolcite] = ACTIONS(1965), - [anon_sym_BSLASHPvolcite] = ACTIONS(1965), - [anon_sym_BSLASHfvolcite] = ACTIONS(1965), - [anon_sym_BSLASHftvolcite] = ACTIONS(1965), - [anon_sym_BSLASHsvolcite] = ACTIONS(1965), - [anon_sym_BSLASHSvolcite] = ACTIONS(1965), - [anon_sym_BSLASHtvolcite] = ACTIONS(1965), - [anon_sym_BSLASHTvolcite] = ACTIONS(1965), - [anon_sym_BSLASHavolcite] = ACTIONS(1965), - [anon_sym_BSLASHAvolcite] = ACTIONS(1965), - [anon_sym_BSLASHnotecite] = ACTIONS(1965), - [anon_sym_BSLASHNotecite] = ACTIONS(1965), - [anon_sym_BSLASHpnotecite] = ACTIONS(1965), - [anon_sym_BSLASHPnotecite] = ACTIONS(1965), - [anon_sym_BSLASHfnotecite] = ACTIONS(1965), - [anon_sym_BSLASHlabel] = ACTIONS(1965), - [anon_sym_BSLASHref] = ACTIONS(1965), - [anon_sym_BSLASHeqref] = ACTIONS(1965), - [anon_sym_BSLASHvref] = ACTIONS(1965), - [anon_sym_BSLASHVref] = ACTIONS(1965), - [anon_sym_BSLASHautoref] = ACTIONS(1965), - [anon_sym_BSLASHpageref] = ACTIONS(1965), - [anon_sym_BSLASHcref] = ACTIONS(1965), - [anon_sym_BSLASHCref] = ACTIONS(1965), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnameCref] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHlabelcref] = ACTIONS(1965), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCrefrange] = ACTIONS(1965), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnewlabel] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), - [anon_sym_BSLASHdef] = ACTIONS(1965), - [anon_sym_BSLASHlet] = ACTIONS(1965), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), - [anon_sym_BSLASHgls] = ACTIONS(1965), - [anon_sym_BSLASHGls] = ACTIONS(1965), - [anon_sym_BSLASHGLS] = ACTIONS(1965), - [anon_sym_BSLASHglspl] = ACTIONS(1965), - [anon_sym_BSLASHGlspl] = ACTIONS(1965), - [anon_sym_BSLASHGLSpl] = ACTIONS(1965), - [anon_sym_BSLASHglsdisp] = ACTIONS(1965), - [anon_sym_BSLASHglslink] = ACTIONS(1965), - [anon_sym_BSLASHglstext] = ACTIONS(1965), - [anon_sym_BSLASHGlstext] = ACTIONS(1965), - [anon_sym_BSLASHGLStext] = ACTIONS(1965), - [anon_sym_BSLASHglsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), - [anon_sym_BSLASHglsplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSplural] = ACTIONS(1965), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHglsname] = ACTIONS(1965), - [anon_sym_BSLASHGlsname] = ACTIONS(1965), - [anon_sym_BSLASHGLSname] = ACTIONS(1965), - [anon_sym_BSLASHglssymbol] = ACTIONS(1965), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), - [anon_sym_BSLASHglsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), - [anon_sym_BSLASHglsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), - [anon_sym_BSLASHglsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), - [anon_sym_BSLASHglsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), - [anon_sym_BSLASHglsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), - [anon_sym_BSLASHnewacronym] = ACTIONS(1965), - [anon_sym_BSLASHacrshort] = ACTIONS(1965), - [anon_sym_BSLASHAcrshort] = ACTIONS(1965), - [anon_sym_BSLASHACRshort] = ACTIONS(1965), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), - [anon_sym_BSLASHacrlong] = ACTIONS(1965), - [anon_sym_BSLASHAcrlong] = ACTIONS(1965), - [anon_sym_BSLASHACRlong] = ACTIONS(1965), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), - [anon_sym_BSLASHacrfull] = ACTIONS(1965), - [anon_sym_BSLASHAcrfull] = ACTIONS(1965), - [anon_sym_BSLASHACRfull] = ACTIONS(1965), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), - [anon_sym_BSLASHacs] = ACTIONS(1965), - [anon_sym_BSLASHAcs] = ACTIONS(1965), - [anon_sym_BSLASHacsp] = ACTIONS(1965), - [anon_sym_BSLASHAcsp] = ACTIONS(1965), - [anon_sym_BSLASHacl] = ACTIONS(1965), - [anon_sym_BSLASHAcl] = ACTIONS(1965), - [anon_sym_BSLASHaclp] = ACTIONS(1965), - [anon_sym_BSLASHAclp] = ACTIONS(1965), - [anon_sym_BSLASHacf] = ACTIONS(1965), - [anon_sym_BSLASHAcf] = ACTIONS(1965), - [anon_sym_BSLASHacfp] = ACTIONS(1965), - [anon_sym_BSLASHAcfp] = ACTIONS(1965), - [anon_sym_BSLASHac] = ACTIONS(1965), - [anon_sym_BSLASHAc] = ACTIONS(1965), - [anon_sym_BSLASHacp] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), - [anon_sym_BSLASHcolor] = ACTIONS(1965), - [anon_sym_BSLASHcolorbox] = ACTIONS(1965), - [anon_sym_BSLASHtextcolor] = ACTIONS(1965), - [anon_sym_BSLASHpagecolor] = ACTIONS(1965), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), - [anon_sym_BSLASHtext] = ACTIONS(1965), - [anon_sym_BSLASHintertext] = ACTIONS(1965), - [anon_sym_shortintertext] = ACTIONS(1965), + [sym_command_name] = ACTIONS(1990), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1988), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1988), + [sym_word] = ACTIONS(1990), + [sym_placeholder] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym__] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1988), + [anon_sym_BSLASHbegin] = ACTIONS(1990), + [anon_sym_BSLASHend] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(1990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1990), + [anon_sym_BSLASHinclude] = ACTIONS(1990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1990), + [anon_sym_BSLASHinput] = ACTIONS(1990), + [anon_sym_BSLASHsubfile] = ACTIONS(1990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1990), + [anon_sym_BSLASHbibliography] = ACTIONS(1990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1990), + [anon_sym_BSLASHincludesvg] = ACTIONS(1990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1990), + [anon_sym_BSLASHimport] = ACTIONS(1990), + [anon_sym_BSLASHsubimport] = ACTIONS(1990), + [anon_sym_BSLASHinputfrom] = ACTIONS(1990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1990), + [anon_sym_BSLASHincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHcaption] = ACTIONS(1990), + [anon_sym_BSLASHcite] = ACTIONS(1990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCite] = ACTIONS(1990), + [anon_sym_BSLASHnocite] = ACTIONS(1990), + [anon_sym_BSLASHcitet] = ACTIONS(1990), + [anon_sym_BSLASHcitep] = ACTIONS(1990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteauthor] = ACTIONS(1990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitetitle] = ACTIONS(1990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteyear] = ACTIONS(1990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitedate] = ACTIONS(1990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteurl] = ACTIONS(1990), + [anon_sym_BSLASHfullcite] = ACTIONS(1990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1990), + [anon_sym_BSLASHcitealt] = ACTIONS(1990), + [anon_sym_BSLASHcitealp] = ACTIONS(1990), + [anon_sym_BSLASHcitetext] = ACTIONS(1990), + [anon_sym_BSLASHparencite] = ACTIONS(1990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHParencite] = ACTIONS(1990), + [anon_sym_BSLASHfootcite] = ACTIONS(1990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1990), + [anon_sym_BSLASHtextcite] = ACTIONS(1990), + [anon_sym_BSLASHTextcite] = ACTIONS(1990), + [anon_sym_BSLASHsmartcite] = ACTIONS(1990), + [anon_sym_BSLASHSmartcite] = ACTIONS(1990), + [anon_sym_BSLASHsupercite] = ACTIONS(1990), + [anon_sym_BSLASHautocite] = ACTIONS(1990), + [anon_sym_BSLASHAutocite] = ACTIONS(1990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHvolcite] = ACTIONS(1990), + [anon_sym_BSLASHVolcite] = ACTIONS(1990), + [anon_sym_BSLASHpvolcite] = ACTIONS(1990), + [anon_sym_BSLASHPvolcite] = ACTIONS(1990), + [anon_sym_BSLASHfvolcite] = ACTIONS(1990), + [anon_sym_BSLASHftvolcite] = ACTIONS(1990), + [anon_sym_BSLASHsvolcite] = ACTIONS(1990), + [anon_sym_BSLASHSvolcite] = ACTIONS(1990), + [anon_sym_BSLASHtvolcite] = ACTIONS(1990), + [anon_sym_BSLASHTvolcite] = ACTIONS(1990), + [anon_sym_BSLASHavolcite] = ACTIONS(1990), + [anon_sym_BSLASHAvolcite] = ACTIONS(1990), + [anon_sym_BSLASHnotecite] = ACTIONS(1990), + [anon_sym_BSLASHNotecite] = ACTIONS(1990), + [anon_sym_BSLASHpnotecite] = ACTIONS(1990), + [anon_sym_BSLASHPnotecite] = ACTIONS(1990), + [anon_sym_BSLASHfnotecite] = ACTIONS(1990), + [anon_sym_BSLASHlabel] = ACTIONS(1990), + [anon_sym_BSLASHref] = ACTIONS(1990), + [anon_sym_BSLASHeqref] = ACTIONS(1990), + [anon_sym_BSLASHvref] = ACTIONS(1990), + [anon_sym_BSLASHVref] = ACTIONS(1990), + [anon_sym_BSLASHautoref] = ACTIONS(1990), + [anon_sym_BSLASHpageref] = ACTIONS(1990), + [anon_sym_BSLASHcref] = ACTIONS(1990), + [anon_sym_BSLASHCref] = ACTIONS(1990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnameCref] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHlabelcref] = ACTIONS(1990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCrefrange] = ACTIONS(1990), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnewlabel] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1990), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1990), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdef] = ACTIONS(1990), + [anon_sym_BSLASHlet] = ACTIONS(1990), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1990), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1990), + [anon_sym_BSLASHgls] = ACTIONS(1990), + [anon_sym_BSLASHGls] = ACTIONS(1990), + [anon_sym_BSLASHGLS] = ACTIONS(1990), + [anon_sym_BSLASHglspl] = ACTIONS(1990), + [anon_sym_BSLASHGlspl] = ACTIONS(1990), + [anon_sym_BSLASHGLSpl] = ACTIONS(1990), + [anon_sym_BSLASHglsdisp] = ACTIONS(1990), + [anon_sym_BSLASHglslink] = ACTIONS(1990), + [anon_sym_BSLASHglstext] = ACTIONS(1990), + [anon_sym_BSLASHGlstext] = ACTIONS(1990), + [anon_sym_BSLASHGLStext] = ACTIONS(1990), + [anon_sym_BSLASHglsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1990), + [anon_sym_BSLASHglsplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSplural] = ACTIONS(1990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHglsname] = ACTIONS(1990), + [anon_sym_BSLASHGlsname] = ACTIONS(1990), + [anon_sym_BSLASHGLSname] = ACTIONS(1990), + [anon_sym_BSLASHglssymbol] = ACTIONS(1990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1990), + [anon_sym_BSLASHglsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1990), + [anon_sym_BSLASHglsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1990), + [anon_sym_BSLASHglsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1990), + [anon_sym_BSLASHglsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1990), + [anon_sym_BSLASHglsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1990), + [anon_sym_BSLASHnewacronym] = ACTIONS(1990), + [anon_sym_BSLASHacrshort] = ACTIONS(1990), + [anon_sym_BSLASHAcrshort] = ACTIONS(1990), + [anon_sym_BSLASHACRshort] = ACTIONS(1990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1990), + [anon_sym_BSLASHacrlong] = ACTIONS(1990), + [anon_sym_BSLASHAcrlong] = ACTIONS(1990), + [anon_sym_BSLASHACRlong] = ACTIONS(1990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1990), + [anon_sym_BSLASHacrfull] = ACTIONS(1990), + [anon_sym_BSLASHAcrfull] = ACTIONS(1990), + [anon_sym_BSLASHACRfull] = ACTIONS(1990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1990), + [anon_sym_BSLASHacs] = ACTIONS(1990), + [anon_sym_BSLASHAcs] = ACTIONS(1990), + [anon_sym_BSLASHacsp] = ACTIONS(1990), + [anon_sym_BSLASHAcsp] = ACTIONS(1990), + [anon_sym_BSLASHacl] = ACTIONS(1990), + [anon_sym_BSLASHAcl] = ACTIONS(1990), + [anon_sym_BSLASHaclp] = ACTIONS(1990), + [anon_sym_BSLASHAclp] = ACTIONS(1990), + [anon_sym_BSLASHacf] = ACTIONS(1990), + [anon_sym_BSLASHAcf] = ACTIONS(1990), + [anon_sym_BSLASHacfp] = ACTIONS(1990), + [anon_sym_BSLASHAcfp] = ACTIONS(1990), + [anon_sym_BSLASHac] = ACTIONS(1990), + [anon_sym_BSLASHAc] = ACTIONS(1990), + [anon_sym_BSLASHacp] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1990), + [anon_sym_BSLASHcolor] = ACTIONS(1990), + [anon_sym_BSLASHcolorbox] = ACTIONS(1990), + [anon_sym_BSLASHtextcolor] = ACTIONS(1990), + [anon_sym_BSLASHpagecolor] = ACTIONS(1990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1990), + [anon_sym_BSLASHtext] = ACTIONS(1990), + [anon_sym_BSLASHintertext] = ACTIONS(1990), + [anon_sym_shortintertext] = ACTIONS(1990), }, [441] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4495), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4493), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [anon_sym_RBRACK] = ACTIONS(4493), - [anon_sym_COMMA] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_BSLASHpart] = ACTIONS(4495), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddpart] = ACTIONS(4495), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHchapter] = ACTIONS(4495), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddchap] = ACTIONS(4495), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsection] = ACTIONS(4495), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddsec] = ACTIONS(4495), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHparagraph] = ACTIONS(4495), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHitem] = ACTIONS(4641), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(4493), - [sym_word] = ACTIONS(4495), - [sym_placeholder] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_CARET] = ACTIONS(4495), - [anon_sym__] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_PIPE] = ACTIONS(4495), - [anon_sym_COLON] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), - [anon_sym_BSLASHbegin] = ACTIONS(4495), - [anon_sym_BSLASHusepackage] = ACTIONS(4495), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), - [anon_sym_BSLASHinclude] = ACTIONS(4495), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), - [anon_sym_BSLASHinput] = ACTIONS(4495), - [anon_sym_BSLASHsubfile] = ACTIONS(4495), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), - [anon_sym_BSLASHbibliography] = ACTIONS(4495), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), - [anon_sym_BSLASHincludesvg] = ACTIONS(4495), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), - [anon_sym_BSLASHimport] = ACTIONS(4495), - [anon_sym_BSLASHsubimport] = ACTIONS(4495), - [anon_sym_BSLASHinputfrom] = ACTIONS(4495), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), - [anon_sym_BSLASHincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHcaption] = ACTIONS(4495), - [anon_sym_BSLASHcite] = ACTIONS(4495), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCite] = ACTIONS(4495), - [anon_sym_BSLASHnocite] = ACTIONS(4495), - [anon_sym_BSLASHcitet] = ACTIONS(4495), - [anon_sym_BSLASHcitep] = ACTIONS(4495), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor] = ACTIONS(4495), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle] = ACTIONS(4495), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteyear] = ACTIONS(4495), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitedate] = ACTIONS(4495), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteurl] = ACTIONS(4495), - [anon_sym_BSLASHfullcite] = ACTIONS(4495), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), - [anon_sym_BSLASHcitealt] = ACTIONS(4495), - [anon_sym_BSLASHcitealp] = ACTIONS(4495), - [anon_sym_BSLASHcitetext] = ACTIONS(4495), - [anon_sym_BSLASHparencite] = ACTIONS(4495), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHParencite] = ACTIONS(4495), - [anon_sym_BSLASHfootcite] = ACTIONS(4495), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), - [anon_sym_BSLASHtextcite] = ACTIONS(4495), - [anon_sym_BSLASHTextcite] = ACTIONS(4495), - [anon_sym_BSLASHsmartcite] = ACTIONS(4495), - [anon_sym_BSLASHSmartcite] = ACTIONS(4495), - [anon_sym_BSLASHsupercite] = ACTIONS(4495), - [anon_sym_BSLASHautocite] = ACTIONS(4495), - [anon_sym_BSLASHAutocite] = ACTIONS(4495), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHvolcite] = ACTIONS(4495), - [anon_sym_BSLASHVolcite] = ACTIONS(4495), - [anon_sym_BSLASHpvolcite] = ACTIONS(4495), - [anon_sym_BSLASHPvolcite] = ACTIONS(4495), - [anon_sym_BSLASHfvolcite] = ACTIONS(4495), - [anon_sym_BSLASHftvolcite] = ACTIONS(4495), - [anon_sym_BSLASHsvolcite] = ACTIONS(4495), - [anon_sym_BSLASHSvolcite] = ACTIONS(4495), - [anon_sym_BSLASHtvolcite] = ACTIONS(4495), - [anon_sym_BSLASHTvolcite] = ACTIONS(4495), - [anon_sym_BSLASHavolcite] = ACTIONS(4495), - [anon_sym_BSLASHAvolcite] = ACTIONS(4495), - [anon_sym_BSLASHnotecite] = ACTIONS(4495), - [anon_sym_BSLASHNotecite] = ACTIONS(4495), - [anon_sym_BSLASHpnotecite] = ACTIONS(4495), - [anon_sym_BSLASHPnotecite] = ACTIONS(4495), - [anon_sym_BSLASHfnotecite] = ACTIONS(4495), - [anon_sym_BSLASHlabel] = ACTIONS(4495), - [anon_sym_BSLASHref] = ACTIONS(4495), - [anon_sym_BSLASHeqref] = ACTIONS(4495), - [anon_sym_BSLASHvref] = ACTIONS(4495), - [anon_sym_BSLASHVref] = ACTIONS(4495), - [anon_sym_BSLASHautoref] = ACTIONS(4495), - [anon_sym_BSLASHpageref] = ACTIONS(4495), - [anon_sym_BSLASHcref] = ACTIONS(4495), - [anon_sym_BSLASHCref] = ACTIONS(4495), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnameCref] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHlabelcref] = ACTIONS(4495), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange] = ACTIONS(4495), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnewlabel] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), - [anon_sym_BSLASHdef] = ACTIONS(4495), - [anon_sym_BSLASHlet] = ACTIONS(4495), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), - [anon_sym_BSLASHgls] = ACTIONS(4495), - [anon_sym_BSLASHGls] = ACTIONS(4495), - [anon_sym_BSLASHGLS] = ACTIONS(4495), - [anon_sym_BSLASHglspl] = ACTIONS(4495), - [anon_sym_BSLASHGlspl] = ACTIONS(4495), - [anon_sym_BSLASHGLSpl] = ACTIONS(4495), - [anon_sym_BSLASHglsdisp] = ACTIONS(4495), - [anon_sym_BSLASHglslink] = ACTIONS(4495), - [anon_sym_BSLASHglstext] = ACTIONS(4495), - [anon_sym_BSLASHGlstext] = ACTIONS(4495), - [anon_sym_BSLASHGLStext] = ACTIONS(4495), - [anon_sym_BSLASHglsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), - [anon_sym_BSLASHglsplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSplural] = ACTIONS(4495), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHglsname] = ACTIONS(4495), - [anon_sym_BSLASHGlsname] = ACTIONS(4495), - [anon_sym_BSLASHGLSname] = ACTIONS(4495), - [anon_sym_BSLASHglssymbol] = ACTIONS(4495), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), - [anon_sym_BSLASHglsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), - [anon_sym_BSLASHglsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), - [anon_sym_BSLASHglsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), - [anon_sym_BSLASHglsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), - [anon_sym_BSLASHglsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), - [anon_sym_BSLASHnewacronym] = ACTIONS(4495), - [anon_sym_BSLASHacrshort] = ACTIONS(4495), - [anon_sym_BSLASHAcrshort] = ACTIONS(4495), - [anon_sym_BSLASHACRshort] = ACTIONS(4495), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), - [anon_sym_BSLASHacrlong] = ACTIONS(4495), - [anon_sym_BSLASHAcrlong] = ACTIONS(4495), - [anon_sym_BSLASHACRlong] = ACTIONS(4495), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), - [anon_sym_BSLASHacrfull] = ACTIONS(4495), - [anon_sym_BSLASHAcrfull] = ACTIONS(4495), - [anon_sym_BSLASHACRfull] = ACTIONS(4495), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), - [anon_sym_BSLASHacs] = ACTIONS(4495), - [anon_sym_BSLASHAcs] = ACTIONS(4495), - [anon_sym_BSLASHacsp] = ACTIONS(4495), - [anon_sym_BSLASHAcsp] = ACTIONS(4495), - [anon_sym_BSLASHacl] = ACTIONS(4495), - [anon_sym_BSLASHAcl] = ACTIONS(4495), - [anon_sym_BSLASHaclp] = ACTIONS(4495), - [anon_sym_BSLASHAclp] = ACTIONS(4495), - [anon_sym_BSLASHacf] = ACTIONS(4495), - [anon_sym_BSLASHAcf] = ACTIONS(4495), - [anon_sym_BSLASHacfp] = ACTIONS(4495), - [anon_sym_BSLASHAcfp] = ACTIONS(4495), - [anon_sym_BSLASHac] = ACTIONS(4495), - [anon_sym_BSLASHAc] = ACTIONS(4495), - [anon_sym_BSLASHacp] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), - [anon_sym_BSLASHcolor] = ACTIONS(4495), - [anon_sym_BSLASHcolorbox] = ACTIONS(4495), - [anon_sym_BSLASHtextcolor] = ACTIONS(4495), - [anon_sym_BSLASHpagecolor] = ACTIONS(4495), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), - [anon_sym_BSLASHtext] = ACTIONS(4495), - [anon_sym_BSLASHintertext] = ACTIONS(4495), - [anon_sym_shortintertext] = ACTIONS(4495), + [sym_command_name] = ACTIONS(4574), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4574), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_BSLASHpart] = ACTIONS(4574), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddpart] = ACTIONS(4574), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHchapter] = ACTIONS(4574), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddchap] = ACTIONS(4574), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsection] = ACTIONS(4574), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddsec] = ACTIONS(4574), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHparagraph] = ACTIONS(4574), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4574), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHitem] = ACTIONS(4720), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4572), + [sym_word] = ACTIONS(4574), + [sym_placeholder] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4574), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4574), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4574), + [anon_sym_BANG] = ACTIONS(4574), + [anon_sym_PIPE] = ACTIONS(4574), + [anon_sym_COLON] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4574), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4574), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4572), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4572), + [anon_sym_BSLASHbegin] = ACTIONS(4574), + [anon_sym_BSLASHusepackage] = ACTIONS(4574), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4574), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4574), + [anon_sym_BSLASHinclude] = ACTIONS(4574), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4574), + [anon_sym_BSLASHinput] = ACTIONS(4574), + [anon_sym_BSLASHsubfile] = ACTIONS(4574), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4574), + [anon_sym_BSLASHbibliography] = ACTIONS(4574), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4574), + [anon_sym_BSLASHincludesvg] = ACTIONS(4574), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4574), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4574), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4574), + [anon_sym_BSLASHimport] = ACTIONS(4574), + [anon_sym_BSLASHsubimport] = ACTIONS(4574), + [anon_sym_BSLASHinputfrom] = ACTIONS(4574), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4574), + [anon_sym_BSLASHincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHcaption] = ACTIONS(4574), + [anon_sym_BSLASHcite] = ACTIONS(4574), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCite] = ACTIONS(4574), + [anon_sym_BSLASHnocite] = ACTIONS(4574), + [anon_sym_BSLASHcitet] = ACTIONS(4574), + [anon_sym_BSLASHcitep] = ACTIONS(4574), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteauthor] = ACTIONS(4574), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4574), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitetitle] = ACTIONS(4574), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteyear] = ACTIONS(4574), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitedate] = ACTIONS(4574), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteurl] = ACTIONS(4574), + [anon_sym_BSLASHfullcite] = ACTIONS(4574), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4574), + [anon_sym_BSLASHcitealt] = ACTIONS(4574), + [anon_sym_BSLASHcitealp] = ACTIONS(4574), + [anon_sym_BSLASHcitetext] = ACTIONS(4574), + [anon_sym_BSLASHparencite] = ACTIONS(4574), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHParencite] = ACTIONS(4574), + [anon_sym_BSLASHfootcite] = ACTIONS(4574), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4574), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4574), + [anon_sym_BSLASHtextcite] = ACTIONS(4574), + [anon_sym_BSLASHTextcite] = ACTIONS(4574), + [anon_sym_BSLASHsmartcite] = ACTIONS(4574), + [anon_sym_BSLASHSmartcite] = ACTIONS(4574), + [anon_sym_BSLASHsupercite] = ACTIONS(4574), + [anon_sym_BSLASHautocite] = ACTIONS(4574), + [anon_sym_BSLASHAutocite] = ACTIONS(4574), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHvolcite] = ACTIONS(4574), + [anon_sym_BSLASHVolcite] = ACTIONS(4574), + [anon_sym_BSLASHpvolcite] = ACTIONS(4574), + [anon_sym_BSLASHPvolcite] = ACTIONS(4574), + [anon_sym_BSLASHfvolcite] = ACTIONS(4574), + [anon_sym_BSLASHftvolcite] = ACTIONS(4574), + [anon_sym_BSLASHsvolcite] = ACTIONS(4574), + [anon_sym_BSLASHSvolcite] = ACTIONS(4574), + [anon_sym_BSLASHtvolcite] = ACTIONS(4574), + [anon_sym_BSLASHTvolcite] = ACTIONS(4574), + [anon_sym_BSLASHavolcite] = ACTIONS(4574), + [anon_sym_BSLASHAvolcite] = ACTIONS(4574), + [anon_sym_BSLASHnotecite] = ACTIONS(4574), + [anon_sym_BSLASHNotecite] = ACTIONS(4574), + [anon_sym_BSLASHpnotecite] = ACTIONS(4574), + [anon_sym_BSLASHPnotecite] = ACTIONS(4574), + [anon_sym_BSLASHfnotecite] = ACTIONS(4574), + [anon_sym_BSLASHlabel] = ACTIONS(4574), + [anon_sym_BSLASHref] = ACTIONS(4574), + [anon_sym_BSLASHeqref] = ACTIONS(4574), + [anon_sym_BSLASHvref] = ACTIONS(4574), + [anon_sym_BSLASHVref] = ACTIONS(4574), + [anon_sym_BSLASHautoref] = ACTIONS(4574), + [anon_sym_BSLASHpageref] = ACTIONS(4574), + [anon_sym_BSLASHcref] = ACTIONS(4574), + [anon_sym_BSLASHCref] = ACTIONS(4574), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnameCref] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHlabelcref] = ACTIONS(4574), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCrefrange] = ACTIONS(4574), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnewlabel] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4574), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4574), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4574), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdef] = ACTIONS(4574), + [anon_sym_BSLASHlet] = ACTIONS(4574), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4574), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4574), + [anon_sym_BSLASHgls] = ACTIONS(4574), + [anon_sym_BSLASHGls] = ACTIONS(4574), + [anon_sym_BSLASHGLS] = ACTIONS(4574), + [anon_sym_BSLASHglspl] = ACTIONS(4574), + [anon_sym_BSLASHGlspl] = ACTIONS(4574), + [anon_sym_BSLASHGLSpl] = ACTIONS(4574), + [anon_sym_BSLASHglsdisp] = ACTIONS(4574), + [anon_sym_BSLASHglslink] = ACTIONS(4574), + [anon_sym_BSLASHglstext] = ACTIONS(4574), + [anon_sym_BSLASHGlstext] = ACTIONS(4574), + [anon_sym_BSLASHGLStext] = ACTIONS(4574), + [anon_sym_BSLASHglsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4574), + [anon_sym_BSLASHglsplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSplural] = ACTIONS(4574), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHglsname] = ACTIONS(4574), + [anon_sym_BSLASHGlsname] = ACTIONS(4574), + [anon_sym_BSLASHGLSname] = ACTIONS(4574), + [anon_sym_BSLASHglssymbol] = ACTIONS(4574), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4574), + [anon_sym_BSLASHglsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4574), + [anon_sym_BSLASHglsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4574), + [anon_sym_BSLASHglsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4574), + [anon_sym_BSLASHglsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4574), + [anon_sym_BSLASHglsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4574), + [anon_sym_BSLASHnewacronym] = ACTIONS(4574), + [anon_sym_BSLASHacrshort] = ACTIONS(4574), + [anon_sym_BSLASHAcrshort] = ACTIONS(4574), + [anon_sym_BSLASHACRshort] = ACTIONS(4574), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4574), + [anon_sym_BSLASHacrlong] = ACTIONS(4574), + [anon_sym_BSLASHAcrlong] = ACTIONS(4574), + [anon_sym_BSLASHACRlong] = ACTIONS(4574), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4574), + [anon_sym_BSLASHacrfull] = ACTIONS(4574), + [anon_sym_BSLASHAcrfull] = ACTIONS(4574), + [anon_sym_BSLASHACRfull] = ACTIONS(4574), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4574), + [anon_sym_BSLASHacs] = ACTIONS(4574), + [anon_sym_BSLASHAcs] = ACTIONS(4574), + [anon_sym_BSLASHacsp] = ACTIONS(4574), + [anon_sym_BSLASHAcsp] = ACTIONS(4574), + [anon_sym_BSLASHacl] = ACTIONS(4574), + [anon_sym_BSLASHAcl] = ACTIONS(4574), + [anon_sym_BSLASHaclp] = ACTIONS(4574), + [anon_sym_BSLASHAclp] = ACTIONS(4574), + [anon_sym_BSLASHacf] = ACTIONS(4574), + [anon_sym_BSLASHAcf] = ACTIONS(4574), + [anon_sym_BSLASHacfp] = ACTIONS(4574), + [anon_sym_BSLASHAcfp] = ACTIONS(4574), + [anon_sym_BSLASHac] = ACTIONS(4574), + [anon_sym_BSLASHAc] = ACTIONS(4574), + [anon_sym_BSLASHacp] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4574), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4574), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4574), + [anon_sym_BSLASHcolor] = ACTIONS(4574), + [anon_sym_BSLASHcolorbox] = ACTIONS(4574), + [anon_sym_BSLASHtextcolor] = ACTIONS(4574), + [anon_sym_BSLASHpagecolor] = ACTIONS(4574), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4574), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4574), + [anon_sym_BSLASHtext] = ACTIONS(4574), + [anon_sym_BSLASHintertext] = ACTIONS(4574), + [anon_sym_shortintertext] = ACTIONS(4574), }, [442] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHend] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1972), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHend] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [443] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(1947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHend] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(1972), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHend] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [444] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_BSLASHpart] = ACTIONS(4505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddpart] = ACTIONS(4505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHchapter] = ACTIONS(4505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddchap] = ACTIONS(4505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsection] = ACTIONS(4505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddsec] = ACTIONS(4505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHparagraph] = ACTIONS(4505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4647), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4650), - [anon_sym_BSLASHitem] = ACTIONS(4505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), - [anon_sym_LBRACE] = ACTIONS(4503), - [sym_word] = ACTIONS(4505), - [sym_placeholder] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(4505), - [anon_sym_SLASH] = ACTIONS(4505), - [anon_sym_CARET] = ACTIONS(4505), - [anon_sym__] = ACTIONS(4505), - [anon_sym_LT] = ACTIONS(4505), - [anon_sym_GT] = ACTIONS(4505), - [anon_sym_BANG] = ACTIONS(4505), - [anon_sym_PIPE] = ACTIONS(4505), - [anon_sym_COLON] = ACTIONS(4505), - [anon_sym_SQUOTE] = ACTIONS(4505), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), - [anon_sym_BSLASHbegin] = ACTIONS(4505), - [anon_sym_BSLASHusepackage] = ACTIONS(4505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), - [anon_sym_BSLASHinclude] = ACTIONS(4505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), - [anon_sym_BSLASHinput] = ACTIONS(4505), - [anon_sym_BSLASHsubfile] = ACTIONS(4505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), - [anon_sym_BSLASHbibliography] = ACTIONS(4505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), - [anon_sym_BSLASHincludesvg] = ACTIONS(4505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), - [anon_sym_BSLASHimport] = ACTIONS(4505), - [anon_sym_BSLASHsubimport] = ACTIONS(4505), - [anon_sym_BSLASHinputfrom] = ACTIONS(4505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), - [anon_sym_BSLASHincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHcaption] = ACTIONS(4505), - [anon_sym_BSLASHcite] = ACTIONS(4505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCite] = ACTIONS(4505), - [anon_sym_BSLASHnocite] = ACTIONS(4505), - [anon_sym_BSLASHcitet] = ACTIONS(4505), - [anon_sym_BSLASHcitep] = ACTIONS(4505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor] = ACTIONS(4505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle] = ACTIONS(4505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteyear] = ACTIONS(4505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitedate] = ACTIONS(4505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteurl] = ACTIONS(4505), - [anon_sym_BSLASHfullcite] = ACTIONS(4505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), - [anon_sym_BSLASHcitealt] = ACTIONS(4505), - [anon_sym_BSLASHcitealp] = ACTIONS(4505), - [anon_sym_BSLASHcitetext] = ACTIONS(4505), - [anon_sym_BSLASHparencite] = ACTIONS(4505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHParencite] = ACTIONS(4505), - [anon_sym_BSLASHfootcite] = ACTIONS(4505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), - [anon_sym_BSLASHtextcite] = ACTIONS(4505), - [anon_sym_BSLASHTextcite] = ACTIONS(4505), - [anon_sym_BSLASHsmartcite] = ACTIONS(4505), - [anon_sym_BSLASHSmartcite] = ACTIONS(4505), - [anon_sym_BSLASHsupercite] = ACTIONS(4505), - [anon_sym_BSLASHautocite] = ACTIONS(4505), - [anon_sym_BSLASHAutocite] = ACTIONS(4505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHvolcite] = ACTIONS(4505), - [anon_sym_BSLASHVolcite] = ACTIONS(4505), - [anon_sym_BSLASHpvolcite] = ACTIONS(4505), - [anon_sym_BSLASHPvolcite] = ACTIONS(4505), - [anon_sym_BSLASHfvolcite] = ACTIONS(4505), - [anon_sym_BSLASHftvolcite] = ACTIONS(4505), - [anon_sym_BSLASHsvolcite] = ACTIONS(4505), - [anon_sym_BSLASHSvolcite] = ACTIONS(4505), - [anon_sym_BSLASHtvolcite] = ACTIONS(4505), - [anon_sym_BSLASHTvolcite] = ACTIONS(4505), - [anon_sym_BSLASHavolcite] = ACTIONS(4505), - [anon_sym_BSLASHAvolcite] = ACTIONS(4505), - [anon_sym_BSLASHnotecite] = ACTIONS(4505), - [anon_sym_BSLASHNotecite] = ACTIONS(4505), - [anon_sym_BSLASHpnotecite] = ACTIONS(4505), - [anon_sym_BSLASHPnotecite] = ACTIONS(4505), - [anon_sym_BSLASHfnotecite] = ACTIONS(4505), - [anon_sym_BSLASHlabel] = ACTIONS(4505), - [anon_sym_BSLASHref] = ACTIONS(4505), - [anon_sym_BSLASHeqref] = ACTIONS(4505), - [anon_sym_BSLASHvref] = ACTIONS(4505), - [anon_sym_BSLASHVref] = ACTIONS(4505), - [anon_sym_BSLASHautoref] = ACTIONS(4505), - [anon_sym_BSLASHpageref] = ACTIONS(4505), - [anon_sym_BSLASHcref] = ACTIONS(4505), - [anon_sym_BSLASHCref] = ACTIONS(4505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnameCref] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHlabelcref] = ACTIONS(4505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange] = ACTIONS(4505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnewlabel] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), - [anon_sym_BSLASHdef] = ACTIONS(4505), - [anon_sym_BSLASHlet] = ACTIONS(4505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), - [anon_sym_BSLASHgls] = ACTIONS(4505), - [anon_sym_BSLASHGls] = ACTIONS(4505), - [anon_sym_BSLASHGLS] = ACTIONS(4505), - [anon_sym_BSLASHglspl] = ACTIONS(4505), - [anon_sym_BSLASHGlspl] = ACTIONS(4505), - [anon_sym_BSLASHGLSpl] = ACTIONS(4505), - [anon_sym_BSLASHglsdisp] = ACTIONS(4505), - [anon_sym_BSLASHglslink] = ACTIONS(4505), - [anon_sym_BSLASHglstext] = ACTIONS(4505), - [anon_sym_BSLASHGlstext] = ACTIONS(4505), - [anon_sym_BSLASHGLStext] = ACTIONS(4505), - [anon_sym_BSLASHglsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), - [anon_sym_BSLASHglsplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSplural] = ACTIONS(4505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHglsname] = ACTIONS(4505), - [anon_sym_BSLASHGlsname] = ACTIONS(4505), - [anon_sym_BSLASHGLSname] = ACTIONS(4505), - [anon_sym_BSLASHglssymbol] = ACTIONS(4505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), - [anon_sym_BSLASHglsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), - [anon_sym_BSLASHglsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), - [anon_sym_BSLASHglsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), - [anon_sym_BSLASHglsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), - [anon_sym_BSLASHglsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), - [anon_sym_BSLASHnewacronym] = ACTIONS(4505), - [anon_sym_BSLASHacrshort] = ACTIONS(4505), - [anon_sym_BSLASHAcrshort] = ACTIONS(4505), - [anon_sym_BSLASHACRshort] = ACTIONS(4505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), - [anon_sym_BSLASHacrlong] = ACTIONS(4505), - [anon_sym_BSLASHAcrlong] = ACTIONS(4505), - [anon_sym_BSLASHACRlong] = ACTIONS(4505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), - [anon_sym_BSLASHacrfull] = ACTIONS(4505), - [anon_sym_BSLASHAcrfull] = ACTIONS(4505), - [anon_sym_BSLASHACRfull] = ACTIONS(4505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), - [anon_sym_BSLASHacs] = ACTIONS(4505), - [anon_sym_BSLASHAcs] = ACTIONS(4505), - [anon_sym_BSLASHacsp] = ACTIONS(4505), - [anon_sym_BSLASHAcsp] = ACTIONS(4505), - [anon_sym_BSLASHacl] = ACTIONS(4505), - [anon_sym_BSLASHAcl] = ACTIONS(4505), - [anon_sym_BSLASHaclp] = ACTIONS(4505), - [anon_sym_BSLASHAclp] = ACTIONS(4505), - [anon_sym_BSLASHacf] = ACTIONS(4505), - [anon_sym_BSLASHAcf] = ACTIONS(4505), - [anon_sym_BSLASHacfp] = ACTIONS(4505), - [anon_sym_BSLASHAcfp] = ACTIONS(4505), - [anon_sym_BSLASHac] = ACTIONS(4505), - [anon_sym_BSLASHAc] = ACTIONS(4505), - [anon_sym_BSLASHacp] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), - [anon_sym_BSLASHcolor] = ACTIONS(4505), - [anon_sym_BSLASHcolorbox] = ACTIONS(4505), - [anon_sym_BSLASHtextcolor] = ACTIONS(4505), - [anon_sym_BSLASHpagecolor] = ACTIONS(4505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), - [anon_sym_BSLASHtext] = ACTIONS(4505), - [anon_sym_BSLASHintertext] = ACTIONS(4505), - [anon_sym_shortintertext] = ACTIONS(4505), + [sym_command_name] = ACTIONS(4584), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_RBRACK] = ACTIONS(4582), + [anon_sym_COMMA] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_BSLASHpart] = ACTIONS(4584), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddpart] = ACTIONS(4584), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHchapter] = ACTIONS(4584), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddchap] = ACTIONS(4584), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsection] = ACTIONS(4584), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddsec] = ACTIONS(4584), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHparagraph] = ACTIONS(4584), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4726), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4729), + [anon_sym_BSLASHitem] = ACTIONS(4584), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4582), + [sym_word] = ACTIONS(4584), + [sym_placeholder] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym__] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4582), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4582), + [anon_sym_BSLASHbegin] = ACTIONS(4584), + [anon_sym_BSLASHusepackage] = ACTIONS(4584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4584), + [anon_sym_BSLASHinclude] = ACTIONS(4584), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4584), + [anon_sym_BSLASHinput] = ACTIONS(4584), + [anon_sym_BSLASHsubfile] = ACTIONS(4584), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4584), + [anon_sym_BSLASHbibliography] = ACTIONS(4584), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4584), + [anon_sym_BSLASHincludesvg] = ACTIONS(4584), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4584), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4584), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4584), + [anon_sym_BSLASHimport] = ACTIONS(4584), + [anon_sym_BSLASHsubimport] = ACTIONS(4584), + [anon_sym_BSLASHinputfrom] = ACTIONS(4584), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4584), + [anon_sym_BSLASHincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHcaption] = ACTIONS(4584), + [anon_sym_BSLASHcite] = ACTIONS(4584), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCite] = ACTIONS(4584), + [anon_sym_BSLASHnocite] = ACTIONS(4584), + [anon_sym_BSLASHcitet] = ACTIONS(4584), + [anon_sym_BSLASHcitep] = ACTIONS(4584), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteauthor] = ACTIONS(4584), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4584), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitetitle] = ACTIONS(4584), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteyear] = ACTIONS(4584), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitedate] = ACTIONS(4584), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteurl] = ACTIONS(4584), + [anon_sym_BSLASHfullcite] = ACTIONS(4584), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4584), + [anon_sym_BSLASHcitealt] = ACTIONS(4584), + [anon_sym_BSLASHcitealp] = ACTIONS(4584), + [anon_sym_BSLASHcitetext] = ACTIONS(4584), + [anon_sym_BSLASHparencite] = ACTIONS(4584), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHParencite] = ACTIONS(4584), + [anon_sym_BSLASHfootcite] = ACTIONS(4584), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4584), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4584), + [anon_sym_BSLASHtextcite] = ACTIONS(4584), + [anon_sym_BSLASHTextcite] = ACTIONS(4584), + [anon_sym_BSLASHsmartcite] = ACTIONS(4584), + [anon_sym_BSLASHSmartcite] = ACTIONS(4584), + [anon_sym_BSLASHsupercite] = ACTIONS(4584), + [anon_sym_BSLASHautocite] = ACTIONS(4584), + [anon_sym_BSLASHAutocite] = ACTIONS(4584), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHvolcite] = ACTIONS(4584), + [anon_sym_BSLASHVolcite] = ACTIONS(4584), + [anon_sym_BSLASHpvolcite] = ACTIONS(4584), + [anon_sym_BSLASHPvolcite] = ACTIONS(4584), + [anon_sym_BSLASHfvolcite] = ACTIONS(4584), + [anon_sym_BSLASHftvolcite] = ACTIONS(4584), + [anon_sym_BSLASHsvolcite] = ACTIONS(4584), + [anon_sym_BSLASHSvolcite] = ACTIONS(4584), + [anon_sym_BSLASHtvolcite] = ACTIONS(4584), + [anon_sym_BSLASHTvolcite] = ACTIONS(4584), + [anon_sym_BSLASHavolcite] = ACTIONS(4584), + [anon_sym_BSLASHAvolcite] = ACTIONS(4584), + [anon_sym_BSLASHnotecite] = ACTIONS(4584), + [anon_sym_BSLASHNotecite] = ACTIONS(4584), + [anon_sym_BSLASHpnotecite] = ACTIONS(4584), + [anon_sym_BSLASHPnotecite] = ACTIONS(4584), + [anon_sym_BSLASHfnotecite] = ACTIONS(4584), + [anon_sym_BSLASHlabel] = ACTIONS(4584), + [anon_sym_BSLASHref] = ACTIONS(4584), + [anon_sym_BSLASHeqref] = ACTIONS(4584), + [anon_sym_BSLASHvref] = ACTIONS(4584), + [anon_sym_BSLASHVref] = ACTIONS(4584), + [anon_sym_BSLASHautoref] = ACTIONS(4584), + [anon_sym_BSLASHpageref] = ACTIONS(4584), + [anon_sym_BSLASHcref] = ACTIONS(4584), + [anon_sym_BSLASHCref] = ACTIONS(4584), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnameCref] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHlabelcref] = ACTIONS(4584), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCrefrange] = ACTIONS(4584), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnewlabel] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4584), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4584), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4584), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdef] = ACTIONS(4584), + [anon_sym_BSLASHlet] = ACTIONS(4584), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4584), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4584), + [anon_sym_BSLASHgls] = ACTIONS(4584), + [anon_sym_BSLASHGls] = ACTIONS(4584), + [anon_sym_BSLASHGLS] = ACTIONS(4584), + [anon_sym_BSLASHglspl] = ACTIONS(4584), + [anon_sym_BSLASHGlspl] = ACTIONS(4584), + [anon_sym_BSLASHGLSpl] = ACTIONS(4584), + [anon_sym_BSLASHglsdisp] = ACTIONS(4584), + [anon_sym_BSLASHglslink] = ACTIONS(4584), + [anon_sym_BSLASHglstext] = ACTIONS(4584), + [anon_sym_BSLASHGlstext] = ACTIONS(4584), + [anon_sym_BSLASHGLStext] = ACTIONS(4584), + [anon_sym_BSLASHglsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4584), + [anon_sym_BSLASHglsplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSplural] = ACTIONS(4584), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHglsname] = ACTIONS(4584), + [anon_sym_BSLASHGlsname] = ACTIONS(4584), + [anon_sym_BSLASHGLSname] = ACTIONS(4584), + [anon_sym_BSLASHglssymbol] = ACTIONS(4584), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4584), + [anon_sym_BSLASHglsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4584), + [anon_sym_BSLASHglsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4584), + [anon_sym_BSLASHglsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4584), + [anon_sym_BSLASHglsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4584), + [anon_sym_BSLASHglsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4584), + [anon_sym_BSLASHnewacronym] = ACTIONS(4584), + [anon_sym_BSLASHacrshort] = ACTIONS(4584), + [anon_sym_BSLASHAcrshort] = ACTIONS(4584), + [anon_sym_BSLASHACRshort] = ACTIONS(4584), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4584), + [anon_sym_BSLASHacrlong] = ACTIONS(4584), + [anon_sym_BSLASHAcrlong] = ACTIONS(4584), + [anon_sym_BSLASHACRlong] = ACTIONS(4584), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4584), + [anon_sym_BSLASHacrfull] = ACTIONS(4584), + [anon_sym_BSLASHAcrfull] = ACTIONS(4584), + [anon_sym_BSLASHACRfull] = ACTIONS(4584), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4584), + [anon_sym_BSLASHacs] = ACTIONS(4584), + [anon_sym_BSLASHAcs] = ACTIONS(4584), + [anon_sym_BSLASHacsp] = ACTIONS(4584), + [anon_sym_BSLASHAcsp] = ACTIONS(4584), + [anon_sym_BSLASHacl] = ACTIONS(4584), + [anon_sym_BSLASHAcl] = ACTIONS(4584), + [anon_sym_BSLASHaclp] = ACTIONS(4584), + [anon_sym_BSLASHAclp] = ACTIONS(4584), + [anon_sym_BSLASHacf] = ACTIONS(4584), + [anon_sym_BSLASHAcf] = ACTIONS(4584), + [anon_sym_BSLASHacfp] = ACTIONS(4584), + [anon_sym_BSLASHAcfp] = ACTIONS(4584), + [anon_sym_BSLASHac] = ACTIONS(4584), + [anon_sym_BSLASHAc] = ACTIONS(4584), + [anon_sym_BSLASHacp] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4584), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4584), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4584), + [anon_sym_BSLASHcolor] = ACTIONS(4584), + [anon_sym_BSLASHcolorbox] = ACTIONS(4584), + [anon_sym_BSLASHtextcolor] = ACTIONS(4584), + [anon_sym_BSLASHpagecolor] = ACTIONS(4584), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4584), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4584), + [anon_sym_BSLASHtext] = ACTIONS(4584), + [anon_sym_BSLASHintertext] = ACTIONS(4584), + [anon_sym_shortintertext] = ACTIONS(4584), }, [445] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHend] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHend] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [446] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHend] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHend] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [447] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHend] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHend] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [448] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4515), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_RPAREN] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [anon_sym_RBRACK] = ACTIONS(4513), - [anon_sym_COMMA] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_BSLASHpart] = ACTIONS(4515), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddpart] = ACTIONS(4515), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHchapter] = ACTIONS(4515), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddchap] = ACTIONS(4515), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsection] = ACTIONS(4515), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddsec] = ACTIONS(4515), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHparagraph] = ACTIONS(4653), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4656), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), - [anon_sym_BSLASHitem] = ACTIONS(4515), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4513), - [sym_word] = ACTIONS(4515), - [sym_placeholder] = ACTIONS(4513), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_SLASH] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym__] = ACTIONS(4515), - [anon_sym_LT] = ACTIONS(4515), - [anon_sym_GT] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_PIPE] = ACTIONS(4515), - [anon_sym_COLON] = ACTIONS(4515), - [anon_sym_SQUOTE] = ACTIONS(4515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), - [anon_sym_DOLLAR] = ACTIONS(4515), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), - [anon_sym_BSLASHbegin] = ACTIONS(4515), - [anon_sym_BSLASHusepackage] = ACTIONS(4515), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), - [anon_sym_BSLASHinclude] = ACTIONS(4515), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), - [anon_sym_BSLASHinput] = ACTIONS(4515), - [anon_sym_BSLASHsubfile] = ACTIONS(4515), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), - [anon_sym_BSLASHbibliography] = ACTIONS(4515), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), - [anon_sym_BSLASHincludesvg] = ACTIONS(4515), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), - [anon_sym_BSLASHimport] = ACTIONS(4515), - [anon_sym_BSLASHsubimport] = ACTIONS(4515), - [anon_sym_BSLASHinputfrom] = ACTIONS(4515), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), - [anon_sym_BSLASHincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHcaption] = ACTIONS(4515), - [anon_sym_BSLASHcite] = ACTIONS(4515), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCite] = ACTIONS(4515), - [anon_sym_BSLASHnocite] = ACTIONS(4515), - [anon_sym_BSLASHcitet] = ACTIONS(4515), - [anon_sym_BSLASHcitep] = ACTIONS(4515), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor] = ACTIONS(4515), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle] = ACTIONS(4515), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteyear] = ACTIONS(4515), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitedate] = ACTIONS(4515), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteurl] = ACTIONS(4515), - [anon_sym_BSLASHfullcite] = ACTIONS(4515), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), - [anon_sym_BSLASHcitealt] = ACTIONS(4515), - [anon_sym_BSLASHcitealp] = ACTIONS(4515), - [anon_sym_BSLASHcitetext] = ACTIONS(4515), - [anon_sym_BSLASHparencite] = ACTIONS(4515), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHParencite] = ACTIONS(4515), - [anon_sym_BSLASHfootcite] = ACTIONS(4515), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), - [anon_sym_BSLASHtextcite] = ACTIONS(4515), - [anon_sym_BSLASHTextcite] = ACTIONS(4515), - [anon_sym_BSLASHsmartcite] = ACTIONS(4515), - [anon_sym_BSLASHSmartcite] = ACTIONS(4515), - [anon_sym_BSLASHsupercite] = ACTIONS(4515), - [anon_sym_BSLASHautocite] = ACTIONS(4515), - [anon_sym_BSLASHAutocite] = ACTIONS(4515), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHvolcite] = ACTIONS(4515), - [anon_sym_BSLASHVolcite] = ACTIONS(4515), - [anon_sym_BSLASHpvolcite] = ACTIONS(4515), - [anon_sym_BSLASHPvolcite] = ACTIONS(4515), - [anon_sym_BSLASHfvolcite] = ACTIONS(4515), - [anon_sym_BSLASHftvolcite] = ACTIONS(4515), - [anon_sym_BSLASHsvolcite] = ACTIONS(4515), - [anon_sym_BSLASHSvolcite] = ACTIONS(4515), - [anon_sym_BSLASHtvolcite] = ACTIONS(4515), - [anon_sym_BSLASHTvolcite] = ACTIONS(4515), - [anon_sym_BSLASHavolcite] = ACTIONS(4515), - [anon_sym_BSLASHAvolcite] = ACTIONS(4515), - [anon_sym_BSLASHnotecite] = ACTIONS(4515), - [anon_sym_BSLASHNotecite] = ACTIONS(4515), - [anon_sym_BSLASHpnotecite] = ACTIONS(4515), - [anon_sym_BSLASHPnotecite] = ACTIONS(4515), - [anon_sym_BSLASHfnotecite] = ACTIONS(4515), - [anon_sym_BSLASHlabel] = ACTIONS(4515), - [anon_sym_BSLASHref] = ACTIONS(4515), - [anon_sym_BSLASHeqref] = ACTIONS(4515), - [anon_sym_BSLASHvref] = ACTIONS(4515), - [anon_sym_BSLASHVref] = ACTIONS(4515), - [anon_sym_BSLASHautoref] = ACTIONS(4515), - [anon_sym_BSLASHpageref] = ACTIONS(4515), - [anon_sym_BSLASHcref] = ACTIONS(4515), - [anon_sym_BSLASHCref] = ACTIONS(4515), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnameCref] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHlabelcref] = ACTIONS(4515), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange] = ACTIONS(4515), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnewlabel] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), - [anon_sym_BSLASHdef] = ACTIONS(4515), - [anon_sym_BSLASHlet] = ACTIONS(4515), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), - [anon_sym_BSLASHgls] = ACTIONS(4515), - [anon_sym_BSLASHGls] = ACTIONS(4515), - [anon_sym_BSLASHGLS] = ACTIONS(4515), - [anon_sym_BSLASHglspl] = ACTIONS(4515), - [anon_sym_BSLASHGlspl] = ACTIONS(4515), - [anon_sym_BSLASHGLSpl] = ACTIONS(4515), - [anon_sym_BSLASHglsdisp] = ACTIONS(4515), - [anon_sym_BSLASHglslink] = ACTIONS(4515), - [anon_sym_BSLASHglstext] = ACTIONS(4515), - [anon_sym_BSLASHGlstext] = ACTIONS(4515), - [anon_sym_BSLASHGLStext] = ACTIONS(4515), - [anon_sym_BSLASHglsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), - [anon_sym_BSLASHglsplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSplural] = ACTIONS(4515), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHglsname] = ACTIONS(4515), - [anon_sym_BSLASHGlsname] = ACTIONS(4515), - [anon_sym_BSLASHGLSname] = ACTIONS(4515), - [anon_sym_BSLASHglssymbol] = ACTIONS(4515), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), - [anon_sym_BSLASHglsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), - [anon_sym_BSLASHglsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), - [anon_sym_BSLASHglsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), - [anon_sym_BSLASHglsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), - [anon_sym_BSLASHglsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), - [anon_sym_BSLASHnewacronym] = ACTIONS(4515), - [anon_sym_BSLASHacrshort] = ACTIONS(4515), - [anon_sym_BSLASHAcrshort] = ACTIONS(4515), - [anon_sym_BSLASHACRshort] = ACTIONS(4515), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), - [anon_sym_BSLASHacrlong] = ACTIONS(4515), - [anon_sym_BSLASHAcrlong] = ACTIONS(4515), - [anon_sym_BSLASHACRlong] = ACTIONS(4515), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), - [anon_sym_BSLASHacrfull] = ACTIONS(4515), - [anon_sym_BSLASHAcrfull] = ACTIONS(4515), - [anon_sym_BSLASHACRfull] = ACTIONS(4515), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), - [anon_sym_BSLASHacs] = ACTIONS(4515), - [anon_sym_BSLASHAcs] = ACTIONS(4515), - [anon_sym_BSLASHacsp] = ACTIONS(4515), - [anon_sym_BSLASHAcsp] = ACTIONS(4515), - [anon_sym_BSLASHacl] = ACTIONS(4515), - [anon_sym_BSLASHAcl] = ACTIONS(4515), - [anon_sym_BSLASHaclp] = ACTIONS(4515), - [anon_sym_BSLASHAclp] = ACTIONS(4515), - [anon_sym_BSLASHacf] = ACTIONS(4515), - [anon_sym_BSLASHAcf] = ACTIONS(4515), - [anon_sym_BSLASHacfp] = ACTIONS(4515), - [anon_sym_BSLASHAcfp] = ACTIONS(4515), - [anon_sym_BSLASHac] = ACTIONS(4515), - [anon_sym_BSLASHAc] = ACTIONS(4515), - [anon_sym_BSLASHacp] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), - [anon_sym_BSLASHcolor] = ACTIONS(4515), - [anon_sym_BSLASHcolorbox] = ACTIONS(4515), - [anon_sym_BSLASHtextcolor] = ACTIONS(4515), - [anon_sym_BSLASHpagecolor] = ACTIONS(4515), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), - [anon_sym_BSLASHtext] = ACTIONS(4515), - [anon_sym_BSLASHintertext] = ACTIONS(4515), - [anon_sym_shortintertext] = ACTIONS(4515), + [sym_command_name] = ACTIONS(4594), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_BSLASHpart] = ACTIONS(4594), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddpart] = ACTIONS(4594), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHchapter] = ACTIONS(4594), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddchap] = ACTIONS(4594), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsection] = ACTIONS(4594), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddsec] = ACTIONS(4594), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHparagraph] = ACTIONS(4732), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4735), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4594), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4592), + [anon_sym_BSLASHitem] = ACTIONS(4594), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [sym_word] = ACTIONS(4594), + [sym_placeholder] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4594), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4592), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4592), + [anon_sym_BSLASHbegin] = ACTIONS(4594), + [anon_sym_BSLASHusepackage] = ACTIONS(4594), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4594), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4594), + [anon_sym_BSLASHinclude] = ACTIONS(4594), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4594), + [anon_sym_BSLASHinput] = ACTIONS(4594), + [anon_sym_BSLASHsubfile] = ACTIONS(4594), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4594), + [anon_sym_BSLASHbibliography] = ACTIONS(4594), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4594), + [anon_sym_BSLASHincludesvg] = ACTIONS(4594), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4594), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4594), + [anon_sym_BSLASHimport] = ACTIONS(4594), + [anon_sym_BSLASHsubimport] = ACTIONS(4594), + [anon_sym_BSLASHinputfrom] = ACTIONS(4594), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4594), + [anon_sym_BSLASHincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHcaption] = ACTIONS(4594), + [anon_sym_BSLASHcite] = ACTIONS(4594), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCite] = ACTIONS(4594), + [anon_sym_BSLASHnocite] = ACTIONS(4594), + [anon_sym_BSLASHcitet] = ACTIONS(4594), + [anon_sym_BSLASHcitep] = ACTIONS(4594), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteauthor] = ACTIONS(4594), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4594), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitetitle] = ACTIONS(4594), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteyear] = ACTIONS(4594), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitedate] = ACTIONS(4594), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteurl] = ACTIONS(4594), + [anon_sym_BSLASHfullcite] = ACTIONS(4594), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4594), + [anon_sym_BSLASHcitealt] = ACTIONS(4594), + [anon_sym_BSLASHcitealp] = ACTIONS(4594), + [anon_sym_BSLASHcitetext] = ACTIONS(4594), + [anon_sym_BSLASHparencite] = ACTIONS(4594), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHParencite] = ACTIONS(4594), + [anon_sym_BSLASHfootcite] = ACTIONS(4594), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4594), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4594), + [anon_sym_BSLASHtextcite] = ACTIONS(4594), + [anon_sym_BSLASHTextcite] = ACTIONS(4594), + [anon_sym_BSLASHsmartcite] = ACTIONS(4594), + [anon_sym_BSLASHSmartcite] = ACTIONS(4594), + [anon_sym_BSLASHsupercite] = ACTIONS(4594), + [anon_sym_BSLASHautocite] = ACTIONS(4594), + [anon_sym_BSLASHAutocite] = ACTIONS(4594), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHvolcite] = ACTIONS(4594), + [anon_sym_BSLASHVolcite] = ACTIONS(4594), + [anon_sym_BSLASHpvolcite] = ACTIONS(4594), + [anon_sym_BSLASHPvolcite] = ACTIONS(4594), + [anon_sym_BSLASHfvolcite] = ACTIONS(4594), + [anon_sym_BSLASHftvolcite] = ACTIONS(4594), + [anon_sym_BSLASHsvolcite] = ACTIONS(4594), + [anon_sym_BSLASHSvolcite] = ACTIONS(4594), + [anon_sym_BSLASHtvolcite] = ACTIONS(4594), + [anon_sym_BSLASHTvolcite] = ACTIONS(4594), + [anon_sym_BSLASHavolcite] = ACTIONS(4594), + [anon_sym_BSLASHAvolcite] = ACTIONS(4594), + [anon_sym_BSLASHnotecite] = ACTIONS(4594), + [anon_sym_BSLASHNotecite] = ACTIONS(4594), + [anon_sym_BSLASHpnotecite] = ACTIONS(4594), + [anon_sym_BSLASHPnotecite] = ACTIONS(4594), + [anon_sym_BSLASHfnotecite] = ACTIONS(4594), + [anon_sym_BSLASHlabel] = ACTIONS(4594), + [anon_sym_BSLASHref] = ACTIONS(4594), + [anon_sym_BSLASHeqref] = ACTIONS(4594), + [anon_sym_BSLASHvref] = ACTIONS(4594), + [anon_sym_BSLASHVref] = ACTIONS(4594), + [anon_sym_BSLASHautoref] = ACTIONS(4594), + [anon_sym_BSLASHpageref] = ACTIONS(4594), + [anon_sym_BSLASHcref] = ACTIONS(4594), + [anon_sym_BSLASHCref] = ACTIONS(4594), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnameCref] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHlabelcref] = ACTIONS(4594), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCrefrange] = ACTIONS(4594), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnewlabel] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4594), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4594), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4594), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdef] = ACTIONS(4594), + [anon_sym_BSLASHlet] = ACTIONS(4594), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4594), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4594), + [anon_sym_BSLASHgls] = ACTIONS(4594), + [anon_sym_BSLASHGls] = ACTIONS(4594), + [anon_sym_BSLASHGLS] = ACTIONS(4594), + [anon_sym_BSLASHglspl] = ACTIONS(4594), + [anon_sym_BSLASHGlspl] = ACTIONS(4594), + [anon_sym_BSLASHGLSpl] = ACTIONS(4594), + [anon_sym_BSLASHglsdisp] = ACTIONS(4594), + [anon_sym_BSLASHglslink] = ACTIONS(4594), + [anon_sym_BSLASHglstext] = ACTIONS(4594), + [anon_sym_BSLASHGlstext] = ACTIONS(4594), + [anon_sym_BSLASHGLStext] = ACTIONS(4594), + [anon_sym_BSLASHglsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4594), + [anon_sym_BSLASHglsplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSplural] = ACTIONS(4594), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHglsname] = ACTIONS(4594), + [anon_sym_BSLASHGlsname] = ACTIONS(4594), + [anon_sym_BSLASHGLSname] = ACTIONS(4594), + [anon_sym_BSLASHglssymbol] = ACTIONS(4594), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4594), + [anon_sym_BSLASHglsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4594), + [anon_sym_BSLASHglsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4594), + [anon_sym_BSLASHglsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4594), + [anon_sym_BSLASHglsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4594), + [anon_sym_BSLASHglsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4594), + [anon_sym_BSLASHnewacronym] = ACTIONS(4594), + [anon_sym_BSLASHacrshort] = ACTIONS(4594), + [anon_sym_BSLASHAcrshort] = ACTIONS(4594), + [anon_sym_BSLASHACRshort] = ACTIONS(4594), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4594), + [anon_sym_BSLASHacrlong] = ACTIONS(4594), + [anon_sym_BSLASHAcrlong] = ACTIONS(4594), + [anon_sym_BSLASHACRlong] = ACTIONS(4594), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4594), + [anon_sym_BSLASHacrfull] = ACTIONS(4594), + [anon_sym_BSLASHAcrfull] = ACTIONS(4594), + [anon_sym_BSLASHACRfull] = ACTIONS(4594), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4594), + [anon_sym_BSLASHacs] = ACTIONS(4594), + [anon_sym_BSLASHAcs] = ACTIONS(4594), + [anon_sym_BSLASHacsp] = ACTIONS(4594), + [anon_sym_BSLASHAcsp] = ACTIONS(4594), + [anon_sym_BSLASHacl] = ACTIONS(4594), + [anon_sym_BSLASHAcl] = ACTIONS(4594), + [anon_sym_BSLASHaclp] = ACTIONS(4594), + [anon_sym_BSLASHAclp] = ACTIONS(4594), + [anon_sym_BSLASHacf] = ACTIONS(4594), + [anon_sym_BSLASHAcf] = ACTIONS(4594), + [anon_sym_BSLASHacfp] = ACTIONS(4594), + [anon_sym_BSLASHAcfp] = ACTIONS(4594), + [anon_sym_BSLASHac] = ACTIONS(4594), + [anon_sym_BSLASHAc] = ACTIONS(4594), + [anon_sym_BSLASHacp] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4594), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4594), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4594), + [anon_sym_BSLASHcolor] = ACTIONS(4594), + [anon_sym_BSLASHcolorbox] = ACTIONS(4594), + [anon_sym_BSLASHtextcolor] = ACTIONS(4594), + [anon_sym_BSLASHpagecolor] = ACTIONS(4594), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4594), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4594), + [anon_sym_BSLASHtext] = ACTIONS(4594), + [anon_sym_BSLASHintertext] = ACTIONS(4594), + [anon_sym_shortintertext] = ACTIONS(4594), }, [449] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(4525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4525), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4523), - [anon_sym_BSLASHpart] = ACTIONS(4525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddpart] = ACTIONS(4525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHchapter] = ACTIONS(4525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddchap] = ACTIONS(4525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsection] = ACTIONS(4525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddsec] = ACTIONS(4525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsection] = ACTIONS(4525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4659), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4662), - [anon_sym_BSLASHparagraph] = ACTIONS(4525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHitem] = ACTIONS(4525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), - [anon_sym_LBRACE] = ACTIONS(4523), - [sym_word] = ACTIONS(4525), - [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_DOLLAR_DOLLAR] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), - [anon_sym_DOLLAR] = ACTIONS(4525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), - [anon_sym_BSLASHbegin] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), - [anon_sym_BSLASHinclude] = ACTIONS(4525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), - [anon_sym_BSLASHinput] = ACTIONS(4525), - [anon_sym_BSLASHsubfile] = ACTIONS(4525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), - [anon_sym_BSLASHbibliography] = ACTIONS(4525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), - [anon_sym_BSLASHincludesvg] = ACTIONS(4525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), - [anon_sym_BSLASHimport] = ACTIONS(4525), - [anon_sym_BSLASHsubimport] = ACTIONS(4525), - [anon_sym_BSLASHinputfrom] = ACTIONS(4525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), - [anon_sym_BSLASHincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHcaption] = ACTIONS(4525), - [anon_sym_BSLASHcite] = ACTIONS(4525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCite] = ACTIONS(4525), - [anon_sym_BSLASHnocite] = ACTIONS(4525), - [anon_sym_BSLASHcitet] = ACTIONS(4525), - [anon_sym_BSLASHcitep] = ACTIONS(4525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteauthor] = ACTIONS(4525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitetitle] = ACTIONS(4525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteyear] = ACTIONS(4525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitedate] = ACTIONS(4525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteurl] = ACTIONS(4525), - [anon_sym_BSLASHfullcite] = ACTIONS(4525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), - [anon_sym_BSLASHcitealt] = ACTIONS(4525), - [anon_sym_BSLASHcitealp] = ACTIONS(4525), - [anon_sym_BSLASHcitetext] = ACTIONS(4525), - [anon_sym_BSLASHparencite] = ACTIONS(4525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHParencite] = ACTIONS(4525), - [anon_sym_BSLASHfootcite] = ACTIONS(4525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), - [anon_sym_BSLASHtextcite] = ACTIONS(4525), - [anon_sym_BSLASHTextcite] = ACTIONS(4525), - [anon_sym_BSLASHsmartcite] = ACTIONS(4525), - [anon_sym_BSLASHSmartcite] = ACTIONS(4525), - [anon_sym_BSLASHsupercite] = ACTIONS(4525), - [anon_sym_BSLASHautocite] = ACTIONS(4525), - [anon_sym_BSLASHAutocite] = ACTIONS(4525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHvolcite] = ACTIONS(4525), - [anon_sym_BSLASHVolcite] = ACTIONS(4525), - [anon_sym_BSLASHpvolcite] = ACTIONS(4525), - [anon_sym_BSLASHPvolcite] = ACTIONS(4525), - [anon_sym_BSLASHfvolcite] = ACTIONS(4525), - [anon_sym_BSLASHftvolcite] = ACTIONS(4525), - [anon_sym_BSLASHsvolcite] = ACTIONS(4525), - [anon_sym_BSLASHSvolcite] = ACTIONS(4525), - [anon_sym_BSLASHtvolcite] = ACTIONS(4525), - [anon_sym_BSLASHTvolcite] = ACTIONS(4525), - [anon_sym_BSLASHavolcite] = ACTIONS(4525), - [anon_sym_BSLASHAvolcite] = ACTIONS(4525), - [anon_sym_BSLASHnotecite] = ACTIONS(4525), - [anon_sym_BSLASHNotecite] = ACTIONS(4525), - [anon_sym_BSLASHpnotecite] = ACTIONS(4525), - [anon_sym_BSLASHPnotecite] = ACTIONS(4525), - [anon_sym_BSLASHfnotecite] = ACTIONS(4525), - [anon_sym_BSLASHlabel] = ACTIONS(4525), - [anon_sym_BSLASHref] = ACTIONS(4525), - [anon_sym_BSLASHeqref] = ACTIONS(4525), - [anon_sym_BSLASHvref] = ACTIONS(4525), - [anon_sym_BSLASHVref] = ACTIONS(4525), - [anon_sym_BSLASHautoref] = ACTIONS(4525), - [anon_sym_BSLASHpageref] = ACTIONS(4525), - [anon_sym_BSLASHcref] = ACTIONS(4525), - [anon_sym_BSLASHCref] = ACTIONS(4525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnameCref] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHlabelcref] = ACTIONS(4525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCrefrange] = ACTIONS(4525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnewlabel] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), - [anon_sym_BSLASHdef] = ACTIONS(4525), - [anon_sym_BSLASHlet] = ACTIONS(4525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), - [anon_sym_BSLASHgls] = ACTIONS(4525), - [anon_sym_BSLASHGls] = ACTIONS(4525), - [anon_sym_BSLASHGLS] = ACTIONS(4525), - [anon_sym_BSLASHglspl] = ACTIONS(4525), - [anon_sym_BSLASHGlspl] = ACTIONS(4525), - [anon_sym_BSLASHGLSpl] = ACTIONS(4525), - [anon_sym_BSLASHglsdisp] = ACTIONS(4525), - [anon_sym_BSLASHglslink] = ACTIONS(4525), - [anon_sym_BSLASHglstext] = ACTIONS(4525), - [anon_sym_BSLASHGlstext] = ACTIONS(4525), - [anon_sym_BSLASHGLStext] = ACTIONS(4525), - [anon_sym_BSLASHglsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), - [anon_sym_BSLASHglsplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSplural] = ACTIONS(4525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHglsname] = ACTIONS(4525), - [anon_sym_BSLASHGlsname] = ACTIONS(4525), - [anon_sym_BSLASHGLSname] = ACTIONS(4525), - [anon_sym_BSLASHglssymbol] = ACTIONS(4525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), - [anon_sym_BSLASHglsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), - [anon_sym_BSLASHglsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), - [anon_sym_BSLASHglsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), - [anon_sym_BSLASHglsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), - [anon_sym_BSLASHglsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), - [anon_sym_BSLASHnewacronym] = ACTIONS(4525), - [anon_sym_BSLASHacrshort] = ACTIONS(4525), - [anon_sym_BSLASHAcrshort] = ACTIONS(4525), - [anon_sym_BSLASHACRshort] = ACTIONS(4525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), - [anon_sym_BSLASHacrlong] = ACTIONS(4525), - [anon_sym_BSLASHAcrlong] = ACTIONS(4525), - [anon_sym_BSLASHACRlong] = ACTIONS(4525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), - [anon_sym_BSLASHacrfull] = ACTIONS(4525), - [anon_sym_BSLASHAcrfull] = ACTIONS(4525), - [anon_sym_BSLASHACRfull] = ACTIONS(4525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), - [anon_sym_BSLASHacs] = ACTIONS(4525), - [anon_sym_BSLASHAcs] = ACTIONS(4525), - [anon_sym_BSLASHacsp] = ACTIONS(4525), - [anon_sym_BSLASHAcsp] = ACTIONS(4525), - [anon_sym_BSLASHacl] = ACTIONS(4525), - [anon_sym_BSLASHAcl] = ACTIONS(4525), - [anon_sym_BSLASHaclp] = ACTIONS(4525), - [anon_sym_BSLASHAclp] = ACTIONS(4525), - [anon_sym_BSLASHacf] = ACTIONS(4525), - [anon_sym_BSLASHAcf] = ACTIONS(4525), - [anon_sym_BSLASHacfp] = ACTIONS(4525), - [anon_sym_BSLASHAcfp] = ACTIONS(4525), - [anon_sym_BSLASHac] = ACTIONS(4525), - [anon_sym_BSLASHAc] = ACTIONS(4525), - [anon_sym_BSLASHacp] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), - [anon_sym_BSLASHcolor] = ACTIONS(4525), - [anon_sym_BSLASHcolorbox] = ACTIONS(4525), - [anon_sym_BSLASHtextcolor] = ACTIONS(4525), - [anon_sym_BSLASHpagecolor] = ACTIONS(4525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), - [anon_sym_BSLASHtext] = ACTIONS(4525), - [anon_sym_BSLASHintertext] = ACTIONS(4525), - [anon_sym_shortintertext] = ACTIONS(4525), + [sym_command_name] = ACTIONS(4604), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(4602), + [anon_sym_COMMA] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_BSLASHpart] = ACTIONS(4604), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddpart] = ACTIONS(4604), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHchapter] = ACTIONS(4604), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddchap] = ACTIONS(4604), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsection] = ACTIONS(4604), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddsec] = ACTIONS(4604), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsection] = ACTIONS(4604), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4738), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4741), + [anon_sym_BSLASHparagraph] = ACTIONS(4604), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4604), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHitem] = ACTIONS(4604), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(4602), + [sym_word] = ACTIONS(4604), + [sym_placeholder] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym__] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_SQUOTE] = ACTIONS(4604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4602), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4602), + [anon_sym_BSLASHbegin] = ACTIONS(4604), + [anon_sym_BSLASHusepackage] = ACTIONS(4604), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4604), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4604), + [anon_sym_BSLASHinclude] = ACTIONS(4604), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4604), + [anon_sym_BSLASHinput] = ACTIONS(4604), + [anon_sym_BSLASHsubfile] = ACTIONS(4604), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4604), + [anon_sym_BSLASHbibliography] = ACTIONS(4604), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4604), + [anon_sym_BSLASHincludesvg] = ACTIONS(4604), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4604), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4604), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4604), + [anon_sym_BSLASHimport] = ACTIONS(4604), + [anon_sym_BSLASHsubimport] = ACTIONS(4604), + [anon_sym_BSLASHinputfrom] = ACTIONS(4604), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4604), + [anon_sym_BSLASHincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHcaption] = ACTIONS(4604), + [anon_sym_BSLASHcite] = ACTIONS(4604), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCite] = ACTIONS(4604), + [anon_sym_BSLASHnocite] = ACTIONS(4604), + [anon_sym_BSLASHcitet] = ACTIONS(4604), + [anon_sym_BSLASHcitep] = ACTIONS(4604), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteauthor] = ACTIONS(4604), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4604), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitetitle] = ACTIONS(4604), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteyear] = ACTIONS(4604), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitedate] = ACTIONS(4604), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteurl] = ACTIONS(4604), + [anon_sym_BSLASHfullcite] = ACTIONS(4604), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4604), + [anon_sym_BSLASHcitealt] = ACTIONS(4604), + [anon_sym_BSLASHcitealp] = ACTIONS(4604), + [anon_sym_BSLASHcitetext] = ACTIONS(4604), + [anon_sym_BSLASHparencite] = ACTIONS(4604), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHParencite] = ACTIONS(4604), + [anon_sym_BSLASHfootcite] = ACTIONS(4604), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4604), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4604), + [anon_sym_BSLASHtextcite] = ACTIONS(4604), + [anon_sym_BSLASHTextcite] = ACTIONS(4604), + [anon_sym_BSLASHsmartcite] = ACTIONS(4604), + [anon_sym_BSLASHSmartcite] = ACTIONS(4604), + [anon_sym_BSLASHsupercite] = ACTIONS(4604), + [anon_sym_BSLASHautocite] = ACTIONS(4604), + [anon_sym_BSLASHAutocite] = ACTIONS(4604), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHvolcite] = ACTIONS(4604), + [anon_sym_BSLASHVolcite] = ACTIONS(4604), + [anon_sym_BSLASHpvolcite] = ACTIONS(4604), + [anon_sym_BSLASHPvolcite] = ACTIONS(4604), + [anon_sym_BSLASHfvolcite] = ACTIONS(4604), + [anon_sym_BSLASHftvolcite] = ACTIONS(4604), + [anon_sym_BSLASHsvolcite] = ACTIONS(4604), + [anon_sym_BSLASHSvolcite] = ACTIONS(4604), + [anon_sym_BSLASHtvolcite] = ACTIONS(4604), + [anon_sym_BSLASHTvolcite] = ACTIONS(4604), + [anon_sym_BSLASHavolcite] = ACTIONS(4604), + [anon_sym_BSLASHAvolcite] = ACTIONS(4604), + [anon_sym_BSLASHnotecite] = ACTIONS(4604), + [anon_sym_BSLASHNotecite] = ACTIONS(4604), + [anon_sym_BSLASHpnotecite] = ACTIONS(4604), + [anon_sym_BSLASHPnotecite] = ACTIONS(4604), + [anon_sym_BSLASHfnotecite] = ACTIONS(4604), + [anon_sym_BSLASHlabel] = ACTIONS(4604), + [anon_sym_BSLASHref] = ACTIONS(4604), + [anon_sym_BSLASHeqref] = ACTIONS(4604), + [anon_sym_BSLASHvref] = ACTIONS(4604), + [anon_sym_BSLASHVref] = ACTIONS(4604), + [anon_sym_BSLASHautoref] = ACTIONS(4604), + [anon_sym_BSLASHpageref] = ACTIONS(4604), + [anon_sym_BSLASHcref] = ACTIONS(4604), + [anon_sym_BSLASHCref] = ACTIONS(4604), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnameCref] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHlabelcref] = ACTIONS(4604), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCrefrange] = ACTIONS(4604), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnewlabel] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4604), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4604), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4604), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdef] = ACTIONS(4604), + [anon_sym_BSLASHlet] = ACTIONS(4604), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4604), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4604), + [anon_sym_BSLASHgls] = ACTIONS(4604), + [anon_sym_BSLASHGls] = ACTIONS(4604), + [anon_sym_BSLASHGLS] = ACTIONS(4604), + [anon_sym_BSLASHglspl] = ACTIONS(4604), + [anon_sym_BSLASHGlspl] = ACTIONS(4604), + [anon_sym_BSLASHGLSpl] = ACTIONS(4604), + [anon_sym_BSLASHglsdisp] = ACTIONS(4604), + [anon_sym_BSLASHglslink] = ACTIONS(4604), + [anon_sym_BSLASHglstext] = ACTIONS(4604), + [anon_sym_BSLASHGlstext] = ACTIONS(4604), + [anon_sym_BSLASHGLStext] = ACTIONS(4604), + [anon_sym_BSLASHglsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4604), + [anon_sym_BSLASHglsplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSplural] = ACTIONS(4604), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHglsname] = ACTIONS(4604), + [anon_sym_BSLASHGlsname] = ACTIONS(4604), + [anon_sym_BSLASHGLSname] = ACTIONS(4604), + [anon_sym_BSLASHglssymbol] = ACTIONS(4604), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4604), + [anon_sym_BSLASHglsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4604), + [anon_sym_BSLASHglsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4604), + [anon_sym_BSLASHglsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4604), + [anon_sym_BSLASHglsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4604), + [anon_sym_BSLASHglsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4604), + [anon_sym_BSLASHnewacronym] = ACTIONS(4604), + [anon_sym_BSLASHacrshort] = ACTIONS(4604), + [anon_sym_BSLASHAcrshort] = ACTIONS(4604), + [anon_sym_BSLASHACRshort] = ACTIONS(4604), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4604), + [anon_sym_BSLASHacrlong] = ACTIONS(4604), + [anon_sym_BSLASHAcrlong] = ACTIONS(4604), + [anon_sym_BSLASHACRlong] = ACTIONS(4604), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4604), + [anon_sym_BSLASHacrfull] = ACTIONS(4604), + [anon_sym_BSLASHAcrfull] = ACTIONS(4604), + [anon_sym_BSLASHACRfull] = ACTIONS(4604), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4604), + [anon_sym_BSLASHacs] = ACTIONS(4604), + [anon_sym_BSLASHAcs] = ACTIONS(4604), + [anon_sym_BSLASHacsp] = ACTIONS(4604), + [anon_sym_BSLASHAcsp] = ACTIONS(4604), + [anon_sym_BSLASHacl] = ACTIONS(4604), + [anon_sym_BSLASHAcl] = ACTIONS(4604), + [anon_sym_BSLASHaclp] = ACTIONS(4604), + [anon_sym_BSLASHAclp] = ACTIONS(4604), + [anon_sym_BSLASHacf] = ACTIONS(4604), + [anon_sym_BSLASHAcf] = ACTIONS(4604), + [anon_sym_BSLASHacfp] = ACTIONS(4604), + [anon_sym_BSLASHAcfp] = ACTIONS(4604), + [anon_sym_BSLASHac] = ACTIONS(4604), + [anon_sym_BSLASHAc] = ACTIONS(4604), + [anon_sym_BSLASHacp] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4604), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4604), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4604), + [anon_sym_BSLASHcolor] = ACTIONS(4604), + [anon_sym_BSLASHcolorbox] = ACTIONS(4604), + [anon_sym_BSLASHtextcolor] = ACTIONS(4604), + [anon_sym_BSLASHpagecolor] = ACTIONS(4604), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4604), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4604), + [anon_sym_BSLASHtext] = ACTIONS(4604), + [anon_sym_BSLASHintertext] = ACTIONS(4604), + [anon_sym_shortintertext] = ACTIONS(4604), }, [450] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHend] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHend] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [451] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(4535), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_RBRACK] = ACTIONS(4533), - [anon_sym_COMMA] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_BSLASHpart] = ACTIONS(4535), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddpart] = ACTIONS(4535), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHchapter] = ACTIONS(4535), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddchap] = ACTIONS(4535), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsection] = ACTIONS(4535), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddsec] = ACTIONS(4535), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubsection] = ACTIONS(4665), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4668), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHparagraph] = ACTIONS(4535), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHitem] = ACTIONS(4535), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [sym_word] = ACTIONS(4535), - [sym_placeholder] = ACTIONS(4533), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym__] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), - [anon_sym_BSLASHbegin] = ACTIONS(4535), - [anon_sym_BSLASHusepackage] = ACTIONS(4535), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), - [anon_sym_BSLASHinclude] = ACTIONS(4535), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), - [anon_sym_BSLASHinput] = ACTIONS(4535), - [anon_sym_BSLASHsubfile] = ACTIONS(4535), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), - [anon_sym_BSLASHbibliography] = ACTIONS(4535), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), - [anon_sym_BSLASHincludesvg] = ACTIONS(4535), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), - [anon_sym_BSLASHimport] = ACTIONS(4535), - [anon_sym_BSLASHsubimport] = ACTIONS(4535), - [anon_sym_BSLASHinputfrom] = ACTIONS(4535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), - [anon_sym_BSLASHincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHcaption] = ACTIONS(4535), - [anon_sym_BSLASHcite] = ACTIONS(4535), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCite] = ACTIONS(4535), - [anon_sym_BSLASHnocite] = ACTIONS(4535), - [anon_sym_BSLASHcitet] = ACTIONS(4535), - [anon_sym_BSLASHcitep] = ACTIONS(4535), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteauthor] = ACTIONS(4535), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitetitle] = ACTIONS(4535), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteyear] = ACTIONS(4535), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitedate] = ACTIONS(4535), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteurl] = ACTIONS(4535), - [anon_sym_BSLASHfullcite] = ACTIONS(4535), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), - [anon_sym_BSLASHcitealt] = ACTIONS(4535), - [anon_sym_BSLASHcitealp] = ACTIONS(4535), - [anon_sym_BSLASHcitetext] = ACTIONS(4535), - [anon_sym_BSLASHparencite] = ACTIONS(4535), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHParencite] = ACTIONS(4535), - [anon_sym_BSLASHfootcite] = ACTIONS(4535), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), - [anon_sym_BSLASHtextcite] = ACTIONS(4535), - [anon_sym_BSLASHTextcite] = ACTIONS(4535), - [anon_sym_BSLASHsmartcite] = ACTIONS(4535), - [anon_sym_BSLASHSmartcite] = ACTIONS(4535), - [anon_sym_BSLASHsupercite] = ACTIONS(4535), - [anon_sym_BSLASHautocite] = ACTIONS(4535), - [anon_sym_BSLASHAutocite] = ACTIONS(4535), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHvolcite] = ACTIONS(4535), - [anon_sym_BSLASHVolcite] = ACTIONS(4535), - [anon_sym_BSLASHpvolcite] = ACTIONS(4535), - [anon_sym_BSLASHPvolcite] = ACTIONS(4535), - [anon_sym_BSLASHfvolcite] = ACTIONS(4535), - [anon_sym_BSLASHftvolcite] = ACTIONS(4535), - [anon_sym_BSLASHsvolcite] = ACTIONS(4535), - [anon_sym_BSLASHSvolcite] = ACTIONS(4535), - [anon_sym_BSLASHtvolcite] = ACTIONS(4535), - [anon_sym_BSLASHTvolcite] = ACTIONS(4535), - [anon_sym_BSLASHavolcite] = ACTIONS(4535), - [anon_sym_BSLASHAvolcite] = ACTIONS(4535), - [anon_sym_BSLASHnotecite] = ACTIONS(4535), - [anon_sym_BSLASHNotecite] = ACTIONS(4535), - [anon_sym_BSLASHpnotecite] = ACTIONS(4535), - [anon_sym_BSLASHPnotecite] = ACTIONS(4535), - [anon_sym_BSLASHfnotecite] = ACTIONS(4535), - [anon_sym_BSLASHlabel] = ACTIONS(4535), - [anon_sym_BSLASHref] = ACTIONS(4535), - [anon_sym_BSLASHeqref] = ACTIONS(4535), - [anon_sym_BSLASHvref] = ACTIONS(4535), - [anon_sym_BSLASHVref] = ACTIONS(4535), - [anon_sym_BSLASHautoref] = ACTIONS(4535), - [anon_sym_BSLASHpageref] = ACTIONS(4535), - [anon_sym_BSLASHcref] = ACTIONS(4535), - [anon_sym_BSLASHCref] = ACTIONS(4535), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnameCref] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHlabelcref] = ACTIONS(4535), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCrefrange] = ACTIONS(4535), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnewlabel] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), - [anon_sym_BSLASHdef] = ACTIONS(4535), - [anon_sym_BSLASHlet] = ACTIONS(4535), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), - [anon_sym_BSLASHgls] = ACTIONS(4535), - [anon_sym_BSLASHGls] = ACTIONS(4535), - [anon_sym_BSLASHGLS] = ACTIONS(4535), - [anon_sym_BSLASHglspl] = ACTIONS(4535), - [anon_sym_BSLASHGlspl] = ACTIONS(4535), - [anon_sym_BSLASHGLSpl] = ACTIONS(4535), - [anon_sym_BSLASHglsdisp] = ACTIONS(4535), - [anon_sym_BSLASHglslink] = ACTIONS(4535), - [anon_sym_BSLASHglstext] = ACTIONS(4535), - [anon_sym_BSLASHGlstext] = ACTIONS(4535), - [anon_sym_BSLASHGLStext] = ACTIONS(4535), - [anon_sym_BSLASHglsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), - [anon_sym_BSLASHglsplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSplural] = ACTIONS(4535), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHglsname] = ACTIONS(4535), - [anon_sym_BSLASHGlsname] = ACTIONS(4535), - [anon_sym_BSLASHGLSname] = ACTIONS(4535), - [anon_sym_BSLASHglssymbol] = ACTIONS(4535), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), - [anon_sym_BSLASHglsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), - [anon_sym_BSLASHglsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), - [anon_sym_BSLASHglsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), - [anon_sym_BSLASHglsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), - [anon_sym_BSLASHglsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), - [anon_sym_BSLASHnewacronym] = ACTIONS(4535), - [anon_sym_BSLASHacrshort] = ACTIONS(4535), - [anon_sym_BSLASHAcrshort] = ACTIONS(4535), - [anon_sym_BSLASHACRshort] = ACTIONS(4535), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), - [anon_sym_BSLASHacrlong] = ACTIONS(4535), - [anon_sym_BSLASHAcrlong] = ACTIONS(4535), - [anon_sym_BSLASHACRlong] = ACTIONS(4535), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), - [anon_sym_BSLASHacrfull] = ACTIONS(4535), - [anon_sym_BSLASHAcrfull] = ACTIONS(4535), - [anon_sym_BSLASHACRfull] = ACTIONS(4535), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), - [anon_sym_BSLASHacs] = ACTIONS(4535), - [anon_sym_BSLASHAcs] = ACTIONS(4535), - [anon_sym_BSLASHacsp] = ACTIONS(4535), - [anon_sym_BSLASHAcsp] = ACTIONS(4535), - [anon_sym_BSLASHacl] = ACTIONS(4535), - [anon_sym_BSLASHAcl] = ACTIONS(4535), - [anon_sym_BSLASHaclp] = ACTIONS(4535), - [anon_sym_BSLASHAclp] = ACTIONS(4535), - [anon_sym_BSLASHacf] = ACTIONS(4535), - [anon_sym_BSLASHAcf] = ACTIONS(4535), - [anon_sym_BSLASHacfp] = ACTIONS(4535), - [anon_sym_BSLASHAcfp] = ACTIONS(4535), - [anon_sym_BSLASHac] = ACTIONS(4535), - [anon_sym_BSLASHAc] = ACTIONS(4535), - [anon_sym_BSLASHacp] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), - [anon_sym_BSLASHcolor] = ACTIONS(4535), - [anon_sym_BSLASHcolorbox] = ACTIONS(4535), - [anon_sym_BSLASHtextcolor] = ACTIONS(4535), - [anon_sym_BSLASHpagecolor] = ACTIONS(4535), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), - [anon_sym_BSLASHtext] = ACTIONS(4535), - [anon_sym_BSLASHintertext] = ACTIONS(4535), - [anon_sym_shortintertext] = ACTIONS(4535), + [sym_command_name] = ACTIONS(4614), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_EQ] = ACTIONS(4612), + [anon_sym_BSLASHpart] = ACTIONS(4614), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddpart] = ACTIONS(4614), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHchapter] = ACTIONS(4614), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddchap] = ACTIONS(4614), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsection] = ACTIONS(4614), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddsec] = ACTIONS(4614), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubsection] = ACTIONS(4744), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4747), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4614), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHparagraph] = ACTIONS(4614), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4614), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHitem] = ACTIONS(4614), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [sym_word] = ACTIONS(4614), + [sym_placeholder] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4614), + [anon_sym__] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_SQUOTE] = ACTIONS(4614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4612), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4612), + [anon_sym_BSLASHbegin] = ACTIONS(4614), + [anon_sym_BSLASHusepackage] = ACTIONS(4614), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4614), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4614), + [anon_sym_BSLASHinclude] = ACTIONS(4614), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4614), + [anon_sym_BSLASHinput] = ACTIONS(4614), + [anon_sym_BSLASHsubfile] = ACTIONS(4614), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4614), + [anon_sym_BSLASHbibliography] = ACTIONS(4614), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4614), + [anon_sym_BSLASHincludesvg] = ACTIONS(4614), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4614), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4614), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4614), + [anon_sym_BSLASHimport] = ACTIONS(4614), + [anon_sym_BSLASHsubimport] = ACTIONS(4614), + [anon_sym_BSLASHinputfrom] = ACTIONS(4614), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4614), + [anon_sym_BSLASHincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHcaption] = ACTIONS(4614), + [anon_sym_BSLASHcite] = ACTIONS(4614), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCite] = ACTIONS(4614), + [anon_sym_BSLASHnocite] = ACTIONS(4614), + [anon_sym_BSLASHcitet] = ACTIONS(4614), + [anon_sym_BSLASHcitep] = ACTIONS(4614), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteauthor] = ACTIONS(4614), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4614), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitetitle] = ACTIONS(4614), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteyear] = ACTIONS(4614), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitedate] = ACTIONS(4614), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteurl] = ACTIONS(4614), + [anon_sym_BSLASHfullcite] = ACTIONS(4614), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4614), + [anon_sym_BSLASHcitealt] = ACTIONS(4614), + [anon_sym_BSLASHcitealp] = ACTIONS(4614), + [anon_sym_BSLASHcitetext] = ACTIONS(4614), + [anon_sym_BSLASHparencite] = ACTIONS(4614), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHParencite] = ACTIONS(4614), + [anon_sym_BSLASHfootcite] = ACTIONS(4614), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4614), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4614), + [anon_sym_BSLASHtextcite] = ACTIONS(4614), + [anon_sym_BSLASHTextcite] = ACTIONS(4614), + [anon_sym_BSLASHsmartcite] = ACTIONS(4614), + [anon_sym_BSLASHSmartcite] = ACTIONS(4614), + [anon_sym_BSLASHsupercite] = ACTIONS(4614), + [anon_sym_BSLASHautocite] = ACTIONS(4614), + [anon_sym_BSLASHAutocite] = ACTIONS(4614), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHvolcite] = ACTIONS(4614), + [anon_sym_BSLASHVolcite] = ACTIONS(4614), + [anon_sym_BSLASHpvolcite] = ACTIONS(4614), + [anon_sym_BSLASHPvolcite] = ACTIONS(4614), + [anon_sym_BSLASHfvolcite] = ACTIONS(4614), + [anon_sym_BSLASHftvolcite] = ACTIONS(4614), + [anon_sym_BSLASHsvolcite] = ACTIONS(4614), + [anon_sym_BSLASHSvolcite] = ACTIONS(4614), + [anon_sym_BSLASHtvolcite] = ACTIONS(4614), + [anon_sym_BSLASHTvolcite] = ACTIONS(4614), + [anon_sym_BSLASHavolcite] = ACTIONS(4614), + [anon_sym_BSLASHAvolcite] = ACTIONS(4614), + [anon_sym_BSLASHnotecite] = ACTIONS(4614), + [anon_sym_BSLASHNotecite] = ACTIONS(4614), + [anon_sym_BSLASHpnotecite] = ACTIONS(4614), + [anon_sym_BSLASHPnotecite] = ACTIONS(4614), + [anon_sym_BSLASHfnotecite] = ACTIONS(4614), + [anon_sym_BSLASHlabel] = ACTIONS(4614), + [anon_sym_BSLASHref] = ACTIONS(4614), + [anon_sym_BSLASHeqref] = ACTIONS(4614), + [anon_sym_BSLASHvref] = ACTIONS(4614), + [anon_sym_BSLASHVref] = ACTIONS(4614), + [anon_sym_BSLASHautoref] = ACTIONS(4614), + [anon_sym_BSLASHpageref] = ACTIONS(4614), + [anon_sym_BSLASHcref] = ACTIONS(4614), + [anon_sym_BSLASHCref] = ACTIONS(4614), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnameCref] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHlabelcref] = ACTIONS(4614), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCrefrange] = ACTIONS(4614), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnewlabel] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4614), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4614), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4614), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdef] = ACTIONS(4614), + [anon_sym_BSLASHlet] = ACTIONS(4614), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4614), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4614), + [anon_sym_BSLASHgls] = ACTIONS(4614), + [anon_sym_BSLASHGls] = ACTIONS(4614), + [anon_sym_BSLASHGLS] = ACTIONS(4614), + [anon_sym_BSLASHglspl] = ACTIONS(4614), + [anon_sym_BSLASHGlspl] = ACTIONS(4614), + [anon_sym_BSLASHGLSpl] = ACTIONS(4614), + [anon_sym_BSLASHglsdisp] = ACTIONS(4614), + [anon_sym_BSLASHglslink] = ACTIONS(4614), + [anon_sym_BSLASHglstext] = ACTIONS(4614), + [anon_sym_BSLASHGlstext] = ACTIONS(4614), + [anon_sym_BSLASHGLStext] = ACTIONS(4614), + [anon_sym_BSLASHglsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4614), + [anon_sym_BSLASHglsplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSplural] = ACTIONS(4614), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHglsname] = ACTIONS(4614), + [anon_sym_BSLASHGlsname] = ACTIONS(4614), + [anon_sym_BSLASHGLSname] = ACTIONS(4614), + [anon_sym_BSLASHglssymbol] = ACTIONS(4614), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4614), + [anon_sym_BSLASHglsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4614), + [anon_sym_BSLASHglsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4614), + [anon_sym_BSLASHglsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4614), + [anon_sym_BSLASHglsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4614), + [anon_sym_BSLASHglsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4614), + [anon_sym_BSLASHnewacronym] = ACTIONS(4614), + [anon_sym_BSLASHacrshort] = ACTIONS(4614), + [anon_sym_BSLASHAcrshort] = ACTIONS(4614), + [anon_sym_BSLASHACRshort] = ACTIONS(4614), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4614), + [anon_sym_BSLASHacrlong] = ACTIONS(4614), + [anon_sym_BSLASHAcrlong] = ACTIONS(4614), + [anon_sym_BSLASHACRlong] = ACTIONS(4614), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4614), + [anon_sym_BSLASHacrfull] = ACTIONS(4614), + [anon_sym_BSLASHAcrfull] = ACTIONS(4614), + [anon_sym_BSLASHACRfull] = ACTIONS(4614), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4614), + [anon_sym_BSLASHacs] = ACTIONS(4614), + [anon_sym_BSLASHAcs] = ACTIONS(4614), + [anon_sym_BSLASHacsp] = ACTIONS(4614), + [anon_sym_BSLASHAcsp] = ACTIONS(4614), + [anon_sym_BSLASHacl] = ACTIONS(4614), + [anon_sym_BSLASHAcl] = ACTIONS(4614), + [anon_sym_BSLASHaclp] = ACTIONS(4614), + [anon_sym_BSLASHAclp] = ACTIONS(4614), + [anon_sym_BSLASHacf] = ACTIONS(4614), + [anon_sym_BSLASHAcf] = ACTIONS(4614), + [anon_sym_BSLASHacfp] = ACTIONS(4614), + [anon_sym_BSLASHAcfp] = ACTIONS(4614), + [anon_sym_BSLASHac] = ACTIONS(4614), + [anon_sym_BSLASHAc] = ACTIONS(4614), + [anon_sym_BSLASHacp] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4614), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4614), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4614), + [anon_sym_BSLASHcolor] = ACTIONS(4614), + [anon_sym_BSLASHcolorbox] = ACTIONS(4614), + [anon_sym_BSLASHtextcolor] = ACTIONS(4614), + [anon_sym_BSLASHpagecolor] = ACTIONS(4614), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4614), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4614), + [anon_sym_BSLASHtext] = ACTIONS(4614), + [anon_sym_BSLASHintertext] = ACTIONS(4614), + [anon_sym_shortintertext] = ACTIONS(4614), }, [452] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHend] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHend] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [453] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHend] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHend] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [454] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHend] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHend] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [455] = { [sym_curly_group] = STATE(1162), [sym_mixed_group] = STATE(1162), [aux_sym_generic_command_repeat1] = STATE(531), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_BSLASHpart] = ACTIONS(4451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddpart] = ACTIONS(4451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHchapter] = ACTIONS(4451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddchap] = ACTIONS(4451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsection] = ACTIONS(4451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddsec] = ACTIONS(4451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHparagraph] = ACTIONS(4451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHitem] = ACTIONS(4451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASHbegin] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_BSLASHpart] = ACTIONS(4530), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddpart] = ACTIONS(4530), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHchapter] = ACTIONS(4530), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddchap] = ACTIONS(4530), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsection] = ACTIONS(4530), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddsec] = ACTIONS(4530), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHparagraph] = ACTIONS(4530), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4530), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHitem] = ACTIONS(4530), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASHbegin] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [456] = { [sym__section_declaration] = STATE(148), [sym_section] = STATE(456), [aux_sym__section_repeat3] = STATE(456), - [sym_command_name] = ACTIONS(4545), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4545), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_RBRACK] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_BSLASHpart] = ACTIONS(4545), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddpart] = ACTIONS(4545), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHchapter] = ACTIONS(4545), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddchap] = ACTIONS(4545), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsection] = ACTIONS(4671), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4674), - [anon_sym_BSLASHaddsec] = ACTIONS(4671), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4674), - [anon_sym_BSLASHsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHparagraph] = ACTIONS(4545), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(4545), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [sym_word] = ACTIONS(4545), - [sym_placeholder] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym__] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_PIPE] = ACTIONS(4545), - [anon_sym_COLON] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4545), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), - [anon_sym_BSLASHbegin] = ACTIONS(4545), - [anon_sym_BSLASHusepackage] = ACTIONS(4545), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), - [anon_sym_BSLASHinclude] = ACTIONS(4545), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), - [anon_sym_BSLASHinput] = ACTIONS(4545), - [anon_sym_BSLASHsubfile] = ACTIONS(4545), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), - [anon_sym_BSLASHincludesvg] = ACTIONS(4545), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), - [anon_sym_BSLASHimport] = ACTIONS(4545), - [anon_sym_BSLASHsubimport] = ACTIONS(4545), - [anon_sym_BSLASHinputfrom] = ACTIONS(4545), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), - [anon_sym_BSLASHincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHcaption] = ACTIONS(4545), - [anon_sym_BSLASHcite] = ACTIONS(4545), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCite] = ACTIONS(4545), - [anon_sym_BSLASHnocite] = ACTIONS(4545), - [anon_sym_BSLASHcitet] = ACTIONS(4545), - [anon_sym_BSLASHcitep] = ACTIONS(4545), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteauthor] = ACTIONS(4545), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitetitle] = ACTIONS(4545), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteyear] = ACTIONS(4545), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitedate] = ACTIONS(4545), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteurl] = ACTIONS(4545), - [anon_sym_BSLASHfullcite] = ACTIONS(4545), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), - [anon_sym_BSLASHcitealt] = ACTIONS(4545), - [anon_sym_BSLASHcitealp] = ACTIONS(4545), - [anon_sym_BSLASHcitetext] = ACTIONS(4545), - [anon_sym_BSLASHparencite] = ACTIONS(4545), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHParencite] = ACTIONS(4545), - [anon_sym_BSLASHfootcite] = ACTIONS(4545), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), - [anon_sym_BSLASHtextcite] = ACTIONS(4545), - [anon_sym_BSLASHTextcite] = ACTIONS(4545), - [anon_sym_BSLASHsmartcite] = ACTIONS(4545), - [anon_sym_BSLASHSmartcite] = ACTIONS(4545), - [anon_sym_BSLASHsupercite] = ACTIONS(4545), - [anon_sym_BSLASHautocite] = ACTIONS(4545), - [anon_sym_BSLASHAutocite] = ACTIONS(4545), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHvolcite] = ACTIONS(4545), - [anon_sym_BSLASHVolcite] = ACTIONS(4545), - [anon_sym_BSLASHpvolcite] = ACTIONS(4545), - [anon_sym_BSLASHPvolcite] = ACTIONS(4545), - [anon_sym_BSLASHfvolcite] = ACTIONS(4545), - [anon_sym_BSLASHftvolcite] = ACTIONS(4545), - [anon_sym_BSLASHsvolcite] = ACTIONS(4545), - [anon_sym_BSLASHSvolcite] = ACTIONS(4545), - [anon_sym_BSLASHtvolcite] = ACTIONS(4545), - [anon_sym_BSLASHTvolcite] = ACTIONS(4545), - [anon_sym_BSLASHavolcite] = ACTIONS(4545), - [anon_sym_BSLASHAvolcite] = ACTIONS(4545), - [anon_sym_BSLASHnotecite] = ACTIONS(4545), - [anon_sym_BSLASHNotecite] = ACTIONS(4545), - [anon_sym_BSLASHpnotecite] = ACTIONS(4545), - [anon_sym_BSLASHPnotecite] = ACTIONS(4545), - [anon_sym_BSLASHfnotecite] = ACTIONS(4545), - [anon_sym_BSLASHlabel] = ACTIONS(4545), - [anon_sym_BSLASHref] = ACTIONS(4545), - [anon_sym_BSLASHeqref] = ACTIONS(4545), - [anon_sym_BSLASHvref] = ACTIONS(4545), - [anon_sym_BSLASHVref] = ACTIONS(4545), - [anon_sym_BSLASHautoref] = ACTIONS(4545), - [anon_sym_BSLASHpageref] = ACTIONS(4545), - [anon_sym_BSLASHcref] = ACTIONS(4545), - [anon_sym_BSLASHCref] = ACTIONS(4545), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnameCref] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHlabelcref] = ACTIONS(4545), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCrefrange] = ACTIONS(4545), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnewlabel] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), - [anon_sym_BSLASHdef] = ACTIONS(4545), - [anon_sym_BSLASHlet] = ACTIONS(4545), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), - [anon_sym_BSLASHgls] = ACTIONS(4545), - [anon_sym_BSLASHGls] = ACTIONS(4545), - [anon_sym_BSLASHGLS] = ACTIONS(4545), - [anon_sym_BSLASHglspl] = ACTIONS(4545), - [anon_sym_BSLASHGlspl] = ACTIONS(4545), - [anon_sym_BSLASHGLSpl] = ACTIONS(4545), - [anon_sym_BSLASHglsdisp] = ACTIONS(4545), - [anon_sym_BSLASHglslink] = ACTIONS(4545), - [anon_sym_BSLASHglstext] = ACTIONS(4545), - [anon_sym_BSLASHGlstext] = ACTIONS(4545), - [anon_sym_BSLASHGLStext] = ACTIONS(4545), - [anon_sym_BSLASHglsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), - [anon_sym_BSLASHglsplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSplural] = ACTIONS(4545), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHglsname] = ACTIONS(4545), - [anon_sym_BSLASHGlsname] = ACTIONS(4545), - [anon_sym_BSLASHGLSname] = ACTIONS(4545), - [anon_sym_BSLASHglssymbol] = ACTIONS(4545), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), - [anon_sym_BSLASHglsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), - [anon_sym_BSLASHglsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), - [anon_sym_BSLASHglsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), - [anon_sym_BSLASHglsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), - [anon_sym_BSLASHglsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), - [anon_sym_BSLASHnewacronym] = ACTIONS(4545), - [anon_sym_BSLASHacrshort] = ACTIONS(4545), - [anon_sym_BSLASHAcrshort] = ACTIONS(4545), - [anon_sym_BSLASHACRshort] = ACTIONS(4545), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), - [anon_sym_BSLASHacrlong] = ACTIONS(4545), - [anon_sym_BSLASHAcrlong] = ACTIONS(4545), - [anon_sym_BSLASHACRlong] = ACTIONS(4545), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), - [anon_sym_BSLASHacrfull] = ACTIONS(4545), - [anon_sym_BSLASHAcrfull] = ACTIONS(4545), - [anon_sym_BSLASHACRfull] = ACTIONS(4545), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), - [anon_sym_BSLASHacs] = ACTIONS(4545), - [anon_sym_BSLASHAcs] = ACTIONS(4545), - [anon_sym_BSLASHacsp] = ACTIONS(4545), - [anon_sym_BSLASHAcsp] = ACTIONS(4545), - [anon_sym_BSLASHacl] = ACTIONS(4545), - [anon_sym_BSLASHAcl] = ACTIONS(4545), - [anon_sym_BSLASHaclp] = ACTIONS(4545), - [anon_sym_BSLASHAclp] = ACTIONS(4545), - [anon_sym_BSLASHacf] = ACTIONS(4545), - [anon_sym_BSLASHAcf] = ACTIONS(4545), - [anon_sym_BSLASHacfp] = ACTIONS(4545), - [anon_sym_BSLASHAcfp] = ACTIONS(4545), - [anon_sym_BSLASHac] = ACTIONS(4545), - [anon_sym_BSLASHAc] = ACTIONS(4545), - [anon_sym_BSLASHacp] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), - [anon_sym_BSLASHcolor] = ACTIONS(4545), - [anon_sym_BSLASHcolorbox] = ACTIONS(4545), - [anon_sym_BSLASHtextcolor] = ACTIONS(4545), - [anon_sym_BSLASHpagecolor] = ACTIONS(4545), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), - [anon_sym_BSLASHtext] = ACTIONS(4545), - [anon_sym_BSLASHintertext] = ACTIONS(4545), - [anon_sym_shortintertext] = ACTIONS(4545), + [sym_command_name] = ACTIONS(4624), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(4622), + [anon_sym_BSLASHpart] = ACTIONS(4624), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddpart] = ACTIONS(4624), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHchapter] = ACTIONS(4624), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddchap] = ACTIONS(4624), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsection] = ACTIONS(4750), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4753), + [anon_sym_BSLASHaddsec] = ACTIONS(4750), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4753), + [anon_sym_BSLASHsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHparagraph] = ACTIONS(4624), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4624), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHitem] = ACTIONS(4624), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [sym_word] = ACTIONS(4624), + [sym_placeholder] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4624), + [anon_sym__] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_SQUOTE] = ACTIONS(4624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4624), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4622), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4622), + [anon_sym_BSLASHbegin] = ACTIONS(4624), + [anon_sym_BSLASHusepackage] = ACTIONS(4624), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4624), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4624), + [anon_sym_BSLASHinclude] = ACTIONS(4624), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4624), + [anon_sym_BSLASHinput] = ACTIONS(4624), + [anon_sym_BSLASHsubfile] = ACTIONS(4624), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4624), + [anon_sym_BSLASHbibliography] = ACTIONS(4624), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4624), + [anon_sym_BSLASHincludesvg] = ACTIONS(4624), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4624), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4624), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4624), + [anon_sym_BSLASHimport] = ACTIONS(4624), + [anon_sym_BSLASHsubimport] = ACTIONS(4624), + [anon_sym_BSLASHinputfrom] = ACTIONS(4624), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4624), + [anon_sym_BSLASHincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHcaption] = ACTIONS(4624), + [anon_sym_BSLASHcite] = ACTIONS(4624), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCite] = ACTIONS(4624), + [anon_sym_BSLASHnocite] = ACTIONS(4624), + [anon_sym_BSLASHcitet] = ACTIONS(4624), + [anon_sym_BSLASHcitep] = ACTIONS(4624), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteauthor] = ACTIONS(4624), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4624), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitetitle] = ACTIONS(4624), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteyear] = ACTIONS(4624), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitedate] = ACTIONS(4624), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteurl] = ACTIONS(4624), + [anon_sym_BSLASHfullcite] = ACTIONS(4624), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4624), + [anon_sym_BSLASHcitealt] = ACTIONS(4624), + [anon_sym_BSLASHcitealp] = ACTIONS(4624), + [anon_sym_BSLASHcitetext] = ACTIONS(4624), + [anon_sym_BSLASHparencite] = ACTIONS(4624), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHParencite] = ACTIONS(4624), + [anon_sym_BSLASHfootcite] = ACTIONS(4624), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4624), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4624), + [anon_sym_BSLASHtextcite] = ACTIONS(4624), + [anon_sym_BSLASHTextcite] = ACTIONS(4624), + [anon_sym_BSLASHsmartcite] = ACTIONS(4624), + [anon_sym_BSLASHSmartcite] = ACTIONS(4624), + [anon_sym_BSLASHsupercite] = ACTIONS(4624), + [anon_sym_BSLASHautocite] = ACTIONS(4624), + [anon_sym_BSLASHAutocite] = ACTIONS(4624), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHvolcite] = ACTIONS(4624), + [anon_sym_BSLASHVolcite] = ACTIONS(4624), + [anon_sym_BSLASHpvolcite] = ACTIONS(4624), + [anon_sym_BSLASHPvolcite] = ACTIONS(4624), + [anon_sym_BSLASHfvolcite] = ACTIONS(4624), + [anon_sym_BSLASHftvolcite] = ACTIONS(4624), + [anon_sym_BSLASHsvolcite] = ACTIONS(4624), + [anon_sym_BSLASHSvolcite] = ACTIONS(4624), + [anon_sym_BSLASHtvolcite] = ACTIONS(4624), + [anon_sym_BSLASHTvolcite] = ACTIONS(4624), + [anon_sym_BSLASHavolcite] = ACTIONS(4624), + [anon_sym_BSLASHAvolcite] = ACTIONS(4624), + [anon_sym_BSLASHnotecite] = ACTIONS(4624), + [anon_sym_BSLASHNotecite] = ACTIONS(4624), + [anon_sym_BSLASHpnotecite] = ACTIONS(4624), + [anon_sym_BSLASHPnotecite] = ACTIONS(4624), + [anon_sym_BSLASHfnotecite] = ACTIONS(4624), + [anon_sym_BSLASHlabel] = ACTIONS(4624), + [anon_sym_BSLASHref] = ACTIONS(4624), + [anon_sym_BSLASHeqref] = ACTIONS(4624), + [anon_sym_BSLASHvref] = ACTIONS(4624), + [anon_sym_BSLASHVref] = ACTIONS(4624), + [anon_sym_BSLASHautoref] = ACTIONS(4624), + [anon_sym_BSLASHpageref] = ACTIONS(4624), + [anon_sym_BSLASHcref] = ACTIONS(4624), + [anon_sym_BSLASHCref] = ACTIONS(4624), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnameCref] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHlabelcref] = ACTIONS(4624), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCrefrange] = ACTIONS(4624), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnewlabel] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4624), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4624), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4624), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdef] = ACTIONS(4624), + [anon_sym_BSLASHlet] = ACTIONS(4624), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4624), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4624), + [anon_sym_BSLASHgls] = ACTIONS(4624), + [anon_sym_BSLASHGls] = ACTIONS(4624), + [anon_sym_BSLASHGLS] = ACTIONS(4624), + [anon_sym_BSLASHglspl] = ACTIONS(4624), + [anon_sym_BSLASHGlspl] = ACTIONS(4624), + [anon_sym_BSLASHGLSpl] = ACTIONS(4624), + [anon_sym_BSLASHglsdisp] = ACTIONS(4624), + [anon_sym_BSLASHglslink] = ACTIONS(4624), + [anon_sym_BSLASHglstext] = ACTIONS(4624), + [anon_sym_BSLASHGlstext] = ACTIONS(4624), + [anon_sym_BSLASHGLStext] = ACTIONS(4624), + [anon_sym_BSLASHglsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4624), + [anon_sym_BSLASHglsplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSplural] = ACTIONS(4624), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHglsname] = ACTIONS(4624), + [anon_sym_BSLASHGlsname] = ACTIONS(4624), + [anon_sym_BSLASHGLSname] = ACTIONS(4624), + [anon_sym_BSLASHglssymbol] = ACTIONS(4624), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4624), + [anon_sym_BSLASHglsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4624), + [anon_sym_BSLASHglsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4624), + [anon_sym_BSLASHglsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4624), + [anon_sym_BSLASHglsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4624), + [anon_sym_BSLASHglsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4624), + [anon_sym_BSLASHnewacronym] = ACTIONS(4624), + [anon_sym_BSLASHacrshort] = ACTIONS(4624), + [anon_sym_BSLASHAcrshort] = ACTIONS(4624), + [anon_sym_BSLASHACRshort] = ACTIONS(4624), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4624), + [anon_sym_BSLASHacrlong] = ACTIONS(4624), + [anon_sym_BSLASHAcrlong] = ACTIONS(4624), + [anon_sym_BSLASHACRlong] = ACTIONS(4624), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4624), + [anon_sym_BSLASHacrfull] = ACTIONS(4624), + [anon_sym_BSLASHAcrfull] = ACTIONS(4624), + [anon_sym_BSLASHACRfull] = ACTIONS(4624), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4624), + [anon_sym_BSLASHacs] = ACTIONS(4624), + [anon_sym_BSLASHAcs] = ACTIONS(4624), + [anon_sym_BSLASHacsp] = ACTIONS(4624), + [anon_sym_BSLASHAcsp] = ACTIONS(4624), + [anon_sym_BSLASHacl] = ACTIONS(4624), + [anon_sym_BSLASHAcl] = ACTIONS(4624), + [anon_sym_BSLASHaclp] = ACTIONS(4624), + [anon_sym_BSLASHAclp] = ACTIONS(4624), + [anon_sym_BSLASHacf] = ACTIONS(4624), + [anon_sym_BSLASHAcf] = ACTIONS(4624), + [anon_sym_BSLASHacfp] = ACTIONS(4624), + [anon_sym_BSLASHAcfp] = ACTIONS(4624), + [anon_sym_BSLASHac] = ACTIONS(4624), + [anon_sym_BSLASHAc] = ACTIONS(4624), + [anon_sym_BSLASHacp] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4624), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4624), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4624), + [anon_sym_BSLASHcolor] = ACTIONS(4624), + [anon_sym_BSLASHcolorbox] = ACTIONS(4624), + [anon_sym_BSLASHtextcolor] = ACTIONS(4624), + [anon_sym_BSLASHpagecolor] = ACTIONS(4624), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4624), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4624), + [anon_sym_BSLASHtext] = ACTIONS(4624), + [anon_sym_BSLASHintertext] = ACTIONS(4624), + [anon_sym_shortintertext] = ACTIONS(4624), }, [457] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHend] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHend] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [458] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHend] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHend] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [459] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHend] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHend] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [460] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHend] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHend] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [461] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHend] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHend] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [462] = { [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(462), [aux_sym__section_repeat2] = STATE(462), - [sym_command_name] = ACTIONS(4555), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_RPAREN] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_RBRACK] = ACTIONS(4553), - [anon_sym_COMMA] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_BSLASHpart] = ACTIONS(4555), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddpart] = ACTIONS(4555), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHchapter] = ACTIONS(4677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4680), - [anon_sym_BSLASHaddchap] = ACTIONS(4677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4680), - [anon_sym_BSLASHsection] = ACTIONS(4555), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddsec] = ACTIONS(4555), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHparagraph] = ACTIONS(4555), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHitem] = ACTIONS(4555), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4553), - [sym_word] = ACTIONS(4555), - [sym_placeholder] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym__] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), - [anon_sym_BSLASHbegin] = ACTIONS(4555), - [anon_sym_BSLASHusepackage] = ACTIONS(4555), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), - [anon_sym_BSLASHinclude] = ACTIONS(4555), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), - [anon_sym_BSLASHinput] = ACTIONS(4555), - [anon_sym_BSLASHsubfile] = ACTIONS(4555), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), - [anon_sym_BSLASHbibliography] = ACTIONS(4555), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), - [anon_sym_BSLASHincludesvg] = ACTIONS(4555), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), - [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(4555), - [anon_sym_BSLASHcite] = ACTIONS(4555), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCite] = ACTIONS(4555), - [anon_sym_BSLASHnocite] = ACTIONS(4555), - [anon_sym_BSLASHcitet] = ACTIONS(4555), - [anon_sym_BSLASHcitep] = ACTIONS(4555), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteauthor] = ACTIONS(4555), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitetitle] = ACTIONS(4555), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteyear] = ACTIONS(4555), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitedate] = ACTIONS(4555), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteurl] = ACTIONS(4555), - [anon_sym_BSLASHfullcite] = ACTIONS(4555), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), - [anon_sym_BSLASHcitealt] = ACTIONS(4555), - [anon_sym_BSLASHcitealp] = ACTIONS(4555), - [anon_sym_BSLASHcitetext] = ACTIONS(4555), - [anon_sym_BSLASHparencite] = ACTIONS(4555), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHParencite] = ACTIONS(4555), - [anon_sym_BSLASHfootcite] = ACTIONS(4555), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), - [anon_sym_BSLASHtextcite] = ACTIONS(4555), - [anon_sym_BSLASHTextcite] = ACTIONS(4555), - [anon_sym_BSLASHsmartcite] = ACTIONS(4555), - [anon_sym_BSLASHSmartcite] = ACTIONS(4555), - [anon_sym_BSLASHsupercite] = ACTIONS(4555), - [anon_sym_BSLASHautocite] = ACTIONS(4555), - [anon_sym_BSLASHAutocite] = ACTIONS(4555), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHvolcite] = ACTIONS(4555), - [anon_sym_BSLASHVolcite] = ACTIONS(4555), - [anon_sym_BSLASHpvolcite] = ACTIONS(4555), - [anon_sym_BSLASHPvolcite] = ACTIONS(4555), - [anon_sym_BSLASHfvolcite] = ACTIONS(4555), - [anon_sym_BSLASHftvolcite] = ACTIONS(4555), - [anon_sym_BSLASHsvolcite] = ACTIONS(4555), - [anon_sym_BSLASHSvolcite] = ACTIONS(4555), - [anon_sym_BSLASHtvolcite] = ACTIONS(4555), - [anon_sym_BSLASHTvolcite] = ACTIONS(4555), - [anon_sym_BSLASHavolcite] = ACTIONS(4555), - [anon_sym_BSLASHAvolcite] = ACTIONS(4555), - [anon_sym_BSLASHnotecite] = ACTIONS(4555), - [anon_sym_BSLASHNotecite] = ACTIONS(4555), - [anon_sym_BSLASHpnotecite] = ACTIONS(4555), - [anon_sym_BSLASHPnotecite] = ACTIONS(4555), - [anon_sym_BSLASHfnotecite] = ACTIONS(4555), - [anon_sym_BSLASHlabel] = ACTIONS(4555), - [anon_sym_BSLASHref] = ACTIONS(4555), - [anon_sym_BSLASHeqref] = ACTIONS(4555), - [anon_sym_BSLASHvref] = ACTIONS(4555), - [anon_sym_BSLASHVref] = ACTIONS(4555), - [anon_sym_BSLASHautoref] = ACTIONS(4555), - [anon_sym_BSLASHpageref] = ACTIONS(4555), - [anon_sym_BSLASHcref] = ACTIONS(4555), - [anon_sym_BSLASHCref] = ACTIONS(4555), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnameCref] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHlabelcref] = ACTIONS(4555), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCrefrange] = ACTIONS(4555), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnewlabel] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), - [anon_sym_BSLASHdef] = ACTIONS(4555), - [anon_sym_BSLASHlet] = ACTIONS(4555), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), - [anon_sym_BSLASHgls] = ACTIONS(4555), - [anon_sym_BSLASHGls] = ACTIONS(4555), - [anon_sym_BSLASHGLS] = ACTIONS(4555), - [anon_sym_BSLASHglspl] = ACTIONS(4555), - [anon_sym_BSLASHGlspl] = ACTIONS(4555), - [anon_sym_BSLASHGLSpl] = ACTIONS(4555), - [anon_sym_BSLASHglsdisp] = ACTIONS(4555), - [anon_sym_BSLASHglslink] = ACTIONS(4555), - [anon_sym_BSLASHglstext] = ACTIONS(4555), - [anon_sym_BSLASHGlstext] = ACTIONS(4555), - [anon_sym_BSLASHGLStext] = ACTIONS(4555), - [anon_sym_BSLASHglsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), - [anon_sym_BSLASHglsplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSplural] = ACTIONS(4555), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHglsname] = ACTIONS(4555), - [anon_sym_BSLASHGlsname] = ACTIONS(4555), - [anon_sym_BSLASHGLSname] = ACTIONS(4555), - [anon_sym_BSLASHglssymbol] = ACTIONS(4555), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), - [anon_sym_BSLASHglsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), - [anon_sym_BSLASHglsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), - [anon_sym_BSLASHglsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), - [anon_sym_BSLASHglsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), - [anon_sym_BSLASHglsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), - [anon_sym_BSLASHnewacronym] = ACTIONS(4555), - [anon_sym_BSLASHacrshort] = ACTIONS(4555), - [anon_sym_BSLASHAcrshort] = ACTIONS(4555), - [anon_sym_BSLASHACRshort] = ACTIONS(4555), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), - [anon_sym_BSLASHacrlong] = ACTIONS(4555), - [anon_sym_BSLASHAcrlong] = ACTIONS(4555), - [anon_sym_BSLASHACRlong] = ACTIONS(4555), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), - [anon_sym_BSLASHacrfull] = ACTIONS(4555), - [anon_sym_BSLASHAcrfull] = ACTIONS(4555), - [anon_sym_BSLASHACRfull] = ACTIONS(4555), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), - [anon_sym_BSLASHacs] = ACTIONS(4555), - [anon_sym_BSLASHAcs] = ACTIONS(4555), - [anon_sym_BSLASHacsp] = ACTIONS(4555), - [anon_sym_BSLASHAcsp] = ACTIONS(4555), - [anon_sym_BSLASHacl] = ACTIONS(4555), - [anon_sym_BSLASHAcl] = ACTIONS(4555), - [anon_sym_BSLASHaclp] = ACTIONS(4555), - [anon_sym_BSLASHAclp] = ACTIONS(4555), - [anon_sym_BSLASHacf] = ACTIONS(4555), - [anon_sym_BSLASHAcf] = ACTIONS(4555), - [anon_sym_BSLASHacfp] = ACTIONS(4555), - [anon_sym_BSLASHAcfp] = ACTIONS(4555), - [anon_sym_BSLASHac] = ACTIONS(4555), - [anon_sym_BSLASHAc] = ACTIONS(4555), - [anon_sym_BSLASHacp] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), - [anon_sym_BSLASHcolor] = ACTIONS(4555), - [anon_sym_BSLASHcolorbox] = ACTIONS(4555), - [anon_sym_BSLASHtextcolor] = ACTIONS(4555), - [anon_sym_BSLASHpagecolor] = ACTIONS(4555), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), - [anon_sym_BSLASHtext] = ACTIONS(4555), - [anon_sym_BSLASHintertext] = ACTIONS(4555), - [anon_sym_shortintertext] = ACTIONS(4555), + [sym_command_name] = ACTIONS(4634), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_BSLASHpart] = ACTIONS(4634), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddpart] = ACTIONS(4634), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHchapter] = ACTIONS(4756), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4759), + [anon_sym_BSLASHaddchap] = ACTIONS(4756), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4759), + [anon_sym_BSLASHsection] = ACTIONS(4634), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddsec] = ACTIONS(4634), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHparagraph] = ACTIONS(4634), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4634), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHitem] = ACTIONS(4634), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4632), + [sym_word] = ACTIONS(4634), + [sym_placeholder] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym__] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4632), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4632), + [anon_sym_BSLASHbegin] = ACTIONS(4634), + [anon_sym_BSLASHusepackage] = ACTIONS(4634), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4634), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4634), + [anon_sym_BSLASHinclude] = ACTIONS(4634), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4634), + [anon_sym_BSLASHinput] = ACTIONS(4634), + [anon_sym_BSLASHsubfile] = ACTIONS(4634), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4634), + [anon_sym_BSLASHbibliography] = ACTIONS(4634), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4634), + [anon_sym_BSLASHincludesvg] = ACTIONS(4634), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4634), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4634), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4634), + [anon_sym_BSLASHimport] = ACTIONS(4634), + [anon_sym_BSLASHsubimport] = ACTIONS(4634), + [anon_sym_BSLASHinputfrom] = ACTIONS(4634), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4634), + [anon_sym_BSLASHincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHcaption] = ACTIONS(4634), + [anon_sym_BSLASHcite] = ACTIONS(4634), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCite] = ACTIONS(4634), + [anon_sym_BSLASHnocite] = ACTIONS(4634), + [anon_sym_BSLASHcitet] = ACTIONS(4634), + [anon_sym_BSLASHcitep] = ACTIONS(4634), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteauthor] = ACTIONS(4634), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4634), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitetitle] = ACTIONS(4634), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteyear] = ACTIONS(4634), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitedate] = ACTIONS(4634), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteurl] = ACTIONS(4634), + [anon_sym_BSLASHfullcite] = ACTIONS(4634), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4634), + [anon_sym_BSLASHcitealt] = ACTIONS(4634), + [anon_sym_BSLASHcitealp] = ACTIONS(4634), + [anon_sym_BSLASHcitetext] = ACTIONS(4634), + [anon_sym_BSLASHparencite] = ACTIONS(4634), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHParencite] = ACTIONS(4634), + [anon_sym_BSLASHfootcite] = ACTIONS(4634), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4634), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4634), + [anon_sym_BSLASHtextcite] = ACTIONS(4634), + [anon_sym_BSLASHTextcite] = ACTIONS(4634), + [anon_sym_BSLASHsmartcite] = ACTIONS(4634), + [anon_sym_BSLASHSmartcite] = ACTIONS(4634), + [anon_sym_BSLASHsupercite] = ACTIONS(4634), + [anon_sym_BSLASHautocite] = ACTIONS(4634), + [anon_sym_BSLASHAutocite] = ACTIONS(4634), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHvolcite] = ACTIONS(4634), + [anon_sym_BSLASHVolcite] = ACTIONS(4634), + [anon_sym_BSLASHpvolcite] = ACTIONS(4634), + [anon_sym_BSLASHPvolcite] = ACTIONS(4634), + [anon_sym_BSLASHfvolcite] = ACTIONS(4634), + [anon_sym_BSLASHftvolcite] = ACTIONS(4634), + [anon_sym_BSLASHsvolcite] = ACTIONS(4634), + [anon_sym_BSLASHSvolcite] = ACTIONS(4634), + [anon_sym_BSLASHtvolcite] = ACTIONS(4634), + [anon_sym_BSLASHTvolcite] = ACTIONS(4634), + [anon_sym_BSLASHavolcite] = ACTIONS(4634), + [anon_sym_BSLASHAvolcite] = ACTIONS(4634), + [anon_sym_BSLASHnotecite] = ACTIONS(4634), + [anon_sym_BSLASHNotecite] = ACTIONS(4634), + [anon_sym_BSLASHpnotecite] = ACTIONS(4634), + [anon_sym_BSLASHPnotecite] = ACTIONS(4634), + [anon_sym_BSLASHfnotecite] = ACTIONS(4634), + [anon_sym_BSLASHlabel] = ACTIONS(4634), + [anon_sym_BSLASHref] = ACTIONS(4634), + [anon_sym_BSLASHeqref] = ACTIONS(4634), + [anon_sym_BSLASHvref] = ACTIONS(4634), + [anon_sym_BSLASHVref] = ACTIONS(4634), + [anon_sym_BSLASHautoref] = ACTIONS(4634), + [anon_sym_BSLASHpageref] = ACTIONS(4634), + [anon_sym_BSLASHcref] = ACTIONS(4634), + [anon_sym_BSLASHCref] = ACTIONS(4634), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnameCref] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHlabelcref] = ACTIONS(4634), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCrefrange] = ACTIONS(4634), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnewlabel] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4634), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4634), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4634), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdef] = ACTIONS(4634), + [anon_sym_BSLASHlet] = ACTIONS(4634), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4634), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4634), + [anon_sym_BSLASHgls] = ACTIONS(4634), + [anon_sym_BSLASHGls] = ACTIONS(4634), + [anon_sym_BSLASHGLS] = ACTIONS(4634), + [anon_sym_BSLASHglspl] = ACTIONS(4634), + [anon_sym_BSLASHGlspl] = ACTIONS(4634), + [anon_sym_BSLASHGLSpl] = ACTIONS(4634), + [anon_sym_BSLASHglsdisp] = ACTIONS(4634), + [anon_sym_BSLASHglslink] = ACTIONS(4634), + [anon_sym_BSLASHglstext] = ACTIONS(4634), + [anon_sym_BSLASHGlstext] = ACTIONS(4634), + [anon_sym_BSLASHGLStext] = ACTIONS(4634), + [anon_sym_BSLASHglsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4634), + [anon_sym_BSLASHglsplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSplural] = ACTIONS(4634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHglsname] = ACTIONS(4634), + [anon_sym_BSLASHGlsname] = ACTIONS(4634), + [anon_sym_BSLASHGLSname] = ACTIONS(4634), + [anon_sym_BSLASHglssymbol] = ACTIONS(4634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4634), + [anon_sym_BSLASHglsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4634), + [anon_sym_BSLASHglsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4634), + [anon_sym_BSLASHglsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4634), + [anon_sym_BSLASHglsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4634), + [anon_sym_BSLASHglsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4634), + [anon_sym_BSLASHnewacronym] = ACTIONS(4634), + [anon_sym_BSLASHacrshort] = ACTIONS(4634), + [anon_sym_BSLASHAcrshort] = ACTIONS(4634), + [anon_sym_BSLASHACRshort] = ACTIONS(4634), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4634), + [anon_sym_BSLASHacrlong] = ACTIONS(4634), + [anon_sym_BSLASHAcrlong] = ACTIONS(4634), + [anon_sym_BSLASHACRlong] = ACTIONS(4634), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4634), + [anon_sym_BSLASHacrfull] = ACTIONS(4634), + [anon_sym_BSLASHAcrfull] = ACTIONS(4634), + [anon_sym_BSLASHACRfull] = ACTIONS(4634), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4634), + [anon_sym_BSLASHacs] = ACTIONS(4634), + [anon_sym_BSLASHAcs] = ACTIONS(4634), + [anon_sym_BSLASHacsp] = ACTIONS(4634), + [anon_sym_BSLASHAcsp] = ACTIONS(4634), + [anon_sym_BSLASHacl] = ACTIONS(4634), + [anon_sym_BSLASHAcl] = ACTIONS(4634), + [anon_sym_BSLASHaclp] = ACTIONS(4634), + [anon_sym_BSLASHAclp] = ACTIONS(4634), + [anon_sym_BSLASHacf] = ACTIONS(4634), + [anon_sym_BSLASHAcf] = ACTIONS(4634), + [anon_sym_BSLASHacfp] = ACTIONS(4634), + [anon_sym_BSLASHAcfp] = ACTIONS(4634), + [anon_sym_BSLASHac] = ACTIONS(4634), + [anon_sym_BSLASHAc] = ACTIONS(4634), + [anon_sym_BSLASHacp] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4634), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4634), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4634), + [anon_sym_BSLASHcolor] = ACTIONS(4634), + [anon_sym_BSLASHcolorbox] = ACTIONS(4634), + [anon_sym_BSLASHtextcolor] = ACTIONS(4634), + [anon_sym_BSLASHpagecolor] = ACTIONS(4634), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4634), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4634), + [anon_sym_BSLASHtext] = ACTIONS(4634), + [anon_sym_BSLASHintertext] = ACTIONS(4634), + [anon_sym_shortintertext] = ACTIONS(4634), }, [463] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [464] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [465] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [466] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [467] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [468] = { [sym__section_declaration] = STATE(145), [sym_section] = STATE(393), [aux_sym__section_repeat3] = STATE(393), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHend] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHend] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [469] = { [sym__part_declaration] = STATE(129), [sym_part] = STATE(469), [aux_sym__section_repeat1] = STATE(469), - [sym_command_name] = ACTIONS(4569), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4569), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4567), - [anon_sym_RBRACK] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_BSLASHpart] = ACTIONS(4683), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4686), - [anon_sym_BSLASHaddpart] = ACTIONS(4683), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4686), - [anon_sym_BSLASHchapter] = ACTIONS(4569), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddchap] = ACTIONS(4569), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsection] = ACTIONS(4569), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddsec] = ACTIONS(4569), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHparagraph] = ACTIONS(4569), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHitem] = ACTIONS(4569), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [sym_word] = ACTIONS(4569), - [sym_placeholder] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym__] = ACTIONS(4569), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_PIPE] = ACTIONS(4569), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), - [anon_sym_BSLASHbegin] = ACTIONS(4569), - [anon_sym_BSLASHusepackage] = ACTIONS(4569), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), - [anon_sym_BSLASHinclude] = ACTIONS(4569), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), - [anon_sym_BSLASHinput] = ACTIONS(4569), - [anon_sym_BSLASHsubfile] = ACTIONS(4569), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), - [anon_sym_BSLASHbibliography] = ACTIONS(4569), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), - [anon_sym_BSLASHincludesvg] = ACTIONS(4569), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), - [anon_sym_BSLASHimport] = ACTIONS(4569), - [anon_sym_BSLASHsubimport] = ACTIONS(4569), - [anon_sym_BSLASHinputfrom] = ACTIONS(4569), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), - [anon_sym_BSLASHincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHcaption] = ACTIONS(4569), - [anon_sym_BSLASHcite] = ACTIONS(4569), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCite] = ACTIONS(4569), - [anon_sym_BSLASHnocite] = ACTIONS(4569), - [anon_sym_BSLASHcitet] = ACTIONS(4569), - [anon_sym_BSLASHcitep] = ACTIONS(4569), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteauthor] = ACTIONS(4569), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitetitle] = ACTIONS(4569), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteyear] = ACTIONS(4569), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitedate] = ACTIONS(4569), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteurl] = ACTIONS(4569), - [anon_sym_BSLASHfullcite] = ACTIONS(4569), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), - [anon_sym_BSLASHcitealt] = ACTIONS(4569), - [anon_sym_BSLASHcitealp] = ACTIONS(4569), - [anon_sym_BSLASHcitetext] = ACTIONS(4569), - [anon_sym_BSLASHparencite] = ACTIONS(4569), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHParencite] = ACTIONS(4569), - [anon_sym_BSLASHfootcite] = ACTIONS(4569), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), - [anon_sym_BSLASHtextcite] = ACTIONS(4569), - [anon_sym_BSLASHTextcite] = ACTIONS(4569), - [anon_sym_BSLASHsmartcite] = ACTIONS(4569), - [anon_sym_BSLASHSmartcite] = ACTIONS(4569), - [anon_sym_BSLASHsupercite] = ACTIONS(4569), - [anon_sym_BSLASHautocite] = ACTIONS(4569), - [anon_sym_BSLASHAutocite] = ACTIONS(4569), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHvolcite] = ACTIONS(4569), - [anon_sym_BSLASHVolcite] = ACTIONS(4569), - [anon_sym_BSLASHpvolcite] = ACTIONS(4569), - [anon_sym_BSLASHPvolcite] = ACTIONS(4569), - [anon_sym_BSLASHfvolcite] = ACTIONS(4569), - [anon_sym_BSLASHftvolcite] = ACTIONS(4569), - [anon_sym_BSLASHsvolcite] = ACTIONS(4569), - [anon_sym_BSLASHSvolcite] = ACTIONS(4569), - [anon_sym_BSLASHtvolcite] = ACTIONS(4569), - [anon_sym_BSLASHTvolcite] = ACTIONS(4569), - [anon_sym_BSLASHavolcite] = ACTIONS(4569), - [anon_sym_BSLASHAvolcite] = ACTIONS(4569), - [anon_sym_BSLASHnotecite] = ACTIONS(4569), - [anon_sym_BSLASHNotecite] = ACTIONS(4569), - [anon_sym_BSLASHpnotecite] = ACTIONS(4569), - [anon_sym_BSLASHPnotecite] = ACTIONS(4569), - [anon_sym_BSLASHfnotecite] = ACTIONS(4569), - [anon_sym_BSLASHlabel] = ACTIONS(4569), - [anon_sym_BSLASHref] = ACTIONS(4569), - [anon_sym_BSLASHeqref] = ACTIONS(4569), - [anon_sym_BSLASHvref] = ACTIONS(4569), - [anon_sym_BSLASHVref] = ACTIONS(4569), - [anon_sym_BSLASHautoref] = ACTIONS(4569), - [anon_sym_BSLASHpageref] = ACTIONS(4569), - [anon_sym_BSLASHcref] = ACTIONS(4569), - [anon_sym_BSLASHCref] = ACTIONS(4569), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnameCref] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHlabelcref] = ACTIONS(4569), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnewlabel] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), - [anon_sym_BSLASHdef] = ACTIONS(4569), - [anon_sym_BSLASHlet] = ACTIONS(4569), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), - [anon_sym_BSLASHgls] = ACTIONS(4569), - [anon_sym_BSLASHGls] = ACTIONS(4569), - [anon_sym_BSLASHGLS] = ACTIONS(4569), - [anon_sym_BSLASHglspl] = ACTIONS(4569), - [anon_sym_BSLASHGlspl] = ACTIONS(4569), - [anon_sym_BSLASHGLSpl] = ACTIONS(4569), - [anon_sym_BSLASHglsdisp] = ACTIONS(4569), - [anon_sym_BSLASHglslink] = ACTIONS(4569), - [anon_sym_BSLASHglstext] = ACTIONS(4569), - [anon_sym_BSLASHGlstext] = ACTIONS(4569), - [anon_sym_BSLASHGLStext] = ACTIONS(4569), - [anon_sym_BSLASHglsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), - [anon_sym_BSLASHglsplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSplural] = ACTIONS(4569), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHglsname] = ACTIONS(4569), - [anon_sym_BSLASHGlsname] = ACTIONS(4569), - [anon_sym_BSLASHGLSname] = ACTIONS(4569), - [anon_sym_BSLASHglssymbol] = ACTIONS(4569), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), - [anon_sym_BSLASHglsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), - [anon_sym_BSLASHglsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), - [anon_sym_BSLASHglsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), - [anon_sym_BSLASHglsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), - [anon_sym_BSLASHglsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), - [anon_sym_BSLASHnewacronym] = ACTIONS(4569), - [anon_sym_BSLASHacrshort] = ACTIONS(4569), - [anon_sym_BSLASHAcrshort] = ACTIONS(4569), - [anon_sym_BSLASHACRshort] = ACTIONS(4569), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), - [anon_sym_BSLASHacrlong] = ACTIONS(4569), - [anon_sym_BSLASHAcrlong] = ACTIONS(4569), - [anon_sym_BSLASHACRlong] = ACTIONS(4569), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), - [anon_sym_BSLASHacrfull] = ACTIONS(4569), - [anon_sym_BSLASHAcrfull] = ACTIONS(4569), - [anon_sym_BSLASHACRfull] = ACTIONS(4569), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), - [anon_sym_BSLASHacs] = ACTIONS(4569), - [anon_sym_BSLASHAcs] = ACTIONS(4569), - [anon_sym_BSLASHacsp] = ACTIONS(4569), - [anon_sym_BSLASHAcsp] = ACTIONS(4569), - [anon_sym_BSLASHacl] = ACTIONS(4569), - [anon_sym_BSLASHAcl] = ACTIONS(4569), - [anon_sym_BSLASHaclp] = ACTIONS(4569), - [anon_sym_BSLASHAclp] = ACTIONS(4569), - [anon_sym_BSLASHacf] = ACTIONS(4569), - [anon_sym_BSLASHAcf] = ACTIONS(4569), - [anon_sym_BSLASHacfp] = ACTIONS(4569), - [anon_sym_BSLASHAcfp] = ACTIONS(4569), - [anon_sym_BSLASHac] = ACTIONS(4569), - [anon_sym_BSLASHAc] = ACTIONS(4569), - [anon_sym_BSLASHacp] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), - [anon_sym_BSLASHcolor] = ACTIONS(4569), - [anon_sym_BSLASHcolorbox] = ACTIONS(4569), - [anon_sym_BSLASHtextcolor] = ACTIONS(4569), - [anon_sym_BSLASHpagecolor] = ACTIONS(4569), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), - [anon_sym_BSLASHtext] = ACTIONS(4569), - [anon_sym_BSLASHintertext] = ACTIONS(4569), - [anon_sym_shortintertext] = ACTIONS(4569), + [sym_command_name] = ACTIONS(4648), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_BSLASHpart] = ACTIONS(4762), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4765), + [anon_sym_BSLASHaddpart] = ACTIONS(4762), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4765), + [anon_sym_BSLASHchapter] = ACTIONS(4648), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddchap] = ACTIONS(4648), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsection] = ACTIONS(4648), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddsec] = ACTIONS(4648), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHparagraph] = ACTIONS(4648), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4648), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHitem] = ACTIONS(4648), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [sym_word] = ACTIONS(4648), + [sym_placeholder] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym__] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4646), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4646), + [anon_sym_BSLASHbegin] = ACTIONS(4648), + [anon_sym_BSLASHusepackage] = ACTIONS(4648), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4648), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4648), + [anon_sym_BSLASHinclude] = ACTIONS(4648), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4648), + [anon_sym_BSLASHinput] = ACTIONS(4648), + [anon_sym_BSLASHsubfile] = ACTIONS(4648), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4648), + [anon_sym_BSLASHbibliography] = ACTIONS(4648), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4648), + [anon_sym_BSLASHincludesvg] = ACTIONS(4648), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4648), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4648), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4648), + [anon_sym_BSLASHimport] = ACTIONS(4648), + [anon_sym_BSLASHsubimport] = ACTIONS(4648), + [anon_sym_BSLASHinputfrom] = ACTIONS(4648), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4648), + [anon_sym_BSLASHincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHcaption] = ACTIONS(4648), + [anon_sym_BSLASHcite] = ACTIONS(4648), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCite] = ACTIONS(4648), + [anon_sym_BSLASHnocite] = ACTIONS(4648), + [anon_sym_BSLASHcitet] = ACTIONS(4648), + [anon_sym_BSLASHcitep] = ACTIONS(4648), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteauthor] = ACTIONS(4648), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4648), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitetitle] = ACTIONS(4648), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteyear] = ACTIONS(4648), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitedate] = ACTIONS(4648), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteurl] = ACTIONS(4648), + [anon_sym_BSLASHfullcite] = ACTIONS(4648), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4648), + [anon_sym_BSLASHcitealt] = ACTIONS(4648), + [anon_sym_BSLASHcitealp] = ACTIONS(4648), + [anon_sym_BSLASHcitetext] = ACTIONS(4648), + [anon_sym_BSLASHparencite] = ACTIONS(4648), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHParencite] = ACTIONS(4648), + [anon_sym_BSLASHfootcite] = ACTIONS(4648), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4648), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4648), + [anon_sym_BSLASHtextcite] = ACTIONS(4648), + [anon_sym_BSLASHTextcite] = ACTIONS(4648), + [anon_sym_BSLASHsmartcite] = ACTIONS(4648), + [anon_sym_BSLASHSmartcite] = ACTIONS(4648), + [anon_sym_BSLASHsupercite] = ACTIONS(4648), + [anon_sym_BSLASHautocite] = ACTIONS(4648), + [anon_sym_BSLASHAutocite] = ACTIONS(4648), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHvolcite] = ACTIONS(4648), + [anon_sym_BSLASHVolcite] = ACTIONS(4648), + [anon_sym_BSLASHpvolcite] = ACTIONS(4648), + [anon_sym_BSLASHPvolcite] = ACTIONS(4648), + [anon_sym_BSLASHfvolcite] = ACTIONS(4648), + [anon_sym_BSLASHftvolcite] = ACTIONS(4648), + [anon_sym_BSLASHsvolcite] = ACTIONS(4648), + [anon_sym_BSLASHSvolcite] = ACTIONS(4648), + [anon_sym_BSLASHtvolcite] = ACTIONS(4648), + [anon_sym_BSLASHTvolcite] = ACTIONS(4648), + [anon_sym_BSLASHavolcite] = ACTIONS(4648), + [anon_sym_BSLASHAvolcite] = ACTIONS(4648), + [anon_sym_BSLASHnotecite] = ACTIONS(4648), + [anon_sym_BSLASHNotecite] = ACTIONS(4648), + [anon_sym_BSLASHpnotecite] = ACTIONS(4648), + [anon_sym_BSLASHPnotecite] = ACTIONS(4648), + [anon_sym_BSLASHfnotecite] = ACTIONS(4648), + [anon_sym_BSLASHlabel] = ACTIONS(4648), + [anon_sym_BSLASHref] = ACTIONS(4648), + [anon_sym_BSLASHeqref] = ACTIONS(4648), + [anon_sym_BSLASHvref] = ACTIONS(4648), + [anon_sym_BSLASHVref] = ACTIONS(4648), + [anon_sym_BSLASHautoref] = ACTIONS(4648), + [anon_sym_BSLASHpageref] = ACTIONS(4648), + [anon_sym_BSLASHcref] = ACTIONS(4648), + [anon_sym_BSLASHCref] = ACTIONS(4648), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnameCref] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHlabelcref] = ACTIONS(4648), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCrefrange] = ACTIONS(4648), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnewlabel] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4648), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4648), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4648), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdef] = ACTIONS(4648), + [anon_sym_BSLASHlet] = ACTIONS(4648), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4648), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4648), + [anon_sym_BSLASHgls] = ACTIONS(4648), + [anon_sym_BSLASHGls] = ACTIONS(4648), + [anon_sym_BSLASHGLS] = ACTIONS(4648), + [anon_sym_BSLASHglspl] = ACTIONS(4648), + [anon_sym_BSLASHGlspl] = ACTIONS(4648), + [anon_sym_BSLASHGLSpl] = ACTIONS(4648), + [anon_sym_BSLASHglsdisp] = ACTIONS(4648), + [anon_sym_BSLASHglslink] = ACTIONS(4648), + [anon_sym_BSLASHglstext] = ACTIONS(4648), + [anon_sym_BSLASHGlstext] = ACTIONS(4648), + [anon_sym_BSLASHGLStext] = ACTIONS(4648), + [anon_sym_BSLASHglsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4648), + [anon_sym_BSLASHglsplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSplural] = ACTIONS(4648), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHglsname] = ACTIONS(4648), + [anon_sym_BSLASHGlsname] = ACTIONS(4648), + [anon_sym_BSLASHGLSname] = ACTIONS(4648), + [anon_sym_BSLASHglssymbol] = ACTIONS(4648), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4648), + [anon_sym_BSLASHglsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4648), + [anon_sym_BSLASHglsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4648), + [anon_sym_BSLASHglsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4648), + [anon_sym_BSLASHglsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4648), + [anon_sym_BSLASHglsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4648), + [anon_sym_BSLASHnewacronym] = ACTIONS(4648), + [anon_sym_BSLASHacrshort] = ACTIONS(4648), + [anon_sym_BSLASHAcrshort] = ACTIONS(4648), + [anon_sym_BSLASHACRshort] = ACTIONS(4648), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4648), + [anon_sym_BSLASHacrlong] = ACTIONS(4648), + [anon_sym_BSLASHAcrlong] = ACTIONS(4648), + [anon_sym_BSLASHACRlong] = ACTIONS(4648), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4648), + [anon_sym_BSLASHacrfull] = ACTIONS(4648), + [anon_sym_BSLASHAcrfull] = ACTIONS(4648), + [anon_sym_BSLASHACRfull] = ACTIONS(4648), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4648), + [anon_sym_BSLASHacs] = ACTIONS(4648), + [anon_sym_BSLASHAcs] = ACTIONS(4648), + [anon_sym_BSLASHacsp] = ACTIONS(4648), + [anon_sym_BSLASHAcsp] = ACTIONS(4648), + [anon_sym_BSLASHacl] = ACTIONS(4648), + [anon_sym_BSLASHAcl] = ACTIONS(4648), + [anon_sym_BSLASHaclp] = ACTIONS(4648), + [anon_sym_BSLASHAclp] = ACTIONS(4648), + [anon_sym_BSLASHacf] = ACTIONS(4648), + [anon_sym_BSLASHAcf] = ACTIONS(4648), + [anon_sym_BSLASHacfp] = ACTIONS(4648), + [anon_sym_BSLASHAcfp] = ACTIONS(4648), + [anon_sym_BSLASHac] = ACTIONS(4648), + [anon_sym_BSLASHAc] = ACTIONS(4648), + [anon_sym_BSLASHacp] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4648), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4648), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4648), + [anon_sym_BSLASHcolor] = ACTIONS(4648), + [anon_sym_BSLASHcolorbox] = ACTIONS(4648), + [anon_sym_BSLASHtextcolor] = ACTIONS(4648), + [anon_sym_BSLASHpagecolor] = ACTIONS(4648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4648), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4648), + [anon_sym_BSLASHtext] = ACTIONS(4648), + [anon_sym_BSLASHintertext] = ACTIONS(4648), + [anon_sym_shortintertext] = ACTIONS(4648), }, [470] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [471] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [472] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [473] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [474] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [475] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [476] = { [sym__chapter_declaration] = STATE(137), [sym_chapter] = STATE(515), [aux_sym__section_repeat2] = STATE(515), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [477] = { [sym__section_declaration] = STATE(151), [sym_section] = STATE(516), [aux_sym__section_repeat3] = STATE(516), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [478] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [479] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [480] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [481] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [482] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [483] = { [sym_curly_group] = STATE(657), [sym_brack_group_text] = STATE(1988), - [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(4693), - [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(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), + [ts_builtin_sym_end] = ACTIONS(4768), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_BSLASHpart] = ACTIONS(4770), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddpart] = ACTIONS(4770), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHchapter] = ACTIONS(4770), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddchap] = ACTIONS(4770), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsection] = ACTIONS(4770), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddsec] = ACTIONS(4770), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHparagraph] = ACTIONS(4770), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4770), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHitem] = ACTIONS(4770), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4768), [anon_sym_LBRACE] = ACTIONS(45), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [anon_sym_RBRACE] = ACTIONS(4768), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASHbegin] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [484] = { [sym__section_declaration] = STATE(151), [sym_section] = STATE(516), [aux_sym__section_repeat3] = STATE(516), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [485] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [486] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [487] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [488] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [489] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [490] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1965), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1965), - [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(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1963), - [sym_word] = ACTIONS(1965), - [sym_placeholder] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym__] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), - [anon_sym_BSLASHbegin] = ACTIONS(1965), - [anon_sym_BSLASHusepackage] = ACTIONS(1965), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), - [anon_sym_BSLASHinclude] = ACTIONS(1965), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), - [anon_sym_BSLASHinput] = ACTIONS(1965), - [anon_sym_BSLASHsubfile] = ACTIONS(1965), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), - [anon_sym_BSLASHbibliography] = ACTIONS(1965), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), - [anon_sym_BSLASHincludesvg] = ACTIONS(1965), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), - [anon_sym_BSLASHimport] = ACTIONS(1965), - [anon_sym_BSLASHsubimport] = ACTIONS(1965), - [anon_sym_BSLASHinputfrom] = ACTIONS(1965), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), - [anon_sym_BSLASHincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHcaption] = ACTIONS(1965), - [anon_sym_BSLASHcite] = ACTIONS(1965), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCite] = ACTIONS(1965), - [anon_sym_BSLASHnocite] = ACTIONS(1965), - [anon_sym_BSLASHcitet] = ACTIONS(1965), - [anon_sym_BSLASHcitep] = ACTIONS(1965), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteauthor] = ACTIONS(1965), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitetitle] = ACTIONS(1965), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteyear] = ACTIONS(1965), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitedate] = ACTIONS(1965), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteurl] = ACTIONS(1965), - [anon_sym_BSLASHfullcite] = ACTIONS(1965), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), - [anon_sym_BSLASHcitealt] = ACTIONS(1965), - [anon_sym_BSLASHcitealp] = ACTIONS(1965), - [anon_sym_BSLASHcitetext] = ACTIONS(1965), - [anon_sym_BSLASHparencite] = ACTIONS(1965), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHParencite] = ACTIONS(1965), - [anon_sym_BSLASHfootcite] = ACTIONS(1965), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), - [anon_sym_BSLASHtextcite] = ACTIONS(1965), - [anon_sym_BSLASHTextcite] = ACTIONS(1965), - [anon_sym_BSLASHsmartcite] = ACTIONS(1965), - [anon_sym_BSLASHSmartcite] = ACTIONS(1965), - [anon_sym_BSLASHsupercite] = ACTIONS(1965), - [anon_sym_BSLASHautocite] = ACTIONS(1965), - [anon_sym_BSLASHAutocite] = ACTIONS(1965), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHvolcite] = ACTIONS(1965), - [anon_sym_BSLASHVolcite] = ACTIONS(1965), - [anon_sym_BSLASHpvolcite] = ACTIONS(1965), - [anon_sym_BSLASHPvolcite] = ACTIONS(1965), - [anon_sym_BSLASHfvolcite] = ACTIONS(1965), - [anon_sym_BSLASHftvolcite] = ACTIONS(1965), - [anon_sym_BSLASHsvolcite] = ACTIONS(1965), - [anon_sym_BSLASHSvolcite] = ACTIONS(1965), - [anon_sym_BSLASHtvolcite] = ACTIONS(1965), - [anon_sym_BSLASHTvolcite] = ACTIONS(1965), - [anon_sym_BSLASHavolcite] = ACTIONS(1965), - [anon_sym_BSLASHAvolcite] = ACTIONS(1965), - [anon_sym_BSLASHnotecite] = ACTIONS(1965), - [anon_sym_BSLASHNotecite] = ACTIONS(1965), - [anon_sym_BSLASHpnotecite] = ACTIONS(1965), - [anon_sym_BSLASHPnotecite] = ACTIONS(1965), - [anon_sym_BSLASHfnotecite] = ACTIONS(1965), - [anon_sym_BSLASHlabel] = ACTIONS(1965), - [anon_sym_BSLASHref] = ACTIONS(1965), - [anon_sym_BSLASHeqref] = ACTIONS(1965), - [anon_sym_BSLASHvref] = ACTIONS(1965), - [anon_sym_BSLASHVref] = ACTIONS(1965), - [anon_sym_BSLASHautoref] = ACTIONS(1965), - [anon_sym_BSLASHpageref] = ACTIONS(1965), - [anon_sym_BSLASHcref] = ACTIONS(1965), - [anon_sym_BSLASHCref] = ACTIONS(1965), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnameCref] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHlabelcref] = ACTIONS(1965), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCrefrange] = ACTIONS(1965), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnewlabel] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), - [anon_sym_BSLASHdef] = ACTIONS(1965), - [anon_sym_BSLASHlet] = ACTIONS(1965), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), - [anon_sym_BSLASHgls] = ACTIONS(1965), - [anon_sym_BSLASHGls] = ACTIONS(1965), - [anon_sym_BSLASHGLS] = ACTIONS(1965), - [anon_sym_BSLASHglspl] = ACTIONS(1965), - [anon_sym_BSLASHGlspl] = ACTIONS(1965), - [anon_sym_BSLASHGLSpl] = ACTIONS(1965), - [anon_sym_BSLASHglsdisp] = ACTIONS(1965), - [anon_sym_BSLASHglslink] = ACTIONS(1965), - [anon_sym_BSLASHglstext] = ACTIONS(1965), - [anon_sym_BSLASHGlstext] = ACTIONS(1965), - [anon_sym_BSLASHGLStext] = ACTIONS(1965), - [anon_sym_BSLASHglsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), - [anon_sym_BSLASHglsplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSplural] = ACTIONS(1965), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHglsname] = ACTIONS(1965), - [anon_sym_BSLASHGlsname] = ACTIONS(1965), - [anon_sym_BSLASHGLSname] = ACTIONS(1965), - [anon_sym_BSLASHglssymbol] = ACTIONS(1965), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), - [anon_sym_BSLASHglsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), - [anon_sym_BSLASHglsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), - [anon_sym_BSLASHglsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), - [anon_sym_BSLASHglsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), - [anon_sym_BSLASHglsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), - [anon_sym_BSLASHnewacronym] = ACTIONS(1965), - [anon_sym_BSLASHacrshort] = ACTIONS(1965), - [anon_sym_BSLASHAcrshort] = ACTIONS(1965), - [anon_sym_BSLASHACRshort] = ACTIONS(1965), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), - [anon_sym_BSLASHacrlong] = ACTIONS(1965), - [anon_sym_BSLASHAcrlong] = ACTIONS(1965), - [anon_sym_BSLASHACRlong] = ACTIONS(1965), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), - [anon_sym_BSLASHacrfull] = ACTIONS(1965), - [anon_sym_BSLASHAcrfull] = ACTIONS(1965), - [anon_sym_BSLASHACRfull] = ACTIONS(1965), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), - [anon_sym_BSLASHacs] = ACTIONS(1965), - [anon_sym_BSLASHAcs] = ACTIONS(1965), - [anon_sym_BSLASHacsp] = ACTIONS(1965), - [anon_sym_BSLASHAcsp] = ACTIONS(1965), - [anon_sym_BSLASHacl] = ACTIONS(1965), - [anon_sym_BSLASHAcl] = ACTIONS(1965), - [anon_sym_BSLASHaclp] = ACTIONS(1965), - [anon_sym_BSLASHAclp] = ACTIONS(1965), - [anon_sym_BSLASHacf] = ACTIONS(1965), - [anon_sym_BSLASHAcf] = ACTIONS(1965), - [anon_sym_BSLASHacfp] = ACTIONS(1965), - [anon_sym_BSLASHAcfp] = ACTIONS(1965), - [anon_sym_BSLASHac] = ACTIONS(1965), - [anon_sym_BSLASHAc] = ACTIONS(1965), - [anon_sym_BSLASHacp] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), - [anon_sym_BSLASHcolor] = ACTIONS(1965), - [anon_sym_BSLASHcolorbox] = ACTIONS(1965), - [anon_sym_BSLASHtextcolor] = ACTIONS(1965), - [anon_sym_BSLASHpagecolor] = ACTIONS(1965), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), - [anon_sym_BSLASHtext] = ACTIONS(1965), - [anon_sym_BSLASHintertext] = ACTIONS(1965), - [anon_sym_shortintertext] = ACTIONS(1965), + [sym_command_name] = ACTIONS(1990), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1988), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1988), + [sym_word] = ACTIONS(1990), + [sym_placeholder] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym__] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1988), + [anon_sym_BSLASHbegin] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(1990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1990), + [anon_sym_BSLASHinclude] = ACTIONS(1990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1990), + [anon_sym_BSLASHinput] = ACTIONS(1990), + [anon_sym_BSLASHsubfile] = ACTIONS(1990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1990), + [anon_sym_BSLASHbibliography] = ACTIONS(1990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1990), + [anon_sym_BSLASHincludesvg] = ACTIONS(1990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1990), + [anon_sym_BSLASHimport] = ACTIONS(1990), + [anon_sym_BSLASHsubimport] = ACTIONS(1990), + [anon_sym_BSLASHinputfrom] = ACTIONS(1990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1990), + [anon_sym_BSLASHincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHcaption] = ACTIONS(1990), + [anon_sym_BSLASHcite] = ACTIONS(1990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCite] = ACTIONS(1990), + [anon_sym_BSLASHnocite] = ACTIONS(1990), + [anon_sym_BSLASHcitet] = ACTIONS(1990), + [anon_sym_BSLASHcitep] = ACTIONS(1990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteauthor] = ACTIONS(1990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitetitle] = ACTIONS(1990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteyear] = ACTIONS(1990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitedate] = ACTIONS(1990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteurl] = ACTIONS(1990), + [anon_sym_BSLASHfullcite] = ACTIONS(1990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1990), + [anon_sym_BSLASHcitealt] = ACTIONS(1990), + [anon_sym_BSLASHcitealp] = ACTIONS(1990), + [anon_sym_BSLASHcitetext] = ACTIONS(1990), + [anon_sym_BSLASHparencite] = ACTIONS(1990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHParencite] = ACTIONS(1990), + [anon_sym_BSLASHfootcite] = ACTIONS(1990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1990), + [anon_sym_BSLASHtextcite] = ACTIONS(1990), + [anon_sym_BSLASHTextcite] = ACTIONS(1990), + [anon_sym_BSLASHsmartcite] = ACTIONS(1990), + [anon_sym_BSLASHSmartcite] = ACTIONS(1990), + [anon_sym_BSLASHsupercite] = ACTIONS(1990), + [anon_sym_BSLASHautocite] = ACTIONS(1990), + [anon_sym_BSLASHAutocite] = ACTIONS(1990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHvolcite] = ACTIONS(1990), + [anon_sym_BSLASHVolcite] = ACTIONS(1990), + [anon_sym_BSLASHpvolcite] = ACTIONS(1990), + [anon_sym_BSLASHPvolcite] = ACTIONS(1990), + [anon_sym_BSLASHfvolcite] = ACTIONS(1990), + [anon_sym_BSLASHftvolcite] = ACTIONS(1990), + [anon_sym_BSLASHsvolcite] = ACTIONS(1990), + [anon_sym_BSLASHSvolcite] = ACTIONS(1990), + [anon_sym_BSLASHtvolcite] = ACTIONS(1990), + [anon_sym_BSLASHTvolcite] = ACTIONS(1990), + [anon_sym_BSLASHavolcite] = ACTIONS(1990), + [anon_sym_BSLASHAvolcite] = ACTIONS(1990), + [anon_sym_BSLASHnotecite] = ACTIONS(1990), + [anon_sym_BSLASHNotecite] = ACTIONS(1990), + [anon_sym_BSLASHpnotecite] = ACTIONS(1990), + [anon_sym_BSLASHPnotecite] = ACTIONS(1990), + [anon_sym_BSLASHfnotecite] = ACTIONS(1990), + [anon_sym_BSLASHlabel] = ACTIONS(1990), + [anon_sym_BSLASHref] = ACTIONS(1990), + [anon_sym_BSLASHeqref] = ACTIONS(1990), + [anon_sym_BSLASHvref] = ACTIONS(1990), + [anon_sym_BSLASHVref] = ACTIONS(1990), + [anon_sym_BSLASHautoref] = ACTIONS(1990), + [anon_sym_BSLASHpageref] = ACTIONS(1990), + [anon_sym_BSLASHcref] = ACTIONS(1990), + [anon_sym_BSLASHCref] = ACTIONS(1990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnameCref] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHlabelcref] = ACTIONS(1990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCrefrange] = ACTIONS(1990), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnewlabel] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1990), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1990), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdef] = ACTIONS(1990), + [anon_sym_BSLASHlet] = ACTIONS(1990), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1990), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1990), + [anon_sym_BSLASHgls] = ACTIONS(1990), + [anon_sym_BSLASHGls] = ACTIONS(1990), + [anon_sym_BSLASHGLS] = ACTIONS(1990), + [anon_sym_BSLASHglspl] = ACTIONS(1990), + [anon_sym_BSLASHGlspl] = ACTIONS(1990), + [anon_sym_BSLASHGLSpl] = ACTIONS(1990), + [anon_sym_BSLASHglsdisp] = ACTIONS(1990), + [anon_sym_BSLASHglslink] = ACTIONS(1990), + [anon_sym_BSLASHglstext] = ACTIONS(1990), + [anon_sym_BSLASHGlstext] = ACTIONS(1990), + [anon_sym_BSLASHGLStext] = ACTIONS(1990), + [anon_sym_BSLASHglsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1990), + [anon_sym_BSLASHglsplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSplural] = ACTIONS(1990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHglsname] = ACTIONS(1990), + [anon_sym_BSLASHGlsname] = ACTIONS(1990), + [anon_sym_BSLASHGLSname] = ACTIONS(1990), + [anon_sym_BSLASHglssymbol] = ACTIONS(1990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1990), + [anon_sym_BSLASHglsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1990), + [anon_sym_BSLASHglsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1990), + [anon_sym_BSLASHglsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1990), + [anon_sym_BSLASHglsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1990), + [anon_sym_BSLASHglsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1990), + [anon_sym_BSLASHnewacronym] = ACTIONS(1990), + [anon_sym_BSLASHacrshort] = ACTIONS(1990), + [anon_sym_BSLASHAcrshort] = ACTIONS(1990), + [anon_sym_BSLASHACRshort] = ACTIONS(1990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1990), + [anon_sym_BSLASHacrlong] = ACTIONS(1990), + [anon_sym_BSLASHAcrlong] = ACTIONS(1990), + [anon_sym_BSLASHACRlong] = ACTIONS(1990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1990), + [anon_sym_BSLASHacrfull] = ACTIONS(1990), + [anon_sym_BSLASHAcrfull] = ACTIONS(1990), + [anon_sym_BSLASHACRfull] = ACTIONS(1990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1990), + [anon_sym_BSLASHacs] = ACTIONS(1990), + [anon_sym_BSLASHAcs] = ACTIONS(1990), + [anon_sym_BSLASHacsp] = ACTIONS(1990), + [anon_sym_BSLASHAcsp] = ACTIONS(1990), + [anon_sym_BSLASHacl] = ACTIONS(1990), + [anon_sym_BSLASHAcl] = ACTIONS(1990), + [anon_sym_BSLASHaclp] = ACTIONS(1990), + [anon_sym_BSLASHAclp] = ACTIONS(1990), + [anon_sym_BSLASHacf] = ACTIONS(1990), + [anon_sym_BSLASHAcf] = ACTIONS(1990), + [anon_sym_BSLASHacfp] = ACTIONS(1990), + [anon_sym_BSLASHAcfp] = ACTIONS(1990), + [anon_sym_BSLASHac] = ACTIONS(1990), + [anon_sym_BSLASHAc] = ACTIONS(1990), + [anon_sym_BSLASHacp] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1990), + [anon_sym_BSLASHcolor] = ACTIONS(1990), + [anon_sym_BSLASHcolorbox] = ACTIONS(1990), + [anon_sym_BSLASHtextcolor] = ACTIONS(1990), + [anon_sym_BSLASHpagecolor] = ACTIONS(1990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1990), + [anon_sym_BSLASHtext] = ACTIONS(1990), + [anon_sym_BSLASHintertext] = ACTIONS(1990), + [anon_sym_shortintertext] = ACTIONS(1990), }, [491] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [492] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [493] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [494] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [495] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [496] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1972), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [497] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [498] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [499] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [500] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [501] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(1947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(1972), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [502] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [503] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [504] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [505] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [506] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(1947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(1972), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [507] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1972), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [508] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [509] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(1965), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1965), - [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(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(1963), - [sym_word] = ACTIONS(1965), - [sym_placeholder] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym__] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), - [anon_sym_BSLASHbegin] = ACTIONS(1965), - [anon_sym_BSLASHusepackage] = ACTIONS(1965), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), - [anon_sym_BSLASHinclude] = ACTIONS(1965), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), - [anon_sym_BSLASHinput] = ACTIONS(1965), - [anon_sym_BSLASHsubfile] = ACTIONS(1965), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), - [anon_sym_BSLASHbibliography] = ACTIONS(1965), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), - [anon_sym_BSLASHincludesvg] = ACTIONS(1965), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), - [anon_sym_BSLASHimport] = ACTIONS(1965), - [anon_sym_BSLASHsubimport] = ACTIONS(1965), - [anon_sym_BSLASHinputfrom] = ACTIONS(1965), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), - [anon_sym_BSLASHincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHcaption] = ACTIONS(1965), - [anon_sym_BSLASHcite] = ACTIONS(1965), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCite] = ACTIONS(1965), - [anon_sym_BSLASHnocite] = ACTIONS(1965), - [anon_sym_BSLASHcitet] = ACTIONS(1965), - [anon_sym_BSLASHcitep] = ACTIONS(1965), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteauthor] = ACTIONS(1965), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitetitle] = ACTIONS(1965), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteyear] = ACTIONS(1965), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitedate] = ACTIONS(1965), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteurl] = ACTIONS(1965), - [anon_sym_BSLASHfullcite] = ACTIONS(1965), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), - [anon_sym_BSLASHcitealt] = ACTIONS(1965), - [anon_sym_BSLASHcitealp] = ACTIONS(1965), - [anon_sym_BSLASHcitetext] = ACTIONS(1965), - [anon_sym_BSLASHparencite] = ACTIONS(1965), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHParencite] = ACTIONS(1965), - [anon_sym_BSLASHfootcite] = ACTIONS(1965), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), - [anon_sym_BSLASHtextcite] = ACTIONS(1965), - [anon_sym_BSLASHTextcite] = ACTIONS(1965), - [anon_sym_BSLASHsmartcite] = ACTIONS(1965), - [anon_sym_BSLASHSmartcite] = ACTIONS(1965), - [anon_sym_BSLASHsupercite] = ACTIONS(1965), - [anon_sym_BSLASHautocite] = ACTIONS(1965), - [anon_sym_BSLASHAutocite] = ACTIONS(1965), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHvolcite] = ACTIONS(1965), - [anon_sym_BSLASHVolcite] = ACTIONS(1965), - [anon_sym_BSLASHpvolcite] = ACTIONS(1965), - [anon_sym_BSLASHPvolcite] = ACTIONS(1965), - [anon_sym_BSLASHfvolcite] = ACTIONS(1965), - [anon_sym_BSLASHftvolcite] = ACTIONS(1965), - [anon_sym_BSLASHsvolcite] = ACTIONS(1965), - [anon_sym_BSLASHSvolcite] = ACTIONS(1965), - [anon_sym_BSLASHtvolcite] = ACTIONS(1965), - [anon_sym_BSLASHTvolcite] = ACTIONS(1965), - [anon_sym_BSLASHavolcite] = ACTIONS(1965), - [anon_sym_BSLASHAvolcite] = ACTIONS(1965), - [anon_sym_BSLASHnotecite] = ACTIONS(1965), - [anon_sym_BSLASHNotecite] = ACTIONS(1965), - [anon_sym_BSLASHpnotecite] = ACTIONS(1965), - [anon_sym_BSLASHPnotecite] = ACTIONS(1965), - [anon_sym_BSLASHfnotecite] = ACTIONS(1965), - [anon_sym_BSLASHlabel] = ACTIONS(1965), - [anon_sym_BSLASHref] = ACTIONS(1965), - [anon_sym_BSLASHeqref] = ACTIONS(1965), - [anon_sym_BSLASHvref] = ACTIONS(1965), - [anon_sym_BSLASHVref] = ACTIONS(1965), - [anon_sym_BSLASHautoref] = ACTIONS(1965), - [anon_sym_BSLASHpageref] = ACTIONS(1965), - [anon_sym_BSLASHcref] = ACTIONS(1965), - [anon_sym_BSLASHCref] = ACTIONS(1965), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnameCref] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHlabelcref] = ACTIONS(1965), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCrefrange] = ACTIONS(1965), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnewlabel] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), - [anon_sym_BSLASHdef] = ACTIONS(1965), - [anon_sym_BSLASHlet] = ACTIONS(1965), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), - [anon_sym_BSLASHgls] = ACTIONS(1965), - [anon_sym_BSLASHGls] = ACTIONS(1965), - [anon_sym_BSLASHGLS] = ACTIONS(1965), - [anon_sym_BSLASHglspl] = ACTIONS(1965), - [anon_sym_BSLASHGlspl] = ACTIONS(1965), - [anon_sym_BSLASHGLSpl] = ACTIONS(1965), - [anon_sym_BSLASHglsdisp] = ACTIONS(1965), - [anon_sym_BSLASHglslink] = ACTIONS(1965), - [anon_sym_BSLASHglstext] = ACTIONS(1965), - [anon_sym_BSLASHGlstext] = ACTIONS(1965), - [anon_sym_BSLASHGLStext] = ACTIONS(1965), - [anon_sym_BSLASHglsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), - [anon_sym_BSLASHglsplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSplural] = ACTIONS(1965), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHglsname] = ACTIONS(1965), - [anon_sym_BSLASHGlsname] = ACTIONS(1965), - [anon_sym_BSLASHGLSname] = ACTIONS(1965), - [anon_sym_BSLASHglssymbol] = ACTIONS(1965), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), - [anon_sym_BSLASHglsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), - [anon_sym_BSLASHglsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), - [anon_sym_BSLASHglsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), - [anon_sym_BSLASHglsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), - [anon_sym_BSLASHglsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), - [anon_sym_BSLASHnewacronym] = ACTIONS(1965), - [anon_sym_BSLASHacrshort] = ACTIONS(1965), - [anon_sym_BSLASHAcrshort] = ACTIONS(1965), - [anon_sym_BSLASHACRshort] = ACTIONS(1965), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), - [anon_sym_BSLASHacrlong] = ACTIONS(1965), - [anon_sym_BSLASHAcrlong] = ACTIONS(1965), - [anon_sym_BSLASHACRlong] = ACTIONS(1965), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), - [anon_sym_BSLASHacrfull] = ACTIONS(1965), - [anon_sym_BSLASHAcrfull] = ACTIONS(1965), - [anon_sym_BSLASHACRfull] = ACTIONS(1965), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), - [anon_sym_BSLASHacs] = ACTIONS(1965), - [anon_sym_BSLASHAcs] = ACTIONS(1965), - [anon_sym_BSLASHacsp] = ACTIONS(1965), - [anon_sym_BSLASHAcsp] = ACTIONS(1965), - [anon_sym_BSLASHacl] = ACTIONS(1965), - [anon_sym_BSLASHAcl] = ACTIONS(1965), - [anon_sym_BSLASHaclp] = ACTIONS(1965), - [anon_sym_BSLASHAclp] = ACTIONS(1965), - [anon_sym_BSLASHacf] = ACTIONS(1965), - [anon_sym_BSLASHAcf] = ACTIONS(1965), - [anon_sym_BSLASHacfp] = ACTIONS(1965), - [anon_sym_BSLASHAcfp] = ACTIONS(1965), - [anon_sym_BSLASHac] = ACTIONS(1965), - [anon_sym_BSLASHAc] = ACTIONS(1965), - [anon_sym_BSLASHacp] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), - [anon_sym_BSLASHcolor] = ACTIONS(1965), - [anon_sym_BSLASHcolorbox] = ACTIONS(1965), - [anon_sym_BSLASHtextcolor] = ACTIONS(1965), - [anon_sym_BSLASHpagecolor] = ACTIONS(1965), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), - [anon_sym_BSLASHtext] = ACTIONS(1965), - [anon_sym_BSLASHintertext] = ACTIONS(1965), - [anon_sym_shortintertext] = ACTIONS(1965), + [sym_command_name] = ACTIONS(1990), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1988), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(1988), + [sym_word] = ACTIONS(1990), + [sym_placeholder] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym__] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1988), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1988), + [anon_sym_BSLASHbegin] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(1990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1990), + [anon_sym_BSLASHinclude] = ACTIONS(1990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1990), + [anon_sym_BSLASHinput] = ACTIONS(1990), + [anon_sym_BSLASHsubfile] = ACTIONS(1990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1990), + [anon_sym_BSLASHbibliography] = ACTIONS(1990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1990), + [anon_sym_BSLASHincludesvg] = ACTIONS(1990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1990), + [anon_sym_BSLASHimport] = ACTIONS(1990), + [anon_sym_BSLASHsubimport] = ACTIONS(1990), + [anon_sym_BSLASHinputfrom] = ACTIONS(1990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1990), + [anon_sym_BSLASHincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHcaption] = ACTIONS(1990), + [anon_sym_BSLASHcite] = ACTIONS(1990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCite] = ACTIONS(1990), + [anon_sym_BSLASHnocite] = ACTIONS(1990), + [anon_sym_BSLASHcitet] = ACTIONS(1990), + [anon_sym_BSLASHcitep] = ACTIONS(1990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteauthor] = ACTIONS(1990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitetitle] = ACTIONS(1990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteyear] = ACTIONS(1990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitedate] = ACTIONS(1990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteurl] = ACTIONS(1990), + [anon_sym_BSLASHfullcite] = ACTIONS(1990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1990), + [anon_sym_BSLASHcitealt] = ACTIONS(1990), + [anon_sym_BSLASHcitealp] = ACTIONS(1990), + [anon_sym_BSLASHcitetext] = ACTIONS(1990), + [anon_sym_BSLASHparencite] = ACTIONS(1990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHParencite] = ACTIONS(1990), + [anon_sym_BSLASHfootcite] = ACTIONS(1990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1990), + [anon_sym_BSLASHtextcite] = ACTIONS(1990), + [anon_sym_BSLASHTextcite] = ACTIONS(1990), + [anon_sym_BSLASHsmartcite] = ACTIONS(1990), + [anon_sym_BSLASHSmartcite] = ACTIONS(1990), + [anon_sym_BSLASHsupercite] = ACTIONS(1990), + [anon_sym_BSLASHautocite] = ACTIONS(1990), + [anon_sym_BSLASHAutocite] = ACTIONS(1990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHvolcite] = ACTIONS(1990), + [anon_sym_BSLASHVolcite] = ACTIONS(1990), + [anon_sym_BSLASHpvolcite] = ACTIONS(1990), + [anon_sym_BSLASHPvolcite] = ACTIONS(1990), + [anon_sym_BSLASHfvolcite] = ACTIONS(1990), + [anon_sym_BSLASHftvolcite] = ACTIONS(1990), + [anon_sym_BSLASHsvolcite] = ACTIONS(1990), + [anon_sym_BSLASHSvolcite] = ACTIONS(1990), + [anon_sym_BSLASHtvolcite] = ACTIONS(1990), + [anon_sym_BSLASHTvolcite] = ACTIONS(1990), + [anon_sym_BSLASHavolcite] = ACTIONS(1990), + [anon_sym_BSLASHAvolcite] = ACTIONS(1990), + [anon_sym_BSLASHnotecite] = ACTIONS(1990), + [anon_sym_BSLASHNotecite] = ACTIONS(1990), + [anon_sym_BSLASHpnotecite] = ACTIONS(1990), + [anon_sym_BSLASHPnotecite] = ACTIONS(1990), + [anon_sym_BSLASHfnotecite] = ACTIONS(1990), + [anon_sym_BSLASHlabel] = ACTIONS(1990), + [anon_sym_BSLASHref] = ACTIONS(1990), + [anon_sym_BSLASHeqref] = ACTIONS(1990), + [anon_sym_BSLASHvref] = ACTIONS(1990), + [anon_sym_BSLASHVref] = ACTIONS(1990), + [anon_sym_BSLASHautoref] = ACTIONS(1990), + [anon_sym_BSLASHpageref] = ACTIONS(1990), + [anon_sym_BSLASHcref] = ACTIONS(1990), + [anon_sym_BSLASHCref] = ACTIONS(1990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnameCref] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHlabelcref] = ACTIONS(1990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCrefrange] = ACTIONS(1990), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnewlabel] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1990), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1990), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdef] = ACTIONS(1990), + [anon_sym_BSLASHlet] = ACTIONS(1990), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1990), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1990), + [anon_sym_BSLASHgls] = ACTIONS(1990), + [anon_sym_BSLASHGls] = ACTIONS(1990), + [anon_sym_BSLASHGLS] = ACTIONS(1990), + [anon_sym_BSLASHglspl] = ACTIONS(1990), + [anon_sym_BSLASHGlspl] = ACTIONS(1990), + [anon_sym_BSLASHGLSpl] = ACTIONS(1990), + [anon_sym_BSLASHglsdisp] = ACTIONS(1990), + [anon_sym_BSLASHglslink] = ACTIONS(1990), + [anon_sym_BSLASHglstext] = ACTIONS(1990), + [anon_sym_BSLASHGlstext] = ACTIONS(1990), + [anon_sym_BSLASHGLStext] = ACTIONS(1990), + [anon_sym_BSLASHglsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1990), + [anon_sym_BSLASHglsplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSplural] = ACTIONS(1990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHglsname] = ACTIONS(1990), + [anon_sym_BSLASHGlsname] = ACTIONS(1990), + [anon_sym_BSLASHGLSname] = ACTIONS(1990), + [anon_sym_BSLASHglssymbol] = ACTIONS(1990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1990), + [anon_sym_BSLASHglsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1990), + [anon_sym_BSLASHglsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1990), + [anon_sym_BSLASHglsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1990), + [anon_sym_BSLASHglsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1990), + [anon_sym_BSLASHglsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1990), + [anon_sym_BSLASHnewacronym] = ACTIONS(1990), + [anon_sym_BSLASHacrshort] = ACTIONS(1990), + [anon_sym_BSLASHAcrshort] = ACTIONS(1990), + [anon_sym_BSLASHACRshort] = ACTIONS(1990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1990), + [anon_sym_BSLASHacrlong] = ACTIONS(1990), + [anon_sym_BSLASHAcrlong] = ACTIONS(1990), + [anon_sym_BSLASHACRlong] = ACTIONS(1990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1990), + [anon_sym_BSLASHacrfull] = ACTIONS(1990), + [anon_sym_BSLASHAcrfull] = ACTIONS(1990), + [anon_sym_BSLASHACRfull] = ACTIONS(1990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1990), + [anon_sym_BSLASHacs] = ACTIONS(1990), + [anon_sym_BSLASHAcs] = ACTIONS(1990), + [anon_sym_BSLASHacsp] = ACTIONS(1990), + [anon_sym_BSLASHAcsp] = ACTIONS(1990), + [anon_sym_BSLASHacl] = ACTIONS(1990), + [anon_sym_BSLASHAcl] = ACTIONS(1990), + [anon_sym_BSLASHaclp] = ACTIONS(1990), + [anon_sym_BSLASHAclp] = ACTIONS(1990), + [anon_sym_BSLASHacf] = ACTIONS(1990), + [anon_sym_BSLASHAcf] = ACTIONS(1990), + [anon_sym_BSLASHacfp] = ACTIONS(1990), + [anon_sym_BSLASHAcfp] = ACTIONS(1990), + [anon_sym_BSLASHac] = ACTIONS(1990), + [anon_sym_BSLASHAc] = ACTIONS(1990), + [anon_sym_BSLASHacp] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1990), + [anon_sym_BSLASHcolor] = ACTIONS(1990), + [anon_sym_BSLASHcolorbox] = ACTIONS(1990), + [anon_sym_BSLASHtextcolor] = ACTIONS(1990), + [anon_sym_BSLASHpagecolor] = ACTIONS(1990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1990), + [anon_sym_BSLASHtext] = ACTIONS(1990), + [anon_sym_BSLASHintertext] = ACTIONS(1990), + [anon_sym_shortintertext] = ACTIONS(1990), }, [510] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [511] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [512] = { [sym__section_declaration] = STATE(145), [sym_section] = STATE(393), [aux_sym__section_repeat3] = STATE(393), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [513] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [514] = { [sym__part_declaration] = STATE(125), [sym_part] = STATE(514), [aux_sym__section_repeat1] = STATE(514), - [sym_command_name] = ACTIONS(4569), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4569), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4567), - [anon_sym_RBRACK] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4698), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4698), - [anon_sym_BSLASHchapter] = ACTIONS(4569), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddchap] = ACTIONS(4569), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsection] = ACTIONS(4569), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddsec] = ACTIONS(4569), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHparagraph] = ACTIONS(4569), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHitem] = ACTIONS(4569), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [sym_word] = ACTIONS(4569), - [sym_placeholder] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym__] = ACTIONS(4569), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_PIPE] = ACTIONS(4569), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), - [anon_sym_BSLASHbegin] = ACTIONS(4569), - [anon_sym_BSLASHusepackage] = ACTIONS(4569), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), - [anon_sym_BSLASHinclude] = ACTIONS(4569), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), - [anon_sym_BSLASHinput] = ACTIONS(4569), - [anon_sym_BSLASHsubfile] = ACTIONS(4569), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), - [anon_sym_BSLASHbibliography] = ACTIONS(4569), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), - [anon_sym_BSLASHincludesvg] = ACTIONS(4569), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), - [anon_sym_BSLASHimport] = ACTIONS(4569), - [anon_sym_BSLASHsubimport] = ACTIONS(4569), - [anon_sym_BSLASHinputfrom] = ACTIONS(4569), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), - [anon_sym_BSLASHincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHcaption] = ACTIONS(4569), - [anon_sym_BSLASHcite] = ACTIONS(4569), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCite] = ACTIONS(4569), - [anon_sym_BSLASHnocite] = ACTIONS(4569), - [anon_sym_BSLASHcitet] = ACTIONS(4569), - [anon_sym_BSLASHcitep] = ACTIONS(4569), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteauthor] = ACTIONS(4569), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitetitle] = ACTIONS(4569), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteyear] = ACTIONS(4569), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitedate] = ACTIONS(4569), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteurl] = ACTIONS(4569), - [anon_sym_BSLASHfullcite] = ACTIONS(4569), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), - [anon_sym_BSLASHcitealt] = ACTIONS(4569), - [anon_sym_BSLASHcitealp] = ACTIONS(4569), - [anon_sym_BSLASHcitetext] = ACTIONS(4569), - [anon_sym_BSLASHparencite] = ACTIONS(4569), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHParencite] = ACTIONS(4569), - [anon_sym_BSLASHfootcite] = ACTIONS(4569), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), - [anon_sym_BSLASHtextcite] = ACTIONS(4569), - [anon_sym_BSLASHTextcite] = ACTIONS(4569), - [anon_sym_BSLASHsmartcite] = ACTIONS(4569), - [anon_sym_BSLASHSmartcite] = ACTIONS(4569), - [anon_sym_BSLASHsupercite] = ACTIONS(4569), - [anon_sym_BSLASHautocite] = ACTIONS(4569), - [anon_sym_BSLASHAutocite] = ACTIONS(4569), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHvolcite] = ACTIONS(4569), - [anon_sym_BSLASHVolcite] = ACTIONS(4569), - [anon_sym_BSLASHpvolcite] = ACTIONS(4569), - [anon_sym_BSLASHPvolcite] = ACTIONS(4569), - [anon_sym_BSLASHfvolcite] = ACTIONS(4569), - [anon_sym_BSLASHftvolcite] = ACTIONS(4569), - [anon_sym_BSLASHsvolcite] = ACTIONS(4569), - [anon_sym_BSLASHSvolcite] = ACTIONS(4569), - [anon_sym_BSLASHtvolcite] = ACTIONS(4569), - [anon_sym_BSLASHTvolcite] = ACTIONS(4569), - [anon_sym_BSLASHavolcite] = ACTIONS(4569), - [anon_sym_BSLASHAvolcite] = ACTIONS(4569), - [anon_sym_BSLASHnotecite] = ACTIONS(4569), - [anon_sym_BSLASHNotecite] = ACTIONS(4569), - [anon_sym_BSLASHpnotecite] = ACTIONS(4569), - [anon_sym_BSLASHPnotecite] = ACTIONS(4569), - [anon_sym_BSLASHfnotecite] = ACTIONS(4569), - [anon_sym_BSLASHlabel] = ACTIONS(4569), - [anon_sym_BSLASHref] = ACTIONS(4569), - [anon_sym_BSLASHeqref] = ACTIONS(4569), - [anon_sym_BSLASHvref] = ACTIONS(4569), - [anon_sym_BSLASHVref] = ACTIONS(4569), - [anon_sym_BSLASHautoref] = ACTIONS(4569), - [anon_sym_BSLASHpageref] = ACTIONS(4569), - [anon_sym_BSLASHcref] = ACTIONS(4569), - [anon_sym_BSLASHCref] = ACTIONS(4569), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnameCref] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHlabelcref] = ACTIONS(4569), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnewlabel] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), - [anon_sym_BSLASHdef] = ACTIONS(4569), - [anon_sym_BSLASHlet] = ACTIONS(4569), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), - [anon_sym_BSLASHgls] = ACTIONS(4569), - [anon_sym_BSLASHGls] = ACTIONS(4569), - [anon_sym_BSLASHGLS] = ACTIONS(4569), - [anon_sym_BSLASHglspl] = ACTIONS(4569), - [anon_sym_BSLASHGlspl] = ACTIONS(4569), - [anon_sym_BSLASHGLSpl] = ACTIONS(4569), - [anon_sym_BSLASHglsdisp] = ACTIONS(4569), - [anon_sym_BSLASHglslink] = ACTIONS(4569), - [anon_sym_BSLASHglstext] = ACTIONS(4569), - [anon_sym_BSLASHGlstext] = ACTIONS(4569), - [anon_sym_BSLASHGLStext] = ACTIONS(4569), - [anon_sym_BSLASHglsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), - [anon_sym_BSLASHglsplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSplural] = ACTIONS(4569), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHglsname] = ACTIONS(4569), - [anon_sym_BSLASHGlsname] = ACTIONS(4569), - [anon_sym_BSLASHGLSname] = ACTIONS(4569), - [anon_sym_BSLASHglssymbol] = ACTIONS(4569), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), - [anon_sym_BSLASHglsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), - [anon_sym_BSLASHglsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), - [anon_sym_BSLASHglsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), - [anon_sym_BSLASHglsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), - [anon_sym_BSLASHglsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), - [anon_sym_BSLASHnewacronym] = ACTIONS(4569), - [anon_sym_BSLASHacrshort] = ACTIONS(4569), - [anon_sym_BSLASHAcrshort] = ACTIONS(4569), - [anon_sym_BSLASHACRshort] = ACTIONS(4569), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), - [anon_sym_BSLASHacrlong] = ACTIONS(4569), - [anon_sym_BSLASHAcrlong] = ACTIONS(4569), - [anon_sym_BSLASHACRlong] = ACTIONS(4569), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), - [anon_sym_BSLASHacrfull] = ACTIONS(4569), - [anon_sym_BSLASHAcrfull] = ACTIONS(4569), - [anon_sym_BSLASHACRfull] = ACTIONS(4569), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), - [anon_sym_BSLASHacs] = ACTIONS(4569), - [anon_sym_BSLASHAcs] = ACTIONS(4569), - [anon_sym_BSLASHacsp] = ACTIONS(4569), - [anon_sym_BSLASHAcsp] = ACTIONS(4569), - [anon_sym_BSLASHacl] = ACTIONS(4569), - [anon_sym_BSLASHAcl] = ACTIONS(4569), - [anon_sym_BSLASHaclp] = ACTIONS(4569), - [anon_sym_BSLASHAclp] = ACTIONS(4569), - [anon_sym_BSLASHacf] = ACTIONS(4569), - [anon_sym_BSLASHAcf] = ACTIONS(4569), - [anon_sym_BSLASHacfp] = ACTIONS(4569), - [anon_sym_BSLASHAcfp] = ACTIONS(4569), - [anon_sym_BSLASHac] = ACTIONS(4569), - [anon_sym_BSLASHAc] = ACTIONS(4569), - [anon_sym_BSLASHacp] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), - [anon_sym_BSLASHcolor] = ACTIONS(4569), - [anon_sym_BSLASHcolorbox] = ACTIONS(4569), - [anon_sym_BSLASHtextcolor] = ACTIONS(4569), - [anon_sym_BSLASHpagecolor] = ACTIONS(4569), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), - [anon_sym_BSLASHtext] = ACTIONS(4569), - [anon_sym_BSLASHintertext] = ACTIONS(4569), - [anon_sym_shortintertext] = ACTIONS(4569), + [sym_command_name] = ACTIONS(4648), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_BSLASHpart] = ACTIONS(4774), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4777), + [anon_sym_BSLASHaddpart] = ACTIONS(4774), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4777), + [anon_sym_BSLASHchapter] = ACTIONS(4648), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddchap] = ACTIONS(4648), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsection] = ACTIONS(4648), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddsec] = ACTIONS(4648), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHparagraph] = ACTIONS(4648), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4648), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHitem] = ACTIONS(4648), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [sym_word] = ACTIONS(4648), + [sym_placeholder] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym__] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4646), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4646), + [anon_sym_BSLASHbegin] = ACTIONS(4648), + [anon_sym_BSLASHusepackage] = ACTIONS(4648), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4648), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4648), + [anon_sym_BSLASHinclude] = ACTIONS(4648), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4648), + [anon_sym_BSLASHinput] = ACTIONS(4648), + [anon_sym_BSLASHsubfile] = ACTIONS(4648), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4648), + [anon_sym_BSLASHbibliography] = ACTIONS(4648), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4648), + [anon_sym_BSLASHincludesvg] = ACTIONS(4648), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4648), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4648), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4648), + [anon_sym_BSLASHimport] = ACTIONS(4648), + [anon_sym_BSLASHsubimport] = ACTIONS(4648), + [anon_sym_BSLASHinputfrom] = ACTIONS(4648), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4648), + [anon_sym_BSLASHincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHcaption] = ACTIONS(4648), + [anon_sym_BSLASHcite] = ACTIONS(4648), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCite] = ACTIONS(4648), + [anon_sym_BSLASHnocite] = ACTIONS(4648), + [anon_sym_BSLASHcitet] = ACTIONS(4648), + [anon_sym_BSLASHcitep] = ACTIONS(4648), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteauthor] = ACTIONS(4648), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4648), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitetitle] = ACTIONS(4648), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteyear] = ACTIONS(4648), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitedate] = ACTIONS(4648), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteurl] = ACTIONS(4648), + [anon_sym_BSLASHfullcite] = ACTIONS(4648), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4648), + [anon_sym_BSLASHcitealt] = ACTIONS(4648), + [anon_sym_BSLASHcitealp] = ACTIONS(4648), + [anon_sym_BSLASHcitetext] = ACTIONS(4648), + [anon_sym_BSLASHparencite] = ACTIONS(4648), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHParencite] = ACTIONS(4648), + [anon_sym_BSLASHfootcite] = ACTIONS(4648), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4648), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4648), + [anon_sym_BSLASHtextcite] = ACTIONS(4648), + [anon_sym_BSLASHTextcite] = ACTIONS(4648), + [anon_sym_BSLASHsmartcite] = ACTIONS(4648), + [anon_sym_BSLASHSmartcite] = ACTIONS(4648), + [anon_sym_BSLASHsupercite] = ACTIONS(4648), + [anon_sym_BSLASHautocite] = ACTIONS(4648), + [anon_sym_BSLASHAutocite] = ACTIONS(4648), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHvolcite] = ACTIONS(4648), + [anon_sym_BSLASHVolcite] = ACTIONS(4648), + [anon_sym_BSLASHpvolcite] = ACTIONS(4648), + [anon_sym_BSLASHPvolcite] = ACTIONS(4648), + [anon_sym_BSLASHfvolcite] = ACTIONS(4648), + [anon_sym_BSLASHftvolcite] = ACTIONS(4648), + [anon_sym_BSLASHsvolcite] = ACTIONS(4648), + [anon_sym_BSLASHSvolcite] = ACTIONS(4648), + [anon_sym_BSLASHtvolcite] = ACTIONS(4648), + [anon_sym_BSLASHTvolcite] = ACTIONS(4648), + [anon_sym_BSLASHavolcite] = ACTIONS(4648), + [anon_sym_BSLASHAvolcite] = ACTIONS(4648), + [anon_sym_BSLASHnotecite] = ACTIONS(4648), + [anon_sym_BSLASHNotecite] = ACTIONS(4648), + [anon_sym_BSLASHpnotecite] = ACTIONS(4648), + [anon_sym_BSLASHPnotecite] = ACTIONS(4648), + [anon_sym_BSLASHfnotecite] = ACTIONS(4648), + [anon_sym_BSLASHlabel] = ACTIONS(4648), + [anon_sym_BSLASHref] = ACTIONS(4648), + [anon_sym_BSLASHeqref] = ACTIONS(4648), + [anon_sym_BSLASHvref] = ACTIONS(4648), + [anon_sym_BSLASHVref] = ACTIONS(4648), + [anon_sym_BSLASHautoref] = ACTIONS(4648), + [anon_sym_BSLASHpageref] = ACTIONS(4648), + [anon_sym_BSLASHcref] = ACTIONS(4648), + [anon_sym_BSLASHCref] = ACTIONS(4648), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnameCref] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHlabelcref] = ACTIONS(4648), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCrefrange] = ACTIONS(4648), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnewlabel] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4648), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4648), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4648), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdef] = ACTIONS(4648), + [anon_sym_BSLASHlet] = ACTIONS(4648), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4648), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4648), + [anon_sym_BSLASHgls] = ACTIONS(4648), + [anon_sym_BSLASHGls] = ACTIONS(4648), + [anon_sym_BSLASHGLS] = ACTIONS(4648), + [anon_sym_BSLASHglspl] = ACTIONS(4648), + [anon_sym_BSLASHGlspl] = ACTIONS(4648), + [anon_sym_BSLASHGLSpl] = ACTIONS(4648), + [anon_sym_BSLASHglsdisp] = ACTIONS(4648), + [anon_sym_BSLASHglslink] = ACTIONS(4648), + [anon_sym_BSLASHglstext] = ACTIONS(4648), + [anon_sym_BSLASHGlstext] = ACTIONS(4648), + [anon_sym_BSLASHGLStext] = ACTIONS(4648), + [anon_sym_BSLASHglsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4648), + [anon_sym_BSLASHglsplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSplural] = ACTIONS(4648), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHglsname] = ACTIONS(4648), + [anon_sym_BSLASHGlsname] = ACTIONS(4648), + [anon_sym_BSLASHGLSname] = ACTIONS(4648), + [anon_sym_BSLASHglssymbol] = ACTIONS(4648), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4648), + [anon_sym_BSLASHglsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4648), + [anon_sym_BSLASHglsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4648), + [anon_sym_BSLASHglsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4648), + [anon_sym_BSLASHglsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4648), + [anon_sym_BSLASHglsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4648), + [anon_sym_BSLASHnewacronym] = ACTIONS(4648), + [anon_sym_BSLASHacrshort] = ACTIONS(4648), + [anon_sym_BSLASHAcrshort] = ACTIONS(4648), + [anon_sym_BSLASHACRshort] = ACTIONS(4648), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4648), + [anon_sym_BSLASHacrlong] = ACTIONS(4648), + [anon_sym_BSLASHAcrlong] = ACTIONS(4648), + [anon_sym_BSLASHACRlong] = ACTIONS(4648), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4648), + [anon_sym_BSLASHacrfull] = ACTIONS(4648), + [anon_sym_BSLASHAcrfull] = ACTIONS(4648), + [anon_sym_BSLASHACRfull] = ACTIONS(4648), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4648), + [anon_sym_BSLASHacs] = ACTIONS(4648), + [anon_sym_BSLASHAcs] = ACTIONS(4648), + [anon_sym_BSLASHacsp] = ACTIONS(4648), + [anon_sym_BSLASHAcsp] = ACTIONS(4648), + [anon_sym_BSLASHacl] = ACTIONS(4648), + [anon_sym_BSLASHAcl] = ACTIONS(4648), + [anon_sym_BSLASHaclp] = ACTIONS(4648), + [anon_sym_BSLASHAclp] = ACTIONS(4648), + [anon_sym_BSLASHacf] = ACTIONS(4648), + [anon_sym_BSLASHAcf] = ACTIONS(4648), + [anon_sym_BSLASHacfp] = ACTIONS(4648), + [anon_sym_BSLASHAcfp] = ACTIONS(4648), + [anon_sym_BSLASHac] = ACTIONS(4648), + [anon_sym_BSLASHAc] = ACTIONS(4648), + [anon_sym_BSLASHacp] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4648), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4648), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4648), + [anon_sym_BSLASHcolor] = ACTIONS(4648), + [anon_sym_BSLASHcolorbox] = ACTIONS(4648), + [anon_sym_BSLASHtextcolor] = ACTIONS(4648), + [anon_sym_BSLASHpagecolor] = ACTIONS(4648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4648), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4648), + [anon_sym_BSLASHtext] = ACTIONS(4648), + [anon_sym_BSLASHintertext] = ACTIONS(4648), + [anon_sym_shortintertext] = ACTIONS(4648), }, [515] = { [sym__chapter_declaration] = STATE(137), [sym_chapter] = STATE(515), [aux_sym__section_repeat2] = STATE(515), - [sym_command_name] = ACTIONS(4555), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_RPAREN] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_RBRACK] = ACTIONS(4553), - [anon_sym_COMMA] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_BSLASHpart] = ACTIONS(4555), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddpart] = ACTIONS(4555), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHchapter] = ACTIONS(4701), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4704), - [anon_sym_BSLASHaddchap] = ACTIONS(4701), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4704), - [anon_sym_BSLASHsection] = ACTIONS(4555), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddsec] = ACTIONS(4555), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHparagraph] = ACTIONS(4555), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHitem] = ACTIONS(4555), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4553), - [sym_word] = ACTIONS(4555), - [sym_placeholder] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym__] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4553), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), - [anon_sym_BSLASHbegin] = ACTIONS(4555), - [anon_sym_BSLASHusepackage] = ACTIONS(4555), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), - [anon_sym_BSLASHinclude] = ACTIONS(4555), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), - [anon_sym_BSLASHinput] = ACTIONS(4555), - [anon_sym_BSLASHsubfile] = ACTIONS(4555), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), - [anon_sym_BSLASHbibliography] = ACTIONS(4555), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), - [anon_sym_BSLASHincludesvg] = ACTIONS(4555), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), - [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(4555), - [anon_sym_BSLASHcite] = ACTIONS(4555), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCite] = ACTIONS(4555), - [anon_sym_BSLASHnocite] = ACTIONS(4555), - [anon_sym_BSLASHcitet] = ACTIONS(4555), - [anon_sym_BSLASHcitep] = ACTIONS(4555), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteauthor] = ACTIONS(4555), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitetitle] = ACTIONS(4555), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteyear] = ACTIONS(4555), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitedate] = ACTIONS(4555), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteurl] = ACTIONS(4555), - [anon_sym_BSLASHfullcite] = ACTIONS(4555), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), - [anon_sym_BSLASHcitealt] = ACTIONS(4555), - [anon_sym_BSLASHcitealp] = ACTIONS(4555), - [anon_sym_BSLASHcitetext] = ACTIONS(4555), - [anon_sym_BSLASHparencite] = ACTIONS(4555), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHParencite] = ACTIONS(4555), - [anon_sym_BSLASHfootcite] = ACTIONS(4555), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), - [anon_sym_BSLASHtextcite] = ACTIONS(4555), - [anon_sym_BSLASHTextcite] = ACTIONS(4555), - [anon_sym_BSLASHsmartcite] = ACTIONS(4555), - [anon_sym_BSLASHSmartcite] = ACTIONS(4555), - [anon_sym_BSLASHsupercite] = ACTIONS(4555), - [anon_sym_BSLASHautocite] = ACTIONS(4555), - [anon_sym_BSLASHAutocite] = ACTIONS(4555), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHvolcite] = ACTIONS(4555), - [anon_sym_BSLASHVolcite] = ACTIONS(4555), - [anon_sym_BSLASHpvolcite] = ACTIONS(4555), - [anon_sym_BSLASHPvolcite] = ACTIONS(4555), - [anon_sym_BSLASHfvolcite] = ACTIONS(4555), - [anon_sym_BSLASHftvolcite] = ACTIONS(4555), - [anon_sym_BSLASHsvolcite] = ACTIONS(4555), - [anon_sym_BSLASHSvolcite] = ACTIONS(4555), - [anon_sym_BSLASHtvolcite] = ACTIONS(4555), - [anon_sym_BSLASHTvolcite] = ACTIONS(4555), - [anon_sym_BSLASHavolcite] = ACTIONS(4555), - [anon_sym_BSLASHAvolcite] = ACTIONS(4555), - [anon_sym_BSLASHnotecite] = ACTIONS(4555), - [anon_sym_BSLASHNotecite] = ACTIONS(4555), - [anon_sym_BSLASHpnotecite] = ACTIONS(4555), - [anon_sym_BSLASHPnotecite] = ACTIONS(4555), - [anon_sym_BSLASHfnotecite] = ACTIONS(4555), - [anon_sym_BSLASHlabel] = ACTIONS(4555), - [anon_sym_BSLASHref] = ACTIONS(4555), - [anon_sym_BSLASHeqref] = ACTIONS(4555), - [anon_sym_BSLASHvref] = ACTIONS(4555), - [anon_sym_BSLASHVref] = ACTIONS(4555), - [anon_sym_BSLASHautoref] = ACTIONS(4555), - [anon_sym_BSLASHpageref] = ACTIONS(4555), - [anon_sym_BSLASHcref] = ACTIONS(4555), - [anon_sym_BSLASHCref] = ACTIONS(4555), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnameCref] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHlabelcref] = ACTIONS(4555), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCrefrange] = ACTIONS(4555), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnewlabel] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), - [anon_sym_BSLASHdef] = ACTIONS(4555), - [anon_sym_BSLASHlet] = ACTIONS(4555), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), - [anon_sym_BSLASHgls] = ACTIONS(4555), - [anon_sym_BSLASHGls] = ACTIONS(4555), - [anon_sym_BSLASHGLS] = ACTIONS(4555), - [anon_sym_BSLASHglspl] = ACTIONS(4555), - [anon_sym_BSLASHGlspl] = ACTIONS(4555), - [anon_sym_BSLASHGLSpl] = ACTIONS(4555), - [anon_sym_BSLASHglsdisp] = ACTIONS(4555), - [anon_sym_BSLASHglslink] = ACTIONS(4555), - [anon_sym_BSLASHglstext] = ACTIONS(4555), - [anon_sym_BSLASHGlstext] = ACTIONS(4555), - [anon_sym_BSLASHGLStext] = ACTIONS(4555), - [anon_sym_BSLASHglsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), - [anon_sym_BSLASHglsplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSplural] = ACTIONS(4555), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHglsname] = ACTIONS(4555), - [anon_sym_BSLASHGlsname] = ACTIONS(4555), - [anon_sym_BSLASHGLSname] = ACTIONS(4555), - [anon_sym_BSLASHglssymbol] = ACTIONS(4555), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), - [anon_sym_BSLASHglsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), - [anon_sym_BSLASHglsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), - [anon_sym_BSLASHglsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), - [anon_sym_BSLASHglsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), - [anon_sym_BSLASHglsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), - [anon_sym_BSLASHnewacronym] = ACTIONS(4555), - [anon_sym_BSLASHacrshort] = ACTIONS(4555), - [anon_sym_BSLASHAcrshort] = ACTIONS(4555), - [anon_sym_BSLASHACRshort] = ACTIONS(4555), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), - [anon_sym_BSLASHacrlong] = ACTIONS(4555), - [anon_sym_BSLASHAcrlong] = ACTIONS(4555), - [anon_sym_BSLASHACRlong] = ACTIONS(4555), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), - [anon_sym_BSLASHacrfull] = ACTIONS(4555), - [anon_sym_BSLASHAcrfull] = ACTIONS(4555), - [anon_sym_BSLASHACRfull] = ACTIONS(4555), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), - [anon_sym_BSLASHacs] = ACTIONS(4555), - [anon_sym_BSLASHAcs] = ACTIONS(4555), - [anon_sym_BSLASHacsp] = ACTIONS(4555), - [anon_sym_BSLASHAcsp] = ACTIONS(4555), - [anon_sym_BSLASHacl] = ACTIONS(4555), - [anon_sym_BSLASHAcl] = ACTIONS(4555), - [anon_sym_BSLASHaclp] = ACTIONS(4555), - [anon_sym_BSLASHAclp] = ACTIONS(4555), - [anon_sym_BSLASHacf] = ACTIONS(4555), - [anon_sym_BSLASHAcf] = ACTIONS(4555), - [anon_sym_BSLASHacfp] = ACTIONS(4555), - [anon_sym_BSLASHAcfp] = ACTIONS(4555), - [anon_sym_BSLASHac] = ACTIONS(4555), - [anon_sym_BSLASHAc] = ACTIONS(4555), - [anon_sym_BSLASHacp] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), - [anon_sym_BSLASHcolor] = ACTIONS(4555), - [anon_sym_BSLASHcolorbox] = ACTIONS(4555), - [anon_sym_BSLASHtextcolor] = ACTIONS(4555), - [anon_sym_BSLASHpagecolor] = ACTIONS(4555), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), - [anon_sym_BSLASHtext] = ACTIONS(4555), - [anon_sym_BSLASHintertext] = ACTIONS(4555), - [anon_sym_shortintertext] = ACTIONS(4555), + [sym_command_name] = ACTIONS(4634), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_BSLASHpart] = ACTIONS(4634), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddpart] = ACTIONS(4634), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHchapter] = ACTIONS(4780), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4783), + [anon_sym_BSLASHaddchap] = ACTIONS(4780), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4783), + [anon_sym_BSLASHsection] = ACTIONS(4634), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddsec] = ACTIONS(4634), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHparagraph] = ACTIONS(4634), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4634), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHitem] = ACTIONS(4634), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4632), + [sym_word] = ACTIONS(4634), + [sym_placeholder] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym__] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4632), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4632), + [anon_sym_BSLASHbegin] = ACTIONS(4634), + [anon_sym_BSLASHusepackage] = ACTIONS(4634), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4634), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4634), + [anon_sym_BSLASHinclude] = ACTIONS(4634), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4634), + [anon_sym_BSLASHinput] = ACTIONS(4634), + [anon_sym_BSLASHsubfile] = ACTIONS(4634), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4634), + [anon_sym_BSLASHbibliography] = ACTIONS(4634), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4634), + [anon_sym_BSLASHincludesvg] = ACTIONS(4634), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4634), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4634), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4634), + [anon_sym_BSLASHimport] = ACTIONS(4634), + [anon_sym_BSLASHsubimport] = ACTIONS(4634), + [anon_sym_BSLASHinputfrom] = ACTIONS(4634), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4634), + [anon_sym_BSLASHincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHcaption] = ACTIONS(4634), + [anon_sym_BSLASHcite] = ACTIONS(4634), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCite] = ACTIONS(4634), + [anon_sym_BSLASHnocite] = ACTIONS(4634), + [anon_sym_BSLASHcitet] = ACTIONS(4634), + [anon_sym_BSLASHcitep] = ACTIONS(4634), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteauthor] = ACTIONS(4634), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4634), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitetitle] = ACTIONS(4634), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteyear] = ACTIONS(4634), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitedate] = ACTIONS(4634), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteurl] = ACTIONS(4634), + [anon_sym_BSLASHfullcite] = ACTIONS(4634), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4634), + [anon_sym_BSLASHcitealt] = ACTIONS(4634), + [anon_sym_BSLASHcitealp] = ACTIONS(4634), + [anon_sym_BSLASHcitetext] = ACTIONS(4634), + [anon_sym_BSLASHparencite] = ACTIONS(4634), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHParencite] = ACTIONS(4634), + [anon_sym_BSLASHfootcite] = ACTIONS(4634), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4634), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4634), + [anon_sym_BSLASHtextcite] = ACTIONS(4634), + [anon_sym_BSLASHTextcite] = ACTIONS(4634), + [anon_sym_BSLASHsmartcite] = ACTIONS(4634), + [anon_sym_BSLASHSmartcite] = ACTIONS(4634), + [anon_sym_BSLASHsupercite] = ACTIONS(4634), + [anon_sym_BSLASHautocite] = ACTIONS(4634), + [anon_sym_BSLASHAutocite] = ACTIONS(4634), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHvolcite] = ACTIONS(4634), + [anon_sym_BSLASHVolcite] = ACTIONS(4634), + [anon_sym_BSLASHpvolcite] = ACTIONS(4634), + [anon_sym_BSLASHPvolcite] = ACTIONS(4634), + [anon_sym_BSLASHfvolcite] = ACTIONS(4634), + [anon_sym_BSLASHftvolcite] = ACTIONS(4634), + [anon_sym_BSLASHsvolcite] = ACTIONS(4634), + [anon_sym_BSLASHSvolcite] = ACTIONS(4634), + [anon_sym_BSLASHtvolcite] = ACTIONS(4634), + [anon_sym_BSLASHTvolcite] = ACTIONS(4634), + [anon_sym_BSLASHavolcite] = ACTIONS(4634), + [anon_sym_BSLASHAvolcite] = ACTIONS(4634), + [anon_sym_BSLASHnotecite] = ACTIONS(4634), + [anon_sym_BSLASHNotecite] = ACTIONS(4634), + [anon_sym_BSLASHpnotecite] = ACTIONS(4634), + [anon_sym_BSLASHPnotecite] = ACTIONS(4634), + [anon_sym_BSLASHfnotecite] = ACTIONS(4634), + [anon_sym_BSLASHlabel] = ACTIONS(4634), + [anon_sym_BSLASHref] = ACTIONS(4634), + [anon_sym_BSLASHeqref] = ACTIONS(4634), + [anon_sym_BSLASHvref] = ACTIONS(4634), + [anon_sym_BSLASHVref] = ACTIONS(4634), + [anon_sym_BSLASHautoref] = ACTIONS(4634), + [anon_sym_BSLASHpageref] = ACTIONS(4634), + [anon_sym_BSLASHcref] = ACTIONS(4634), + [anon_sym_BSLASHCref] = ACTIONS(4634), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnameCref] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHlabelcref] = ACTIONS(4634), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCrefrange] = ACTIONS(4634), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnewlabel] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4634), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4634), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4634), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdef] = ACTIONS(4634), + [anon_sym_BSLASHlet] = ACTIONS(4634), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4634), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4634), + [anon_sym_BSLASHgls] = ACTIONS(4634), + [anon_sym_BSLASHGls] = ACTIONS(4634), + [anon_sym_BSLASHGLS] = ACTIONS(4634), + [anon_sym_BSLASHglspl] = ACTIONS(4634), + [anon_sym_BSLASHGlspl] = ACTIONS(4634), + [anon_sym_BSLASHGLSpl] = ACTIONS(4634), + [anon_sym_BSLASHglsdisp] = ACTIONS(4634), + [anon_sym_BSLASHglslink] = ACTIONS(4634), + [anon_sym_BSLASHglstext] = ACTIONS(4634), + [anon_sym_BSLASHGlstext] = ACTIONS(4634), + [anon_sym_BSLASHGLStext] = ACTIONS(4634), + [anon_sym_BSLASHglsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4634), + [anon_sym_BSLASHglsplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSplural] = ACTIONS(4634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHglsname] = ACTIONS(4634), + [anon_sym_BSLASHGlsname] = ACTIONS(4634), + [anon_sym_BSLASHGLSname] = ACTIONS(4634), + [anon_sym_BSLASHglssymbol] = ACTIONS(4634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4634), + [anon_sym_BSLASHglsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4634), + [anon_sym_BSLASHglsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4634), + [anon_sym_BSLASHglsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4634), + [anon_sym_BSLASHglsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4634), + [anon_sym_BSLASHglsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4634), + [anon_sym_BSLASHnewacronym] = ACTIONS(4634), + [anon_sym_BSLASHacrshort] = ACTIONS(4634), + [anon_sym_BSLASHAcrshort] = ACTIONS(4634), + [anon_sym_BSLASHACRshort] = ACTIONS(4634), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4634), + [anon_sym_BSLASHacrlong] = ACTIONS(4634), + [anon_sym_BSLASHAcrlong] = ACTIONS(4634), + [anon_sym_BSLASHACRlong] = ACTIONS(4634), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4634), + [anon_sym_BSLASHacrfull] = ACTIONS(4634), + [anon_sym_BSLASHAcrfull] = ACTIONS(4634), + [anon_sym_BSLASHACRfull] = ACTIONS(4634), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4634), + [anon_sym_BSLASHacs] = ACTIONS(4634), + [anon_sym_BSLASHAcs] = ACTIONS(4634), + [anon_sym_BSLASHacsp] = ACTIONS(4634), + [anon_sym_BSLASHAcsp] = ACTIONS(4634), + [anon_sym_BSLASHacl] = ACTIONS(4634), + [anon_sym_BSLASHAcl] = ACTIONS(4634), + [anon_sym_BSLASHaclp] = ACTIONS(4634), + [anon_sym_BSLASHAclp] = ACTIONS(4634), + [anon_sym_BSLASHacf] = ACTIONS(4634), + [anon_sym_BSLASHAcf] = ACTIONS(4634), + [anon_sym_BSLASHacfp] = ACTIONS(4634), + [anon_sym_BSLASHAcfp] = ACTIONS(4634), + [anon_sym_BSLASHac] = ACTIONS(4634), + [anon_sym_BSLASHAc] = ACTIONS(4634), + [anon_sym_BSLASHacp] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4634), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4634), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4634), + [anon_sym_BSLASHcolor] = ACTIONS(4634), + [anon_sym_BSLASHcolorbox] = ACTIONS(4634), + [anon_sym_BSLASHtextcolor] = ACTIONS(4634), + [anon_sym_BSLASHpagecolor] = ACTIONS(4634), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4634), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4634), + [anon_sym_BSLASHtext] = ACTIONS(4634), + [anon_sym_BSLASHintertext] = ACTIONS(4634), + [anon_sym_shortintertext] = ACTIONS(4634), }, [516] = { [sym__section_declaration] = STATE(151), [sym_section] = STATE(516), [aux_sym__section_repeat3] = STATE(516), - [sym_command_name] = ACTIONS(4545), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4545), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_RBRACK] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_BSLASHpart] = ACTIONS(4545), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddpart] = ACTIONS(4545), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHchapter] = ACTIONS(4545), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddchap] = ACTIONS(4545), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsection] = ACTIONS(4707), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4710), - [anon_sym_BSLASHaddsec] = ACTIONS(4707), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4710), - [anon_sym_BSLASHsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHparagraph] = ACTIONS(4545), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(4545), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [sym_word] = ACTIONS(4545), - [sym_placeholder] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym__] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_PIPE] = ACTIONS(4545), - [anon_sym_COLON] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4545), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), - [anon_sym_BSLASHbegin] = ACTIONS(4545), - [anon_sym_BSLASHusepackage] = ACTIONS(4545), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), - [anon_sym_BSLASHinclude] = ACTIONS(4545), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), - [anon_sym_BSLASHinput] = ACTIONS(4545), - [anon_sym_BSLASHsubfile] = ACTIONS(4545), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), - [anon_sym_BSLASHincludesvg] = ACTIONS(4545), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), - [anon_sym_BSLASHimport] = ACTIONS(4545), - [anon_sym_BSLASHsubimport] = ACTIONS(4545), - [anon_sym_BSLASHinputfrom] = ACTIONS(4545), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), - [anon_sym_BSLASHincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHcaption] = ACTIONS(4545), - [anon_sym_BSLASHcite] = ACTIONS(4545), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCite] = ACTIONS(4545), - [anon_sym_BSLASHnocite] = ACTIONS(4545), - [anon_sym_BSLASHcitet] = ACTIONS(4545), - [anon_sym_BSLASHcitep] = ACTIONS(4545), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteauthor] = ACTIONS(4545), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitetitle] = ACTIONS(4545), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteyear] = ACTIONS(4545), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitedate] = ACTIONS(4545), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteurl] = ACTIONS(4545), - [anon_sym_BSLASHfullcite] = ACTIONS(4545), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), - [anon_sym_BSLASHcitealt] = ACTIONS(4545), - [anon_sym_BSLASHcitealp] = ACTIONS(4545), - [anon_sym_BSLASHcitetext] = ACTIONS(4545), - [anon_sym_BSLASHparencite] = ACTIONS(4545), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHParencite] = ACTIONS(4545), - [anon_sym_BSLASHfootcite] = ACTIONS(4545), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), - [anon_sym_BSLASHtextcite] = ACTIONS(4545), - [anon_sym_BSLASHTextcite] = ACTIONS(4545), - [anon_sym_BSLASHsmartcite] = ACTIONS(4545), - [anon_sym_BSLASHSmartcite] = ACTIONS(4545), - [anon_sym_BSLASHsupercite] = ACTIONS(4545), - [anon_sym_BSLASHautocite] = ACTIONS(4545), - [anon_sym_BSLASHAutocite] = ACTIONS(4545), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHvolcite] = ACTIONS(4545), - [anon_sym_BSLASHVolcite] = ACTIONS(4545), - [anon_sym_BSLASHpvolcite] = ACTIONS(4545), - [anon_sym_BSLASHPvolcite] = ACTIONS(4545), - [anon_sym_BSLASHfvolcite] = ACTIONS(4545), - [anon_sym_BSLASHftvolcite] = ACTIONS(4545), - [anon_sym_BSLASHsvolcite] = ACTIONS(4545), - [anon_sym_BSLASHSvolcite] = ACTIONS(4545), - [anon_sym_BSLASHtvolcite] = ACTIONS(4545), - [anon_sym_BSLASHTvolcite] = ACTIONS(4545), - [anon_sym_BSLASHavolcite] = ACTIONS(4545), - [anon_sym_BSLASHAvolcite] = ACTIONS(4545), - [anon_sym_BSLASHnotecite] = ACTIONS(4545), - [anon_sym_BSLASHNotecite] = ACTIONS(4545), - [anon_sym_BSLASHpnotecite] = ACTIONS(4545), - [anon_sym_BSLASHPnotecite] = ACTIONS(4545), - [anon_sym_BSLASHfnotecite] = ACTIONS(4545), - [anon_sym_BSLASHlabel] = ACTIONS(4545), - [anon_sym_BSLASHref] = ACTIONS(4545), - [anon_sym_BSLASHeqref] = ACTIONS(4545), - [anon_sym_BSLASHvref] = ACTIONS(4545), - [anon_sym_BSLASHVref] = ACTIONS(4545), - [anon_sym_BSLASHautoref] = ACTIONS(4545), - [anon_sym_BSLASHpageref] = ACTIONS(4545), - [anon_sym_BSLASHcref] = ACTIONS(4545), - [anon_sym_BSLASHCref] = ACTIONS(4545), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnameCref] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHlabelcref] = ACTIONS(4545), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCrefrange] = ACTIONS(4545), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnewlabel] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), - [anon_sym_BSLASHdef] = ACTIONS(4545), - [anon_sym_BSLASHlet] = ACTIONS(4545), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), - [anon_sym_BSLASHgls] = ACTIONS(4545), - [anon_sym_BSLASHGls] = ACTIONS(4545), - [anon_sym_BSLASHGLS] = ACTIONS(4545), - [anon_sym_BSLASHglspl] = ACTIONS(4545), - [anon_sym_BSLASHGlspl] = ACTIONS(4545), - [anon_sym_BSLASHGLSpl] = ACTIONS(4545), - [anon_sym_BSLASHglsdisp] = ACTIONS(4545), - [anon_sym_BSLASHglslink] = ACTIONS(4545), - [anon_sym_BSLASHglstext] = ACTIONS(4545), - [anon_sym_BSLASHGlstext] = ACTIONS(4545), - [anon_sym_BSLASHGLStext] = ACTIONS(4545), - [anon_sym_BSLASHglsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), - [anon_sym_BSLASHglsplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSplural] = ACTIONS(4545), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHglsname] = ACTIONS(4545), - [anon_sym_BSLASHGlsname] = ACTIONS(4545), - [anon_sym_BSLASHGLSname] = ACTIONS(4545), - [anon_sym_BSLASHglssymbol] = ACTIONS(4545), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), - [anon_sym_BSLASHglsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), - [anon_sym_BSLASHglsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), - [anon_sym_BSLASHglsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), - [anon_sym_BSLASHglsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), - [anon_sym_BSLASHglsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), - [anon_sym_BSLASHnewacronym] = ACTIONS(4545), - [anon_sym_BSLASHacrshort] = ACTIONS(4545), - [anon_sym_BSLASHAcrshort] = ACTIONS(4545), - [anon_sym_BSLASHACRshort] = ACTIONS(4545), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), - [anon_sym_BSLASHacrlong] = ACTIONS(4545), - [anon_sym_BSLASHAcrlong] = ACTIONS(4545), - [anon_sym_BSLASHACRlong] = ACTIONS(4545), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), - [anon_sym_BSLASHacrfull] = ACTIONS(4545), - [anon_sym_BSLASHAcrfull] = ACTIONS(4545), - [anon_sym_BSLASHACRfull] = ACTIONS(4545), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), - [anon_sym_BSLASHacs] = ACTIONS(4545), - [anon_sym_BSLASHAcs] = ACTIONS(4545), - [anon_sym_BSLASHacsp] = ACTIONS(4545), - [anon_sym_BSLASHAcsp] = ACTIONS(4545), - [anon_sym_BSLASHacl] = ACTIONS(4545), - [anon_sym_BSLASHAcl] = ACTIONS(4545), - [anon_sym_BSLASHaclp] = ACTIONS(4545), - [anon_sym_BSLASHAclp] = ACTIONS(4545), - [anon_sym_BSLASHacf] = ACTIONS(4545), - [anon_sym_BSLASHAcf] = ACTIONS(4545), - [anon_sym_BSLASHacfp] = ACTIONS(4545), - [anon_sym_BSLASHAcfp] = ACTIONS(4545), - [anon_sym_BSLASHac] = ACTIONS(4545), - [anon_sym_BSLASHAc] = ACTIONS(4545), - [anon_sym_BSLASHacp] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), - [anon_sym_BSLASHcolor] = ACTIONS(4545), - [anon_sym_BSLASHcolorbox] = ACTIONS(4545), - [anon_sym_BSLASHtextcolor] = ACTIONS(4545), - [anon_sym_BSLASHpagecolor] = ACTIONS(4545), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), - [anon_sym_BSLASHtext] = ACTIONS(4545), - [anon_sym_BSLASHintertext] = ACTIONS(4545), - [anon_sym_shortintertext] = ACTIONS(4545), + [sym_command_name] = ACTIONS(4624), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(4622), + [anon_sym_BSLASHpart] = ACTIONS(4624), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddpart] = ACTIONS(4624), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHchapter] = ACTIONS(4624), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddchap] = ACTIONS(4624), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsection] = ACTIONS(4786), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4789), + [anon_sym_BSLASHaddsec] = ACTIONS(4786), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4789), + [anon_sym_BSLASHsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHparagraph] = ACTIONS(4624), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4624), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHitem] = ACTIONS(4624), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [sym_word] = ACTIONS(4624), + [sym_placeholder] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4624), + [anon_sym__] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_SQUOTE] = ACTIONS(4624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4622), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4624), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4622), + [anon_sym_BSLASHbegin] = ACTIONS(4624), + [anon_sym_BSLASHusepackage] = ACTIONS(4624), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4624), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4624), + [anon_sym_BSLASHinclude] = ACTIONS(4624), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4624), + [anon_sym_BSLASHinput] = ACTIONS(4624), + [anon_sym_BSLASHsubfile] = ACTIONS(4624), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4624), + [anon_sym_BSLASHbibliography] = ACTIONS(4624), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4624), + [anon_sym_BSLASHincludesvg] = ACTIONS(4624), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4624), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4624), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4624), + [anon_sym_BSLASHimport] = ACTIONS(4624), + [anon_sym_BSLASHsubimport] = ACTIONS(4624), + [anon_sym_BSLASHinputfrom] = ACTIONS(4624), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4624), + [anon_sym_BSLASHincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHcaption] = ACTIONS(4624), + [anon_sym_BSLASHcite] = ACTIONS(4624), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCite] = ACTIONS(4624), + [anon_sym_BSLASHnocite] = ACTIONS(4624), + [anon_sym_BSLASHcitet] = ACTIONS(4624), + [anon_sym_BSLASHcitep] = ACTIONS(4624), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteauthor] = ACTIONS(4624), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4624), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitetitle] = ACTIONS(4624), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteyear] = ACTIONS(4624), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitedate] = ACTIONS(4624), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteurl] = ACTIONS(4624), + [anon_sym_BSLASHfullcite] = ACTIONS(4624), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4624), + [anon_sym_BSLASHcitealt] = ACTIONS(4624), + [anon_sym_BSLASHcitealp] = ACTIONS(4624), + [anon_sym_BSLASHcitetext] = ACTIONS(4624), + [anon_sym_BSLASHparencite] = ACTIONS(4624), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHParencite] = ACTIONS(4624), + [anon_sym_BSLASHfootcite] = ACTIONS(4624), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4624), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4624), + [anon_sym_BSLASHtextcite] = ACTIONS(4624), + [anon_sym_BSLASHTextcite] = ACTIONS(4624), + [anon_sym_BSLASHsmartcite] = ACTIONS(4624), + [anon_sym_BSLASHSmartcite] = ACTIONS(4624), + [anon_sym_BSLASHsupercite] = ACTIONS(4624), + [anon_sym_BSLASHautocite] = ACTIONS(4624), + [anon_sym_BSLASHAutocite] = ACTIONS(4624), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHvolcite] = ACTIONS(4624), + [anon_sym_BSLASHVolcite] = ACTIONS(4624), + [anon_sym_BSLASHpvolcite] = ACTIONS(4624), + [anon_sym_BSLASHPvolcite] = ACTIONS(4624), + [anon_sym_BSLASHfvolcite] = ACTIONS(4624), + [anon_sym_BSLASHftvolcite] = ACTIONS(4624), + [anon_sym_BSLASHsvolcite] = ACTIONS(4624), + [anon_sym_BSLASHSvolcite] = ACTIONS(4624), + [anon_sym_BSLASHtvolcite] = ACTIONS(4624), + [anon_sym_BSLASHTvolcite] = ACTIONS(4624), + [anon_sym_BSLASHavolcite] = ACTIONS(4624), + [anon_sym_BSLASHAvolcite] = ACTIONS(4624), + [anon_sym_BSLASHnotecite] = ACTIONS(4624), + [anon_sym_BSLASHNotecite] = ACTIONS(4624), + [anon_sym_BSLASHpnotecite] = ACTIONS(4624), + [anon_sym_BSLASHPnotecite] = ACTIONS(4624), + [anon_sym_BSLASHfnotecite] = ACTIONS(4624), + [anon_sym_BSLASHlabel] = ACTIONS(4624), + [anon_sym_BSLASHref] = ACTIONS(4624), + [anon_sym_BSLASHeqref] = ACTIONS(4624), + [anon_sym_BSLASHvref] = ACTIONS(4624), + [anon_sym_BSLASHVref] = ACTIONS(4624), + [anon_sym_BSLASHautoref] = ACTIONS(4624), + [anon_sym_BSLASHpageref] = ACTIONS(4624), + [anon_sym_BSLASHcref] = ACTIONS(4624), + [anon_sym_BSLASHCref] = ACTIONS(4624), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnameCref] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHlabelcref] = ACTIONS(4624), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCrefrange] = ACTIONS(4624), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnewlabel] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4624), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4624), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4624), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdef] = ACTIONS(4624), + [anon_sym_BSLASHlet] = ACTIONS(4624), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4624), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4624), + [anon_sym_BSLASHgls] = ACTIONS(4624), + [anon_sym_BSLASHGls] = ACTIONS(4624), + [anon_sym_BSLASHGLS] = ACTIONS(4624), + [anon_sym_BSLASHglspl] = ACTIONS(4624), + [anon_sym_BSLASHGlspl] = ACTIONS(4624), + [anon_sym_BSLASHGLSpl] = ACTIONS(4624), + [anon_sym_BSLASHglsdisp] = ACTIONS(4624), + [anon_sym_BSLASHglslink] = ACTIONS(4624), + [anon_sym_BSLASHglstext] = ACTIONS(4624), + [anon_sym_BSLASHGlstext] = ACTIONS(4624), + [anon_sym_BSLASHGLStext] = ACTIONS(4624), + [anon_sym_BSLASHglsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4624), + [anon_sym_BSLASHglsplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSplural] = ACTIONS(4624), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHglsname] = ACTIONS(4624), + [anon_sym_BSLASHGlsname] = ACTIONS(4624), + [anon_sym_BSLASHGLSname] = ACTIONS(4624), + [anon_sym_BSLASHglssymbol] = ACTIONS(4624), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4624), + [anon_sym_BSLASHglsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4624), + [anon_sym_BSLASHglsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4624), + [anon_sym_BSLASHglsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4624), + [anon_sym_BSLASHglsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4624), + [anon_sym_BSLASHglsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4624), + [anon_sym_BSLASHnewacronym] = ACTIONS(4624), + [anon_sym_BSLASHacrshort] = ACTIONS(4624), + [anon_sym_BSLASHAcrshort] = ACTIONS(4624), + [anon_sym_BSLASHACRshort] = ACTIONS(4624), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4624), + [anon_sym_BSLASHacrlong] = ACTIONS(4624), + [anon_sym_BSLASHAcrlong] = ACTIONS(4624), + [anon_sym_BSLASHACRlong] = ACTIONS(4624), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4624), + [anon_sym_BSLASHacrfull] = ACTIONS(4624), + [anon_sym_BSLASHAcrfull] = ACTIONS(4624), + [anon_sym_BSLASHACRfull] = ACTIONS(4624), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4624), + [anon_sym_BSLASHacs] = ACTIONS(4624), + [anon_sym_BSLASHAcs] = ACTIONS(4624), + [anon_sym_BSLASHacsp] = ACTIONS(4624), + [anon_sym_BSLASHAcsp] = ACTIONS(4624), + [anon_sym_BSLASHacl] = ACTIONS(4624), + [anon_sym_BSLASHAcl] = ACTIONS(4624), + [anon_sym_BSLASHaclp] = ACTIONS(4624), + [anon_sym_BSLASHAclp] = ACTIONS(4624), + [anon_sym_BSLASHacf] = ACTIONS(4624), + [anon_sym_BSLASHAcf] = ACTIONS(4624), + [anon_sym_BSLASHacfp] = ACTIONS(4624), + [anon_sym_BSLASHAcfp] = ACTIONS(4624), + [anon_sym_BSLASHac] = ACTIONS(4624), + [anon_sym_BSLASHAc] = ACTIONS(4624), + [anon_sym_BSLASHacp] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4624), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4624), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4624), + [anon_sym_BSLASHcolor] = ACTIONS(4624), + [anon_sym_BSLASHcolorbox] = ACTIONS(4624), + [anon_sym_BSLASHtextcolor] = ACTIONS(4624), + [anon_sym_BSLASHpagecolor] = ACTIONS(4624), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4624), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4624), + [anon_sym_BSLASHtext] = ACTIONS(4624), + [anon_sym_BSLASHintertext] = ACTIONS(4624), + [anon_sym_shortintertext] = ACTIONS(4624), }, [517] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(4535), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_RBRACK] = ACTIONS(4533), - [anon_sym_COMMA] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_BSLASHpart] = ACTIONS(4535), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddpart] = ACTIONS(4535), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHchapter] = ACTIONS(4535), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddchap] = ACTIONS(4535), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsection] = ACTIONS(4535), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddsec] = ACTIONS(4535), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubsection] = ACTIONS(4713), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4716), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHparagraph] = ACTIONS(4535), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHitem] = ACTIONS(4535), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [sym_word] = ACTIONS(4535), - [sym_placeholder] = ACTIONS(4533), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym__] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), - [anon_sym_BSLASHbegin] = ACTIONS(4535), - [anon_sym_BSLASHusepackage] = ACTIONS(4535), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), - [anon_sym_BSLASHinclude] = ACTIONS(4535), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), - [anon_sym_BSLASHinput] = ACTIONS(4535), - [anon_sym_BSLASHsubfile] = ACTIONS(4535), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), - [anon_sym_BSLASHbibliography] = ACTIONS(4535), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), - [anon_sym_BSLASHincludesvg] = ACTIONS(4535), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), - [anon_sym_BSLASHimport] = ACTIONS(4535), - [anon_sym_BSLASHsubimport] = ACTIONS(4535), - [anon_sym_BSLASHinputfrom] = ACTIONS(4535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), - [anon_sym_BSLASHincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHcaption] = ACTIONS(4535), - [anon_sym_BSLASHcite] = ACTIONS(4535), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCite] = ACTIONS(4535), - [anon_sym_BSLASHnocite] = ACTIONS(4535), - [anon_sym_BSLASHcitet] = ACTIONS(4535), - [anon_sym_BSLASHcitep] = ACTIONS(4535), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteauthor] = ACTIONS(4535), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitetitle] = ACTIONS(4535), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteyear] = ACTIONS(4535), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitedate] = ACTIONS(4535), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteurl] = ACTIONS(4535), - [anon_sym_BSLASHfullcite] = ACTIONS(4535), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), - [anon_sym_BSLASHcitealt] = ACTIONS(4535), - [anon_sym_BSLASHcitealp] = ACTIONS(4535), - [anon_sym_BSLASHcitetext] = ACTIONS(4535), - [anon_sym_BSLASHparencite] = ACTIONS(4535), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHParencite] = ACTIONS(4535), - [anon_sym_BSLASHfootcite] = ACTIONS(4535), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), - [anon_sym_BSLASHtextcite] = ACTIONS(4535), - [anon_sym_BSLASHTextcite] = ACTIONS(4535), - [anon_sym_BSLASHsmartcite] = ACTIONS(4535), - [anon_sym_BSLASHSmartcite] = ACTIONS(4535), - [anon_sym_BSLASHsupercite] = ACTIONS(4535), - [anon_sym_BSLASHautocite] = ACTIONS(4535), - [anon_sym_BSLASHAutocite] = ACTIONS(4535), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHvolcite] = ACTIONS(4535), - [anon_sym_BSLASHVolcite] = ACTIONS(4535), - [anon_sym_BSLASHpvolcite] = ACTIONS(4535), - [anon_sym_BSLASHPvolcite] = ACTIONS(4535), - [anon_sym_BSLASHfvolcite] = ACTIONS(4535), - [anon_sym_BSLASHftvolcite] = ACTIONS(4535), - [anon_sym_BSLASHsvolcite] = ACTIONS(4535), - [anon_sym_BSLASHSvolcite] = ACTIONS(4535), - [anon_sym_BSLASHtvolcite] = ACTIONS(4535), - [anon_sym_BSLASHTvolcite] = ACTIONS(4535), - [anon_sym_BSLASHavolcite] = ACTIONS(4535), - [anon_sym_BSLASHAvolcite] = ACTIONS(4535), - [anon_sym_BSLASHnotecite] = ACTIONS(4535), - [anon_sym_BSLASHNotecite] = ACTIONS(4535), - [anon_sym_BSLASHpnotecite] = ACTIONS(4535), - [anon_sym_BSLASHPnotecite] = ACTIONS(4535), - [anon_sym_BSLASHfnotecite] = ACTIONS(4535), - [anon_sym_BSLASHlabel] = ACTIONS(4535), - [anon_sym_BSLASHref] = ACTIONS(4535), - [anon_sym_BSLASHeqref] = ACTIONS(4535), - [anon_sym_BSLASHvref] = ACTIONS(4535), - [anon_sym_BSLASHVref] = ACTIONS(4535), - [anon_sym_BSLASHautoref] = ACTIONS(4535), - [anon_sym_BSLASHpageref] = ACTIONS(4535), - [anon_sym_BSLASHcref] = ACTIONS(4535), - [anon_sym_BSLASHCref] = ACTIONS(4535), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnameCref] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHlabelcref] = ACTIONS(4535), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCrefrange] = ACTIONS(4535), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnewlabel] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), - [anon_sym_BSLASHdef] = ACTIONS(4535), - [anon_sym_BSLASHlet] = ACTIONS(4535), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), - [anon_sym_BSLASHgls] = ACTIONS(4535), - [anon_sym_BSLASHGls] = ACTIONS(4535), - [anon_sym_BSLASHGLS] = ACTIONS(4535), - [anon_sym_BSLASHglspl] = ACTIONS(4535), - [anon_sym_BSLASHGlspl] = ACTIONS(4535), - [anon_sym_BSLASHGLSpl] = ACTIONS(4535), - [anon_sym_BSLASHglsdisp] = ACTIONS(4535), - [anon_sym_BSLASHglslink] = ACTIONS(4535), - [anon_sym_BSLASHglstext] = ACTIONS(4535), - [anon_sym_BSLASHGlstext] = ACTIONS(4535), - [anon_sym_BSLASHGLStext] = ACTIONS(4535), - [anon_sym_BSLASHglsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), - [anon_sym_BSLASHglsplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSplural] = ACTIONS(4535), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHglsname] = ACTIONS(4535), - [anon_sym_BSLASHGlsname] = ACTIONS(4535), - [anon_sym_BSLASHGLSname] = ACTIONS(4535), - [anon_sym_BSLASHglssymbol] = ACTIONS(4535), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), - [anon_sym_BSLASHglsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), - [anon_sym_BSLASHglsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), - [anon_sym_BSLASHglsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), - [anon_sym_BSLASHglsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), - [anon_sym_BSLASHglsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), - [anon_sym_BSLASHnewacronym] = ACTIONS(4535), - [anon_sym_BSLASHacrshort] = ACTIONS(4535), - [anon_sym_BSLASHAcrshort] = ACTIONS(4535), - [anon_sym_BSLASHACRshort] = ACTIONS(4535), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), - [anon_sym_BSLASHacrlong] = ACTIONS(4535), - [anon_sym_BSLASHAcrlong] = ACTIONS(4535), - [anon_sym_BSLASHACRlong] = ACTIONS(4535), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), - [anon_sym_BSLASHacrfull] = ACTIONS(4535), - [anon_sym_BSLASHAcrfull] = ACTIONS(4535), - [anon_sym_BSLASHACRfull] = ACTIONS(4535), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), - [anon_sym_BSLASHacs] = ACTIONS(4535), - [anon_sym_BSLASHAcs] = ACTIONS(4535), - [anon_sym_BSLASHacsp] = ACTIONS(4535), - [anon_sym_BSLASHAcsp] = ACTIONS(4535), - [anon_sym_BSLASHacl] = ACTIONS(4535), - [anon_sym_BSLASHAcl] = ACTIONS(4535), - [anon_sym_BSLASHaclp] = ACTIONS(4535), - [anon_sym_BSLASHAclp] = ACTIONS(4535), - [anon_sym_BSLASHacf] = ACTIONS(4535), - [anon_sym_BSLASHAcf] = ACTIONS(4535), - [anon_sym_BSLASHacfp] = ACTIONS(4535), - [anon_sym_BSLASHAcfp] = ACTIONS(4535), - [anon_sym_BSLASHac] = ACTIONS(4535), - [anon_sym_BSLASHAc] = ACTIONS(4535), - [anon_sym_BSLASHacp] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), - [anon_sym_BSLASHcolor] = ACTIONS(4535), - [anon_sym_BSLASHcolorbox] = ACTIONS(4535), - [anon_sym_BSLASHtextcolor] = ACTIONS(4535), - [anon_sym_BSLASHpagecolor] = ACTIONS(4535), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), - [anon_sym_BSLASHtext] = ACTIONS(4535), - [anon_sym_BSLASHintertext] = ACTIONS(4535), - [anon_sym_shortintertext] = ACTIONS(4535), + [sym_command_name] = ACTIONS(4614), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_EQ] = ACTIONS(4612), + [anon_sym_BSLASHpart] = ACTIONS(4614), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddpart] = ACTIONS(4614), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHchapter] = ACTIONS(4614), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddchap] = ACTIONS(4614), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsection] = ACTIONS(4614), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddsec] = ACTIONS(4614), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubsection] = ACTIONS(4792), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4795), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4614), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHparagraph] = ACTIONS(4614), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4614), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHitem] = ACTIONS(4614), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [sym_word] = ACTIONS(4614), + [sym_placeholder] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4614), + [anon_sym__] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_SQUOTE] = ACTIONS(4614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4612), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4612), + [anon_sym_BSLASHbegin] = ACTIONS(4614), + [anon_sym_BSLASHusepackage] = ACTIONS(4614), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4614), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4614), + [anon_sym_BSLASHinclude] = ACTIONS(4614), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4614), + [anon_sym_BSLASHinput] = ACTIONS(4614), + [anon_sym_BSLASHsubfile] = ACTIONS(4614), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4614), + [anon_sym_BSLASHbibliography] = ACTIONS(4614), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4614), + [anon_sym_BSLASHincludesvg] = ACTIONS(4614), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4614), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4614), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4614), + [anon_sym_BSLASHimport] = ACTIONS(4614), + [anon_sym_BSLASHsubimport] = ACTIONS(4614), + [anon_sym_BSLASHinputfrom] = ACTIONS(4614), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4614), + [anon_sym_BSLASHincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHcaption] = ACTIONS(4614), + [anon_sym_BSLASHcite] = ACTIONS(4614), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCite] = ACTIONS(4614), + [anon_sym_BSLASHnocite] = ACTIONS(4614), + [anon_sym_BSLASHcitet] = ACTIONS(4614), + [anon_sym_BSLASHcitep] = ACTIONS(4614), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteauthor] = ACTIONS(4614), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4614), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitetitle] = ACTIONS(4614), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteyear] = ACTIONS(4614), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitedate] = ACTIONS(4614), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteurl] = ACTIONS(4614), + [anon_sym_BSLASHfullcite] = ACTIONS(4614), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4614), + [anon_sym_BSLASHcitealt] = ACTIONS(4614), + [anon_sym_BSLASHcitealp] = ACTIONS(4614), + [anon_sym_BSLASHcitetext] = ACTIONS(4614), + [anon_sym_BSLASHparencite] = ACTIONS(4614), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHParencite] = ACTIONS(4614), + [anon_sym_BSLASHfootcite] = ACTIONS(4614), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4614), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4614), + [anon_sym_BSLASHtextcite] = ACTIONS(4614), + [anon_sym_BSLASHTextcite] = ACTIONS(4614), + [anon_sym_BSLASHsmartcite] = ACTIONS(4614), + [anon_sym_BSLASHSmartcite] = ACTIONS(4614), + [anon_sym_BSLASHsupercite] = ACTIONS(4614), + [anon_sym_BSLASHautocite] = ACTIONS(4614), + [anon_sym_BSLASHAutocite] = ACTIONS(4614), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHvolcite] = ACTIONS(4614), + [anon_sym_BSLASHVolcite] = ACTIONS(4614), + [anon_sym_BSLASHpvolcite] = ACTIONS(4614), + [anon_sym_BSLASHPvolcite] = ACTIONS(4614), + [anon_sym_BSLASHfvolcite] = ACTIONS(4614), + [anon_sym_BSLASHftvolcite] = ACTIONS(4614), + [anon_sym_BSLASHsvolcite] = ACTIONS(4614), + [anon_sym_BSLASHSvolcite] = ACTIONS(4614), + [anon_sym_BSLASHtvolcite] = ACTIONS(4614), + [anon_sym_BSLASHTvolcite] = ACTIONS(4614), + [anon_sym_BSLASHavolcite] = ACTIONS(4614), + [anon_sym_BSLASHAvolcite] = ACTIONS(4614), + [anon_sym_BSLASHnotecite] = ACTIONS(4614), + [anon_sym_BSLASHNotecite] = ACTIONS(4614), + [anon_sym_BSLASHpnotecite] = ACTIONS(4614), + [anon_sym_BSLASHPnotecite] = ACTIONS(4614), + [anon_sym_BSLASHfnotecite] = ACTIONS(4614), + [anon_sym_BSLASHlabel] = ACTIONS(4614), + [anon_sym_BSLASHref] = ACTIONS(4614), + [anon_sym_BSLASHeqref] = ACTIONS(4614), + [anon_sym_BSLASHvref] = ACTIONS(4614), + [anon_sym_BSLASHVref] = ACTIONS(4614), + [anon_sym_BSLASHautoref] = ACTIONS(4614), + [anon_sym_BSLASHpageref] = ACTIONS(4614), + [anon_sym_BSLASHcref] = ACTIONS(4614), + [anon_sym_BSLASHCref] = ACTIONS(4614), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnameCref] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHlabelcref] = ACTIONS(4614), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCrefrange] = ACTIONS(4614), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnewlabel] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4614), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4614), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4614), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdef] = ACTIONS(4614), + [anon_sym_BSLASHlet] = ACTIONS(4614), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4614), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4614), + [anon_sym_BSLASHgls] = ACTIONS(4614), + [anon_sym_BSLASHGls] = ACTIONS(4614), + [anon_sym_BSLASHGLS] = ACTIONS(4614), + [anon_sym_BSLASHglspl] = ACTIONS(4614), + [anon_sym_BSLASHGlspl] = ACTIONS(4614), + [anon_sym_BSLASHGLSpl] = ACTIONS(4614), + [anon_sym_BSLASHglsdisp] = ACTIONS(4614), + [anon_sym_BSLASHglslink] = ACTIONS(4614), + [anon_sym_BSLASHglstext] = ACTIONS(4614), + [anon_sym_BSLASHGlstext] = ACTIONS(4614), + [anon_sym_BSLASHGLStext] = ACTIONS(4614), + [anon_sym_BSLASHglsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4614), + [anon_sym_BSLASHglsplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSplural] = ACTIONS(4614), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHglsname] = ACTIONS(4614), + [anon_sym_BSLASHGlsname] = ACTIONS(4614), + [anon_sym_BSLASHGLSname] = ACTIONS(4614), + [anon_sym_BSLASHglssymbol] = ACTIONS(4614), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4614), + [anon_sym_BSLASHglsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4614), + [anon_sym_BSLASHglsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4614), + [anon_sym_BSLASHglsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4614), + [anon_sym_BSLASHglsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4614), + [anon_sym_BSLASHglsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4614), + [anon_sym_BSLASHnewacronym] = ACTIONS(4614), + [anon_sym_BSLASHacrshort] = ACTIONS(4614), + [anon_sym_BSLASHAcrshort] = ACTIONS(4614), + [anon_sym_BSLASHACRshort] = ACTIONS(4614), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4614), + [anon_sym_BSLASHacrlong] = ACTIONS(4614), + [anon_sym_BSLASHAcrlong] = ACTIONS(4614), + [anon_sym_BSLASHACRlong] = ACTIONS(4614), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4614), + [anon_sym_BSLASHacrfull] = ACTIONS(4614), + [anon_sym_BSLASHAcrfull] = ACTIONS(4614), + [anon_sym_BSLASHACRfull] = ACTIONS(4614), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4614), + [anon_sym_BSLASHacs] = ACTIONS(4614), + [anon_sym_BSLASHAcs] = ACTIONS(4614), + [anon_sym_BSLASHacsp] = ACTIONS(4614), + [anon_sym_BSLASHAcsp] = ACTIONS(4614), + [anon_sym_BSLASHacl] = ACTIONS(4614), + [anon_sym_BSLASHAcl] = ACTIONS(4614), + [anon_sym_BSLASHaclp] = ACTIONS(4614), + [anon_sym_BSLASHAclp] = ACTIONS(4614), + [anon_sym_BSLASHacf] = ACTIONS(4614), + [anon_sym_BSLASHAcf] = ACTIONS(4614), + [anon_sym_BSLASHacfp] = ACTIONS(4614), + [anon_sym_BSLASHAcfp] = ACTIONS(4614), + [anon_sym_BSLASHac] = ACTIONS(4614), + [anon_sym_BSLASHAc] = ACTIONS(4614), + [anon_sym_BSLASHacp] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4614), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4614), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4614), + [anon_sym_BSLASHcolor] = ACTIONS(4614), + [anon_sym_BSLASHcolorbox] = ACTIONS(4614), + [anon_sym_BSLASHtextcolor] = ACTIONS(4614), + [anon_sym_BSLASHpagecolor] = ACTIONS(4614), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4614), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4614), + [anon_sym_BSLASHtext] = ACTIONS(4614), + [anon_sym_BSLASHintertext] = ACTIONS(4614), + [anon_sym_shortintertext] = ACTIONS(4614), }, [518] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(4525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4525), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4523), - [anon_sym_BSLASHpart] = ACTIONS(4525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddpart] = ACTIONS(4525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHchapter] = ACTIONS(4525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddchap] = ACTIONS(4525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsection] = ACTIONS(4525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddsec] = ACTIONS(4525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsection] = ACTIONS(4525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4719), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4722), - [anon_sym_BSLASHparagraph] = ACTIONS(4525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHitem] = ACTIONS(4525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), - [anon_sym_LBRACE] = ACTIONS(4523), - [sym_word] = ACTIONS(4525), - [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_DOLLAR_DOLLAR] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4523), - [anon_sym_DOLLAR] = ACTIONS(4525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), - [anon_sym_BSLASHbegin] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), - [anon_sym_BSLASHinclude] = ACTIONS(4525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), - [anon_sym_BSLASHinput] = ACTIONS(4525), - [anon_sym_BSLASHsubfile] = ACTIONS(4525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), - [anon_sym_BSLASHbibliography] = ACTIONS(4525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), - [anon_sym_BSLASHincludesvg] = ACTIONS(4525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), - [anon_sym_BSLASHimport] = ACTIONS(4525), - [anon_sym_BSLASHsubimport] = ACTIONS(4525), - [anon_sym_BSLASHinputfrom] = ACTIONS(4525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), - [anon_sym_BSLASHincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHcaption] = ACTIONS(4525), - [anon_sym_BSLASHcite] = ACTIONS(4525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCite] = ACTIONS(4525), - [anon_sym_BSLASHnocite] = ACTIONS(4525), - [anon_sym_BSLASHcitet] = ACTIONS(4525), - [anon_sym_BSLASHcitep] = ACTIONS(4525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteauthor] = ACTIONS(4525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitetitle] = ACTIONS(4525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteyear] = ACTIONS(4525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitedate] = ACTIONS(4525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteurl] = ACTIONS(4525), - [anon_sym_BSLASHfullcite] = ACTIONS(4525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), - [anon_sym_BSLASHcitealt] = ACTIONS(4525), - [anon_sym_BSLASHcitealp] = ACTIONS(4525), - [anon_sym_BSLASHcitetext] = ACTIONS(4525), - [anon_sym_BSLASHparencite] = ACTIONS(4525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHParencite] = ACTIONS(4525), - [anon_sym_BSLASHfootcite] = ACTIONS(4525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), - [anon_sym_BSLASHtextcite] = ACTIONS(4525), - [anon_sym_BSLASHTextcite] = ACTIONS(4525), - [anon_sym_BSLASHsmartcite] = ACTIONS(4525), - [anon_sym_BSLASHSmartcite] = ACTIONS(4525), - [anon_sym_BSLASHsupercite] = ACTIONS(4525), - [anon_sym_BSLASHautocite] = ACTIONS(4525), - [anon_sym_BSLASHAutocite] = ACTIONS(4525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHvolcite] = ACTIONS(4525), - [anon_sym_BSLASHVolcite] = ACTIONS(4525), - [anon_sym_BSLASHpvolcite] = ACTIONS(4525), - [anon_sym_BSLASHPvolcite] = ACTIONS(4525), - [anon_sym_BSLASHfvolcite] = ACTIONS(4525), - [anon_sym_BSLASHftvolcite] = ACTIONS(4525), - [anon_sym_BSLASHsvolcite] = ACTIONS(4525), - [anon_sym_BSLASHSvolcite] = ACTIONS(4525), - [anon_sym_BSLASHtvolcite] = ACTIONS(4525), - [anon_sym_BSLASHTvolcite] = ACTIONS(4525), - [anon_sym_BSLASHavolcite] = ACTIONS(4525), - [anon_sym_BSLASHAvolcite] = ACTIONS(4525), - [anon_sym_BSLASHnotecite] = ACTIONS(4525), - [anon_sym_BSLASHNotecite] = ACTIONS(4525), - [anon_sym_BSLASHpnotecite] = ACTIONS(4525), - [anon_sym_BSLASHPnotecite] = ACTIONS(4525), - [anon_sym_BSLASHfnotecite] = ACTIONS(4525), - [anon_sym_BSLASHlabel] = ACTIONS(4525), - [anon_sym_BSLASHref] = ACTIONS(4525), - [anon_sym_BSLASHeqref] = ACTIONS(4525), - [anon_sym_BSLASHvref] = ACTIONS(4525), - [anon_sym_BSLASHVref] = ACTIONS(4525), - [anon_sym_BSLASHautoref] = ACTIONS(4525), - [anon_sym_BSLASHpageref] = ACTIONS(4525), - [anon_sym_BSLASHcref] = ACTIONS(4525), - [anon_sym_BSLASHCref] = ACTIONS(4525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnameCref] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHlabelcref] = ACTIONS(4525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCrefrange] = ACTIONS(4525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnewlabel] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), - [anon_sym_BSLASHdef] = ACTIONS(4525), - [anon_sym_BSLASHlet] = ACTIONS(4525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), - [anon_sym_BSLASHgls] = ACTIONS(4525), - [anon_sym_BSLASHGls] = ACTIONS(4525), - [anon_sym_BSLASHGLS] = ACTIONS(4525), - [anon_sym_BSLASHglspl] = ACTIONS(4525), - [anon_sym_BSLASHGlspl] = ACTIONS(4525), - [anon_sym_BSLASHGLSpl] = ACTIONS(4525), - [anon_sym_BSLASHglsdisp] = ACTIONS(4525), - [anon_sym_BSLASHglslink] = ACTIONS(4525), - [anon_sym_BSLASHglstext] = ACTIONS(4525), - [anon_sym_BSLASHGlstext] = ACTIONS(4525), - [anon_sym_BSLASHGLStext] = ACTIONS(4525), - [anon_sym_BSLASHglsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), - [anon_sym_BSLASHglsplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSplural] = ACTIONS(4525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHglsname] = ACTIONS(4525), - [anon_sym_BSLASHGlsname] = ACTIONS(4525), - [anon_sym_BSLASHGLSname] = ACTIONS(4525), - [anon_sym_BSLASHglssymbol] = ACTIONS(4525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), - [anon_sym_BSLASHglsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), - [anon_sym_BSLASHglsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), - [anon_sym_BSLASHglsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), - [anon_sym_BSLASHglsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), - [anon_sym_BSLASHglsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), - [anon_sym_BSLASHnewacronym] = ACTIONS(4525), - [anon_sym_BSLASHacrshort] = ACTIONS(4525), - [anon_sym_BSLASHAcrshort] = ACTIONS(4525), - [anon_sym_BSLASHACRshort] = ACTIONS(4525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), - [anon_sym_BSLASHacrlong] = ACTIONS(4525), - [anon_sym_BSLASHAcrlong] = ACTIONS(4525), - [anon_sym_BSLASHACRlong] = ACTIONS(4525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), - [anon_sym_BSLASHacrfull] = ACTIONS(4525), - [anon_sym_BSLASHAcrfull] = ACTIONS(4525), - [anon_sym_BSLASHACRfull] = ACTIONS(4525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), - [anon_sym_BSLASHacs] = ACTIONS(4525), - [anon_sym_BSLASHAcs] = ACTIONS(4525), - [anon_sym_BSLASHacsp] = ACTIONS(4525), - [anon_sym_BSLASHAcsp] = ACTIONS(4525), - [anon_sym_BSLASHacl] = ACTIONS(4525), - [anon_sym_BSLASHAcl] = ACTIONS(4525), - [anon_sym_BSLASHaclp] = ACTIONS(4525), - [anon_sym_BSLASHAclp] = ACTIONS(4525), - [anon_sym_BSLASHacf] = ACTIONS(4525), - [anon_sym_BSLASHAcf] = ACTIONS(4525), - [anon_sym_BSLASHacfp] = ACTIONS(4525), - [anon_sym_BSLASHAcfp] = ACTIONS(4525), - [anon_sym_BSLASHac] = ACTIONS(4525), - [anon_sym_BSLASHAc] = ACTIONS(4525), - [anon_sym_BSLASHacp] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), - [anon_sym_BSLASHcolor] = ACTIONS(4525), - [anon_sym_BSLASHcolorbox] = ACTIONS(4525), - [anon_sym_BSLASHtextcolor] = ACTIONS(4525), - [anon_sym_BSLASHpagecolor] = ACTIONS(4525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), - [anon_sym_BSLASHtext] = ACTIONS(4525), - [anon_sym_BSLASHintertext] = ACTIONS(4525), - [anon_sym_shortintertext] = ACTIONS(4525), + [sym_command_name] = ACTIONS(4604), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(4602), + [anon_sym_COMMA] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_BSLASHpart] = ACTIONS(4604), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddpart] = ACTIONS(4604), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHchapter] = ACTIONS(4604), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddchap] = ACTIONS(4604), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsection] = ACTIONS(4604), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddsec] = ACTIONS(4604), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsection] = ACTIONS(4604), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4798), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4801), + [anon_sym_BSLASHparagraph] = ACTIONS(4604), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4604), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHitem] = ACTIONS(4604), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(4602), + [sym_word] = ACTIONS(4604), + [sym_placeholder] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym__] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_SQUOTE] = ACTIONS(4604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4602), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4602), + [anon_sym_BSLASHbegin] = ACTIONS(4604), + [anon_sym_BSLASHusepackage] = ACTIONS(4604), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4604), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4604), + [anon_sym_BSLASHinclude] = ACTIONS(4604), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4604), + [anon_sym_BSLASHinput] = ACTIONS(4604), + [anon_sym_BSLASHsubfile] = ACTIONS(4604), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4604), + [anon_sym_BSLASHbibliography] = ACTIONS(4604), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4604), + [anon_sym_BSLASHincludesvg] = ACTIONS(4604), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4604), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4604), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4604), + [anon_sym_BSLASHimport] = ACTIONS(4604), + [anon_sym_BSLASHsubimport] = ACTIONS(4604), + [anon_sym_BSLASHinputfrom] = ACTIONS(4604), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4604), + [anon_sym_BSLASHincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHcaption] = ACTIONS(4604), + [anon_sym_BSLASHcite] = ACTIONS(4604), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCite] = ACTIONS(4604), + [anon_sym_BSLASHnocite] = ACTIONS(4604), + [anon_sym_BSLASHcitet] = ACTIONS(4604), + [anon_sym_BSLASHcitep] = ACTIONS(4604), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteauthor] = ACTIONS(4604), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4604), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitetitle] = ACTIONS(4604), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteyear] = ACTIONS(4604), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitedate] = ACTIONS(4604), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteurl] = ACTIONS(4604), + [anon_sym_BSLASHfullcite] = ACTIONS(4604), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4604), + [anon_sym_BSLASHcitealt] = ACTIONS(4604), + [anon_sym_BSLASHcitealp] = ACTIONS(4604), + [anon_sym_BSLASHcitetext] = ACTIONS(4604), + [anon_sym_BSLASHparencite] = ACTIONS(4604), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHParencite] = ACTIONS(4604), + [anon_sym_BSLASHfootcite] = ACTIONS(4604), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4604), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4604), + [anon_sym_BSLASHtextcite] = ACTIONS(4604), + [anon_sym_BSLASHTextcite] = ACTIONS(4604), + [anon_sym_BSLASHsmartcite] = ACTIONS(4604), + [anon_sym_BSLASHSmartcite] = ACTIONS(4604), + [anon_sym_BSLASHsupercite] = ACTIONS(4604), + [anon_sym_BSLASHautocite] = ACTIONS(4604), + [anon_sym_BSLASHAutocite] = ACTIONS(4604), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHvolcite] = ACTIONS(4604), + [anon_sym_BSLASHVolcite] = ACTIONS(4604), + [anon_sym_BSLASHpvolcite] = ACTIONS(4604), + [anon_sym_BSLASHPvolcite] = ACTIONS(4604), + [anon_sym_BSLASHfvolcite] = ACTIONS(4604), + [anon_sym_BSLASHftvolcite] = ACTIONS(4604), + [anon_sym_BSLASHsvolcite] = ACTIONS(4604), + [anon_sym_BSLASHSvolcite] = ACTIONS(4604), + [anon_sym_BSLASHtvolcite] = ACTIONS(4604), + [anon_sym_BSLASHTvolcite] = ACTIONS(4604), + [anon_sym_BSLASHavolcite] = ACTIONS(4604), + [anon_sym_BSLASHAvolcite] = ACTIONS(4604), + [anon_sym_BSLASHnotecite] = ACTIONS(4604), + [anon_sym_BSLASHNotecite] = ACTIONS(4604), + [anon_sym_BSLASHpnotecite] = ACTIONS(4604), + [anon_sym_BSLASHPnotecite] = ACTIONS(4604), + [anon_sym_BSLASHfnotecite] = ACTIONS(4604), + [anon_sym_BSLASHlabel] = ACTIONS(4604), + [anon_sym_BSLASHref] = ACTIONS(4604), + [anon_sym_BSLASHeqref] = ACTIONS(4604), + [anon_sym_BSLASHvref] = ACTIONS(4604), + [anon_sym_BSLASHVref] = ACTIONS(4604), + [anon_sym_BSLASHautoref] = ACTIONS(4604), + [anon_sym_BSLASHpageref] = ACTIONS(4604), + [anon_sym_BSLASHcref] = ACTIONS(4604), + [anon_sym_BSLASHCref] = ACTIONS(4604), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnameCref] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHlabelcref] = ACTIONS(4604), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCrefrange] = ACTIONS(4604), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnewlabel] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4604), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4604), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4604), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdef] = ACTIONS(4604), + [anon_sym_BSLASHlet] = ACTIONS(4604), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4604), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4604), + [anon_sym_BSLASHgls] = ACTIONS(4604), + [anon_sym_BSLASHGls] = ACTIONS(4604), + [anon_sym_BSLASHGLS] = ACTIONS(4604), + [anon_sym_BSLASHglspl] = ACTIONS(4604), + [anon_sym_BSLASHGlspl] = ACTIONS(4604), + [anon_sym_BSLASHGLSpl] = ACTIONS(4604), + [anon_sym_BSLASHglsdisp] = ACTIONS(4604), + [anon_sym_BSLASHglslink] = ACTIONS(4604), + [anon_sym_BSLASHglstext] = ACTIONS(4604), + [anon_sym_BSLASHGlstext] = ACTIONS(4604), + [anon_sym_BSLASHGLStext] = ACTIONS(4604), + [anon_sym_BSLASHglsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4604), + [anon_sym_BSLASHglsplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSplural] = ACTIONS(4604), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHglsname] = ACTIONS(4604), + [anon_sym_BSLASHGlsname] = ACTIONS(4604), + [anon_sym_BSLASHGLSname] = ACTIONS(4604), + [anon_sym_BSLASHglssymbol] = ACTIONS(4604), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4604), + [anon_sym_BSLASHglsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4604), + [anon_sym_BSLASHglsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4604), + [anon_sym_BSLASHglsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4604), + [anon_sym_BSLASHglsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4604), + [anon_sym_BSLASHglsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4604), + [anon_sym_BSLASHnewacronym] = ACTIONS(4604), + [anon_sym_BSLASHacrshort] = ACTIONS(4604), + [anon_sym_BSLASHAcrshort] = ACTIONS(4604), + [anon_sym_BSLASHACRshort] = ACTIONS(4604), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4604), + [anon_sym_BSLASHacrlong] = ACTIONS(4604), + [anon_sym_BSLASHAcrlong] = ACTIONS(4604), + [anon_sym_BSLASHACRlong] = ACTIONS(4604), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4604), + [anon_sym_BSLASHacrfull] = ACTIONS(4604), + [anon_sym_BSLASHAcrfull] = ACTIONS(4604), + [anon_sym_BSLASHACRfull] = ACTIONS(4604), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4604), + [anon_sym_BSLASHacs] = ACTIONS(4604), + [anon_sym_BSLASHAcs] = ACTIONS(4604), + [anon_sym_BSLASHacsp] = ACTIONS(4604), + [anon_sym_BSLASHAcsp] = ACTIONS(4604), + [anon_sym_BSLASHacl] = ACTIONS(4604), + [anon_sym_BSLASHAcl] = ACTIONS(4604), + [anon_sym_BSLASHaclp] = ACTIONS(4604), + [anon_sym_BSLASHAclp] = ACTIONS(4604), + [anon_sym_BSLASHacf] = ACTIONS(4604), + [anon_sym_BSLASHAcf] = ACTIONS(4604), + [anon_sym_BSLASHacfp] = ACTIONS(4604), + [anon_sym_BSLASHAcfp] = ACTIONS(4604), + [anon_sym_BSLASHac] = ACTIONS(4604), + [anon_sym_BSLASHAc] = ACTIONS(4604), + [anon_sym_BSLASHacp] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4604), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4604), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4604), + [anon_sym_BSLASHcolor] = ACTIONS(4604), + [anon_sym_BSLASHcolorbox] = ACTIONS(4604), + [anon_sym_BSLASHtextcolor] = ACTIONS(4604), + [anon_sym_BSLASHpagecolor] = ACTIONS(4604), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4604), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4604), + [anon_sym_BSLASHtext] = ACTIONS(4604), + [anon_sym_BSLASHintertext] = ACTIONS(4604), + [anon_sym_shortintertext] = ACTIONS(4604), }, [519] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4515), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_RPAREN] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [anon_sym_RBRACK] = ACTIONS(4513), - [anon_sym_COMMA] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_BSLASHpart] = ACTIONS(4515), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddpart] = ACTIONS(4515), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHchapter] = ACTIONS(4515), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddchap] = ACTIONS(4515), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsection] = ACTIONS(4515), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddsec] = ACTIONS(4515), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHparagraph] = ACTIONS(4725), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4728), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), - [anon_sym_BSLASHitem] = ACTIONS(4515), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4513), - [sym_word] = ACTIONS(4515), - [sym_placeholder] = ACTIONS(4513), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_SLASH] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym__] = ACTIONS(4515), - [anon_sym_LT] = ACTIONS(4515), - [anon_sym_GT] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_PIPE] = ACTIONS(4515), - [anon_sym_COLON] = ACTIONS(4515), - [anon_sym_SQUOTE] = ACTIONS(4515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4513), - [anon_sym_DOLLAR] = ACTIONS(4515), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), - [anon_sym_BSLASHbegin] = ACTIONS(4515), - [anon_sym_BSLASHusepackage] = ACTIONS(4515), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), - [anon_sym_BSLASHinclude] = ACTIONS(4515), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), - [anon_sym_BSLASHinput] = ACTIONS(4515), - [anon_sym_BSLASHsubfile] = ACTIONS(4515), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), - [anon_sym_BSLASHbibliography] = ACTIONS(4515), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), - [anon_sym_BSLASHincludesvg] = ACTIONS(4515), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), - [anon_sym_BSLASHimport] = ACTIONS(4515), - [anon_sym_BSLASHsubimport] = ACTIONS(4515), - [anon_sym_BSLASHinputfrom] = ACTIONS(4515), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), - [anon_sym_BSLASHincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHcaption] = ACTIONS(4515), - [anon_sym_BSLASHcite] = ACTIONS(4515), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCite] = ACTIONS(4515), - [anon_sym_BSLASHnocite] = ACTIONS(4515), - [anon_sym_BSLASHcitet] = ACTIONS(4515), - [anon_sym_BSLASHcitep] = ACTIONS(4515), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor] = ACTIONS(4515), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle] = ACTIONS(4515), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteyear] = ACTIONS(4515), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitedate] = ACTIONS(4515), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteurl] = ACTIONS(4515), - [anon_sym_BSLASHfullcite] = ACTIONS(4515), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), - [anon_sym_BSLASHcitealt] = ACTIONS(4515), - [anon_sym_BSLASHcitealp] = ACTIONS(4515), - [anon_sym_BSLASHcitetext] = ACTIONS(4515), - [anon_sym_BSLASHparencite] = ACTIONS(4515), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHParencite] = ACTIONS(4515), - [anon_sym_BSLASHfootcite] = ACTIONS(4515), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), - [anon_sym_BSLASHtextcite] = ACTIONS(4515), - [anon_sym_BSLASHTextcite] = ACTIONS(4515), - [anon_sym_BSLASHsmartcite] = ACTIONS(4515), - [anon_sym_BSLASHSmartcite] = ACTIONS(4515), - [anon_sym_BSLASHsupercite] = ACTIONS(4515), - [anon_sym_BSLASHautocite] = ACTIONS(4515), - [anon_sym_BSLASHAutocite] = ACTIONS(4515), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHvolcite] = ACTIONS(4515), - [anon_sym_BSLASHVolcite] = ACTIONS(4515), - [anon_sym_BSLASHpvolcite] = ACTIONS(4515), - [anon_sym_BSLASHPvolcite] = ACTIONS(4515), - [anon_sym_BSLASHfvolcite] = ACTIONS(4515), - [anon_sym_BSLASHftvolcite] = ACTIONS(4515), - [anon_sym_BSLASHsvolcite] = ACTIONS(4515), - [anon_sym_BSLASHSvolcite] = ACTIONS(4515), - [anon_sym_BSLASHtvolcite] = ACTIONS(4515), - [anon_sym_BSLASHTvolcite] = ACTIONS(4515), - [anon_sym_BSLASHavolcite] = ACTIONS(4515), - [anon_sym_BSLASHAvolcite] = ACTIONS(4515), - [anon_sym_BSLASHnotecite] = ACTIONS(4515), - [anon_sym_BSLASHNotecite] = ACTIONS(4515), - [anon_sym_BSLASHpnotecite] = ACTIONS(4515), - [anon_sym_BSLASHPnotecite] = ACTIONS(4515), - [anon_sym_BSLASHfnotecite] = ACTIONS(4515), - [anon_sym_BSLASHlabel] = ACTIONS(4515), - [anon_sym_BSLASHref] = ACTIONS(4515), - [anon_sym_BSLASHeqref] = ACTIONS(4515), - [anon_sym_BSLASHvref] = ACTIONS(4515), - [anon_sym_BSLASHVref] = ACTIONS(4515), - [anon_sym_BSLASHautoref] = ACTIONS(4515), - [anon_sym_BSLASHpageref] = ACTIONS(4515), - [anon_sym_BSLASHcref] = ACTIONS(4515), - [anon_sym_BSLASHCref] = ACTIONS(4515), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnameCref] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHlabelcref] = ACTIONS(4515), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange] = ACTIONS(4515), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnewlabel] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), - [anon_sym_BSLASHdef] = ACTIONS(4515), - [anon_sym_BSLASHlet] = ACTIONS(4515), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), - [anon_sym_BSLASHgls] = ACTIONS(4515), - [anon_sym_BSLASHGls] = ACTIONS(4515), - [anon_sym_BSLASHGLS] = ACTIONS(4515), - [anon_sym_BSLASHglspl] = ACTIONS(4515), - [anon_sym_BSLASHGlspl] = ACTIONS(4515), - [anon_sym_BSLASHGLSpl] = ACTIONS(4515), - [anon_sym_BSLASHglsdisp] = ACTIONS(4515), - [anon_sym_BSLASHglslink] = ACTIONS(4515), - [anon_sym_BSLASHglstext] = ACTIONS(4515), - [anon_sym_BSLASHGlstext] = ACTIONS(4515), - [anon_sym_BSLASHGLStext] = ACTIONS(4515), - [anon_sym_BSLASHglsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), - [anon_sym_BSLASHglsplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSplural] = ACTIONS(4515), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHglsname] = ACTIONS(4515), - [anon_sym_BSLASHGlsname] = ACTIONS(4515), - [anon_sym_BSLASHGLSname] = ACTIONS(4515), - [anon_sym_BSLASHglssymbol] = ACTIONS(4515), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), - [anon_sym_BSLASHglsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), - [anon_sym_BSLASHglsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), - [anon_sym_BSLASHglsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), - [anon_sym_BSLASHglsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), - [anon_sym_BSLASHglsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), - [anon_sym_BSLASHnewacronym] = ACTIONS(4515), - [anon_sym_BSLASHacrshort] = ACTIONS(4515), - [anon_sym_BSLASHAcrshort] = ACTIONS(4515), - [anon_sym_BSLASHACRshort] = ACTIONS(4515), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), - [anon_sym_BSLASHacrlong] = ACTIONS(4515), - [anon_sym_BSLASHAcrlong] = ACTIONS(4515), - [anon_sym_BSLASHACRlong] = ACTIONS(4515), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), - [anon_sym_BSLASHacrfull] = ACTIONS(4515), - [anon_sym_BSLASHAcrfull] = ACTIONS(4515), - [anon_sym_BSLASHACRfull] = ACTIONS(4515), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), - [anon_sym_BSLASHacs] = ACTIONS(4515), - [anon_sym_BSLASHAcs] = ACTIONS(4515), - [anon_sym_BSLASHacsp] = ACTIONS(4515), - [anon_sym_BSLASHAcsp] = ACTIONS(4515), - [anon_sym_BSLASHacl] = ACTIONS(4515), - [anon_sym_BSLASHAcl] = ACTIONS(4515), - [anon_sym_BSLASHaclp] = ACTIONS(4515), - [anon_sym_BSLASHAclp] = ACTIONS(4515), - [anon_sym_BSLASHacf] = ACTIONS(4515), - [anon_sym_BSLASHAcf] = ACTIONS(4515), - [anon_sym_BSLASHacfp] = ACTIONS(4515), - [anon_sym_BSLASHAcfp] = ACTIONS(4515), - [anon_sym_BSLASHac] = ACTIONS(4515), - [anon_sym_BSLASHAc] = ACTIONS(4515), - [anon_sym_BSLASHacp] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), - [anon_sym_BSLASHcolor] = ACTIONS(4515), - [anon_sym_BSLASHcolorbox] = ACTIONS(4515), - [anon_sym_BSLASHtextcolor] = ACTIONS(4515), - [anon_sym_BSLASHpagecolor] = ACTIONS(4515), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), - [anon_sym_BSLASHtext] = ACTIONS(4515), - [anon_sym_BSLASHintertext] = ACTIONS(4515), - [anon_sym_shortintertext] = ACTIONS(4515), + [sym_command_name] = ACTIONS(4594), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_BSLASHpart] = ACTIONS(4594), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddpart] = ACTIONS(4594), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHchapter] = ACTIONS(4594), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddchap] = ACTIONS(4594), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsection] = ACTIONS(4594), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddsec] = ACTIONS(4594), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHparagraph] = ACTIONS(4804), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4807), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4594), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4592), + [anon_sym_BSLASHitem] = ACTIONS(4594), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [sym_word] = ACTIONS(4594), + [sym_placeholder] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4592), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4594), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4592), + [anon_sym_BSLASHbegin] = ACTIONS(4594), + [anon_sym_BSLASHusepackage] = ACTIONS(4594), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4594), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4594), + [anon_sym_BSLASHinclude] = ACTIONS(4594), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4594), + [anon_sym_BSLASHinput] = ACTIONS(4594), + [anon_sym_BSLASHsubfile] = ACTIONS(4594), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4594), + [anon_sym_BSLASHbibliography] = ACTIONS(4594), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4594), + [anon_sym_BSLASHincludesvg] = ACTIONS(4594), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4594), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4594), + [anon_sym_BSLASHimport] = ACTIONS(4594), + [anon_sym_BSLASHsubimport] = ACTIONS(4594), + [anon_sym_BSLASHinputfrom] = ACTIONS(4594), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4594), + [anon_sym_BSLASHincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHcaption] = ACTIONS(4594), + [anon_sym_BSLASHcite] = ACTIONS(4594), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCite] = ACTIONS(4594), + [anon_sym_BSLASHnocite] = ACTIONS(4594), + [anon_sym_BSLASHcitet] = ACTIONS(4594), + [anon_sym_BSLASHcitep] = ACTIONS(4594), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteauthor] = ACTIONS(4594), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4594), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitetitle] = ACTIONS(4594), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteyear] = ACTIONS(4594), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitedate] = ACTIONS(4594), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteurl] = ACTIONS(4594), + [anon_sym_BSLASHfullcite] = ACTIONS(4594), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4594), + [anon_sym_BSLASHcitealt] = ACTIONS(4594), + [anon_sym_BSLASHcitealp] = ACTIONS(4594), + [anon_sym_BSLASHcitetext] = ACTIONS(4594), + [anon_sym_BSLASHparencite] = ACTIONS(4594), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHParencite] = ACTIONS(4594), + [anon_sym_BSLASHfootcite] = ACTIONS(4594), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4594), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4594), + [anon_sym_BSLASHtextcite] = ACTIONS(4594), + [anon_sym_BSLASHTextcite] = ACTIONS(4594), + [anon_sym_BSLASHsmartcite] = ACTIONS(4594), + [anon_sym_BSLASHSmartcite] = ACTIONS(4594), + [anon_sym_BSLASHsupercite] = ACTIONS(4594), + [anon_sym_BSLASHautocite] = ACTIONS(4594), + [anon_sym_BSLASHAutocite] = ACTIONS(4594), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHvolcite] = ACTIONS(4594), + [anon_sym_BSLASHVolcite] = ACTIONS(4594), + [anon_sym_BSLASHpvolcite] = ACTIONS(4594), + [anon_sym_BSLASHPvolcite] = ACTIONS(4594), + [anon_sym_BSLASHfvolcite] = ACTIONS(4594), + [anon_sym_BSLASHftvolcite] = ACTIONS(4594), + [anon_sym_BSLASHsvolcite] = ACTIONS(4594), + [anon_sym_BSLASHSvolcite] = ACTIONS(4594), + [anon_sym_BSLASHtvolcite] = ACTIONS(4594), + [anon_sym_BSLASHTvolcite] = ACTIONS(4594), + [anon_sym_BSLASHavolcite] = ACTIONS(4594), + [anon_sym_BSLASHAvolcite] = ACTIONS(4594), + [anon_sym_BSLASHnotecite] = ACTIONS(4594), + [anon_sym_BSLASHNotecite] = ACTIONS(4594), + [anon_sym_BSLASHpnotecite] = ACTIONS(4594), + [anon_sym_BSLASHPnotecite] = ACTIONS(4594), + [anon_sym_BSLASHfnotecite] = ACTIONS(4594), + [anon_sym_BSLASHlabel] = ACTIONS(4594), + [anon_sym_BSLASHref] = ACTIONS(4594), + [anon_sym_BSLASHeqref] = ACTIONS(4594), + [anon_sym_BSLASHvref] = ACTIONS(4594), + [anon_sym_BSLASHVref] = ACTIONS(4594), + [anon_sym_BSLASHautoref] = ACTIONS(4594), + [anon_sym_BSLASHpageref] = ACTIONS(4594), + [anon_sym_BSLASHcref] = ACTIONS(4594), + [anon_sym_BSLASHCref] = ACTIONS(4594), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnameCref] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHlabelcref] = ACTIONS(4594), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCrefrange] = ACTIONS(4594), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnewlabel] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4594), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4594), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4594), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdef] = ACTIONS(4594), + [anon_sym_BSLASHlet] = ACTIONS(4594), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4594), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4594), + [anon_sym_BSLASHgls] = ACTIONS(4594), + [anon_sym_BSLASHGls] = ACTIONS(4594), + [anon_sym_BSLASHGLS] = ACTIONS(4594), + [anon_sym_BSLASHglspl] = ACTIONS(4594), + [anon_sym_BSLASHGlspl] = ACTIONS(4594), + [anon_sym_BSLASHGLSpl] = ACTIONS(4594), + [anon_sym_BSLASHglsdisp] = ACTIONS(4594), + [anon_sym_BSLASHglslink] = ACTIONS(4594), + [anon_sym_BSLASHglstext] = ACTIONS(4594), + [anon_sym_BSLASHGlstext] = ACTIONS(4594), + [anon_sym_BSLASHGLStext] = ACTIONS(4594), + [anon_sym_BSLASHglsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4594), + [anon_sym_BSLASHglsplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSplural] = ACTIONS(4594), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHglsname] = ACTIONS(4594), + [anon_sym_BSLASHGlsname] = ACTIONS(4594), + [anon_sym_BSLASHGLSname] = ACTIONS(4594), + [anon_sym_BSLASHglssymbol] = ACTIONS(4594), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4594), + [anon_sym_BSLASHglsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4594), + [anon_sym_BSLASHglsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4594), + [anon_sym_BSLASHglsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4594), + [anon_sym_BSLASHglsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4594), + [anon_sym_BSLASHglsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4594), + [anon_sym_BSLASHnewacronym] = ACTIONS(4594), + [anon_sym_BSLASHacrshort] = ACTIONS(4594), + [anon_sym_BSLASHAcrshort] = ACTIONS(4594), + [anon_sym_BSLASHACRshort] = ACTIONS(4594), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4594), + [anon_sym_BSLASHacrlong] = ACTIONS(4594), + [anon_sym_BSLASHAcrlong] = ACTIONS(4594), + [anon_sym_BSLASHACRlong] = ACTIONS(4594), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4594), + [anon_sym_BSLASHacrfull] = ACTIONS(4594), + [anon_sym_BSLASHAcrfull] = ACTIONS(4594), + [anon_sym_BSLASHACRfull] = ACTIONS(4594), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4594), + [anon_sym_BSLASHacs] = ACTIONS(4594), + [anon_sym_BSLASHAcs] = ACTIONS(4594), + [anon_sym_BSLASHacsp] = ACTIONS(4594), + [anon_sym_BSLASHAcsp] = ACTIONS(4594), + [anon_sym_BSLASHacl] = ACTIONS(4594), + [anon_sym_BSLASHAcl] = ACTIONS(4594), + [anon_sym_BSLASHaclp] = ACTIONS(4594), + [anon_sym_BSLASHAclp] = ACTIONS(4594), + [anon_sym_BSLASHacf] = ACTIONS(4594), + [anon_sym_BSLASHAcf] = ACTIONS(4594), + [anon_sym_BSLASHacfp] = ACTIONS(4594), + [anon_sym_BSLASHAcfp] = ACTIONS(4594), + [anon_sym_BSLASHac] = ACTIONS(4594), + [anon_sym_BSLASHAc] = ACTIONS(4594), + [anon_sym_BSLASHacp] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4594), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4594), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4594), + [anon_sym_BSLASHcolor] = ACTIONS(4594), + [anon_sym_BSLASHcolorbox] = ACTIONS(4594), + [anon_sym_BSLASHtextcolor] = ACTIONS(4594), + [anon_sym_BSLASHpagecolor] = ACTIONS(4594), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4594), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4594), + [anon_sym_BSLASHtext] = ACTIONS(4594), + [anon_sym_BSLASHintertext] = ACTIONS(4594), + [anon_sym_shortintertext] = ACTIONS(4594), }, [520] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_BSLASHpart] = ACTIONS(4505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddpart] = ACTIONS(4505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHchapter] = ACTIONS(4505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddchap] = ACTIONS(4505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsection] = ACTIONS(4505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddsec] = ACTIONS(4505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHparagraph] = ACTIONS(4505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4734), - [anon_sym_BSLASHitem] = ACTIONS(4505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), - [anon_sym_LBRACE] = ACTIONS(4503), - [sym_word] = ACTIONS(4505), - [sym_placeholder] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(4505), - [anon_sym_SLASH] = ACTIONS(4505), - [anon_sym_CARET] = ACTIONS(4505), - [anon_sym__] = ACTIONS(4505), - [anon_sym_LT] = ACTIONS(4505), - [anon_sym_GT] = ACTIONS(4505), - [anon_sym_BANG] = ACTIONS(4505), - [anon_sym_PIPE] = ACTIONS(4505), - [anon_sym_COLON] = ACTIONS(4505), - [anon_sym_SQUOTE] = ACTIONS(4505), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), - [anon_sym_BSLASHbegin] = ACTIONS(4505), - [anon_sym_BSLASHusepackage] = ACTIONS(4505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), - [anon_sym_BSLASHinclude] = ACTIONS(4505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), - [anon_sym_BSLASHinput] = ACTIONS(4505), - [anon_sym_BSLASHsubfile] = ACTIONS(4505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), - [anon_sym_BSLASHbibliography] = ACTIONS(4505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), - [anon_sym_BSLASHincludesvg] = ACTIONS(4505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), - [anon_sym_BSLASHimport] = ACTIONS(4505), - [anon_sym_BSLASHsubimport] = ACTIONS(4505), - [anon_sym_BSLASHinputfrom] = ACTIONS(4505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), - [anon_sym_BSLASHincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHcaption] = ACTIONS(4505), - [anon_sym_BSLASHcite] = ACTIONS(4505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCite] = ACTIONS(4505), - [anon_sym_BSLASHnocite] = ACTIONS(4505), - [anon_sym_BSLASHcitet] = ACTIONS(4505), - [anon_sym_BSLASHcitep] = ACTIONS(4505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor] = ACTIONS(4505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle] = ACTIONS(4505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteyear] = ACTIONS(4505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitedate] = ACTIONS(4505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteurl] = ACTIONS(4505), - [anon_sym_BSLASHfullcite] = ACTIONS(4505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), - [anon_sym_BSLASHcitealt] = ACTIONS(4505), - [anon_sym_BSLASHcitealp] = ACTIONS(4505), - [anon_sym_BSLASHcitetext] = ACTIONS(4505), - [anon_sym_BSLASHparencite] = ACTIONS(4505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHParencite] = ACTIONS(4505), - [anon_sym_BSLASHfootcite] = ACTIONS(4505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), - [anon_sym_BSLASHtextcite] = ACTIONS(4505), - [anon_sym_BSLASHTextcite] = ACTIONS(4505), - [anon_sym_BSLASHsmartcite] = ACTIONS(4505), - [anon_sym_BSLASHSmartcite] = ACTIONS(4505), - [anon_sym_BSLASHsupercite] = ACTIONS(4505), - [anon_sym_BSLASHautocite] = ACTIONS(4505), - [anon_sym_BSLASHAutocite] = ACTIONS(4505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHvolcite] = ACTIONS(4505), - [anon_sym_BSLASHVolcite] = ACTIONS(4505), - [anon_sym_BSLASHpvolcite] = ACTIONS(4505), - [anon_sym_BSLASHPvolcite] = ACTIONS(4505), - [anon_sym_BSLASHfvolcite] = ACTIONS(4505), - [anon_sym_BSLASHftvolcite] = ACTIONS(4505), - [anon_sym_BSLASHsvolcite] = ACTIONS(4505), - [anon_sym_BSLASHSvolcite] = ACTIONS(4505), - [anon_sym_BSLASHtvolcite] = ACTIONS(4505), - [anon_sym_BSLASHTvolcite] = ACTIONS(4505), - [anon_sym_BSLASHavolcite] = ACTIONS(4505), - [anon_sym_BSLASHAvolcite] = ACTIONS(4505), - [anon_sym_BSLASHnotecite] = ACTIONS(4505), - [anon_sym_BSLASHNotecite] = ACTIONS(4505), - [anon_sym_BSLASHpnotecite] = ACTIONS(4505), - [anon_sym_BSLASHPnotecite] = ACTIONS(4505), - [anon_sym_BSLASHfnotecite] = ACTIONS(4505), - [anon_sym_BSLASHlabel] = ACTIONS(4505), - [anon_sym_BSLASHref] = ACTIONS(4505), - [anon_sym_BSLASHeqref] = ACTIONS(4505), - [anon_sym_BSLASHvref] = ACTIONS(4505), - [anon_sym_BSLASHVref] = ACTIONS(4505), - [anon_sym_BSLASHautoref] = ACTIONS(4505), - [anon_sym_BSLASHpageref] = ACTIONS(4505), - [anon_sym_BSLASHcref] = ACTIONS(4505), - [anon_sym_BSLASHCref] = ACTIONS(4505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnameCref] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHlabelcref] = ACTIONS(4505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange] = ACTIONS(4505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnewlabel] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), - [anon_sym_BSLASHdef] = ACTIONS(4505), - [anon_sym_BSLASHlet] = ACTIONS(4505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), - [anon_sym_BSLASHgls] = ACTIONS(4505), - [anon_sym_BSLASHGls] = ACTIONS(4505), - [anon_sym_BSLASHGLS] = ACTIONS(4505), - [anon_sym_BSLASHglspl] = ACTIONS(4505), - [anon_sym_BSLASHGlspl] = ACTIONS(4505), - [anon_sym_BSLASHGLSpl] = ACTIONS(4505), - [anon_sym_BSLASHglsdisp] = ACTIONS(4505), - [anon_sym_BSLASHglslink] = ACTIONS(4505), - [anon_sym_BSLASHglstext] = ACTIONS(4505), - [anon_sym_BSLASHGlstext] = ACTIONS(4505), - [anon_sym_BSLASHGLStext] = ACTIONS(4505), - [anon_sym_BSLASHglsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), - [anon_sym_BSLASHglsplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSplural] = ACTIONS(4505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHglsname] = ACTIONS(4505), - [anon_sym_BSLASHGlsname] = ACTIONS(4505), - [anon_sym_BSLASHGLSname] = ACTIONS(4505), - [anon_sym_BSLASHglssymbol] = ACTIONS(4505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), - [anon_sym_BSLASHglsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), - [anon_sym_BSLASHglsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), - [anon_sym_BSLASHglsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), - [anon_sym_BSLASHglsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), - [anon_sym_BSLASHglsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), - [anon_sym_BSLASHnewacronym] = ACTIONS(4505), - [anon_sym_BSLASHacrshort] = ACTIONS(4505), - [anon_sym_BSLASHAcrshort] = ACTIONS(4505), - [anon_sym_BSLASHACRshort] = ACTIONS(4505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), - [anon_sym_BSLASHacrlong] = ACTIONS(4505), - [anon_sym_BSLASHAcrlong] = ACTIONS(4505), - [anon_sym_BSLASHACRlong] = ACTIONS(4505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), - [anon_sym_BSLASHacrfull] = ACTIONS(4505), - [anon_sym_BSLASHAcrfull] = ACTIONS(4505), - [anon_sym_BSLASHACRfull] = ACTIONS(4505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), - [anon_sym_BSLASHacs] = ACTIONS(4505), - [anon_sym_BSLASHAcs] = ACTIONS(4505), - [anon_sym_BSLASHacsp] = ACTIONS(4505), - [anon_sym_BSLASHAcsp] = ACTIONS(4505), - [anon_sym_BSLASHacl] = ACTIONS(4505), - [anon_sym_BSLASHAcl] = ACTIONS(4505), - [anon_sym_BSLASHaclp] = ACTIONS(4505), - [anon_sym_BSLASHAclp] = ACTIONS(4505), - [anon_sym_BSLASHacf] = ACTIONS(4505), - [anon_sym_BSLASHAcf] = ACTIONS(4505), - [anon_sym_BSLASHacfp] = ACTIONS(4505), - [anon_sym_BSLASHAcfp] = ACTIONS(4505), - [anon_sym_BSLASHac] = ACTIONS(4505), - [anon_sym_BSLASHAc] = ACTIONS(4505), - [anon_sym_BSLASHacp] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), - [anon_sym_BSLASHcolor] = ACTIONS(4505), - [anon_sym_BSLASHcolorbox] = ACTIONS(4505), - [anon_sym_BSLASHtextcolor] = ACTIONS(4505), - [anon_sym_BSLASHpagecolor] = ACTIONS(4505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), - [anon_sym_BSLASHtext] = ACTIONS(4505), - [anon_sym_BSLASHintertext] = ACTIONS(4505), - [anon_sym_shortintertext] = ACTIONS(4505), + [sym_command_name] = ACTIONS(4584), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_RBRACK] = ACTIONS(4582), + [anon_sym_COMMA] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_BSLASHpart] = ACTIONS(4584), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddpart] = ACTIONS(4584), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHchapter] = ACTIONS(4584), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddchap] = ACTIONS(4584), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsection] = ACTIONS(4584), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddsec] = ACTIONS(4584), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHparagraph] = ACTIONS(4584), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4810), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4813), + [anon_sym_BSLASHitem] = ACTIONS(4584), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4582), + [sym_word] = ACTIONS(4584), + [sym_placeholder] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym__] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4582), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4582), + [anon_sym_BSLASHbegin] = ACTIONS(4584), + [anon_sym_BSLASHusepackage] = ACTIONS(4584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4584), + [anon_sym_BSLASHinclude] = ACTIONS(4584), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4584), + [anon_sym_BSLASHinput] = ACTIONS(4584), + [anon_sym_BSLASHsubfile] = ACTIONS(4584), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4584), + [anon_sym_BSLASHbibliography] = ACTIONS(4584), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4584), + [anon_sym_BSLASHincludesvg] = ACTIONS(4584), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4584), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4584), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4584), + [anon_sym_BSLASHimport] = ACTIONS(4584), + [anon_sym_BSLASHsubimport] = ACTIONS(4584), + [anon_sym_BSLASHinputfrom] = ACTIONS(4584), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4584), + [anon_sym_BSLASHincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHcaption] = ACTIONS(4584), + [anon_sym_BSLASHcite] = ACTIONS(4584), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCite] = ACTIONS(4584), + [anon_sym_BSLASHnocite] = ACTIONS(4584), + [anon_sym_BSLASHcitet] = ACTIONS(4584), + [anon_sym_BSLASHcitep] = ACTIONS(4584), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteauthor] = ACTIONS(4584), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4584), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitetitle] = ACTIONS(4584), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteyear] = ACTIONS(4584), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitedate] = ACTIONS(4584), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteurl] = ACTIONS(4584), + [anon_sym_BSLASHfullcite] = ACTIONS(4584), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4584), + [anon_sym_BSLASHcitealt] = ACTIONS(4584), + [anon_sym_BSLASHcitealp] = ACTIONS(4584), + [anon_sym_BSLASHcitetext] = ACTIONS(4584), + [anon_sym_BSLASHparencite] = ACTIONS(4584), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHParencite] = ACTIONS(4584), + [anon_sym_BSLASHfootcite] = ACTIONS(4584), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4584), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4584), + [anon_sym_BSLASHtextcite] = ACTIONS(4584), + [anon_sym_BSLASHTextcite] = ACTIONS(4584), + [anon_sym_BSLASHsmartcite] = ACTIONS(4584), + [anon_sym_BSLASHSmartcite] = ACTIONS(4584), + [anon_sym_BSLASHsupercite] = ACTIONS(4584), + [anon_sym_BSLASHautocite] = ACTIONS(4584), + [anon_sym_BSLASHAutocite] = ACTIONS(4584), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHvolcite] = ACTIONS(4584), + [anon_sym_BSLASHVolcite] = ACTIONS(4584), + [anon_sym_BSLASHpvolcite] = ACTIONS(4584), + [anon_sym_BSLASHPvolcite] = ACTIONS(4584), + [anon_sym_BSLASHfvolcite] = ACTIONS(4584), + [anon_sym_BSLASHftvolcite] = ACTIONS(4584), + [anon_sym_BSLASHsvolcite] = ACTIONS(4584), + [anon_sym_BSLASHSvolcite] = ACTIONS(4584), + [anon_sym_BSLASHtvolcite] = ACTIONS(4584), + [anon_sym_BSLASHTvolcite] = ACTIONS(4584), + [anon_sym_BSLASHavolcite] = ACTIONS(4584), + [anon_sym_BSLASHAvolcite] = ACTIONS(4584), + [anon_sym_BSLASHnotecite] = ACTIONS(4584), + [anon_sym_BSLASHNotecite] = ACTIONS(4584), + [anon_sym_BSLASHpnotecite] = ACTIONS(4584), + [anon_sym_BSLASHPnotecite] = ACTIONS(4584), + [anon_sym_BSLASHfnotecite] = ACTIONS(4584), + [anon_sym_BSLASHlabel] = ACTIONS(4584), + [anon_sym_BSLASHref] = ACTIONS(4584), + [anon_sym_BSLASHeqref] = ACTIONS(4584), + [anon_sym_BSLASHvref] = ACTIONS(4584), + [anon_sym_BSLASHVref] = ACTIONS(4584), + [anon_sym_BSLASHautoref] = ACTIONS(4584), + [anon_sym_BSLASHpageref] = ACTIONS(4584), + [anon_sym_BSLASHcref] = ACTIONS(4584), + [anon_sym_BSLASHCref] = ACTIONS(4584), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnameCref] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHlabelcref] = ACTIONS(4584), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCrefrange] = ACTIONS(4584), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnewlabel] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4584), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4584), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4584), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdef] = ACTIONS(4584), + [anon_sym_BSLASHlet] = ACTIONS(4584), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4584), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4584), + [anon_sym_BSLASHgls] = ACTIONS(4584), + [anon_sym_BSLASHGls] = ACTIONS(4584), + [anon_sym_BSLASHGLS] = ACTIONS(4584), + [anon_sym_BSLASHglspl] = ACTIONS(4584), + [anon_sym_BSLASHGlspl] = ACTIONS(4584), + [anon_sym_BSLASHGLSpl] = ACTIONS(4584), + [anon_sym_BSLASHglsdisp] = ACTIONS(4584), + [anon_sym_BSLASHglslink] = ACTIONS(4584), + [anon_sym_BSLASHglstext] = ACTIONS(4584), + [anon_sym_BSLASHGlstext] = ACTIONS(4584), + [anon_sym_BSLASHGLStext] = ACTIONS(4584), + [anon_sym_BSLASHglsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4584), + [anon_sym_BSLASHglsplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSplural] = ACTIONS(4584), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHglsname] = ACTIONS(4584), + [anon_sym_BSLASHGlsname] = ACTIONS(4584), + [anon_sym_BSLASHGLSname] = ACTIONS(4584), + [anon_sym_BSLASHglssymbol] = ACTIONS(4584), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4584), + [anon_sym_BSLASHglsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4584), + [anon_sym_BSLASHglsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4584), + [anon_sym_BSLASHglsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4584), + [anon_sym_BSLASHglsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4584), + [anon_sym_BSLASHglsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4584), + [anon_sym_BSLASHnewacronym] = ACTIONS(4584), + [anon_sym_BSLASHacrshort] = ACTIONS(4584), + [anon_sym_BSLASHAcrshort] = ACTIONS(4584), + [anon_sym_BSLASHACRshort] = ACTIONS(4584), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4584), + [anon_sym_BSLASHacrlong] = ACTIONS(4584), + [anon_sym_BSLASHAcrlong] = ACTIONS(4584), + [anon_sym_BSLASHACRlong] = ACTIONS(4584), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4584), + [anon_sym_BSLASHacrfull] = ACTIONS(4584), + [anon_sym_BSLASHAcrfull] = ACTIONS(4584), + [anon_sym_BSLASHACRfull] = ACTIONS(4584), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4584), + [anon_sym_BSLASHacs] = ACTIONS(4584), + [anon_sym_BSLASHAcs] = ACTIONS(4584), + [anon_sym_BSLASHacsp] = ACTIONS(4584), + [anon_sym_BSLASHAcsp] = ACTIONS(4584), + [anon_sym_BSLASHacl] = ACTIONS(4584), + [anon_sym_BSLASHAcl] = ACTIONS(4584), + [anon_sym_BSLASHaclp] = ACTIONS(4584), + [anon_sym_BSLASHAclp] = ACTIONS(4584), + [anon_sym_BSLASHacf] = ACTIONS(4584), + [anon_sym_BSLASHAcf] = ACTIONS(4584), + [anon_sym_BSLASHacfp] = ACTIONS(4584), + [anon_sym_BSLASHAcfp] = ACTIONS(4584), + [anon_sym_BSLASHac] = ACTIONS(4584), + [anon_sym_BSLASHAc] = ACTIONS(4584), + [anon_sym_BSLASHacp] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4584), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4584), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4584), + [anon_sym_BSLASHcolor] = ACTIONS(4584), + [anon_sym_BSLASHcolorbox] = ACTIONS(4584), + [anon_sym_BSLASHtextcolor] = ACTIONS(4584), + [anon_sym_BSLASHpagecolor] = ACTIONS(4584), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4584), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4584), + [anon_sym_BSLASHtext] = ACTIONS(4584), + [anon_sym_BSLASHintertext] = ACTIONS(4584), + [anon_sym_shortintertext] = ACTIONS(4584), }, [521] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4495), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4493), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [anon_sym_RBRACK] = ACTIONS(4493), - [anon_sym_COMMA] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_BSLASHpart] = ACTIONS(4495), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddpart] = ACTIONS(4495), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHchapter] = ACTIONS(4495), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddchap] = ACTIONS(4495), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsection] = ACTIONS(4495), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddsec] = ACTIONS(4495), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHparagraph] = ACTIONS(4495), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHitem] = ACTIONS(4737), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4493), - [sym_word] = ACTIONS(4495), - [sym_placeholder] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_CARET] = ACTIONS(4495), - [anon_sym__] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_PIPE] = ACTIONS(4495), - [anon_sym_COLON] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), - [anon_sym_BSLASHbegin] = ACTIONS(4495), - [anon_sym_BSLASHusepackage] = ACTIONS(4495), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), - [anon_sym_BSLASHinclude] = ACTIONS(4495), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), - [anon_sym_BSLASHinput] = ACTIONS(4495), - [anon_sym_BSLASHsubfile] = ACTIONS(4495), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), - [anon_sym_BSLASHbibliography] = ACTIONS(4495), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), - [anon_sym_BSLASHincludesvg] = ACTIONS(4495), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), - [anon_sym_BSLASHimport] = ACTIONS(4495), - [anon_sym_BSLASHsubimport] = ACTIONS(4495), - [anon_sym_BSLASHinputfrom] = ACTIONS(4495), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), - [anon_sym_BSLASHincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHcaption] = ACTIONS(4495), - [anon_sym_BSLASHcite] = ACTIONS(4495), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCite] = ACTIONS(4495), - [anon_sym_BSLASHnocite] = ACTIONS(4495), - [anon_sym_BSLASHcitet] = ACTIONS(4495), - [anon_sym_BSLASHcitep] = ACTIONS(4495), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor] = ACTIONS(4495), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle] = ACTIONS(4495), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteyear] = ACTIONS(4495), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitedate] = ACTIONS(4495), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteurl] = ACTIONS(4495), - [anon_sym_BSLASHfullcite] = ACTIONS(4495), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), - [anon_sym_BSLASHcitealt] = ACTIONS(4495), - [anon_sym_BSLASHcitealp] = ACTIONS(4495), - [anon_sym_BSLASHcitetext] = ACTIONS(4495), - [anon_sym_BSLASHparencite] = ACTIONS(4495), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHParencite] = ACTIONS(4495), - [anon_sym_BSLASHfootcite] = ACTIONS(4495), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), - [anon_sym_BSLASHtextcite] = ACTIONS(4495), - [anon_sym_BSLASHTextcite] = ACTIONS(4495), - [anon_sym_BSLASHsmartcite] = ACTIONS(4495), - [anon_sym_BSLASHSmartcite] = ACTIONS(4495), - [anon_sym_BSLASHsupercite] = ACTIONS(4495), - [anon_sym_BSLASHautocite] = ACTIONS(4495), - [anon_sym_BSLASHAutocite] = ACTIONS(4495), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHvolcite] = ACTIONS(4495), - [anon_sym_BSLASHVolcite] = ACTIONS(4495), - [anon_sym_BSLASHpvolcite] = ACTIONS(4495), - [anon_sym_BSLASHPvolcite] = ACTIONS(4495), - [anon_sym_BSLASHfvolcite] = ACTIONS(4495), - [anon_sym_BSLASHftvolcite] = ACTIONS(4495), - [anon_sym_BSLASHsvolcite] = ACTIONS(4495), - [anon_sym_BSLASHSvolcite] = ACTIONS(4495), - [anon_sym_BSLASHtvolcite] = ACTIONS(4495), - [anon_sym_BSLASHTvolcite] = ACTIONS(4495), - [anon_sym_BSLASHavolcite] = ACTIONS(4495), - [anon_sym_BSLASHAvolcite] = ACTIONS(4495), - [anon_sym_BSLASHnotecite] = ACTIONS(4495), - [anon_sym_BSLASHNotecite] = ACTIONS(4495), - [anon_sym_BSLASHpnotecite] = ACTIONS(4495), - [anon_sym_BSLASHPnotecite] = ACTIONS(4495), - [anon_sym_BSLASHfnotecite] = ACTIONS(4495), - [anon_sym_BSLASHlabel] = ACTIONS(4495), - [anon_sym_BSLASHref] = ACTIONS(4495), - [anon_sym_BSLASHeqref] = ACTIONS(4495), - [anon_sym_BSLASHvref] = ACTIONS(4495), - [anon_sym_BSLASHVref] = ACTIONS(4495), - [anon_sym_BSLASHautoref] = ACTIONS(4495), - [anon_sym_BSLASHpageref] = ACTIONS(4495), - [anon_sym_BSLASHcref] = ACTIONS(4495), - [anon_sym_BSLASHCref] = ACTIONS(4495), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnameCref] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHlabelcref] = ACTIONS(4495), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange] = ACTIONS(4495), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnewlabel] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), - [anon_sym_BSLASHdef] = ACTIONS(4495), - [anon_sym_BSLASHlet] = ACTIONS(4495), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), - [anon_sym_BSLASHgls] = ACTIONS(4495), - [anon_sym_BSLASHGls] = ACTIONS(4495), - [anon_sym_BSLASHGLS] = ACTIONS(4495), - [anon_sym_BSLASHglspl] = ACTIONS(4495), - [anon_sym_BSLASHGlspl] = ACTIONS(4495), - [anon_sym_BSLASHGLSpl] = ACTIONS(4495), - [anon_sym_BSLASHglsdisp] = ACTIONS(4495), - [anon_sym_BSLASHglslink] = ACTIONS(4495), - [anon_sym_BSLASHglstext] = ACTIONS(4495), - [anon_sym_BSLASHGlstext] = ACTIONS(4495), - [anon_sym_BSLASHGLStext] = ACTIONS(4495), - [anon_sym_BSLASHglsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), - [anon_sym_BSLASHglsplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSplural] = ACTIONS(4495), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHglsname] = ACTIONS(4495), - [anon_sym_BSLASHGlsname] = ACTIONS(4495), - [anon_sym_BSLASHGLSname] = ACTIONS(4495), - [anon_sym_BSLASHglssymbol] = ACTIONS(4495), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), - [anon_sym_BSLASHglsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), - [anon_sym_BSLASHglsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), - [anon_sym_BSLASHglsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), - [anon_sym_BSLASHglsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), - [anon_sym_BSLASHglsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), - [anon_sym_BSLASHnewacronym] = ACTIONS(4495), - [anon_sym_BSLASHacrshort] = ACTIONS(4495), - [anon_sym_BSLASHAcrshort] = ACTIONS(4495), - [anon_sym_BSLASHACRshort] = ACTIONS(4495), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), - [anon_sym_BSLASHacrlong] = ACTIONS(4495), - [anon_sym_BSLASHAcrlong] = ACTIONS(4495), - [anon_sym_BSLASHACRlong] = ACTIONS(4495), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), - [anon_sym_BSLASHacrfull] = ACTIONS(4495), - [anon_sym_BSLASHAcrfull] = ACTIONS(4495), - [anon_sym_BSLASHACRfull] = ACTIONS(4495), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), - [anon_sym_BSLASHacs] = ACTIONS(4495), - [anon_sym_BSLASHAcs] = ACTIONS(4495), - [anon_sym_BSLASHacsp] = ACTIONS(4495), - [anon_sym_BSLASHAcsp] = ACTIONS(4495), - [anon_sym_BSLASHacl] = ACTIONS(4495), - [anon_sym_BSLASHAcl] = ACTIONS(4495), - [anon_sym_BSLASHaclp] = ACTIONS(4495), - [anon_sym_BSLASHAclp] = ACTIONS(4495), - [anon_sym_BSLASHacf] = ACTIONS(4495), - [anon_sym_BSLASHAcf] = ACTIONS(4495), - [anon_sym_BSLASHacfp] = ACTIONS(4495), - [anon_sym_BSLASHAcfp] = ACTIONS(4495), - [anon_sym_BSLASHac] = ACTIONS(4495), - [anon_sym_BSLASHAc] = ACTIONS(4495), - [anon_sym_BSLASHacp] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), - [anon_sym_BSLASHcolor] = ACTIONS(4495), - [anon_sym_BSLASHcolorbox] = ACTIONS(4495), - [anon_sym_BSLASHtextcolor] = ACTIONS(4495), - [anon_sym_BSLASHpagecolor] = ACTIONS(4495), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), - [anon_sym_BSLASHtext] = ACTIONS(4495), - [anon_sym_BSLASHintertext] = ACTIONS(4495), - [anon_sym_shortintertext] = ACTIONS(4495), + [sym_command_name] = ACTIONS(4574), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4574), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_BSLASHpart] = ACTIONS(4574), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddpart] = ACTIONS(4574), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHchapter] = ACTIONS(4574), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddchap] = ACTIONS(4574), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsection] = ACTIONS(4574), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddsec] = ACTIONS(4574), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHparagraph] = ACTIONS(4574), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4574), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHitem] = ACTIONS(4816), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4572), + [sym_word] = ACTIONS(4574), + [sym_placeholder] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4574), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4574), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4574), + [anon_sym_BANG] = ACTIONS(4574), + [anon_sym_PIPE] = ACTIONS(4574), + [anon_sym_COLON] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4574), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4572), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4574), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4572), + [anon_sym_BSLASHbegin] = ACTIONS(4574), + [anon_sym_BSLASHusepackage] = ACTIONS(4574), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4574), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4574), + [anon_sym_BSLASHinclude] = ACTIONS(4574), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4574), + [anon_sym_BSLASHinput] = ACTIONS(4574), + [anon_sym_BSLASHsubfile] = ACTIONS(4574), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4574), + [anon_sym_BSLASHbibliography] = ACTIONS(4574), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4574), + [anon_sym_BSLASHincludesvg] = ACTIONS(4574), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4574), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4574), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4574), + [anon_sym_BSLASHimport] = ACTIONS(4574), + [anon_sym_BSLASHsubimport] = ACTIONS(4574), + [anon_sym_BSLASHinputfrom] = ACTIONS(4574), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4574), + [anon_sym_BSLASHincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHcaption] = ACTIONS(4574), + [anon_sym_BSLASHcite] = ACTIONS(4574), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCite] = ACTIONS(4574), + [anon_sym_BSLASHnocite] = ACTIONS(4574), + [anon_sym_BSLASHcitet] = ACTIONS(4574), + [anon_sym_BSLASHcitep] = ACTIONS(4574), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteauthor] = ACTIONS(4574), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4574), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitetitle] = ACTIONS(4574), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteyear] = ACTIONS(4574), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitedate] = ACTIONS(4574), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteurl] = ACTIONS(4574), + [anon_sym_BSLASHfullcite] = ACTIONS(4574), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4574), + [anon_sym_BSLASHcitealt] = ACTIONS(4574), + [anon_sym_BSLASHcitealp] = ACTIONS(4574), + [anon_sym_BSLASHcitetext] = ACTIONS(4574), + [anon_sym_BSLASHparencite] = ACTIONS(4574), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHParencite] = ACTIONS(4574), + [anon_sym_BSLASHfootcite] = ACTIONS(4574), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4574), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4574), + [anon_sym_BSLASHtextcite] = ACTIONS(4574), + [anon_sym_BSLASHTextcite] = ACTIONS(4574), + [anon_sym_BSLASHsmartcite] = ACTIONS(4574), + [anon_sym_BSLASHSmartcite] = ACTIONS(4574), + [anon_sym_BSLASHsupercite] = ACTIONS(4574), + [anon_sym_BSLASHautocite] = ACTIONS(4574), + [anon_sym_BSLASHAutocite] = ACTIONS(4574), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHvolcite] = ACTIONS(4574), + [anon_sym_BSLASHVolcite] = ACTIONS(4574), + [anon_sym_BSLASHpvolcite] = ACTIONS(4574), + [anon_sym_BSLASHPvolcite] = ACTIONS(4574), + [anon_sym_BSLASHfvolcite] = ACTIONS(4574), + [anon_sym_BSLASHftvolcite] = ACTIONS(4574), + [anon_sym_BSLASHsvolcite] = ACTIONS(4574), + [anon_sym_BSLASHSvolcite] = ACTIONS(4574), + [anon_sym_BSLASHtvolcite] = ACTIONS(4574), + [anon_sym_BSLASHTvolcite] = ACTIONS(4574), + [anon_sym_BSLASHavolcite] = ACTIONS(4574), + [anon_sym_BSLASHAvolcite] = ACTIONS(4574), + [anon_sym_BSLASHnotecite] = ACTIONS(4574), + [anon_sym_BSLASHNotecite] = ACTIONS(4574), + [anon_sym_BSLASHpnotecite] = ACTIONS(4574), + [anon_sym_BSLASHPnotecite] = ACTIONS(4574), + [anon_sym_BSLASHfnotecite] = ACTIONS(4574), + [anon_sym_BSLASHlabel] = ACTIONS(4574), + [anon_sym_BSLASHref] = ACTIONS(4574), + [anon_sym_BSLASHeqref] = ACTIONS(4574), + [anon_sym_BSLASHvref] = ACTIONS(4574), + [anon_sym_BSLASHVref] = ACTIONS(4574), + [anon_sym_BSLASHautoref] = ACTIONS(4574), + [anon_sym_BSLASHpageref] = ACTIONS(4574), + [anon_sym_BSLASHcref] = ACTIONS(4574), + [anon_sym_BSLASHCref] = ACTIONS(4574), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnameCref] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHlabelcref] = ACTIONS(4574), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCrefrange] = ACTIONS(4574), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnewlabel] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4574), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4574), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4574), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdef] = ACTIONS(4574), + [anon_sym_BSLASHlet] = ACTIONS(4574), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4574), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4574), + [anon_sym_BSLASHgls] = ACTIONS(4574), + [anon_sym_BSLASHGls] = ACTIONS(4574), + [anon_sym_BSLASHGLS] = ACTIONS(4574), + [anon_sym_BSLASHglspl] = ACTIONS(4574), + [anon_sym_BSLASHGlspl] = ACTIONS(4574), + [anon_sym_BSLASHGLSpl] = ACTIONS(4574), + [anon_sym_BSLASHglsdisp] = ACTIONS(4574), + [anon_sym_BSLASHglslink] = ACTIONS(4574), + [anon_sym_BSLASHglstext] = ACTIONS(4574), + [anon_sym_BSLASHGlstext] = ACTIONS(4574), + [anon_sym_BSLASHGLStext] = ACTIONS(4574), + [anon_sym_BSLASHglsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4574), + [anon_sym_BSLASHglsplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSplural] = ACTIONS(4574), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHglsname] = ACTIONS(4574), + [anon_sym_BSLASHGlsname] = ACTIONS(4574), + [anon_sym_BSLASHGLSname] = ACTIONS(4574), + [anon_sym_BSLASHglssymbol] = ACTIONS(4574), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4574), + [anon_sym_BSLASHglsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4574), + [anon_sym_BSLASHglsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4574), + [anon_sym_BSLASHglsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4574), + [anon_sym_BSLASHglsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4574), + [anon_sym_BSLASHglsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4574), + [anon_sym_BSLASHnewacronym] = ACTIONS(4574), + [anon_sym_BSLASHacrshort] = ACTIONS(4574), + [anon_sym_BSLASHAcrshort] = ACTIONS(4574), + [anon_sym_BSLASHACRshort] = ACTIONS(4574), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4574), + [anon_sym_BSLASHacrlong] = ACTIONS(4574), + [anon_sym_BSLASHAcrlong] = ACTIONS(4574), + [anon_sym_BSLASHACRlong] = ACTIONS(4574), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4574), + [anon_sym_BSLASHacrfull] = ACTIONS(4574), + [anon_sym_BSLASHAcrfull] = ACTIONS(4574), + [anon_sym_BSLASHACRfull] = ACTIONS(4574), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4574), + [anon_sym_BSLASHacs] = ACTIONS(4574), + [anon_sym_BSLASHAcs] = ACTIONS(4574), + [anon_sym_BSLASHacsp] = ACTIONS(4574), + [anon_sym_BSLASHAcsp] = ACTIONS(4574), + [anon_sym_BSLASHacl] = ACTIONS(4574), + [anon_sym_BSLASHAcl] = ACTIONS(4574), + [anon_sym_BSLASHaclp] = ACTIONS(4574), + [anon_sym_BSLASHAclp] = ACTIONS(4574), + [anon_sym_BSLASHacf] = ACTIONS(4574), + [anon_sym_BSLASHAcf] = ACTIONS(4574), + [anon_sym_BSLASHacfp] = ACTIONS(4574), + [anon_sym_BSLASHAcfp] = ACTIONS(4574), + [anon_sym_BSLASHac] = ACTIONS(4574), + [anon_sym_BSLASHAc] = ACTIONS(4574), + [anon_sym_BSLASHacp] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4574), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4574), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4574), + [anon_sym_BSLASHcolor] = ACTIONS(4574), + [anon_sym_BSLASHcolorbox] = ACTIONS(4574), + [anon_sym_BSLASHtextcolor] = ACTIONS(4574), + [anon_sym_BSLASHpagecolor] = ACTIONS(4574), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4574), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4574), + [anon_sym_BSLASHtext] = ACTIONS(4574), + [anon_sym_BSLASHintertext] = ACTIONS(4574), + [anon_sym_shortintertext] = ACTIONS(4574), }, [522] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [523] = { [sym__chapter_declaration] = STATE(141), [sym_chapter] = STATE(399), [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHend] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHend] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [524] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [525] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [526] = { [sym_curly_group] = STATE(1118), [sym_mixed_group] = STATE(1118), [aux_sym_generic_command_repeat1] = STATE(385), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_BSLASHpart] = ACTIONS(4451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddpart] = ACTIONS(4451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHchapter] = ACTIONS(4451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddchap] = ACTIONS(4451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsection] = ACTIONS(4451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddsec] = ACTIONS(4451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHparagraph] = ACTIONS(4451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHitem] = ACTIONS(4451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASHbegin] = ACTIONS(4451), - [anon_sym_BSLASHend] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4822), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_BSLASHpart] = ACTIONS(4530), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddpart] = ACTIONS(4530), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHchapter] = ACTIONS(4530), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddchap] = ACTIONS(4530), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsection] = ACTIONS(4530), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddsec] = ACTIONS(4530), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHparagraph] = ACTIONS(4530), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4530), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHitem] = ACTIONS(4530), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASHbegin] = ACTIONS(4530), + [anon_sym_BSLASHend] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [527] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [528] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [529] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [530] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [531] = { [sym_curly_group] = STATE(1162), [sym_mixed_group] = STATE(1162), [aux_sym_generic_command_repeat1] = STATE(531), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_BSLASHpart] = ACTIONS(4461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddpart] = ACTIONS(4461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHchapter] = ACTIONS(4461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddchap] = ACTIONS(4461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsection] = ACTIONS(4461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddsec] = ACTIONS(4461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHparagraph] = ACTIONS(4461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHitem] = ACTIONS(4461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(4748), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASHbegin] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_BSLASHpart] = ACTIONS(4540), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddpart] = ACTIONS(4540), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHchapter] = ACTIONS(4540), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddchap] = ACTIONS(4540), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsection] = ACTIONS(4540), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddsec] = ACTIONS(4540), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHparagraph] = ACTIONS(4540), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4540), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHitem] = ACTIONS(4540), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4827), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASHbegin] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [532] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [533] = { [sym__enum_itemdeclaration] = STATE(204), [sym_enum_item] = STATE(386), [aux_sym__section_repeat8] = STATE(386), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(219), - [anon_sym_BSLASHitem_STAR] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [534] = { [sym__subparagraph_declaration] = STATE(189), [sym_subparagraph] = STATE(388), [aux_sym__section_repeat7] = STATE(388), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(215), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(219), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [535] = { [sym__paragraph_declaration] = STATE(179), [sym_paragraph] = STATE(389), [aux_sym__section_repeat6] = STATE(389), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [536] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [537] = { [sym__subsection_declaration] = STATE(156), [sym_subsection] = STATE(392), [aux_sym__section_repeat4] = STATE(392), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(203), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [538] = { [sym__section_declaration] = STATE(145), [sym_section] = STATE(393), [aux_sym__section_repeat3] = STATE(393), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(203), + [anon_sym_BSLASHaddsec] = ACTIONS(201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(203), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [539] = { [sym__chapter_declaration] = STATE(141), [sym_chapter] = STATE(399), [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(199), + [anon_sym_BSLASHaddchap] = ACTIONS(197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(199), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [540] = { [sym__part_declaration] = STATE(126), [sym_part] = STATE(405), [aux_sym__section_repeat1] = STATE(405), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(191), - [anon_sym_BSLASHpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHaddpart] = ACTIONS(191), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHend] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHaddpart] = ACTIONS(193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(195), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHend] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [541] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [542] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [543] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [544] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [545] = { [sym__section_declaration] = STATE(148), [sym_section] = STATE(456), [aux_sym__section_repeat3] = STATE(456), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [546] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [547] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [548] = { [sym__subsubsection_declaration] = STATE(167), [sym_subsubsection] = STATE(390), [aux_sym__section_repeat5] = STATE(390), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHend] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(211), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHend] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [549] = { [sym_curly_group] = STATE(1118), [sym_mixed_group] = STATE(1118), [aux_sym_generic_command_repeat1] = STATE(526), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_BSLASHpart] = ACTIONS(4565), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddpart] = ACTIONS(4565), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHchapter] = ACTIONS(4565), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddchap] = ACTIONS(4565), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsection] = ACTIONS(4565), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddsec] = ACTIONS(4565), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHparagraph] = ACTIONS(4565), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHitem] = ACTIONS(4565), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASHbegin] = ACTIONS(4565), - [anon_sym_BSLASHend] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4822), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_BSLASHpart] = ACTIONS(4644), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddpart] = ACTIONS(4644), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHchapter] = ACTIONS(4644), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddchap] = ACTIONS(4644), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsection] = ACTIONS(4644), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddsec] = ACTIONS(4644), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHparagraph] = ACTIONS(4644), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4644), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHitem] = ACTIONS(4644), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASHbegin] = ACTIONS(4644), + [anon_sym_BSLASHend] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [550] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [551] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [552] = { [sym__section_declaration] = STATE(148), [sym_section] = STATE(456), [aux_sym__section_repeat3] = STATE(456), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(1841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddchap] = ACTIONS(1841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(1866), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddchap] = ACTIONS(1866), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [553] = { [sym__chapter_declaration] = STATE(137), [sym_chapter] = STATE(515), [aux_sym__section_repeat2] = STATE(515), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), - [anon_sym_BSLASHaddchap] = ACTIONS(319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddchap] = ACTIONS(323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(325), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [554] = { [sym__section_declaration] = STATE(151), [sym_section] = STATE(516), [aux_sym__section_repeat3] = STATE(516), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [555] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [556] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [557] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [558] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [559] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [560] = { [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(462), [aux_sym__section_repeat2] = STATE(462), - [sym_command_name] = ACTIONS(1841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym_BSLASHpart] = ACTIONS(1841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddpart] = ACTIONS(1841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(1841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHaddsec] = ACTIONS(1841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), - [anon_sym_BSLASHparagraph] = ACTIONS(1841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), - [anon_sym_BSLASHitem] = ACTIONS(1841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [sym_word] = ACTIONS(1841), - [sym_placeholder] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), - [anon_sym_BSLASHbegin] = ACTIONS(1841), - [anon_sym_BSLASHusepackage] = ACTIONS(1841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), - [anon_sym_BSLASHinclude] = ACTIONS(1841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), - [anon_sym_BSLASHinput] = ACTIONS(1841), - [anon_sym_BSLASHsubfile] = ACTIONS(1841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), - [anon_sym_BSLASHbibliography] = ACTIONS(1841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), - [anon_sym_BSLASHincludesvg] = ACTIONS(1841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), - [anon_sym_BSLASHimport] = ACTIONS(1841), - [anon_sym_BSLASHsubimport] = ACTIONS(1841), - [anon_sym_BSLASHinputfrom] = ACTIONS(1841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), - [anon_sym_BSLASHincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), - [anon_sym_BSLASHcaption] = ACTIONS(1841), - [anon_sym_BSLASHcite] = ACTIONS(1841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCite] = ACTIONS(1841), - [anon_sym_BSLASHnocite] = ACTIONS(1841), - [anon_sym_BSLASHcitet] = ACTIONS(1841), - [anon_sym_BSLASHcitep] = ACTIONS(1841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteauthor] = ACTIONS(1841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitetitle] = ACTIONS(1841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteyear] = ACTIONS(1841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), - [anon_sym_BSLASHcitedate] = ACTIONS(1841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), - [anon_sym_BSLASHciteurl] = ACTIONS(1841), - [anon_sym_BSLASHfullcite] = ACTIONS(1841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), - [anon_sym_BSLASHcitealt] = ACTIONS(1841), - [anon_sym_BSLASHcitealp] = ACTIONS(1841), - [anon_sym_BSLASHcitetext] = ACTIONS(1841), - [anon_sym_BSLASHparencite] = ACTIONS(1841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHParencite] = ACTIONS(1841), - [anon_sym_BSLASHfootcite] = ACTIONS(1841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), - [anon_sym_BSLASHtextcite] = ACTIONS(1841), - [anon_sym_BSLASHTextcite] = ACTIONS(1841), - [anon_sym_BSLASHsmartcite] = ACTIONS(1841), - [anon_sym_BSLASHSmartcite] = ACTIONS(1841), - [anon_sym_BSLASHsupercite] = ACTIONS(1841), - [anon_sym_BSLASHautocite] = ACTIONS(1841), - [anon_sym_BSLASHAutocite] = ACTIONS(1841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), - [anon_sym_BSLASHvolcite] = ACTIONS(1841), - [anon_sym_BSLASHVolcite] = ACTIONS(1841), - [anon_sym_BSLASHpvolcite] = ACTIONS(1841), - [anon_sym_BSLASHPvolcite] = ACTIONS(1841), - [anon_sym_BSLASHfvolcite] = ACTIONS(1841), - [anon_sym_BSLASHftvolcite] = ACTIONS(1841), - [anon_sym_BSLASHsvolcite] = ACTIONS(1841), - [anon_sym_BSLASHSvolcite] = ACTIONS(1841), - [anon_sym_BSLASHtvolcite] = ACTIONS(1841), - [anon_sym_BSLASHTvolcite] = ACTIONS(1841), - [anon_sym_BSLASHavolcite] = ACTIONS(1841), - [anon_sym_BSLASHAvolcite] = ACTIONS(1841), - [anon_sym_BSLASHnotecite] = ACTIONS(1841), - [anon_sym_BSLASHNotecite] = ACTIONS(1841), - [anon_sym_BSLASHpnotecite] = ACTIONS(1841), - [anon_sym_BSLASHPnotecite] = ACTIONS(1841), - [anon_sym_BSLASHfnotecite] = ACTIONS(1841), - [anon_sym_BSLASHlabel] = ACTIONS(1841), - [anon_sym_BSLASHref] = ACTIONS(1841), - [anon_sym_BSLASHeqref] = ACTIONS(1841), - [anon_sym_BSLASHvref] = ACTIONS(1841), - [anon_sym_BSLASHVref] = ACTIONS(1841), - [anon_sym_BSLASHautoref] = ACTIONS(1841), - [anon_sym_BSLASHpageref] = ACTIONS(1841), - [anon_sym_BSLASHcref] = ACTIONS(1841), - [anon_sym_BSLASHCref] = ACTIONS(1841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnameCref] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), - [anon_sym_BSLASHlabelcref] = ACTIONS(1841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange] = ACTIONS(1841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHCrefrange] = ACTIONS(1841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), - [anon_sym_BSLASHnewlabel] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand] = ACTIONS(1841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), - [anon_sym_BSLASHdef] = ACTIONS(1841), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), - [anon_sym_BSLASHgls] = ACTIONS(1841), - [anon_sym_BSLASHGls] = ACTIONS(1841), - [anon_sym_BSLASHGLS] = ACTIONS(1841), - [anon_sym_BSLASHglspl] = ACTIONS(1841), - [anon_sym_BSLASHGlspl] = ACTIONS(1841), - [anon_sym_BSLASHGLSpl] = ACTIONS(1841), - [anon_sym_BSLASHglsdisp] = ACTIONS(1841), - [anon_sym_BSLASHglslink] = ACTIONS(1841), - [anon_sym_BSLASHglstext] = ACTIONS(1841), - [anon_sym_BSLASHGlstext] = ACTIONS(1841), - [anon_sym_BSLASHGLStext] = ACTIONS(1841), - [anon_sym_BSLASHglsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), - [anon_sym_BSLASHglsplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSplural] = ACTIONS(1841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), - [anon_sym_BSLASHglsname] = ACTIONS(1841), - [anon_sym_BSLASHGlsname] = ACTIONS(1841), - [anon_sym_BSLASHGLSname] = ACTIONS(1841), - [anon_sym_BSLASHglssymbol] = ACTIONS(1841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), - [anon_sym_BSLASHglsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), - [anon_sym_BSLASHglsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), - [anon_sym_BSLASHglsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), - [anon_sym_BSLASHglsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), - [anon_sym_BSLASHglsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), - [anon_sym_BSLASHnewacronym] = ACTIONS(1841), - [anon_sym_BSLASHacrshort] = ACTIONS(1841), - [anon_sym_BSLASHAcrshort] = ACTIONS(1841), - [anon_sym_BSLASHACRshort] = ACTIONS(1841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), - [anon_sym_BSLASHacrlong] = ACTIONS(1841), - [anon_sym_BSLASHAcrlong] = ACTIONS(1841), - [anon_sym_BSLASHACRlong] = ACTIONS(1841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), - [anon_sym_BSLASHacrfull] = ACTIONS(1841), - [anon_sym_BSLASHAcrfull] = ACTIONS(1841), - [anon_sym_BSLASHACRfull] = ACTIONS(1841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), - [anon_sym_BSLASHacs] = ACTIONS(1841), - [anon_sym_BSLASHAcs] = ACTIONS(1841), - [anon_sym_BSLASHacsp] = ACTIONS(1841), - [anon_sym_BSLASHAcsp] = ACTIONS(1841), - [anon_sym_BSLASHacl] = ACTIONS(1841), - [anon_sym_BSLASHAcl] = ACTIONS(1841), - [anon_sym_BSLASHaclp] = ACTIONS(1841), - [anon_sym_BSLASHAclp] = ACTIONS(1841), - [anon_sym_BSLASHacf] = ACTIONS(1841), - [anon_sym_BSLASHAcf] = ACTIONS(1841), - [anon_sym_BSLASHacfp] = ACTIONS(1841), - [anon_sym_BSLASHAcfp] = ACTIONS(1841), - [anon_sym_BSLASHac] = ACTIONS(1841), - [anon_sym_BSLASHAc] = ACTIONS(1841), - [anon_sym_BSLASHacp] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), - [anon_sym_BSLASHcolor] = ACTIONS(1841), - [anon_sym_BSLASHcolorbox] = ACTIONS(1841), - [anon_sym_BSLASHtextcolor] = ACTIONS(1841), - [anon_sym_BSLASHpagecolor] = ACTIONS(1841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), - [anon_sym_BSLASHtext] = ACTIONS(1841), - [anon_sym_BSLASHintertext] = ACTIONS(1841), - [anon_sym_shortintertext] = ACTIONS(1841), + [sym_command_name] = ACTIONS(1866), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_BSLASHpart] = ACTIONS(1866), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddpart] = ACTIONS(1866), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1862), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(1866), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHaddsec] = ACTIONS(1866), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1866), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1862), + [anon_sym_BSLASHparagraph] = ACTIONS(1866), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1866), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1862), + [anon_sym_BSLASHitem] = ACTIONS(1866), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [sym_word] = ACTIONS(1866), + [sym_placeholder] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1862), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1862), + [anon_sym_BSLASHbegin] = ACTIONS(1866), + [anon_sym_BSLASHusepackage] = ACTIONS(1866), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1866), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1866), + [anon_sym_BSLASHinclude] = ACTIONS(1866), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1866), + [anon_sym_BSLASHinput] = ACTIONS(1866), + [anon_sym_BSLASHsubfile] = ACTIONS(1866), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1866), + [anon_sym_BSLASHbibliography] = ACTIONS(1866), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1866), + [anon_sym_BSLASHincludesvg] = ACTIONS(1866), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1866), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1866), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1866), + [anon_sym_BSLASHimport] = ACTIONS(1866), + [anon_sym_BSLASHsubimport] = ACTIONS(1866), + [anon_sym_BSLASHinputfrom] = ACTIONS(1866), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1866), + [anon_sym_BSLASHincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1866), + [anon_sym_BSLASHcaption] = ACTIONS(1866), + [anon_sym_BSLASHcite] = ACTIONS(1866), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCite] = ACTIONS(1866), + [anon_sym_BSLASHnocite] = ACTIONS(1866), + [anon_sym_BSLASHcitet] = ACTIONS(1866), + [anon_sym_BSLASHcitep] = ACTIONS(1866), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteauthor] = ACTIONS(1866), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1866), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitetitle] = ACTIONS(1866), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteyear] = ACTIONS(1866), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1862), + [anon_sym_BSLASHcitedate] = ACTIONS(1866), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1862), + [anon_sym_BSLASHciteurl] = ACTIONS(1866), + [anon_sym_BSLASHfullcite] = ACTIONS(1866), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1866), + [anon_sym_BSLASHcitealt] = ACTIONS(1866), + [anon_sym_BSLASHcitealp] = ACTIONS(1866), + [anon_sym_BSLASHcitetext] = ACTIONS(1866), + [anon_sym_BSLASHparencite] = ACTIONS(1866), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHParencite] = ACTIONS(1866), + [anon_sym_BSLASHfootcite] = ACTIONS(1866), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1866), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1866), + [anon_sym_BSLASHtextcite] = ACTIONS(1866), + [anon_sym_BSLASHTextcite] = ACTIONS(1866), + [anon_sym_BSLASHsmartcite] = ACTIONS(1866), + [anon_sym_BSLASHSmartcite] = ACTIONS(1866), + [anon_sym_BSLASHsupercite] = ACTIONS(1866), + [anon_sym_BSLASHautocite] = ACTIONS(1866), + [anon_sym_BSLASHAutocite] = ACTIONS(1866), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1862), + [anon_sym_BSLASHvolcite] = ACTIONS(1866), + [anon_sym_BSLASHVolcite] = ACTIONS(1866), + [anon_sym_BSLASHpvolcite] = ACTIONS(1866), + [anon_sym_BSLASHPvolcite] = ACTIONS(1866), + [anon_sym_BSLASHfvolcite] = ACTIONS(1866), + [anon_sym_BSLASHftvolcite] = ACTIONS(1866), + [anon_sym_BSLASHsvolcite] = ACTIONS(1866), + [anon_sym_BSLASHSvolcite] = ACTIONS(1866), + [anon_sym_BSLASHtvolcite] = ACTIONS(1866), + [anon_sym_BSLASHTvolcite] = ACTIONS(1866), + [anon_sym_BSLASHavolcite] = ACTIONS(1866), + [anon_sym_BSLASHAvolcite] = ACTIONS(1866), + [anon_sym_BSLASHnotecite] = ACTIONS(1866), + [anon_sym_BSLASHNotecite] = ACTIONS(1866), + [anon_sym_BSLASHpnotecite] = ACTIONS(1866), + [anon_sym_BSLASHPnotecite] = ACTIONS(1866), + [anon_sym_BSLASHfnotecite] = ACTIONS(1866), + [anon_sym_BSLASHlabel] = ACTIONS(1866), + [anon_sym_BSLASHref] = ACTIONS(1866), + [anon_sym_BSLASHeqref] = ACTIONS(1866), + [anon_sym_BSLASHvref] = ACTIONS(1866), + [anon_sym_BSLASHVref] = ACTIONS(1866), + [anon_sym_BSLASHautoref] = ACTIONS(1866), + [anon_sym_BSLASHpageref] = ACTIONS(1866), + [anon_sym_BSLASHcref] = ACTIONS(1866), + [anon_sym_BSLASHCref] = ACTIONS(1866), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnameCref] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1866), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1866), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1866), + [anon_sym_BSLASHlabelcref] = ACTIONS(1866), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange] = ACTIONS(1866), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHCrefrange] = ACTIONS(1866), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1862), + [anon_sym_BSLASHnewlabel] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand] = ACTIONS(1866), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1866), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1866), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1866), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdef] = ACTIONS(1866), + [anon_sym_BSLASHlet] = ACTIONS(1866), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1866), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1866), + [anon_sym_BSLASHgls] = ACTIONS(1866), + [anon_sym_BSLASHGls] = ACTIONS(1866), + [anon_sym_BSLASHGLS] = ACTIONS(1866), + [anon_sym_BSLASHglspl] = ACTIONS(1866), + [anon_sym_BSLASHGlspl] = ACTIONS(1866), + [anon_sym_BSLASHGLSpl] = ACTIONS(1866), + [anon_sym_BSLASHglsdisp] = ACTIONS(1866), + [anon_sym_BSLASHglslink] = ACTIONS(1866), + [anon_sym_BSLASHglstext] = ACTIONS(1866), + [anon_sym_BSLASHGlstext] = ACTIONS(1866), + [anon_sym_BSLASHGLStext] = ACTIONS(1866), + [anon_sym_BSLASHglsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1866), + [anon_sym_BSLASHglsplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSplural] = ACTIONS(1866), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1866), + [anon_sym_BSLASHglsname] = ACTIONS(1866), + [anon_sym_BSLASHGlsname] = ACTIONS(1866), + [anon_sym_BSLASHGLSname] = ACTIONS(1866), + [anon_sym_BSLASHglssymbol] = ACTIONS(1866), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1866), + [anon_sym_BSLASHglsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1866), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1866), + [anon_sym_BSLASHglsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1866), + [anon_sym_BSLASHglsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1866), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1866), + [anon_sym_BSLASHglsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1866), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1866), + [anon_sym_BSLASHglsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1866), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1866), + [anon_sym_BSLASHnewacronym] = ACTIONS(1866), + [anon_sym_BSLASHacrshort] = ACTIONS(1866), + [anon_sym_BSLASHAcrshort] = ACTIONS(1866), + [anon_sym_BSLASHACRshort] = ACTIONS(1866), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1866), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1866), + [anon_sym_BSLASHacrlong] = ACTIONS(1866), + [anon_sym_BSLASHAcrlong] = ACTIONS(1866), + [anon_sym_BSLASHACRlong] = ACTIONS(1866), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1866), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1866), + [anon_sym_BSLASHacrfull] = ACTIONS(1866), + [anon_sym_BSLASHAcrfull] = ACTIONS(1866), + [anon_sym_BSLASHACRfull] = ACTIONS(1866), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1866), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1866), + [anon_sym_BSLASHacs] = ACTIONS(1866), + [anon_sym_BSLASHAcs] = ACTIONS(1866), + [anon_sym_BSLASHacsp] = ACTIONS(1866), + [anon_sym_BSLASHAcsp] = ACTIONS(1866), + [anon_sym_BSLASHacl] = ACTIONS(1866), + [anon_sym_BSLASHAcl] = ACTIONS(1866), + [anon_sym_BSLASHaclp] = ACTIONS(1866), + [anon_sym_BSLASHAclp] = ACTIONS(1866), + [anon_sym_BSLASHacf] = ACTIONS(1866), + [anon_sym_BSLASHAcf] = ACTIONS(1866), + [anon_sym_BSLASHacfp] = ACTIONS(1866), + [anon_sym_BSLASHAcfp] = ACTIONS(1866), + [anon_sym_BSLASHac] = ACTIONS(1866), + [anon_sym_BSLASHAc] = ACTIONS(1866), + [anon_sym_BSLASHacp] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1866), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1866), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1866), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1866), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1866), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1866), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1866), + [anon_sym_BSLASHcolor] = ACTIONS(1866), + [anon_sym_BSLASHcolorbox] = ACTIONS(1866), + [anon_sym_BSLASHtextcolor] = ACTIONS(1866), + [anon_sym_BSLASHpagecolor] = ACTIONS(1866), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1866), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1866), + [anon_sym_BSLASHtext] = ACTIONS(1866), + [anon_sym_BSLASHintertext] = ACTIONS(1866), + [anon_sym_shortintertext] = ACTIONS(1866), }, [561] = { [sym__section_declaration] = STATE(151), [sym_section] = STATE(516), [aux_sym__section_repeat3] = STATE(516), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(325), - [anon_sym_BSLASHaddsec] = ACTIONS(323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHaddsec] = ACTIONS(327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [562] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [563] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [564] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [565] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [566] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [567] = { [sym__subsection_declaration] = STATE(160), [sym_subsection] = STATE(517), [aux_sym__section_repeat4] = STATE(517), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [568] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [569] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [570] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [571] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [572] = { [sym__subsubsection_declaration] = STATE(165), [sym_subsubsection] = STATE(518), [aux_sym__section_repeat5] = STATE(518), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(331), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(335), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(337), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [573] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [574] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [575] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [576] = { [sym__paragraph_declaration] = STATE(175), [sym_paragraph] = STATE(519), [aux_sym__section_repeat6] = STATE(519), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(335), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(339), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [577] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [578] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [579] = { [sym__subparagraph_declaration] = STATE(187), [sym_subparagraph] = STATE(520), [aux_sym__section_repeat7] = STATE(520), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(339), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), - [anon_sym_BSLASHitem] = ACTIONS(4487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(343), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(345), + [anon_sym_BSLASHitem] = ACTIONS(4566), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [580] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4566), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [581] = { [sym__enum_itemdeclaration] = STATE(196), [sym_enum_item] = STATE(521), [aux_sym__section_repeat8] = STATE(521), - [sym_command_name] = ACTIONS(4491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_BSLASHpart] = ACTIONS(4491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddpart] = ACTIONS(4491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHchapter] = ACTIONS(4491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddchap] = ACTIONS(4491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsection] = ACTIONS(4491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddsec] = ACTIONS(4491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHparagraph] = ACTIONS(4491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHitem] = ACTIONS(343), - [anon_sym_BSLASHitem_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(4489), - [sym_word] = ACTIONS(4491), - [sym_placeholder] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_STAR] = ACTIONS(4491), - [anon_sym_SLASH] = ACTIONS(4491), - [anon_sym_CARET] = ACTIONS(4491), - [anon_sym__] = ACTIONS(4491), - [anon_sym_LT] = ACTIONS(4491), - [anon_sym_GT] = ACTIONS(4491), - [anon_sym_BANG] = ACTIONS(4491), - [anon_sym_PIPE] = ACTIONS(4491), - [anon_sym_COLON] = ACTIONS(4491), - [anon_sym_SQUOTE] = ACTIONS(4491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), - [anon_sym_BSLASHbegin] = ACTIONS(4491), - [anon_sym_BSLASHusepackage] = ACTIONS(4491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), - [anon_sym_BSLASHinclude] = ACTIONS(4491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), - [anon_sym_BSLASHinput] = ACTIONS(4491), - [anon_sym_BSLASHsubfile] = ACTIONS(4491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), - [anon_sym_BSLASHbibliography] = ACTIONS(4491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), - [anon_sym_BSLASHincludesvg] = ACTIONS(4491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), - [anon_sym_BSLASHimport] = ACTIONS(4491), - [anon_sym_BSLASHsubimport] = ACTIONS(4491), - [anon_sym_BSLASHinputfrom] = ACTIONS(4491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), - [anon_sym_BSLASHincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHcaption] = ACTIONS(4491), - [anon_sym_BSLASHcite] = ACTIONS(4491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCite] = ACTIONS(4491), - [anon_sym_BSLASHnocite] = ACTIONS(4491), - [anon_sym_BSLASHcitet] = ACTIONS(4491), - [anon_sym_BSLASHcitep] = ACTIONS(4491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteyear] = ACTIONS(4491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitedate] = ACTIONS(4491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteurl] = ACTIONS(4491), - [anon_sym_BSLASHfullcite] = ACTIONS(4491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), - [anon_sym_BSLASHcitealt] = ACTIONS(4491), - [anon_sym_BSLASHcitealp] = ACTIONS(4491), - [anon_sym_BSLASHcitetext] = ACTIONS(4491), - [anon_sym_BSLASHparencite] = ACTIONS(4491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHParencite] = ACTIONS(4491), - [anon_sym_BSLASHfootcite] = ACTIONS(4491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), - [anon_sym_BSLASHtextcite] = ACTIONS(4491), - [anon_sym_BSLASHTextcite] = ACTIONS(4491), - [anon_sym_BSLASHsmartcite] = ACTIONS(4491), - [anon_sym_BSLASHSmartcite] = ACTIONS(4491), - [anon_sym_BSLASHsupercite] = ACTIONS(4491), - [anon_sym_BSLASHautocite] = ACTIONS(4491), - [anon_sym_BSLASHAutocite] = ACTIONS(4491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHvolcite] = ACTIONS(4491), - [anon_sym_BSLASHVolcite] = ACTIONS(4491), - [anon_sym_BSLASHpvolcite] = ACTIONS(4491), - [anon_sym_BSLASHPvolcite] = ACTIONS(4491), - [anon_sym_BSLASHfvolcite] = ACTIONS(4491), - [anon_sym_BSLASHftvolcite] = ACTIONS(4491), - [anon_sym_BSLASHsvolcite] = ACTIONS(4491), - [anon_sym_BSLASHSvolcite] = ACTIONS(4491), - [anon_sym_BSLASHtvolcite] = ACTIONS(4491), - [anon_sym_BSLASHTvolcite] = ACTIONS(4491), - [anon_sym_BSLASHavolcite] = ACTIONS(4491), - [anon_sym_BSLASHAvolcite] = ACTIONS(4491), - [anon_sym_BSLASHnotecite] = ACTIONS(4491), - [anon_sym_BSLASHNotecite] = ACTIONS(4491), - [anon_sym_BSLASHpnotecite] = ACTIONS(4491), - [anon_sym_BSLASHPnotecite] = ACTIONS(4491), - [anon_sym_BSLASHfnotecite] = ACTIONS(4491), - [anon_sym_BSLASHlabel] = ACTIONS(4491), - [anon_sym_BSLASHref] = ACTIONS(4491), - [anon_sym_BSLASHeqref] = ACTIONS(4491), - [anon_sym_BSLASHvref] = ACTIONS(4491), - [anon_sym_BSLASHVref] = ACTIONS(4491), - [anon_sym_BSLASHautoref] = ACTIONS(4491), - [anon_sym_BSLASHpageref] = ACTIONS(4491), - [anon_sym_BSLASHcref] = ACTIONS(4491), - [anon_sym_BSLASHCref] = ACTIONS(4491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnameCref] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHlabelcref] = ACTIONS(4491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnewlabel] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), - [anon_sym_BSLASHdef] = ACTIONS(4491), - [anon_sym_BSLASHlet] = ACTIONS(4491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), - [anon_sym_BSLASHgls] = ACTIONS(4491), - [anon_sym_BSLASHGls] = ACTIONS(4491), - [anon_sym_BSLASHGLS] = ACTIONS(4491), - [anon_sym_BSLASHglspl] = ACTIONS(4491), - [anon_sym_BSLASHGlspl] = ACTIONS(4491), - [anon_sym_BSLASHGLSpl] = ACTIONS(4491), - [anon_sym_BSLASHglsdisp] = ACTIONS(4491), - [anon_sym_BSLASHglslink] = ACTIONS(4491), - [anon_sym_BSLASHglstext] = ACTIONS(4491), - [anon_sym_BSLASHGlstext] = ACTIONS(4491), - [anon_sym_BSLASHGLStext] = ACTIONS(4491), - [anon_sym_BSLASHglsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), - [anon_sym_BSLASHglsplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSplural] = ACTIONS(4491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHglsname] = ACTIONS(4491), - [anon_sym_BSLASHGlsname] = ACTIONS(4491), - [anon_sym_BSLASHGLSname] = ACTIONS(4491), - [anon_sym_BSLASHglssymbol] = ACTIONS(4491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), - [anon_sym_BSLASHglsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), - [anon_sym_BSLASHglsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), - [anon_sym_BSLASHglsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), - [anon_sym_BSLASHglsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), - [anon_sym_BSLASHglsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), - [anon_sym_BSLASHnewacronym] = ACTIONS(4491), - [anon_sym_BSLASHacrshort] = ACTIONS(4491), - [anon_sym_BSLASHAcrshort] = ACTIONS(4491), - [anon_sym_BSLASHACRshort] = ACTIONS(4491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), - [anon_sym_BSLASHacrlong] = ACTIONS(4491), - [anon_sym_BSLASHAcrlong] = ACTIONS(4491), - [anon_sym_BSLASHACRlong] = ACTIONS(4491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), - [anon_sym_BSLASHacrfull] = ACTIONS(4491), - [anon_sym_BSLASHAcrfull] = ACTIONS(4491), - [anon_sym_BSLASHACRfull] = ACTIONS(4491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), - [anon_sym_BSLASHacs] = ACTIONS(4491), - [anon_sym_BSLASHAcs] = ACTIONS(4491), - [anon_sym_BSLASHacsp] = ACTIONS(4491), - [anon_sym_BSLASHAcsp] = ACTIONS(4491), - [anon_sym_BSLASHacl] = ACTIONS(4491), - [anon_sym_BSLASHAcl] = ACTIONS(4491), - [anon_sym_BSLASHaclp] = ACTIONS(4491), - [anon_sym_BSLASHAclp] = ACTIONS(4491), - [anon_sym_BSLASHacf] = ACTIONS(4491), - [anon_sym_BSLASHAcf] = ACTIONS(4491), - [anon_sym_BSLASHacfp] = ACTIONS(4491), - [anon_sym_BSLASHAcfp] = ACTIONS(4491), - [anon_sym_BSLASHac] = ACTIONS(4491), - [anon_sym_BSLASHAc] = ACTIONS(4491), - [anon_sym_BSLASHacp] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), - [anon_sym_BSLASHcolor] = ACTIONS(4491), - [anon_sym_BSLASHcolorbox] = ACTIONS(4491), - [anon_sym_BSLASHtextcolor] = ACTIONS(4491), - [anon_sym_BSLASHpagecolor] = ACTIONS(4491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), - [anon_sym_BSLASHtext] = ACTIONS(4491), - [anon_sym_BSLASHintertext] = ACTIONS(4491), - [anon_sym_shortintertext] = ACTIONS(4491), + [sym_command_name] = ACTIONS(4570), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_BSLASHpart] = ACTIONS(4570), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddpart] = ACTIONS(4570), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHchapter] = ACTIONS(4570), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddchap] = ACTIONS(4570), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsection] = ACTIONS(4570), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddsec] = ACTIONS(4570), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHparagraph] = ACTIONS(4570), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4570), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHitem] = ACTIONS(347), + [anon_sym_BSLASHitem_STAR] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(4568), + [sym_word] = ACTIONS(4570), + [sym_placeholder] = ACTIONS(4568), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym__] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_SQUOTE] = ACTIONS(4570), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4568), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4568), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4568), + [anon_sym_BSLASHbegin] = ACTIONS(4570), + [anon_sym_BSLASHusepackage] = ACTIONS(4570), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4570), + [anon_sym_BSLASHinclude] = ACTIONS(4570), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4570), + [anon_sym_BSLASHinput] = ACTIONS(4570), + [anon_sym_BSLASHsubfile] = ACTIONS(4570), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4570), + [anon_sym_BSLASHbibliography] = ACTIONS(4570), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4570), + [anon_sym_BSLASHincludesvg] = ACTIONS(4570), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4570), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4570), + [anon_sym_BSLASHimport] = ACTIONS(4570), + [anon_sym_BSLASHsubimport] = ACTIONS(4570), + [anon_sym_BSLASHinputfrom] = ACTIONS(4570), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4570), + [anon_sym_BSLASHincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHcaption] = ACTIONS(4570), + [anon_sym_BSLASHcite] = ACTIONS(4570), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCite] = ACTIONS(4570), + [anon_sym_BSLASHnocite] = ACTIONS(4570), + [anon_sym_BSLASHcitet] = ACTIONS(4570), + [anon_sym_BSLASHcitep] = ACTIONS(4570), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteauthor] = ACTIONS(4570), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4570), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitetitle] = ACTIONS(4570), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteyear] = ACTIONS(4570), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitedate] = ACTIONS(4570), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteurl] = ACTIONS(4570), + [anon_sym_BSLASHfullcite] = ACTIONS(4570), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4570), + [anon_sym_BSLASHcitealt] = ACTIONS(4570), + [anon_sym_BSLASHcitealp] = ACTIONS(4570), + [anon_sym_BSLASHcitetext] = ACTIONS(4570), + [anon_sym_BSLASHparencite] = ACTIONS(4570), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHParencite] = ACTIONS(4570), + [anon_sym_BSLASHfootcite] = ACTIONS(4570), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4570), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4570), + [anon_sym_BSLASHtextcite] = ACTIONS(4570), + [anon_sym_BSLASHTextcite] = ACTIONS(4570), + [anon_sym_BSLASHsmartcite] = ACTIONS(4570), + [anon_sym_BSLASHSmartcite] = ACTIONS(4570), + [anon_sym_BSLASHsupercite] = ACTIONS(4570), + [anon_sym_BSLASHautocite] = ACTIONS(4570), + [anon_sym_BSLASHAutocite] = ACTIONS(4570), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHvolcite] = ACTIONS(4570), + [anon_sym_BSLASHVolcite] = ACTIONS(4570), + [anon_sym_BSLASHpvolcite] = ACTIONS(4570), + [anon_sym_BSLASHPvolcite] = ACTIONS(4570), + [anon_sym_BSLASHfvolcite] = ACTIONS(4570), + [anon_sym_BSLASHftvolcite] = ACTIONS(4570), + [anon_sym_BSLASHsvolcite] = ACTIONS(4570), + [anon_sym_BSLASHSvolcite] = ACTIONS(4570), + [anon_sym_BSLASHtvolcite] = ACTIONS(4570), + [anon_sym_BSLASHTvolcite] = ACTIONS(4570), + [anon_sym_BSLASHavolcite] = ACTIONS(4570), + [anon_sym_BSLASHAvolcite] = ACTIONS(4570), + [anon_sym_BSLASHnotecite] = ACTIONS(4570), + [anon_sym_BSLASHNotecite] = ACTIONS(4570), + [anon_sym_BSLASHpnotecite] = ACTIONS(4570), + [anon_sym_BSLASHPnotecite] = ACTIONS(4570), + [anon_sym_BSLASHfnotecite] = ACTIONS(4570), + [anon_sym_BSLASHlabel] = ACTIONS(4570), + [anon_sym_BSLASHref] = ACTIONS(4570), + [anon_sym_BSLASHeqref] = ACTIONS(4570), + [anon_sym_BSLASHvref] = ACTIONS(4570), + [anon_sym_BSLASHVref] = ACTIONS(4570), + [anon_sym_BSLASHautoref] = ACTIONS(4570), + [anon_sym_BSLASHpageref] = ACTIONS(4570), + [anon_sym_BSLASHcref] = ACTIONS(4570), + [anon_sym_BSLASHCref] = ACTIONS(4570), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnameCref] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHlabelcref] = ACTIONS(4570), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCrefrange] = ACTIONS(4570), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnewlabel] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4570), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4570), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdef] = ACTIONS(4570), + [anon_sym_BSLASHlet] = ACTIONS(4570), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4570), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4570), + [anon_sym_BSLASHgls] = ACTIONS(4570), + [anon_sym_BSLASHGls] = ACTIONS(4570), + [anon_sym_BSLASHGLS] = ACTIONS(4570), + [anon_sym_BSLASHglspl] = ACTIONS(4570), + [anon_sym_BSLASHGlspl] = ACTIONS(4570), + [anon_sym_BSLASHGLSpl] = ACTIONS(4570), + [anon_sym_BSLASHglsdisp] = ACTIONS(4570), + [anon_sym_BSLASHglslink] = ACTIONS(4570), + [anon_sym_BSLASHglstext] = ACTIONS(4570), + [anon_sym_BSLASHGlstext] = ACTIONS(4570), + [anon_sym_BSLASHGLStext] = ACTIONS(4570), + [anon_sym_BSLASHglsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4570), + [anon_sym_BSLASHglsplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSplural] = ACTIONS(4570), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHglsname] = ACTIONS(4570), + [anon_sym_BSLASHGlsname] = ACTIONS(4570), + [anon_sym_BSLASHGLSname] = ACTIONS(4570), + [anon_sym_BSLASHglssymbol] = ACTIONS(4570), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4570), + [anon_sym_BSLASHglsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4570), + [anon_sym_BSLASHglsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4570), + [anon_sym_BSLASHglsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4570), + [anon_sym_BSLASHglsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4570), + [anon_sym_BSLASHglsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4570), + [anon_sym_BSLASHnewacronym] = ACTIONS(4570), + [anon_sym_BSLASHacrshort] = ACTIONS(4570), + [anon_sym_BSLASHAcrshort] = ACTIONS(4570), + [anon_sym_BSLASHACRshort] = ACTIONS(4570), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4570), + [anon_sym_BSLASHacrlong] = ACTIONS(4570), + [anon_sym_BSLASHAcrlong] = ACTIONS(4570), + [anon_sym_BSLASHACRlong] = ACTIONS(4570), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4570), + [anon_sym_BSLASHacrfull] = ACTIONS(4570), + [anon_sym_BSLASHAcrfull] = ACTIONS(4570), + [anon_sym_BSLASHACRfull] = ACTIONS(4570), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4570), + [anon_sym_BSLASHacs] = ACTIONS(4570), + [anon_sym_BSLASHAcs] = ACTIONS(4570), + [anon_sym_BSLASHacsp] = ACTIONS(4570), + [anon_sym_BSLASHAcsp] = ACTIONS(4570), + [anon_sym_BSLASHacl] = ACTIONS(4570), + [anon_sym_BSLASHAcl] = ACTIONS(4570), + [anon_sym_BSLASHaclp] = ACTIONS(4570), + [anon_sym_BSLASHAclp] = ACTIONS(4570), + [anon_sym_BSLASHacf] = ACTIONS(4570), + [anon_sym_BSLASHAcf] = ACTIONS(4570), + [anon_sym_BSLASHacfp] = ACTIONS(4570), + [anon_sym_BSLASHAcfp] = ACTIONS(4570), + [anon_sym_BSLASHac] = ACTIONS(4570), + [anon_sym_BSLASHAc] = ACTIONS(4570), + [anon_sym_BSLASHacp] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4570), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4570), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4570), + [anon_sym_BSLASHcolor] = ACTIONS(4570), + [anon_sym_BSLASHcolorbox] = ACTIONS(4570), + [anon_sym_BSLASHtextcolor] = ACTIONS(4570), + [anon_sym_BSLASHpagecolor] = ACTIONS(4570), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4570), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4570), + [anon_sym_BSLASHtext] = ACTIONS(4570), + [anon_sym_BSLASHintertext] = ACTIONS(4570), + [anon_sym_shortintertext] = ACTIONS(4570), }, [582] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(1869), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(1894), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [583] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1869), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BSLASHpart] = ACTIONS(1869), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddpart] = ACTIONS(1869), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), - [anon_sym_BSLASHchapter] = ACTIONS(1869), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddchap] = ACTIONS(1869), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsection] = ACTIONS(1869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHaddsec] = ACTIONS(1869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), - [anon_sym_BSLASHparagraph] = ACTIONS(1869), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1867), - [sym_word] = ACTIONS(1869), - [sym_placeholder] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym__] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), - [anon_sym_BSLASHbegin] = ACTIONS(1869), - [anon_sym_BSLASHusepackage] = ACTIONS(1869), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), - [anon_sym_BSLASHinclude] = ACTIONS(1869), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), - [anon_sym_BSLASHinput] = ACTIONS(1869), - [anon_sym_BSLASHsubfile] = ACTIONS(1869), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), - [anon_sym_BSLASHbibliography] = ACTIONS(1869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), - [anon_sym_BSLASHincludesvg] = ACTIONS(1869), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), - [anon_sym_BSLASHimport] = ACTIONS(1869), - [anon_sym_BSLASHsubimport] = ACTIONS(1869), - [anon_sym_BSLASHinputfrom] = ACTIONS(1869), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), - [anon_sym_BSLASHincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), - [anon_sym_BSLASHcaption] = ACTIONS(1869), - [anon_sym_BSLASHcite] = ACTIONS(1869), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCite] = ACTIONS(1869), - [anon_sym_BSLASHnocite] = ACTIONS(1869), - [anon_sym_BSLASHcitet] = ACTIONS(1869), - [anon_sym_BSLASHcitep] = ACTIONS(1869), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteauthor] = ACTIONS(1869), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitetitle] = ACTIONS(1869), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteyear] = ACTIONS(1869), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), - [anon_sym_BSLASHcitedate] = ACTIONS(1869), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), - [anon_sym_BSLASHciteurl] = ACTIONS(1869), - [anon_sym_BSLASHfullcite] = ACTIONS(1869), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), - [anon_sym_BSLASHcitealt] = ACTIONS(1869), - [anon_sym_BSLASHcitealp] = ACTIONS(1869), - [anon_sym_BSLASHcitetext] = ACTIONS(1869), - [anon_sym_BSLASHparencite] = ACTIONS(1869), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHParencite] = ACTIONS(1869), - [anon_sym_BSLASHfootcite] = ACTIONS(1869), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), - [anon_sym_BSLASHtextcite] = ACTIONS(1869), - [anon_sym_BSLASHTextcite] = ACTIONS(1869), - [anon_sym_BSLASHsmartcite] = ACTIONS(1869), - [anon_sym_BSLASHSmartcite] = ACTIONS(1869), - [anon_sym_BSLASHsupercite] = ACTIONS(1869), - [anon_sym_BSLASHautocite] = ACTIONS(1869), - [anon_sym_BSLASHAutocite] = ACTIONS(1869), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), - [anon_sym_BSLASHvolcite] = ACTIONS(1869), - [anon_sym_BSLASHVolcite] = ACTIONS(1869), - [anon_sym_BSLASHpvolcite] = ACTIONS(1869), - [anon_sym_BSLASHPvolcite] = ACTIONS(1869), - [anon_sym_BSLASHfvolcite] = ACTIONS(1869), - [anon_sym_BSLASHftvolcite] = ACTIONS(1869), - [anon_sym_BSLASHsvolcite] = ACTIONS(1869), - [anon_sym_BSLASHSvolcite] = ACTIONS(1869), - [anon_sym_BSLASHtvolcite] = ACTIONS(1869), - [anon_sym_BSLASHTvolcite] = ACTIONS(1869), - [anon_sym_BSLASHavolcite] = ACTIONS(1869), - [anon_sym_BSLASHAvolcite] = ACTIONS(1869), - [anon_sym_BSLASHnotecite] = ACTIONS(1869), - [anon_sym_BSLASHNotecite] = ACTIONS(1869), - [anon_sym_BSLASHpnotecite] = ACTIONS(1869), - [anon_sym_BSLASHPnotecite] = ACTIONS(1869), - [anon_sym_BSLASHfnotecite] = ACTIONS(1869), - [anon_sym_BSLASHlabel] = ACTIONS(1869), - [anon_sym_BSLASHref] = ACTIONS(1869), - [anon_sym_BSLASHeqref] = ACTIONS(1869), - [anon_sym_BSLASHvref] = ACTIONS(1869), - [anon_sym_BSLASHVref] = ACTIONS(1869), - [anon_sym_BSLASHautoref] = ACTIONS(1869), - [anon_sym_BSLASHpageref] = ACTIONS(1869), - [anon_sym_BSLASHcref] = ACTIONS(1869), - [anon_sym_BSLASHCref] = ACTIONS(1869), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnameCref] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), - [anon_sym_BSLASHlabelcref] = ACTIONS(1869), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange] = ACTIONS(1869), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHCrefrange] = ACTIONS(1869), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), - [anon_sym_BSLASHnewlabel] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand] = ACTIONS(1869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), - [anon_sym_BSLASHdef] = ACTIONS(1869), - [anon_sym_BSLASHlet] = ACTIONS(1869), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), - [anon_sym_BSLASHgls] = ACTIONS(1869), - [anon_sym_BSLASHGls] = ACTIONS(1869), - [anon_sym_BSLASHGLS] = ACTIONS(1869), - [anon_sym_BSLASHglspl] = ACTIONS(1869), - [anon_sym_BSLASHGlspl] = ACTIONS(1869), - [anon_sym_BSLASHGLSpl] = ACTIONS(1869), - [anon_sym_BSLASHglsdisp] = ACTIONS(1869), - [anon_sym_BSLASHglslink] = ACTIONS(1869), - [anon_sym_BSLASHglstext] = ACTIONS(1869), - [anon_sym_BSLASHGlstext] = ACTIONS(1869), - [anon_sym_BSLASHGLStext] = ACTIONS(1869), - [anon_sym_BSLASHglsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), - [anon_sym_BSLASHglsplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSplural] = ACTIONS(1869), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), - [anon_sym_BSLASHglsname] = ACTIONS(1869), - [anon_sym_BSLASHGlsname] = ACTIONS(1869), - [anon_sym_BSLASHGLSname] = ACTIONS(1869), - [anon_sym_BSLASHglssymbol] = ACTIONS(1869), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), - [anon_sym_BSLASHglsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), - [anon_sym_BSLASHglsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), - [anon_sym_BSLASHglsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), - [anon_sym_BSLASHglsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), - [anon_sym_BSLASHglsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), - [anon_sym_BSLASHnewacronym] = ACTIONS(1869), - [anon_sym_BSLASHacrshort] = ACTIONS(1869), - [anon_sym_BSLASHAcrshort] = ACTIONS(1869), - [anon_sym_BSLASHACRshort] = ACTIONS(1869), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), - [anon_sym_BSLASHacrlong] = ACTIONS(1869), - [anon_sym_BSLASHAcrlong] = ACTIONS(1869), - [anon_sym_BSLASHACRlong] = ACTIONS(1869), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), - [anon_sym_BSLASHacrfull] = ACTIONS(1869), - [anon_sym_BSLASHAcrfull] = ACTIONS(1869), - [anon_sym_BSLASHACRfull] = ACTIONS(1869), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), - [anon_sym_BSLASHacs] = ACTIONS(1869), - [anon_sym_BSLASHAcs] = ACTIONS(1869), - [anon_sym_BSLASHacsp] = ACTIONS(1869), - [anon_sym_BSLASHAcsp] = ACTIONS(1869), - [anon_sym_BSLASHacl] = ACTIONS(1869), - [anon_sym_BSLASHAcl] = ACTIONS(1869), - [anon_sym_BSLASHaclp] = ACTIONS(1869), - [anon_sym_BSLASHAclp] = ACTIONS(1869), - [anon_sym_BSLASHacf] = ACTIONS(1869), - [anon_sym_BSLASHAcf] = ACTIONS(1869), - [anon_sym_BSLASHacfp] = ACTIONS(1869), - [anon_sym_BSLASHAcfp] = ACTIONS(1869), - [anon_sym_BSLASHac] = ACTIONS(1869), - [anon_sym_BSLASHAc] = ACTIONS(1869), - [anon_sym_BSLASHacp] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), - [anon_sym_BSLASHcolor] = ACTIONS(1869), - [anon_sym_BSLASHcolorbox] = ACTIONS(1869), - [anon_sym_BSLASHtextcolor] = ACTIONS(1869), - [anon_sym_BSLASHpagecolor] = ACTIONS(1869), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), - [anon_sym_BSLASHtext] = ACTIONS(1869), - [anon_sym_BSLASHintertext] = ACTIONS(1869), - [anon_sym_shortintertext] = ACTIONS(1869), + [sym_command_name] = ACTIONS(1894), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_BSLASHpart] = ACTIONS(1894), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddpart] = ACTIONS(1894), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1892), + [anon_sym_BSLASHchapter] = ACTIONS(1894), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddchap] = ACTIONS(1894), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsection] = ACTIONS(1894), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHaddsec] = ACTIONS(1894), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1894), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1892), + [anon_sym_BSLASHparagraph] = ACTIONS(1894), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1894), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1892), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [sym_placeholder] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1892), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1892), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1892), + [anon_sym_BSLASHbegin] = ACTIONS(1894), + [anon_sym_BSLASHusepackage] = ACTIONS(1894), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1894), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1894), + [anon_sym_BSLASHinclude] = ACTIONS(1894), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1894), + [anon_sym_BSLASHinput] = ACTIONS(1894), + [anon_sym_BSLASHsubfile] = ACTIONS(1894), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1894), + [anon_sym_BSLASHbibliography] = ACTIONS(1894), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1894), + [anon_sym_BSLASHincludesvg] = ACTIONS(1894), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1894), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1894), + [anon_sym_BSLASHimport] = ACTIONS(1894), + [anon_sym_BSLASHsubimport] = ACTIONS(1894), + [anon_sym_BSLASHinputfrom] = ACTIONS(1894), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1894), + [anon_sym_BSLASHincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1894), + [anon_sym_BSLASHcaption] = ACTIONS(1894), + [anon_sym_BSLASHcite] = ACTIONS(1894), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCite] = ACTIONS(1894), + [anon_sym_BSLASHnocite] = ACTIONS(1894), + [anon_sym_BSLASHcitet] = ACTIONS(1894), + [anon_sym_BSLASHcitep] = ACTIONS(1894), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteauthor] = ACTIONS(1894), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1894), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitetitle] = ACTIONS(1894), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteyear] = ACTIONS(1894), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1892), + [anon_sym_BSLASHcitedate] = ACTIONS(1894), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1892), + [anon_sym_BSLASHciteurl] = ACTIONS(1894), + [anon_sym_BSLASHfullcite] = ACTIONS(1894), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1894), + [anon_sym_BSLASHcitealt] = ACTIONS(1894), + [anon_sym_BSLASHcitealp] = ACTIONS(1894), + [anon_sym_BSLASHcitetext] = ACTIONS(1894), + [anon_sym_BSLASHparencite] = ACTIONS(1894), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHParencite] = ACTIONS(1894), + [anon_sym_BSLASHfootcite] = ACTIONS(1894), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1894), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1894), + [anon_sym_BSLASHtextcite] = ACTIONS(1894), + [anon_sym_BSLASHTextcite] = ACTIONS(1894), + [anon_sym_BSLASHsmartcite] = ACTIONS(1894), + [anon_sym_BSLASHSmartcite] = ACTIONS(1894), + [anon_sym_BSLASHsupercite] = ACTIONS(1894), + [anon_sym_BSLASHautocite] = ACTIONS(1894), + [anon_sym_BSLASHAutocite] = ACTIONS(1894), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1892), + [anon_sym_BSLASHvolcite] = ACTIONS(1894), + [anon_sym_BSLASHVolcite] = ACTIONS(1894), + [anon_sym_BSLASHpvolcite] = ACTIONS(1894), + [anon_sym_BSLASHPvolcite] = ACTIONS(1894), + [anon_sym_BSLASHfvolcite] = ACTIONS(1894), + [anon_sym_BSLASHftvolcite] = ACTIONS(1894), + [anon_sym_BSLASHsvolcite] = ACTIONS(1894), + [anon_sym_BSLASHSvolcite] = ACTIONS(1894), + [anon_sym_BSLASHtvolcite] = ACTIONS(1894), + [anon_sym_BSLASHTvolcite] = ACTIONS(1894), + [anon_sym_BSLASHavolcite] = ACTIONS(1894), + [anon_sym_BSLASHAvolcite] = ACTIONS(1894), + [anon_sym_BSLASHnotecite] = ACTIONS(1894), + [anon_sym_BSLASHNotecite] = ACTIONS(1894), + [anon_sym_BSLASHpnotecite] = ACTIONS(1894), + [anon_sym_BSLASHPnotecite] = ACTIONS(1894), + [anon_sym_BSLASHfnotecite] = ACTIONS(1894), + [anon_sym_BSLASHlabel] = ACTIONS(1894), + [anon_sym_BSLASHref] = ACTIONS(1894), + [anon_sym_BSLASHeqref] = ACTIONS(1894), + [anon_sym_BSLASHvref] = ACTIONS(1894), + [anon_sym_BSLASHVref] = ACTIONS(1894), + [anon_sym_BSLASHautoref] = ACTIONS(1894), + [anon_sym_BSLASHpageref] = ACTIONS(1894), + [anon_sym_BSLASHcref] = ACTIONS(1894), + [anon_sym_BSLASHCref] = ACTIONS(1894), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnameCref] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1894), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1894), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1894), + [anon_sym_BSLASHlabelcref] = ACTIONS(1894), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange] = ACTIONS(1894), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHCrefrange] = ACTIONS(1894), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1892), + [anon_sym_BSLASHnewlabel] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand] = ACTIONS(1894), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1894), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1894), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1892), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1894), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdef] = ACTIONS(1894), + [anon_sym_BSLASHlet] = ACTIONS(1894), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1894), + [anon_sym_BSLASHgls] = ACTIONS(1894), + [anon_sym_BSLASHGls] = ACTIONS(1894), + [anon_sym_BSLASHGLS] = ACTIONS(1894), + [anon_sym_BSLASHglspl] = ACTIONS(1894), + [anon_sym_BSLASHGlspl] = ACTIONS(1894), + [anon_sym_BSLASHGLSpl] = ACTIONS(1894), + [anon_sym_BSLASHglsdisp] = ACTIONS(1894), + [anon_sym_BSLASHglslink] = ACTIONS(1894), + [anon_sym_BSLASHglstext] = ACTIONS(1894), + [anon_sym_BSLASHGlstext] = ACTIONS(1894), + [anon_sym_BSLASHGLStext] = ACTIONS(1894), + [anon_sym_BSLASHglsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1894), + [anon_sym_BSLASHglsplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSplural] = ACTIONS(1894), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1894), + [anon_sym_BSLASHglsname] = ACTIONS(1894), + [anon_sym_BSLASHGlsname] = ACTIONS(1894), + [anon_sym_BSLASHGLSname] = ACTIONS(1894), + [anon_sym_BSLASHglssymbol] = ACTIONS(1894), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1894), + [anon_sym_BSLASHglsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1894), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1894), + [anon_sym_BSLASHglsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1894), + [anon_sym_BSLASHglsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1894), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1894), + [anon_sym_BSLASHglsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1894), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1894), + [anon_sym_BSLASHglsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1894), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1894), + [anon_sym_BSLASHnewacronym] = ACTIONS(1894), + [anon_sym_BSLASHacrshort] = ACTIONS(1894), + [anon_sym_BSLASHAcrshort] = ACTIONS(1894), + [anon_sym_BSLASHACRshort] = ACTIONS(1894), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1894), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1894), + [anon_sym_BSLASHacrlong] = ACTIONS(1894), + [anon_sym_BSLASHAcrlong] = ACTIONS(1894), + [anon_sym_BSLASHACRlong] = ACTIONS(1894), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1894), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1894), + [anon_sym_BSLASHacrfull] = ACTIONS(1894), + [anon_sym_BSLASHAcrfull] = ACTIONS(1894), + [anon_sym_BSLASHACRfull] = ACTIONS(1894), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1894), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1894), + [anon_sym_BSLASHacs] = ACTIONS(1894), + [anon_sym_BSLASHAcs] = ACTIONS(1894), + [anon_sym_BSLASHacsp] = ACTIONS(1894), + [anon_sym_BSLASHAcsp] = ACTIONS(1894), + [anon_sym_BSLASHacl] = ACTIONS(1894), + [anon_sym_BSLASHAcl] = ACTIONS(1894), + [anon_sym_BSLASHaclp] = ACTIONS(1894), + [anon_sym_BSLASHAclp] = ACTIONS(1894), + [anon_sym_BSLASHacf] = ACTIONS(1894), + [anon_sym_BSLASHAcf] = ACTIONS(1894), + [anon_sym_BSLASHacfp] = ACTIONS(1894), + [anon_sym_BSLASHAcfp] = ACTIONS(1894), + [anon_sym_BSLASHac] = ACTIONS(1894), + [anon_sym_BSLASHAc] = ACTIONS(1894), + [anon_sym_BSLASHacp] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1894), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1894), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1894), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1894), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1894), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1894), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1894), + [anon_sym_BSLASHcolor] = ACTIONS(1894), + [anon_sym_BSLASHcolorbox] = ACTIONS(1894), + [anon_sym_BSLASHtextcolor] = ACTIONS(1894), + [anon_sym_BSLASHpagecolor] = ACTIONS(1894), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1894), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1894), + [anon_sym_BSLASHtext] = ACTIONS(1894), + [anon_sym_BSLASHintertext] = ACTIONS(1894), + [anon_sym_shortintertext] = ACTIONS(1894), }, [584] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [585] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [586] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [587] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(1893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(1918), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [588] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1893), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASHpart] = ACTIONS(1893), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddpart] = ACTIONS(1893), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), - [anon_sym_BSLASHchapter] = ACTIONS(1893), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddchap] = ACTIONS(1893), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsection] = ACTIONS(1893), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHaddsec] = ACTIONS(1893), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), - [anon_sym_BSLASHparagraph] = ACTIONS(1893), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1891), - [sym_word] = ACTIONS(1893), - [sym_placeholder] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), - [anon_sym_BSLASHbegin] = ACTIONS(1893), - [anon_sym_BSLASHusepackage] = ACTIONS(1893), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), - [anon_sym_BSLASHinclude] = ACTIONS(1893), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), - [anon_sym_BSLASHinput] = ACTIONS(1893), - [anon_sym_BSLASHsubfile] = ACTIONS(1893), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), - [anon_sym_BSLASHbibliography] = ACTIONS(1893), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), - [anon_sym_BSLASHincludesvg] = ACTIONS(1893), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), - [anon_sym_BSLASHimport] = ACTIONS(1893), - [anon_sym_BSLASHsubimport] = ACTIONS(1893), - [anon_sym_BSLASHinputfrom] = ACTIONS(1893), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), - [anon_sym_BSLASHincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), - [anon_sym_BSLASHcaption] = ACTIONS(1893), - [anon_sym_BSLASHcite] = ACTIONS(1893), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCite] = ACTIONS(1893), - [anon_sym_BSLASHnocite] = ACTIONS(1893), - [anon_sym_BSLASHcitet] = ACTIONS(1893), - [anon_sym_BSLASHcitep] = ACTIONS(1893), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor] = ACTIONS(1893), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle] = ACTIONS(1893), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteyear] = ACTIONS(1893), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), - [anon_sym_BSLASHcitedate] = ACTIONS(1893), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), - [anon_sym_BSLASHciteurl] = ACTIONS(1893), - [anon_sym_BSLASHfullcite] = ACTIONS(1893), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), - [anon_sym_BSLASHcitealt] = ACTIONS(1893), - [anon_sym_BSLASHcitealp] = ACTIONS(1893), - [anon_sym_BSLASHcitetext] = ACTIONS(1893), - [anon_sym_BSLASHparencite] = ACTIONS(1893), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHParencite] = ACTIONS(1893), - [anon_sym_BSLASHfootcite] = ACTIONS(1893), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), - [anon_sym_BSLASHtextcite] = ACTIONS(1893), - [anon_sym_BSLASHTextcite] = ACTIONS(1893), - [anon_sym_BSLASHsmartcite] = ACTIONS(1893), - [anon_sym_BSLASHSmartcite] = ACTIONS(1893), - [anon_sym_BSLASHsupercite] = ACTIONS(1893), - [anon_sym_BSLASHautocite] = ACTIONS(1893), - [anon_sym_BSLASHAutocite] = ACTIONS(1893), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), - [anon_sym_BSLASHvolcite] = ACTIONS(1893), - [anon_sym_BSLASHVolcite] = ACTIONS(1893), - [anon_sym_BSLASHpvolcite] = ACTIONS(1893), - [anon_sym_BSLASHPvolcite] = ACTIONS(1893), - [anon_sym_BSLASHfvolcite] = ACTIONS(1893), - [anon_sym_BSLASHftvolcite] = ACTIONS(1893), - [anon_sym_BSLASHsvolcite] = ACTIONS(1893), - [anon_sym_BSLASHSvolcite] = ACTIONS(1893), - [anon_sym_BSLASHtvolcite] = ACTIONS(1893), - [anon_sym_BSLASHTvolcite] = ACTIONS(1893), - [anon_sym_BSLASHavolcite] = ACTIONS(1893), - [anon_sym_BSLASHAvolcite] = ACTIONS(1893), - [anon_sym_BSLASHnotecite] = ACTIONS(1893), - [anon_sym_BSLASHNotecite] = ACTIONS(1893), - [anon_sym_BSLASHpnotecite] = ACTIONS(1893), - [anon_sym_BSLASHPnotecite] = ACTIONS(1893), - [anon_sym_BSLASHfnotecite] = ACTIONS(1893), - [anon_sym_BSLASHlabel] = ACTIONS(1893), - [anon_sym_BSLASHref] = ACTIONS(1893), - [anon_sym_BSLASHeqref] = ACTIONS(1893), - [anon_sym_BSLASHvref] = ACTIONS(1893), - [anon_sym_BSLASHVref] = ACTIONS(1893), - [anon_sym_BSLASHautoref] = ACTIONS(1893), - [anon_sym_BSLASHpageref] = ACTIONS(1893), - [anon_sym_BSLASHcref] = ACTIONS(1893), - [anon_sym_BSLASHCref] = ACTIONS(1893), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnameCref] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), - [anon_sym_BSLASHlabelcref] = ACTIONS(1893), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange] = ACTIONS(1893), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange] = ACTIONS(1893), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), - [anon_sym_BSLASHnewlabel] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand] = ACTIONS(1893), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), - [anon_sym_BSLASHdef] = ACTIONS(1893), - [anon_sym_BSLASHlet] = ACTIONS(1893), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), - [anon_sym_BSLASHgls] = ACTIONS(1893), - [anon_sym_BSLASHGls] = ACTIONS(1893), - [anon_sym_BSLASHGLS] = ACTIONS(1893), - [anon_sym_BSLASHglspl] = ACTIONS(1893), - [anon_sym_BSLASHGlspl] = ACTIONS(1893), - [anon_sym_BSLASHGLSpl] = ACTIONS(1893), - [anon_sym_BSLASHglsdisp] = ACTIONS(1893), - [anon_sym_BSLASHglslink] = ACTIONS(1893), - [anon_sym_BSLASHglstext] = ACTIONS(1893), - [anon_sym_BSLASHGlstext] = ACTIONS(1893), - [anon_sym_BSLASHGLStext] = ACTIONS(1893), - [anon_sym_BSLASHglsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), - [anon_sym_BSLASHglsplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSplural] = ACTIONS(1893), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), - [anon_sym_BSLASHglsname] = ACTIONS(1893), - [anon_sym_BSLASHGlsname] = ACTIONS(1893), - [anon_sym_BSLASHGLSname] = ACTIONS(1893), - [anon_sym_BSLASHglssymbol] = ACTIONS(1893), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), - [anon_sym_BSLASHglsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), - [anon_sym_BSLASHglsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), - [anon_sym_BSLASHglsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), - [anon_sym_BSLASHglsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), - [anon_sym_BSLASHglsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), - [anon_sym_BSLASHnewacronym] = ACTIONS(1893), - [anon_sym_BSLASHacrshort] = ACTIONS(1893), - [anon_sym_BSLASHAcrshort] = ACTIONS(1893), - [anon_sym_BSLASHACRshort] = ACTIONS(1893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), - [anon_sym_BSLASHacrlong] = ACTIONS(1893), - [anon_sym_BSLASHAcrlong] = ACTIONS(1893), - [anon_sym_BSLASHACRlong] = ACTIONS(1893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), - [anon_sym_BSLASHacrfull] = ACTIONS(1893), - [anon_sym_BSLASHAcrfull] = ACTIONS(1893), - [anon_sym_BSLASHACRfull] = ACTIONS(1893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), - [anon_sym_BSLASHacs] = ACTIONS(1893), - [anon_sym_BSLASHAcs] = ACTIONS(1893), - [anon_sym_BSLASHacsp] = ACTIONS(1893), - [anon_sym_BSLASHAcsp] = ACTIONS(1893), - [anon_sym_BSLASHacl] = ACTIONS(1893), - [anon_sym_BSLASHAcl] = ACTIONS(1893), - [anon_sym_BSLASHaclp] = ACTIONS(1893), - [anon_sym_BSLASHAclp] = ACTIONS(1893), - [anon_sym_BSLASHacf] = ACTIONS(1893), - [anon_sym_BSLASHAcf] = ACTIONS(1893), - [anon_sym_BSLASHacfp] = ACTIONS(1893), - [anon_sym_BSLASHAcfp] = ACTIONS(1893), - [anon_sym_BSLASHac] = ACTIONS(1893), - [anon_sym_BSLASHAc] = ACTIONS(1893), - [anon_sym_BSLASHacp] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), - [anon_sym_BSLASHcolor] = ACTIONS(1893), - [anon_sym_BSLASHcolorbox] = ACTIONS(1893), - [anon_sym_BSLASHtextcolor] = ACTIONS(1893), - [anon_sym_BSLASHpagecolor] = ACTIONS(1893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), - [anon_sym_BSLASHtext] = ACTIONS(1893), - [anon_sym_BSLASHintertext] = ACTIONS(1893), - [anon_sym_shortintertext] = ACTIONS(1893), + [sym_command_name] = ACTIONS(1918), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_BSLASHpart] = ACTIONS(1918), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddpart] = ACTIONS(1918), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1916), + [anon_sym_BSLASHchapter] = ACTIONS(1918), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddchap] = ACTIONS(1918), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsection] = ACTIONS(1918), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHaddsec] = ACTIONS(1918), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1916), + [anon_sym_BSLASHparagraph] = ACTIONS(1918), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1918), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1916), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1916), + [sym_word] = ACTIONS(1918), + [sym_placeholder] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1916), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1916), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1916), + [anon_sym_BSLASHbegin] = ACTIONS(1918), + [anon_sym_BSLASHusepackage] = ACTIONS(1918), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1918), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1918), + [anon_sym_BSLASHinclude] = ACTIONS(1918), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1918), + [anon_sym_BSLASHinput] = ACTIONS(1918), + [anon_sym_BSLASHsubfile] = ACTIONS(1918), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1918), + [anon_sym_BSLASHbibliography] = ACTIONS(1918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1918), + [anon_sym_BSLASHincludesvg] = ACTIONS(1918), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1918), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1918), + [anon_sym_BSLASHimport] = ACTIONS(1918), + [anon_sym_BSLASHsubimport] = ACTIONS(1918), + [anon_sym_BSLASHinputfrom] = ACTIONS(1918), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1918), + [anon_sym_BSLASHincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1918), + [anon_sym_BSLASHcaption] = ACTIONS(1918), + [anon_sym_BSLASHcite] = ACTIONS(1918), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCite] = ACTIONS(1918), + [anon_sym_BSLASHnocite] = ACTIONS(1918), + [anon_sym_BSLASHcitet] = ACTIONS(1918), + [anon_sym_BSLASHcitep] = ACTIONS(1918), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteauthor] = ACTIONS(1918), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1918), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitetitle] = ACTIONS(1918), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteyear] = ACTIONS(1918), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1916), + [anon_sym_BSLASHcitedate] = ACTIONS(1918), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1916), + [anon_sym_BSLASHciteurl] = ACTIONS(1918), + [anon_sym_BSLASHfullcite] = ACTIONS(1918), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1918), + [anon_sym_BSLASHcitealt] = ACTIONS(1918), + [anon_sym_BSLASHcitealp] = ACTIONS(1918), + [anon_sym_BSLASHcitetext] = ACTIONS(1918), + [anon_sym_BSLASHparencite] = ACTIONS(1918), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHParencite] = ACTIONS(1918), + [anon_sym_BSLASHfootcite] = ACTIONS(1918), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1918), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1918), + [anon_sym_BSLASHtextcite] = ACTIONS(1918), + [anon_sym_BSLASHTextcite] = ACTIONS(1918), + [anon_sym_BSLASHsmartcite] = ACTIONS(1918), + [anon_sym_BSLASHSmartcite] = ACTIONS(1918), + [anon_sym_BSLASHsupercite] = ACTIONS(1918), + [anon_sym_BSLASHautocite] = ACTIONS(1918), + [anon_sym_BSLASHAutocite] = ACTIONS(1918), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1916), + [anon_sym_BSLASHvolcite] = ACTIONS(1918), + [anon_sym_BSLASHVolcite] = ACTIONS(1918), + [anon_sym_BSLASHpvolcite] = ACTIONS(1918), + [anon_sym_BSLASHPvolcite] = ACTIONS(1918), + [anon_sym_BSLASHfvolcite] = ACTIONS(1918), + [anon_sym_BSLASHftvolcite] = ACTIONS(1918), + [anon_sym_BSLASHsvolcite] = ACTIONS(1918), + [anon_sym_BSLASHSvolcite] = ACTIONS(1918), + [anon_sym_BSLASHtvolcite] = ACTIONS(1918), + [anon_sym_BSLASHTvolcite] = ACTIONS(1918), + [anon_sym_BSLASHavolcite] = ACTIONS(1918), + [anon_sym_BSLASHAvolcite] = ACTIONS(1918), + [anon_sym_BSLASHnotecite] = ACTIONS(1918), + [anon_sym_BSLASHNotecite] = ACTIONS(1918), + [anon_sym_BSLASHpnotecite] = ACTIONS(1918), + [anon_sym_BSLASHPnotecite] = ACTIONS(1918), + [anon_sym_BSLASHfnotecite] = ACTIONS(1918), + [anon_sym_BSLASHlabel] = ACTIONS(1918), + [anon_sym_BSLASHref] = ACTIONS(1918), + [anon_sym_BSLASHeqref] = ACTIONS(1918), + [anon_sym_BSLASHvref] = ACTIONS(1918), + [anon_sym_BSLASHVref] = ACTIONS(1918), + [anon_sym_BSLASHautoref] = ACTIONS(1918), + [anon_sym_BSLASHpageref] = ACTIONS(1918), + [anon_sym_BSLASHcref] = ACTIONS(1918), + [anon_sym_BSLASHCref] = ACTIONS(1918), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnameCref] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1918), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1918), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1918), + [anon_sym_BSLASHlabelcref] = ACTIONS(1918), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange] = ACTIONS(1918), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHCrefrange] = ACTIONS(1918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1916), + [anon_sym_BSLASHnewlabel] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand] = ACTIONS(1918), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1918), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1918), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1916), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1918), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdef] = ACTIONS(1918), + [anon_sym_BSLASHlet] = ACTIONS(1918), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1918), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1918), + [anon_sym_BSLASHgls] = ACTIONS(1918), + [anon_sym_BSLASHGls] = ACTIONS(1918), + [anon_sym_BSLASHGLS] = ACTIONS(1918), + [anon_sym_BSLASHglspl] = ACTIONS(1918), + [anon_sym_BSLASHGlspl] = ACTIONS(1918), + [anon_sym_BSLASHGLSpl] = ACTIONS(1918), + [anon_sym_BSLASHglsdisp] = ACTIONS(1918), + [anon_sym_BSLASHglslink] = ACTIONS(1918), + [anon_sym_BSLASHglstext] = ACTIONS(1918), + [anon_sym_BSLASHGlstext] = ACTIONS(1918), + [anon_sym_BSLASHGLStext] = ACTIONS(1918), + [anon_sym_BSLASHglsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1918), + [anon_sym_BSLASHglsplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSplural] = ACTIONS(1918), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1918), + [anon_sym_BSLASHglsname] = ACTIONS(1918), + [anon_sym_BSLASHGlsname] = ACTIONS(1918), + [anon_sym_BSLASHGLSname] = ACTIONS(1918), + [anon_sym_BSLASHglssymbol] = ACTIONS(1918), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1918), + [anon_sym_BSLASHglsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1918), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1918), + [anon_sym_BSLASHglsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1918), + [anon_sym_BSLASHglsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1918), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1918), + [anon_sym_BSLASHglsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1918), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1918), + [anon_sym_BSLASHglsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1918), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1918), + [anon_sym_BSLASHnewacronym] = ACTIONS(1918), + [anon_sym_BSLASHacrshort] = ACTIONS(1918), + [anon_sym_BSLASHAcrshort] = ACTIONS(1918), + [anon_sym_BSLASHACRshort] = ACTIONS(1918), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1918), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1918), + [anon_sym_BSLASHacrlong] = ACTIONS(1918), + [anon_sym_BSLASHAcrlong] = ACTIONS(1918), + [anon_sym_BSLASHACRlong] = ACTIONS(1918), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1918), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1918), + [anon_sym_BSLASHacrfull] = ACTIONS(1918), + [anon_sym_BSLASHAcrfull] = ACTIONS(1918), + [anon_sym_BSLASHACRfull] = ACTIONS(1918), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1918), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1918), + [anon_sym_BSLASHacs] = ACTIONS(1918), + [anon_sym_BSLASHAcs] = ACTIONS(1918), + [anon_sym_BSLASHacsp] = ACTIONS(1918), + [anon_sym_BSLASHAcsp] = ACTIONS(1918), + [anon_sym_BSLASHacl] = ACTIONS(1918), + [anon_sym_BSLASHAcl] = ACTIONS(1918), + [anon_sym_BSLASHaclp] = ACTIONS(1918), + [anon_sym_BSLASHAclp] = ACTIONS(1918), + [anon_sym_BSLASHacf] = ACTIONS(1918), + [anon_sym_BSLASHAcf] = ACTIONS(1918), + [anon_sym_BSLASHacfp] = ACTIONS(1918), + [anon_sym_BSLASHAcfp] = ACTIONS(1918), + [anon_sym_BSLASHac] = ACTIONS(1918), + [anon_sym_BSLASHAc] = ACTIONS(1918), + [anon_sym_BSLASHacp] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1918), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1918), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1918), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1918), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1918), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1916), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1918), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1918), + [anon_sym_BSLASHcolor] = ACTIONS(1918), + [anon_sym_BSLASHcolorbox] = ACTIONS(1918), + [anon_sym_BSLASHtextcolor] = ACTIONS(1918), + [anon_sym_BSLASHpagecolor] = ACTIONS(1918), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1918), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1918), + [anon_sym_BSLASHtext] = ACTIONS(1918), + [anon_sym_BSLASHintertext] = ACTIONS(1918), + [anon_sym_shortintertext] = ACTIONS(1918), }, [589] = { - [ts_builtin_sym_end] = ACTIONS(4751), - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(4755), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_BSLASHpart] = ACTIONS(4753), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddpart] = ACTIONS(4753), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHchapter] = ACTIONS(4753), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddchap] = ACTIONS(4753), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsection] = ACTIONS(4753), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddsec] = ACTIONS(4753), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHparagraph] = ACTIONS(4753), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHitem] = ACTIONS(4753), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [anon_sym_RBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASHbegin] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(4757), + [ts_builtin_sym_end] = ACTIONS(4830), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_BSLASHpart] = ACTIONS(4832), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddpart] = ACTIONS(4832), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHchapter] = ACTIONS(4832), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddchap] = ACTIONS(4832), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsection] = ACTIONS(4832), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddsec] = ACTIONS(4832), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHparagraph] = ACTIONS(4832), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4832), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHitem] = ACTIONS(4832), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASHbegin] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(4836), }, [590] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [591] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [592] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(1911), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(1936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [593] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1911), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1911), - [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(1911), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddpart] = ACTIONS(1911), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), - [anon_sym_BSLASHchapter] = ACTIONS(1911), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddchap] = ACTIONS(1911), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsection] = ACTIONS(1911), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHaddsec] = ACTIONS(1911), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), - [anon_sym_BSLASHparagraph] = ACTIONS(1911), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1909), - [sym_word] = ACTIONS(1911), - [sym_placeholder] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), - [anon_sym_BSLASHbegin] = ACTIONS(1911), - [anon_sym_BSLASHusepackage] = ACTIONS(1911), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), - [anon_sym_BSLASHinclude] = ACTIONS(1911), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), - [anon_sym_BSLASHinput] = ACTIONS(1911), - [anon_sym_BSLASHsubfile] = ACTIONS(1911), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), - [anon_sym_BSLASHbibliography] = ACTIONS(1911), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), - [anon_sym_BSLASHincludesvg] = ACTIONS(1911), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), - [anon_sym_BSLASHimport] = ACTIONS(1911), - [anon_sym_BSLASHsubimport] = ACTIONS(1911), - [anon_sym_BSLASHinputfrom] = ACTIONS(1911), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), - [anon_sym_BSLASHincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), - [anon_sym_BSLASHcaption] = ACTIONS(1911), - [anon_sym_BSLASHcite] = ACTIONS(1911), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCite] = ACTIONS(1911), - [anon_sym_BSLASHnocite] = ACTIONS(1911), - [anon_sym_BSLASHcitet] = ACTIONS(1911), - [anon_sym_BSLASHcitep] = ACTIONS(1911), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteauthor] = ACTIONS(1911), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitetitle] = ACTIONS(1911), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteyear] = ACTIONS(1911), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), - [anon_sym_BSLASHcitedate] = ACTIONS(1911), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), - [anon_sym_BSLASHciteurl] = ACTIONS(1911), - [anon_sym_BSLASHfullcite] = ACTIONS(1911), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), - [anon_sym_BSLASHcitealt] = ACTIONS(1911), - [anon_sym_BSLASHcitealp] = ACTIONS(1911), - [anon_sym_BSLASHcitetext] = ACTIONS(1911), - [anon_sym_BSLASHparencite] = ACTIONS(1911), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHParencite] = ACTIONS(1911), - [anon_sym_BSLASHfootcite] = ACTIONS(1911), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), - [anon_sym_BSLASHtextcite] = ACTIONS(1911), - [anon_sym_BSLASHTextcite] = ACTIONS(1911), - [anon_sym_BSLASHsmartcite] = ACTIONS(1911), - [anon_sym_BSLASHSmartcite] = ACTIONS(1911), - [anon_sym_BSLASHsupercite] = ACTIONS(1911), - [anon_sym_BSLASHautocite] = ACTIONS(1911), - [anon_sym_BSLASHAutocite] = ACTIONS(1911), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), - [anon_sym_BSLASHvolcite] = ACTIONS(1911), - [anon_sym_BSLASHVolcite] = ACTIONS(1911), - [anon_sym_BSLASHpvolcite] = ACTIONS(1911), - [anon_sym_BSLASHPvolcite] = ACTIONS(1911), - [anon_sym_BSLASHfvolcite] = ACTIONS(1911), - [anon_sym_BSLASHftvolcite] = ACTIONS(1911), - [anon_sym_BSLASHsvolcite] = ACTIONS(1911), - [anon_sym_BSLASHSvolcite] = ACTIONS(1911), - [anon_sym_BSLASHtvolcite] = ACTIONS(1911), - [anon_sym_BSLASHTvolcite] = ACTIONS(1911), - [anon_sym_BSLASHavolcite] = ACTIONS(1911), - [anon_sym_BSLASHAvolcite] = ACTIONS(1911), - [anon_sym_BSLASHnotecite] = ACTIONS(1911), - [anon_sym_BSLASHNotecite] = ACTIONS(1911), - [anon_sym_BSLASHpnotecite] = ACTIONS(1911), - [anon_sym_BSLASHPnotecite] = ACTIONS(1911), - [anon_sym_BSLASHfnotecite] = ACTIONS(1911), - [anon_sym_BSLASHlabel] = ACTIONS(1911), - [anon_sym_BSLASHref] = ACTIONS(1911), - [anon_sym_BSLASHeqref] = ACTIONS(1911), - [anon_sym_BSLASHvref] = ACTIONS(1911), - [anon_sym_BSLASHVref] = ACTIONS(1911), - [anon_sym_BSLASHautoref] = ACTIONS(1911), - [anon_sym_BSLASHpageref] = ACTIONS(1911), - [anon_sym_BSLASHcref] = ACTIONS(1911), - [anon_sym_BSLASHCref] = ACTIONS(1911), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnameCref] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), - [anon_sym_BSLASHlabelcref] = ACTIONS(1911), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange] = ACTIONS(1911), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHCrefrange] = ACTIONS(1911), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), - [anon_sym_BSLASHnewlabel] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand] = ACTIONS(1911), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), - [anon_sym_BSLASHdef] = ACTIONS(1911), - [anon_sym_BSLASHlet] = ACTIONS(1911), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), - [anon_sym_BSLASHgls] = ACTIONS(1911), - [anon_sym_BSLASHGls] = ACTIONS(1911), - [anon_sym_BSLASHGLS] = ACTIONS(1911), - [anon_sym_BSLASHglspl] = ACTIONS(1911), - [anon_sym_BSLASHGlspl] = ACTIONS(1911), - [anon_sym_BSLASHGLSpl] = ACTIONS(1911), - [anon_sym_BSLASHglsdisp] = ACTIONS(1911), - [anon_sym_BSLASHglslink] = ACTIONS(1911), - [anon_sym_BSLASHglstext] = ACTIONS(1911), - [anon_sym_BSLASHGlstext] = ACTIONS(1911), - [anon_sym_BSLASHGLStext] = ACTIONS(1911), - [anon_sym_BSLASHglsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), - [anon_sym_BSLASHglsplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSplural] = ACTIONS(1911), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), - [anon_sym_BSLASHglsname] = ACTIONS(1911), - [anon_sym_BSLASHGlsname] = ACTIONS(1911), - [anon_sym_BSLASHGLSname] = ACTIONS(1911), - [anon_sym_BSLASHglssymbol] = ACTIONS(1911), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), - [anon_sym_BSLASHglsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), - [anon_sym_BSLASHglsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), - [anon_sym_BSLASHglsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), - [anon_sym_BSLASHglsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), - [anon_sym_BSLASHglsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), - [anon_sym_BSLASHnewacronym] = ACTIONS(1911), - [anon_sym_BSLASHacrshort] = ACTIONS(1911), - [anon_sym_BSLASHAcrshort] = ACTIONS(1911), - [anon_sym_BSLASHACRshort] = ACTIONS(1911), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), - [anon_sym_BSLASHacrlong] = ACTIONS(1911), - [anon_sym_BSLASHAcrlong] = ACTIONS(1911), - [anon_sym_BSLASHACRlong] = ACTIONS(1911), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), - [anon_sym_BSLASHacrfull] = ACTIONS(1911), - [anon_sym_BSLASHAcrfull] = ACTIONS(1911), - [anon_sym_BSLASHACRfull] = ACTIONS(1911), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), - [anon_sym_BSLASHacs] = ACTIONS(1911), - [anon_sym_BSLASHAcs] = ACTIONS(1911), - [anon_sym_BSLASHacsp] = ACTIONS(1911), - [anon_sym_BSLASHAcsp] = ACTIONS(1911), - [anon_sym_BSLASHacl] = ACTIONS(1911), - [anon_sym_BSLASHAcl] = ACTIONS(1911), - [anon_sym_BSLASHaclp] = ACTIONS(1911), - [anon_sym_BSLASHAclp] = ACTIONS(1911), - [anon_sym_BSLASHacf] = ACTIONS(1911), - [anon_sym_BSLASHAcf] = ACTIONS(1911), - [anon_sym_BSLASHacfp] = ACTIONS(1911), - [anon_sym_BSLASHAcfp] = ACTIONS(1911), - [anon_sym_BSLASHac] = ACTIONS(1911), - [anon_sym_BSLASHAc] = ACTIONS(1911), - [anon_sym_BSLASHacp] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), - [anon_sym_BSLASHcolor] = ACTIONS(1911), - [anon_sym_BSLASHcolorbox] = ACTIONS(1911), - [anon_sym_BSLASHtextcolor] = ACTIONS(1911), - [anon_sym_BSLASHpagecolor] = ACTIONS(1911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), - [anon_sym_BSLASHtext] = ACTIONS(1911), - [anon_sym_BSLASHintertext] = ACTIONS(1911), - [anon_sym_shortintertext] = ACTIONS(1911), + [sym_command_name] = ACTIONS(1936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_BSLASHpart] = ACTIONS(1936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddpart] = ACTIONS(1936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1934), + [anon_sym_BSLASHchapter] = ACTIONS(1936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddchap] = ACTIONS(1936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsection] = ACTIONS(1936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHaddsec] = ACTIONS(1936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1934), + [anon_sym_BSLASHparagraph] = ACTIONS(1936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1934), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [sym_placeholder] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym__] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1934), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1934), + [anon_sym_BSLASHbegin] = ACTIONS(1936), + [anon_sym_BSLASHusepackage] = ACTIONS(1936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1936), + [anon_sym_BSLASHinclude] = ACTIONS(1936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1936), + [anon_sym_BSLASHinput] = ACTIONS(1936), + [anon_sym_BSLASHsubfile] = ACTIONS(1936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1936), + [anon_sym_BSLASHbibliography] = ACTIONS(1936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1936), + [anon_sym_BSLASHincludesvg] = ACTIONS(1936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1936), + [anon_sym_BSLASHimport] = ACTIONS(1936), + [anon_sym_BSLASHsubimport] = ACTIONS(1936), + [anon_sym_BSLASHinputfrom] = ACTIONS(1936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1936), + [anon_sym_BSLASHincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1936), + [anon_sym_BSLASHcaption] = ACTIONS(1936), + [anon_sym_BSLASHcite] = ACTIONS(1936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCite] = ACTIONS(1936), + [anon_sym_BSLASHnocite] = ACTIONS(1936), + [anon_sym_BSLASHcitet] = ACTIONS(1936), + [anon_sym_BSLASHcitep] = ACTIONS(1936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteauthor] = ACTIONS(1936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitetitle] = ACTIONS(1936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteyear] = ACTIONS(1936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1934), + [anon_sym_BSLASHcitedate] = ACTIONS(1936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1934), + [anon_sym_BSLASHciteurl] = ACTIONS(1936), + [anon_sym_BSLASHfullcite] = ACTIONS(1936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1936), + [anon_sym_BSLASHcitealt] = ACTIONS(1936), + [anon_sym_BSLASHcitealp] = ACTIONS(1936), + [anon_sym_BSLASHcitetext] = ACTIONS(1936), + [anon_sym_BSLASHparencite] = ACTIONS(1936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHParencite] = ACTIONS(1936), + [anon_sym_BSLASHfootcite] = ACTIONS(1936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1936), + [anon_sym_BSLASHtextcite] = ACTIONS(1936), + [anon_sym_BSLASHTextcite] = ACTIONS(1936), + [anon_sym_BSLASHsmartcite] = ACTIONS(1936), + [anon_sym_BSLASHSmartcite] = ACTIONS(1936), + [anon_sym_BSLASHsupercite] = ACTIONS(1936), + [anon_sym_BSLASHautocite] = ACTIONS(1936), + [anon_sym_BSLASHAutocite] = ACTIONS(1936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1934), + [anon_sym_BSLASHvolcite] = ACTIONS(1936), + [anon_sym_BSLASHVolcite] = ACTIONS(1936), + [anon_sym_BSLASHpvolcite] = ACTIONS(1936), + [anon_sym_BSLASHPvolcite] = ACTIONS(1936), + [anon_sym_BSLASHfvolcite] = ACTIONS(1936), + [anon_sym_BSLASHftvolcite] = ACTIONS(1936), + [anon_sym_BSLASHsvolcite] = ACTIONS(1936), + [anon_sym_BSLASHSvolcite] = ACTIONS(1936), + [anon_sym_BSLASHtvolcite] = ACTIONS(1936), + [anon_sym_BSLASHTvolcite] = ACTIONS(1936), + [anon_sym_BSLASHavolcite] = ACTIONS(1936), + [anon_sym_BSLASHAvolcite] = ACTIONS(1936), + [anon_sym_BSLASHnotecite] = ACTIONS(1936), + [anon_sym_BSLASHNotecite] = ACTIONS(1936), + [anon_sym_BSLASHpnotecite] = ACTIONS(1936), + [anon_sym_BSLASHPnotecite] = ACTIONS(1936), + [anon_sym_BSLASHfnotecite] = ACTIONS(1936), + [anon_sym_BSLASHlabel] = ACTIONS(1936), + [anon_sym_BSLASHref] = ACTIONS(1936), + [anon_sym_BSLASHeqref] = ACTIONS(1936), + [anon_sym_BSLASHvref] = ACTIONS(1936), + [anon_sym_BSLASHVref] = ACTIONS(1936), + [anon_sym_BSLASHautoref] = ACTIONS(1936), + [anon_sym_BSLASHpageref] = ACTIONS(1936), + [anon_sym_BSLASHcref] = ACTIONS(1936), + [anon_sym_BSLASHCref] = ACTIONS(1936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnameCref] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1936), + [anon_sym_BSLASHlabelcref] = ACTIONS(1936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange] = ACTIONS(1936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHCrefrange] = ACTIONS(1936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1934), + [anon_sym_BSLASHnewlabel] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand] = ACTIONS(1936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdef] = ACTIONS(1936), + [anon_sym_BSLASHlet] = ACTIONS(1936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1936), + [anon_sym_BSLASHgls] = ACTIONS(1936), + [anon_sym_BSLASHGls] = ACTIONS(1936), + [anon_sym_BSLASHGLS] = ACTIONS(1936), + [anon_sym_BSLASHglspl] = ACTIONS(1936), + [anon_sym_BSLASHGlspl] = ACTIONS(1936), + [anon_sym_BSLASHGLSpl] = ACTIONS(1936), + [anon_sym_BSLASHglsdisp] = ACTIONS(1936), + [anon_sym_BSLASHglslink] = ACTIONS(1936), + [anon_sym_BSLASHglstext] = ACTIONS(1936), + [anon_sym_BSLASHGlstext] = ACTIONS(1936), + [anon_sym_BSLASHGLStext] = ACTIONS(1936), + [anon_sym_BSLASHglsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1936), + [anon_sym_BSLASHglsplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSplural] = ACTIONS(1936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1936), + [anon_sym_BSLASHglsname] = ACTIONS(1936), + [anon_sym_BSLASHGlsname] = ACTIONS(1936), + [anon_sym_BSLASHGLSname] = ACTIONS(1936), + [anon_sym_BSLASHglssymbol] = ACTIONS(1936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1936), + [anon_sym_BSLASHglsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1936), + [anon_sym_BSLASHglsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1936), + [anon_sym_BSLASHglsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1936), + [anon_sym_BSLASHglsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1936), + [anon_sym_BSLASHglsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1936), + [anon_sym_BSLASHnewacronym] = ACTIONS(1936), + [anon_sym_BSLASHacrshort] = ACTIONS(1936), + [anon_sym_BSLASHAcrshort] = ACTIONS(1936), + [anon_sym_BSLASHACRshort] = ACTIONS(1936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1936), + [anon_sym_BSLASHacrlong] = ACTIONS(1936), + [anon_sym_BSLASHAcrlong] = ACTIONS(1936), + [anon_sym_BSLASHACRlong] = ACTIONS(1936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1936), + [anon_sym_BSLASHacrfull] = ACTIONS(1936), + [anon_sym_BSLASHAcrfull] = ACTIONS(1936), + [anon_sym_BSLASHACRfull] = ACTIONS(1936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1936), + [anon_sym_BSLASHacs] = ACTIONS(1936), + [anon_sym_BSLASHAcs] = ACTIONS(1936), + [anon_sym_BSLASHacsp] = ACTIONS(1936), + [anon_sym_BSLASHAcsp] = ACTIONS(1936), + [anon_sym_BSLASHacl] = ACTIONS(1936), + [anon_sym_BSLASHAcl] = ACTIONS(1936), + [anon_sym_BSLASHaclp] = ACTIONS(1936), + [anon_sym_BSLASHAclp] = ACTIONS(1936), + [anon_sym_BSLASHacf] = ACTIONS(1936), + [anon_sym_BSLASHAcf] = ACTIONS(1936), + [anon_sym_BSLASHacfp] = ACTIONS(1936), + [anon_sym_BSLASHAcfp] = ACTIONS(1936), + [anon_sym_BSLASHac] = ACTIONS(1936), + [anon_sym_BSLASHAc] = ACTIONS(1936), + [anon_sym_BSLASHacp] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1936), + [anon_sym_BSLASHcolor] = ACTIONS(1936), + [anon_sym_BSLASHcolorbox] = ACTIONS(1936), + [anon_sym_BSLASHtextcolor] = ACTIONS(1936), + [anon_sym_BSLASHpagecolor] = ACTIONS(1936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1936), + [anon_sym_BSLASHtext] = ACTIONS(1936), + [anon_sym_BSLASHintertext] = ACTIONS(1936), + [anon_sym_shortintertext] = ACTIONS(1936), }, [594] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [595] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(1923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(1948), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [596] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_BSLASHpart] = ACTIONS(4491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddpart] = ACTIONS(4491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), - [anon_sym_BSLASHchapter] = ACTIONS(4491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddchap] = ACTIONS(4491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsection] = ACTIONS(4491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHaddsec] = ACTIONS(4491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), - [anon_sym_BSLASHparagraph] = ACTIONS(4491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4489), - [sym_word] = ACTIONS(4491), - [sym_placeholder] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_STAR] = ACTIONS(4491), - [anon_sym_SLASH] = ACTIONS(4491), - [anon_sym_CARET] = ACTIONS(4491), - [anon_sym__] = ACTIONS(4491), - [anon_sym_LT] = ACTIONS(4491), - [anon_sym_GT] = ACTIONS(4491), - [anon_sym_BANG] = ACTIONS(4491), - [anon_sym_PIPE] = ACTIONS(4491), - [anon_sym_COLON] = ACTIONS(4491), - [anon_sym_SQUOTE] = ACTIONS(4491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4489), - [anon_sym_BSLASHbegin] = ACTIONS(4491), - [anon_sym_BSLASHusepackage] = ACTIONS(4491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), - [anon_sym_BSLASHinclude] = ACTIONS(4491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), - [anon_sym_BSLASHinput] = ACTIONS(4491), - [anon_sym_BSLASHsubfile] = ACTIONS(4491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), - [anon_sym_BSLASHbibliography] = ACTIONS(4491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), - [anon_sym_BSLASHincludesvg] = ACTIONS(4491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), - [anon_sym_BSLASHimport] = ACTIONS(4491), - [anon_sym_BSLASHsubimport] = ACTIONS(4491), - [anon_sym_BSLASHinputfrom] = ACTIONS(4491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), - [anon_sym_BSLASHincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), - [anon_sym_BSLASHcaption] = ACTIONS(4491), - [anon_sym_BSLASHcite] = ACTIONS(4491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCite] = ACTIONS(4491), - [anon_sym_BSLASHnocite] = ACTIONS(4491), - [anon_sym_BSLASHcitet] = ACTIONS(4491), - [anon_sym_BSLASHcitep] = ACTIONS(4491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteyear] = ACTIONS(4491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), - [anon_sym_BSLASHcitedate] = ACTIONS(4491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), - [anon_sym_BSLASHciteurl] = ACTIONS(4491), - [anon_sym_BSLASHfullcite] = ACTIONS(4491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), - [anon_sym_BSLASHcitealt] = ACTIONS(4491), - [anon_sym_BSLASHcitealp] = ACTIONS(4491), - [anon_sym_BSLASHcitetext] = ACTIONS(4491), - [anon_sym_BSLASHparencite] = ACTIONS(4491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHParencite] = ACTIONS(4491), - [anon_sym_BSLASHfootcite] = ACTIONS(4491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), - [anon_sym_BSLASHtextcite] = ACTIONS(4491), - [anon_sym_BSLASHTextcite] = ACTIONS(4491), - [anon_sym_BSLASHsmartcite] = ACTIONS(4491), - [anon_sym_BSLASHSmartcite] = ACTIONS(4491), - [anon_sym_BSLASHsupercite] = ACTIONS(4491), - [anon_sym_BSLASHautocite] = ACTIONS(4491), - [anon_sym_BSLASHAutocite] = ACTIONS(4491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), - [anon_sym_BSLASHvolcite] = ACTIONS(4491), - [anon_sym_BSLASHVolcite] = ACTIONS(4491), - [anon_sym_BSLASHpvolcite] = ACTIONS(4491), - [anon_sym_BSLASHPvolcite] = ACTIONS(4491), - [anon_sym_BSLASHfvolcite] = ACTIONS(4491), - [anon_sym_BSLASHftvolcite] = ACTIONS(4491), - [anon_sym_BSLASHsvolcite] = ACTIONS(4491), - [anon_sym_BSLASHSvolcite] = ACTIONS(4491), - [anon_sym_BSLASHtvolcite] = ACTIONS(4491), - [anon_sym_BSLASHTvolcite] = ACTIONS(4491), - [anon_sym_BSLASHavolcite] = ACTIONS(4491), - [anon_sym_BSLASHAvolcite] = ACTIONS(4491), - [anon_sym_BSLASHnotecite] = ACTIONS(4491), - [anon_sym_BSLASHNotecite] = ACTIONS(4491), - [anon_sym_BSLASHpnotecite] = ACTIONS(4491), - [anon_sym_BSLASHPnotecite] = ACTIONS(4491), - [anon_sym_BSLASHfnotecite] = ACTIONS(4491), - [anon_sym_BSLASHlabel] = ACTIONS(4491), - [anon_sym_BSLASHref] = ACTIONS(4491), - [anon_sym_BSLASHeqref] = ACTIONS(4491), - [anon_sym_BSLASHvref] = ACTIONS(4491), - [anon_sym_BSLASHVref] = ACTIONS(4491), - [anon_sym_BSLASHautoref] = ACTIONS(4491), - [anon_sym_BSLASHpageref] = ACTIONS(4491), - [anon_sym_BSLASHcref] = ACTIONS(4491), - [anon_sym_BSLASHCref] = ACTIONS(4491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnameCref] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), - [anon_sym_BSLASHlabelcref] = ACTIONS(4491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange] = ACTIONS(4491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), - [anon_sym_BSLASHnewlabel] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand] = ACTIONS(4491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), - [anon_sym_BSLASHdef] = ACTIONS(4491), - [anon_sym_BSLASHlet] = ACTIONS(4491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), - [anon_sym_BSLASHgls] = ACTIONS(4491), - [anon_sym_BSLASHGls] = ACTIONS(4491), - [anon_sym_BSLASHGLS] = ACTIONS(4491), - [anon_sym_BSLASHglspl] = ACTIONS(4491), - [anon_sym_BSLASHGlspl] = ACTIONS(4491), - [anon_sym_BSLASHGLSpl] = ACTIONS(4491), - [anon_sym_BSLASHglsdisp] = ACTIONS(4491), - [anon_sym_BSLASHglslink] = ACTIONS(4491), - [anon_sym_BSLASHglstext] = ACTIONS(4491), - [anon_sym_BSLASHGlstext] = ACTIONS(4491), - [anon_sym_BSLASHGLStext] = ACTIONS(4491), - [anon_sym_BSLASHglsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), - [anon_sym_BSLASHglsplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSplural] = ACTIONS(4491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), - [anon_sym_BSLASHglsname] = ACTIONS(4491), - [anon_sym_BSLASHGlsname] = ACTIONS(4491), - [anon_sym_BSLASHGLSname] = ACTIONS(4491), - [anon_sym_BSLASHglssymbol] = ACTIONS(4491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), - [anon_sym_BSLASHglsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), - [anon_sym_BSLASHglsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), - [anon_sym_BSLASHglsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), - [anon_sym_BSLASHglsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), - [anon_sym_BSLASHglsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), - [anon_sym_BSLASHnewacronym] = ACTIONS(4491), - [anon_sym_BSLASHacrshort] = ACTIONS(4491), - [anon_sym_BSLASHAcrshort] = ACTIONS(4491), - [anon_sym_BSLASHACRshort] = ACTIONS(4491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), - [anon_sym_BSLASHacrlong] = ACTIONS(4491), - [anon_sym_BSLASHAcrlong] = ACTIONS(4491), - [anon_sym_BSLASHACRlong] = ACTIONS(4491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), - [anon_sym_BSLASHacrfull] = ACTIONS(4491), - [anon_sym_BSLASHAcrfull] = ACTIONS(4491), - [anon_sym_BSLASHACRfull] = ACTIONS(4491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), - [anon_sym_BSLASHacs] = ACTIONS(4491), - [anon_sym_BSLASHAcs] = ACTIONS(4491), - [anon_sym_BSLASHacsp] = ACTIONS(4491), - [anon_sym_BSLASHAcsp] = ACTIONS(4491), - [anon_sym_BSLASHacl] = ACTIONS(4491), - [anon_sym_BSLASHAcl] = ACTIONS(4491), - [anon_sym_BSLASHaclp] = ACTIONS(4491), - [anon_sym_BSLASHAclp] = ACTIONS(4491), - [anon_sym_BSLASHacf] = ACTIONS(4491), - [anon_sym_BSLASHAcf] = ACTIONS(4491), - [anon_sym_BSLASHacfp] = ACTIONS(4491), - [anon_sym_BSLASHAcfp] = ACTIONS(4491), - [anon_sym_BSLASHac] = ACTIONS(4491), - [anon_sym_BSLASHAc] = ACTIONS(4491), - [anon_sym_BSLASHacp] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), - [anon_sym_BSLASHcolor] = ACTIONS(4491), - [anon_sym_BSLASHcolorbox] = ACTIONS(4491), - [anon_sym_BSLASHtextcolor] = ACTIONS(4491), - [anon_sym_BSLASHpagecolor] = ACTIONS(4491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), - [anon_sym_BSLASHtext] = ACTIONS(4491), - [anon_sym_BSLASHintertext] = ACTIONS(4491), - [anon_sym_shortintertext] = ACTIONS(4491), + [sym_command_name] = ACTIONS(4570), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_RBRACK] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_BSLASHpart] = ACTIONS(4570), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddpart] = ACTIONS(4570), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4568), + [anon_sym_BSLASHchapter] = ACTIONS(4570), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddchap] = ACTIONS(4570), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsection] = ACTIONS(4570), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHaddsec] = ACTIONS(4570), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4570), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4568), + [anon_sym_BSLASHparagraph] = ACTIONS(4570), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4570), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4568), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4568), + [sym_word] = ACTIONS(4570), + [sym_placeholder] = ACTIONS(4568), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym__] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_COLON] = ACTIONS(4570), + [anon_sym_SQUOTE] = ACTIONS(4570), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4568), + [anon_sym_DOLLAR] = ACTIONS(4570), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4568), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4568), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4568), + [anon_sym_BSLASHbegin] = ACTIONS(4570), + [anon_sym_BSLASHusepackage] = ACTIONS(4570), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4570), + [anon_sym_BSLASHinclude] = ACTIONS(4570), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4570), + [anon_sym_BSLASHinput] = ACTIONS(4570), + [anon_sym_BSLASHsubfile] = ACTIONS(4570), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4570), + [anon_sym_BSLASHbibliography] = ACTIONS(4570), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4570), + [anon_sym_BSLASHincludesvg] = ACTIONS(4570), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4570), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4570), + [anon_sym_BSLASHimport] = ACTIONS(4570), + [anon_sym_BSLASHsubimport] = ACTIONS(4570), + [anon_sym_BSLASHinputfrom] = ACTIONS(4570), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4570), + [anon_sym_BSLASHincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4570), + [anon_sym_BSLASHcaption] = ACTIONS(4570), + [anon_sym_BSLASHcite] = ACTIONS(4570), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCite] = ACTIONS(4570), + [anon_sym_BSLASHnocite] = ACTIONS(4570), + [anon_sym_BSLASHcitet] = ACTIONS(4570), + [anon_sym_BSLASHcitep] = ACTIONS(4570), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteauthor] = ACTIONS(4570), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4570), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitetitle] = ACTIONS(4570), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteyear] = ACTIONS(4570), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4568), + [anon_sym_BSLASHcitedate] = ACTIONS(4570), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4568), + [anon_sym_BSLASHciteurl] = ACTIONS(4570), + [anon_sym_BSLASHfullcite] = ACTIONS(4570), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4570), + [anon_sym_BSLASHcitealt] = ACTIONS(4570), + [anon_sym_BSLASHcitealp] = ACTIONS(4570), + [anon_sym_BSLASHcitetext] = ACTIONS(4570), + [anon_sym_BSLASHparencite] = ACTIONS(4570), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHParencite] = ACTIONS(4570), + [anon_sym_BSLASHfootcite] = ACTIONS(4570), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4570), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4570), + [anon_sym_BSLASHtextcite] = ACTIONS(4570), + [anon_sym_BSLASHTextcite] = ACTIONS(4570), + [anon_sym_BSLASHsmartcite] = ACTIONS(4570), + [anon_sym_BSLASHSmartcite] = ACTIONS(4570), + [anon_sym_BSLASHsupercite] = ACTIONS(4570), + [anon_sym_BSLASHautocite] = ACTIONS(4570), + [anon_sym_BSLASHAutocite] = ACTIONS(4570), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4568), + [anon_sym_BSLASHvolcite] = ACTIONS(4570), + [anon_sym_BSLASHVolcite] = ACTIONS(4570), + [anon_sym_BSLASHpvolcite] = ACTIONS(4570), + [anon_sym_BSLASHPvolcite] = ACTIONS(4570), + [anon_sym_BSLASHfvolcite] = ACTIONS(4570), + [anon_sym_BSLASHftvolcite] = ACTIONS(4570), + [anon_sym_BSLASHsvolcite] = ACTIONS(4570), + [anon_sym_BSLASHSvolcite] = ACTIONS(4570), + [anon_sym_BSLASHtvolcite] = ACTIONS(4570), + [anon_sym_BSLASHTvolcite] = ACTIONS(4570), + [anon_sym_BSLASHavolcite] = ACTIONS(4570), + [anon_sym_BSLASHAvolcite] = ACTIONS(4570), + [anon_sym_BSLASHnotecite] = ACTIONS(4570), + [anon_sym_BSLASHNotecite] = ACTIONS(4570), + [anon_sym_BSLASHpnotecite] = ACTIONS(4570), + [anon_sym_BSLASHPnotecite] = ACTIONS(4570), + [anon_sym_BSLASHfnotecite] = ACTIONS(4570), + [anon_sym_BSLASHlabel] = ACTIONS(4570), + [anon_sym_BSLASHref] = ACTIONS(4570), + [anon_sym_BSLASHeqref] = ACTIONS(4570), + [anon_sym_BSLASHvref] = ACTIONS(4570), + [anon_sym_BSLASHVref] = ACTIONS(4570), + [anon_sym_BSLASHautoref] = ACTIONS(4570), + [anon_sym_BSLASHpageref] = ACTIONS(4570), + [anon_sym_BSLASHcref] = ACTIONS(4570), + [anon_sym_BSLASHCref] = ACTIONS(4570), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnameCref] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4570), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4570), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4570), + [anon_sym_BSLASHlabelcref] = ACTIONS(4570), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange] = ACTIONS(4570), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHCrefrange] = ACTIONS(4570), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4568), + [anon_sym_BSLASHnewlabel] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand] = ACTIONS(4570), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4570), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4570), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdef] = ACTIONS(4570), + [anon_sym_BSLASHlet] = ACTIONS(4570), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4570), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4570), + [anon_sym_BSLASHgls] = ACTIONS(4570), + [anon_sym_BSLASHGls] = ACTIONS(4570), + [anon_sym_BSLASHGLS] = ACTIONS(4570), + [anon_sym_BSLASHglspl] = ACTIONS(4570), + [anon_sym_BSLASHGlspl] = ACTIONS(4570), + [anon_sym_BSLASHGLSpl] = ACTIONS(4570), + [anon_sym_BSLASHglsdisp] = ACTIONS(4570), + [anon_sym_BSLASHglslink] = ACTIONS(4570), + [anon_sym_BSLASHglstext] = ACTIONS(4570), + [anon_sym_BSLASHGlstext] = ACTIONS(4570), + [anon_sym_BSLASHGLStext] = ACTIONS(4570), + [anon_sym_BSLASHglsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4570), + [anon_sym_BSLASHglsplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSplural] = ACTIONS(4570), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4570), + [anon_sym_BSLASHglsname] = ACTIONS(4570), + [anon_sym_BSLASHGlsname] = ACTIONS(4570), + [anon_sym_BSLASHGLSname] = ACTIONS(4570), + [anon_sym_BSLASHglssymbol] = ACTIONS(4570), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4570), + [anon_sym_BSLASHglsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4570), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4570), + [anon_sym_BSLASHglsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4570), + [anon_sym_BSLASHglsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4570), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4570), + [anon_sym_BSLASHglsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4570), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4570), + [anon_sym_BSLASHglsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4570), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4570), + [anon_sym_BSLASHnewacronym] = ACTIONS(4570), + [anon_sym_BSLASHacrshort] = ACTIONS(4570), + [anon_sym_BSLASHAcrshort] = ACTIONS(4570), + [anon_sym_BSLASHACRshort] = ACTIONS(4570), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4570), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4570), + [anon_sym_BSLASHacrlong] = ACTIONS(4570), + [anon_sym_BSLASHAcrlong] = ACTIONS(4570), + [anon_sym_BSLASHACRlong] = ACTIONS(4570), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4570), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4570), + [anon_sym_BSLASHacrfull] = ACTIONS(4570), + [anon_sym_BSLASHAcrfull] = ACTIONS(4570), + [anon_sym_BSLASHACRfull] = ACTIONS(4570), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4570), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4570), + [anon_sym_BSLASHacs] = ACTIONS(4570), + [anon_sym_BSLASHAcs] = ACTIONS(4570), + [anon_sym_BSLASHacsp] = ACTIONS(4570), + [anon_sym_BSLASHAcsp] = ACTIONS(4570), + [anon_sym_BSLASHacl] = ACTIONS(4570), + [anon_sym_BSLASHAcl] = ACTIONS(4570), + [anon_sym_BSLASHaclp] = ACTIONS(4570), + [anon_sym_BSLASHAclp] = ACTIONS(4570), + [anon_sym_BSLASHacf] = ACTIONS(4570), + [anon_sym_BSLASHAcf] = ACTIONS(4570), + [anon_sym_BSLASHacfp] = ACTIONS(4570), + [anon_sym_BSLASHAcfp] = ACTIONS(4570), + [anon_sym_BSLASHac] = ACTIONS(4570), + [anon_sym_BSLASHAc] = ACTIONS(4570), + [anon_sym_BSLASHacp] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4570), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4570), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4570), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4570), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4570), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4568), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4570), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4570), + [anon_sym_BSLASHcolor] = ACTIONS(4570), + [anon_sym_BSLASHcolorbox] = ACTIONS(4570), + [anon_sym_BSLASHtextcolor] = ACTIONS(4570), + [anon_sym_BSLASHpagecolor] = ACTIONS(4570), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4570), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4570), + [anon_sym_BSLASHtext] = ACTIONS(4570), + [anon_sym_BSLASHintertext] = ACTIONS(4570), + [anon_sym_shortintertext] = ACTIONS(4570), }, [597] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4566), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [598] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_LBRACK] = ACTIONS(4485), - [anon_sym_RBRACK] = ACTIONS(4485), - [anon_sym_COMMA] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4485), - [anon_sym_BSLASHpart] = ACTIONS(4487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddpart] = ACTIONS(4487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), - [anon_sym_BSLASHchapter] = ACTIONS(4487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddchap] = ACTIONS(4487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsection] = ACTIONS(4487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHaddsec] = ACTIONS(4487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), - [anon_sym_BSLASHparagraph] = ACTIONS(4487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(4485), - [sym_word] = ACTIONS(4487), - [sym_placeholder] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym__] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_COLON] = ACTIONS(4487), - [anon_sym_SQUOTE] = ACTIONS(4487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), - [anon_sym_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4485), - [anon_sym_BSLASHbegin] = ACTIONS(4487), - [anon_sym_BSLASHusepackage] = ACTIONS(4487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), - [anon_sym_BSLASHinclude] = ACTIONS(4487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), - [anon_sym_BSLASHinput] = ACTIONS(4487), - [anon_sym_BSLASHsubfile] = ACTIONS(4487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), - [anon_sym_BSLASHbibliography] = ACTIONS(4487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), - [anon_sym_BSLASHincludesvg] = ACTIONS(4487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), - [anon_sym_BSLASHimport] = ACTIONS(4487), - [anon_sym_BSLASHsubimport] = ACTIONS(4487), - [anon_sym_BSLASHinputfrom] = ACTIONS(4487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), - [anon_sym_BSLASHincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), - [anon_sym_BSLASHcaption] = ACTIONS(4487), - [anon_sym_BSLASHcite] = ACTIONS(4487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCite] = ACTIONS(4487), - [anon_sym_BSLASHnocite] = ACTIONS(4487), - [anon_sym_BSLASHcitet] = ACTIONS(4487), - [anon_sym_BSLASHcitep] = ACTIONS(4487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteauthor] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitetitle] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteyear] = ACTIONS(4487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), - [anon_sym_BSLASHcitedate] = ACTIONS(4487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), - [anon_sym_BSLASHciteurl] = ACTIONS(4487), - [anon_sym_BSLASHfullcite] = ACTIONS(4487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), - [anon_sym_BSLASHcitealt] = ACTIONS(4487), - [anon_sym_BSLASHcitealp] = ACTIONS(4487), - [anon_sym_BSLASHcitetext] = ACTIONS(4487), - [anon_sym_BSLASHparencite] = ACTIONS(4487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHParencite] = ACTIONS(4487), - [anon_sym_BSLASHfootcite] = ACTIONS(4487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), - [anon_sym_BSLASHtextcite] = ACTIONS(4487), - [anon_sym_BSLASHTextcite] = ACTIONS(4487), - [anon_sym_BSLASHsmartcite] = ACTIONS(4487), - [anon_sym_BSLASHSmartcite] = ACTIONS(4487), - [anon_sym_BSLASHsupercite] = ACTIONS(4487), - [anon_sym_BSLASHautocite] = ACTIONS(4487), - [anon_sym_BSLASHAutocite] = ACTIONS(4487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), - [anon_sym_BSLASHvolcite] = ACTIONS(4487), - [anon_sym_BSLASHVolcite] = ACTIONS(4487), - [anon_sym_BSLASHpvolcite] = ACTIONS(4487), - [anon_sym_BSLASHPvolcite] = ACTIONS(4487), - [anon_sym_BSLASHfvolcite] = ACTIONS(4487), - [anon_sym_BSLASHftvolcite] = ACTIONS(4487), - [anon_sym_BSLASHsvolcite] = ACTIONS(4487), - [anon_sym_BSLASHSvolcite] = ACTIONS(4487), - [anon_sym_BSLASHtvolcite] = ACTIONS(4487), - [anon_sym_BSLASHTvolcite] = ACTIONS(4487), - [anon_sym_BSLASHavolcite] = ACTIONS(4487), - [anon_sym_BSLASHAvolcite] = ACTIONS(4487), - [anon_sym_BSLASHnotecite] = ACTIONS(4487), - [anon_sym_BSLASHNotecite] = ACTIONS(4487), - [anon_sym_BSLASHpnotecite] = ACTIONS(4487), - [anon_sym_BSLASHPnotecite] = ACTIONS(4487), - [anon_sym_BSLASHfnotecite] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4487), - [anon_sym_BSLASHref] = ACTIONS(4487), - [anon_sym_BSLASHeqref] = ACTIONS(4487), - [anon_sym_BSLASHvref] = ACTIONS(4487), - [anon_sym_BSLASHVref] = ACTIONS(4487), - [anon_sym_BSLASHautoref] = ACTIONS(4487), - [anon_sym_BSLASHpageref] = ACTIONS(4487), - [anon_sym_BSLASHcref] = ACTIONS(4487), - [anon_sym_BSLASHCref] = ACTIONS(4487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnameCref] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), - [anon_sym_BSLASHlabelcref] = ACTIONS(4487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange] = ACTIONS(4487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHCrefrange] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), - [anon_sym_BSLASHnewlabel] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand] = ACTIONS(4487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), - [anon_sym_BSLASHdef] = ACTIONS(4487), - [anon_sym_BSLASHlet] = ACTIONS(4487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4487), - [anon_sym_BSLASHGls] = ACTIONS(4487), - [anon_sym_BSLASHGLS] = ACTIONS(4487), - [anon_sym_BSLASHglspl] = ACTIONS(4487), - [anon_sym_BSLASHGlspl] = ACTIONS(4487), - [anon_sym_BSLASHGLSpl] = ACTIONS(4487), - [anon_sym_BSLASHglsdisp] = ACTIONS(4487), - [anon_sym_BSLASHglslink] = ACTIONS(4487), - [anon_sym_BSLASHglstext] = ACTIONS(4487), - [anon_sym_BSLASHGlstext] = ACTIONS(4487), - [anon_sym_BSLASHGLStext] = ACTIONS(4487), - [anon_sym_BSLASHglsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), - [anon_sym_BSLASHglsplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSplural] = ACTIONS(4487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), - [anon_sym_BSLASHglsname] = ACTIONS(4487), - [anon_sym_BSLASHGlsname] = ACTIONS(4487), - [anon_sym_BSLASHGLSname] = ACTIONS(4487), - [anon_sym_BSLASHglssymbol] = ACTIONS(4487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), - [anon_sym_BSLASHglsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), - [anon_sym_BSLASHglsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), - [anon_sym_BSLASHglsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), - [anon_sym_BSLASHglsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), - [anon_sym_BSLASHglsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), - [anon_sym_BSLASHnewacronym] = ACTIONS(4487), - [anon_sym_BSLASHacrshort] = ACTIONS(4487), - [anon_sym_BSLASHAcrshort] = ACTIONS(4487), - [anon_sym_BSLASHACRshort] = ACTIONS(4487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), - [anon_sym_BSLASHacrlong] = ACTIONS(4487), - [anon_sym_BSLASHAcrlong] = ACTIONS(4487), - [anon_sym_BSLASHACRlong] = ACTIONS(4487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), - [anon_sym_BSLASHacrfull] = ACTIONS(4487), - [anon_sym_BSLASHAcrfull] = ACTIONS(4487), - [anon_sym_BSLASHACRfull] = ACTIONS(4487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), - [anon_sym_BSLASHacs] = ACTIONS(4487), - [anon_sym_BSLASHAcs] = ACTIONS(4487), - [anon_sym_BSLASHacsp] = ACTIONS(4487), - [anon_sym_BSLASHAcsp] = ACTIONS(4487), - [anon_sym_BSLASHacl] = ACTIONS(4487), - [anon_sym_BSLASHAcl] = ACTIONS(4487), - [anon_sym_BSLASHaclp] = ACTIONS(4487), - [anon_sym_BSLASHAclp] = ACTIONS(4487), - [anon_sym_BSLASHacf] = ACTIONS(4487), - [anon_sym_BSLASHAcf] = ACTIONS(4487), - [anon_sym_BSLASHacfp] = ACTIONS(4487), - [anon_sym_BSLASHAcfp] = ACTIONS(4487), - [anon_sym_BSLASHac] = ACTIONS(4487), - [anon_sym_BSLASHAc] = ACTIONS(4487), - [anon_sym_BSLASHacp] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), - [anon_sym_BSLASHcolor] = ACTIONS(4487), - [anon_sym_BSLASHcolorbox] = ACTIONS(4487), - [anon_sym_BSLASHtextcolor] = ACTIONS(4487), - [anon_sym_BSLASHpagecolor] = ACTIONS(4487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), - [anon_sym_BSLASHtext] = ACTIONS(4487), - [anon_sym_BSLASHintertext] = ACTIONS(4487), - [anon_sym_shortintertext] = ACTIONS(4487), + [sym_command_name] = ACTIONS(4566), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4564), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_COMMA] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_BSLASHpart] = ACTIONS(4566), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddpart] = ACTIONS(4566), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4564), + [anon_sym_BSLASHchapter] = ACTIONS(4566), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddchap] = ACTIONS(4566), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsection] = ACTIONS(4566), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHaddsec] = ACTIONS(4566), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4566), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4564), + [anon_sym_BSLASHparagraph] = ACTIONS(4566), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4564), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4566), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4564), + [sym_word] = ACTIONS(4566), + [sym_placeholder] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym__] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4566), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_SQUOTE] = ACTIONS(4566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4564), + [anon_sym_DOLLAR] = ACTIONS(4566), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4564), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4564), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4564), + [anon_sym_BSLASHbegin] = ACTIONS(4566), + [anon_sym_BSLASHusepackage] = ACTIONS(4566), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4566), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4566), + [anon_sym_BSLASHinclude] = ACTIONS(4566), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4566), + [anon_sym_BSLASHinput] = ACTIONS(4566), + [anon_sym_BSLASHsubfile] = ACTIONS(4566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4566), + [anon_sym_BSLASHbibliography] = ACTIONS(4566), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4566), + [anon_sym_BSLASHincludesvg] = ACTIONS(4566), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4566), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4566), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4566), + [anon_sym_BSLASHimport] = ACTIONS(4566), + [anon_sym_BSLASHsubimport] = ACTIONS(4566), + [anon_sym_BSLASHinputfrom] = ACTIONS(4566), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4566), + [anon_sym_BSLASHincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4566), + [anon_sym_BSLASHcaption] = ACTIONS(4566), + [anon_sym_BSLASHcite] = ACTIONS(4566), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCite] = ACTIONS(4566), + [anon_sym_BSLASHnocite] = ACTIONS(4566), + [anon_sym_BSLASHcitet] = ACTIONS(4566), + [anon_sym_BSLASHcitep] = ACTIONS(4566), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteauthor] = ACTIONS(4566), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4566), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitetitle] = ACTIONS(4566), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteyear] = ACTIONS(4566), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4564), + [anon_sym_BSLASHcitedate] = ACTIONS(4566), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4564), + [anon_sym_BSLASHciteurl] = ACTIONS(4566), + [anon_sym_BSLASHfullcite] = ACTIONS(4566), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4566), + [anon_sym_BSLASHcitealt] = ACTIONS(4566), + [anon_sym_BSLASHcitealp] = ACTIONS(4566), + [anon_sym_BSLASHcitetext] = ACTIONS(4566), + [anon_sym_BSLASHparencite] = ACTIONS(4566), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHParencite] = ACTIONS(4566), + [anon_sym_BSLASHfootcite] = ACTIONS(4566), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4566), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4566), + [anon_sym_BSLASHtextcite] = ACTIONS(4566), + [anon_sym_BSLASHTextcite] = ACTIONS(4566), + [anon_sym_BSLASHsmartcite] = ACTIONS(4566), + [anon_sym_BSLASHSmartcite] = ACTIONS(4566), + [anon_sym_BSLASHsupercite] = ACTIONS(4566), + [anon_sym_BSLASHautocite] = ACTIONS(4566), + [anon_sym_BSLASHAutocite] = ACTIONS(4566), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4564), + [anon_sym_BSLASHvolcite] = ACTIONS(4566), + [anon_sym_BSLASHVolcite] = ACTIONS(4566), + [anon_sym_BSLASHpvolcite] = ACTIONS(4566), + [anon_sym_BSLASHPvolcite] = ACTIONS(4566), + [anon_sym_BSLASHfvolcite] = ACTIONS(4566), + [anon_sym_BSLASHftvolcite] = ACTIONS(4566), + [anon_sym_BSLASHsvolcite] = ACTIONS(4566), + [anon_sym_BSLASHSvolcite] = ACTIONS(4566), + [anon_sym_BSLASHtvolcite] = ACTIONS(4566), + [anon_sym_BSLASHTvolcite] = ACTIONS(4566), + [anon_sym_BSLASHavolcite] = ACTIONS(4566), + [anon_sym_BSLASHAvolcite] = ACTIONS(4566), + [anon_sym_BSLASHnotecite] = ACTIONS(4566), + [anon_sym_BSLASHNotecite] = ACTIONS(4566), + [anon_sym_BSLASHpnotecite] = ACTIONS(4566), + [anon_sym_BSLASHPnotecite] = ACTIONS(4566), + [anon_sym_BSLASHfnotecite] = ACTIONS(4566), + [anon_sym_BSLASHlabel] = ACTIONS(4566), + [anon_sym_BSLASHref] = ACTIONS(4566), + [anon_sym_BSLASHeqref] = ACTIONS(4566), + [anon_sym_BSLASHvref] = ACTIONS(4566), + [anon_sym_BSLASHVref] = ACTIONS(4566), + [anon_sym_BSLASHautoref] = ACTIONS(4566), + [anon_sym_BSLASHpageref] = ACTIONS(4566), + [anon_sym_BSLASHcref] = ACTIONS(4566), + [anon_sym_BSLASHCref] = ACTIONS(4566), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnameCref] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4566), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4566), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4566), + [anon_sym_BSLASHlabelcref] = ACTIONS(4566), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange] = ACTIONS(4566), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHCrefrange] = ACTIONS(4566), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4564), + [anon_sym_BSLASHnewlabel] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand] = ACTIONS(4566), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4566), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4566), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4564), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4566), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdef] = ACTIONS(4566), + [anon_sym_BSLASHlet] = ACTIONS(4566), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4566), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4566), + [anon_sym_BSLASHgls] = ACTIONS(4566), + [anon_sym_BSLASHGls] = ACTIONS(4566), + [anon_sym_BSLASHGLS] = ACTIONS(4566), + [anon_sym_BSLASHglspl] = ACTIONS(4566), + [anon_sym_BSLASHGlspl] = ACTIONS(4566), + [anon_sym_BSLASHGLSpl] = ACTIONS(4566), + [anon_sym_BSLASHglsdisp] = ACTIONS(4566), + [anon_sym_BSLASHglslink] = ACTIONS(4566), + [anon_sym_BSLASHglstext] = ACTIONS(4566), + [anon_sym_BSLASHGlstext] = ACTIONS(4566), + [anon_sym_BSLASHGLStext] = ACTIONS(4566), + [anon_sym_BSLASHglsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4566), + [anon_sym_BSLASHglsplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSplural] = ACTIONS(4566), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4566), + [anon_sym_BSLASHglsname] = ACTIONS(4566), + [anon_sym_BSLASHGlsname] = ACTIONS(4566), + [anon_sym_BSLASHGLSname] = ACTIONS(4566), + [anon_sym_BSLASHglssymbol] = ACTIONS(4566), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4566), + [anon_sym_BSLASHglsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4566), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4566), + [anon_sym_BSLASHglsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4566), + [anon_sym_BSLASHglsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4566), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4566), + [anon_sym_BSLASHglsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4566), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4566), + [anon_sym_BSLASHglsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4566), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4566), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4566), + [anon_sym_BSLASHAcrshort] = ACTIONS(4566), + [anon_sym_BSLASHACRshort] = ACTIONS(4566), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4566), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4566), + [anon_sym_BSLASHacrlong] = ACTIONS(4566), + [anon_sym_BSLASHAcrlong] = ACTIONS(4566), + [anon_sym_BSLASHACRlong] = ACTIONS(4566), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4566), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4566), + [anon_sym_BSLASHacrfull] = ACTIONS(4566), + [anon_sym_BSLASHAcrfull] = ACTIONS(4566), + [anon_sym_BSLASHACRfull] = ACTIONS(4566), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4566), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4566), + [anon_sym_BSLASHacs] = ACTIONS(4566), + [anon_sym_BSLASHAcs] = ACTIONS(4566), + [anon_sym_BSLASHacsp] = ACTIONS(4566), + [anon_sym_BSLASHAcsp] = ACTIONS(4566), + [anon_sym_BSLASHacl] = ACTIONS(4566), + [anon_sym_BSLASHAcl] = ACTIONS(4566), + [anon_sym_BSLASHaclp] = ACTIONS(4566), + [anon_sym_BSLASHAclp] = ACTIONS(4566), + [anon_sym_BSLASHacf] = ACTIONS(4566), + [anon_sym_BSLASHAcf] = ACTIONS(4566), + [anon_sym_BSLASHacfp] = ACTIONS(4566), + [anon_sym_BSLASHAcfp] = ACTIONS(4566), + [anon_sym_BSLASHac] = ACTIONS(4566), + [anon_sym_BSLASHAc] = ACTIONS(4566), + [anon_sym_BSLASHacp] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4566), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4566), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4566), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4566), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4566), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4564), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4566), + [anon_sym_BSLASHcolor] = ACTIONS(4566), + [anon_sym_BSLASHcolorbox] = ACTIONS(4566), + [anon_sym_BSLASHtextcolor] = ACTIONS(4566), + [anon_sym_BSLASHpagecolor] = ACTIONS(4566), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4566), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4566), + [anon_sym_BSLASHtext] = ACTIONS(4566), + [anon_sym_BSLASHintertext] = ACTIONS(4566), + [anon_sym_shortintertext] = ACTIONS(4566), }, [599] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [600] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(4483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(4562), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [601] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym_RPAREN] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_RBRACK] = ACTIONS(4481), - [anon_sym_COMMA] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_BSLASHpart] = ACTIONS(4483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddpart] = ACTIONS(4483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), - [anon_sym_BSLASHchapter] = ACTIONS(4483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddchap] = ACTIONS(4483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsection] = ACTIONS(4483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHaddsec] = ACTIONS(4483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), - [anon_sym_BSLASHitem] = ACTIONS(4483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [sym_word] = ACTIONS(4483), - [sym_placeholder] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym__] = ACTIONS(4483), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_GT] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_SQUOTE] = ACTIONS(4483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), - [anon_sym_DOLLAR] = ACTIONS(4483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4481), - [anon_sym_BSLASHbegin] = ACTIONS(4483), - [anon_sym_BSLASHusepackage] = ACTIONS(4483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), - [anon_sym_BSLASHinclude] = ACTIONS(4483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), - [anon_sym_BSLASHinput] = ACTIONS(4483), - [anon_sym_BSLASHsubfile] = ACTIONS(4483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), - [anon_sym_BSLASHbibliography] = ACTIONS(4483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), - [anon_sym_BSLASHincludesvg] = ACTIONS(4483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), - [anon_sym_BSLASHimport] = ACTIONS(4483), - [anon_sym_BSLASHsubimport] = ACTIONS(4483), - [anon_sym_BSLASHinputfrom] = ACTIONS(4483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), - [anon_sym_BSLASHincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), - [anon_sym_BSLASHcaption] = ACTIONS(4483), - [anon_sym_BSLASHcite] = ACTIONS(4483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCite] = ACTIONS(4483), - [anon_sym_BSLASHnocite] = ACTIONS(4483), - [anon_sym_BSLASHcitet] = ACTIONS(4483), - [anon_sym_BSLASHcitep] = ACTIONS(4483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteauthor] = ACTIONS(4483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitetitle] = ACTIONS(4483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteyear] = ACTIONS(4483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), - [anon_sym_BSLASHcitedate] = ACTIONS(4483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), - [anon_sym_BSLASHciteurl] = ACTIONS(4483), - [anon_sym_BSLASHfullcite] = ACTIONS(4483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), - [anon_sym_BSLASHcitealt] = ACTIONS(4483), - [anon_sym_BSLASHcitealp] = ACTIONS(4483), - [anon_sym_BSLASHcitetext] = ACTIONS(4483), - [anon_sym_BSLASHparencite] = ACTIONS(4483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHParencite] = ACTIONS(4483), - [anon_sym_BSLASHfootcite] = ACTIONS(4483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), - [anon_sym_BSLASHtextcite] = ACTIONS(4483), - [anon_sym_BSLASHTextcite] = ACTIONS(4483), - [anon_sym_BSLASHsmartcite] = ACTIONS(4483), - [anon_sym_BSLASHSmartcite] = ACTIONS(4483), - [anon_sym_BSLASHsupercite] = ACTIONS(4483), - [anon_sym_BSLASHautocite] = ACTIONS(4483), - [anon_sym_BSLASHAutocite] = ACTIONS(4483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), - [anon_sym_BSLASHvolcite] = ACTIONS(4483), - [anon_sym_BSLASHVolcite] = ACTIONS(4483), - [anon_sym_BSLASHpvolcite] = ACTIONS(4483), - [anon_sym_BSLASHPvolcite] = ACTIONS(4483), - [anon_sym_BSLASHfvolcite] = ACTIONS(4483), - [anon_sym_BSLASHftvolcite] = ACTIONS(4483), - [anon_sym_BSLASHsvolcite] = ACTIONS(4483), - [anon_sym_BSLASHSvolcite] = ACTIONS(4483), - [anon_sym_BSLASHtvolcite] = ACTIONS(4483), - [anon_sym_BSLASHTvolcite] = ACTIONS(4483), - [anon_sym_BSLASHavolcite] = ACTIONS(4483), - [anon_sym_BSLASHAvolcite] = ACTIONS(4483), - [anon_sym_BSLASHnotecite] = ACTIONS(4483), - [anon_sym_BSLASHNotecite] = ACTIONS(4483), - [anon_sym_BSLASHpnotecite] = ACTIONS(4483), - [anon_sym_BSLASHPnotecite] = ACTIONS(4483), - [anon_sym_BSLASHfnotecite] = ACTIONS(4483), - [anon_sym_BSLASHlabel] = ACTIONS(4483), - [anon_sym_BSLASHref] = ACTIONS(4483), - [anon_sym_BSLASHeqref] = ACTIONS(4483), - [anon_sym_BSLASHvref] = ACTIONS(4483), - [anon_sym_BSLASHVref] = ACTIONS(4483), - [anon_sym_BSLASHautoref] = ACTIONS(4483), - [anon_sym_BSLASHpageref] = ACTIONS(4483), - [anon_sym_BSLASHcref] = ACTIONS(4483), - [anon_sym_BSLASHCref] = ACTIONS(4483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnameCref] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), - [anon_sym_BSLASHlabelcref] = ACTIONS(4483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange] = ACTIONS(4483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHCrefrange] = ACTIONS(4483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), - [anon_sym_BSLASHnewlabel] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand] = ACTIONS(4483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), - [anon_sym_BSLASHdef] = ACTIONS(4483), - [anon_sym_BSLASHlet] = ACTIONS(4483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), - [anon_sym_BSLASHgls] = ACTIONS(4483), - [anon_sym_BSLASHGls] = ACTIONS(4483), - [anon_sym_BSLASHGLS] = ACTIONS(4483), - [anon_sym_BSLASHglspl] = ACTIONS(4483), - [anon_sym_BSLASHGlspl] = ACTIONS(4483), - [anon_sym_BSLASHGLSpl] = ACTIONS(4483), - [anon_sym_BSLASHglsdisp] = ACTIONS(4483), - [anon_sym_BSLASHglslink] = ACTIONS(4483), - [anon_sym_BSLASHglstext] = ACTIONS(4483), - [anon_sym_BSLASHGlstext] = ACTIONS(4483), - [anon_sym_BSLASHGLStext] = ACTIONS(4483), - [anon_sym_BSLASHglsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), - [anon_sym_BSLASHglsplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSplural] = ACTIONS(4483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), - [anon_sym_BSLASHglsname] = ACTIONS(4483), - [anon_sym_BSLASHGlsname] = ACTIONS(4483), - [anon_sym_BSLASHGLSname] = ACTIONS(4483), - [anon_sym_BSLASHglssymbol] = ACTIONS(4483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), - [anon_sym_BSLASHglsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), - [anon_sym_BSLASHglsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), - [anon_sym_BSLASHglsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), - [anon_sym_BSLASHglsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), - [anon_sym_BSLASHglsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), - [anon_sym_BSLASHnewacronym] = ACTIONS(4483), - [anon_sym_BSLASHacrshort] = ACTIONS(4483), - [anon_sym_BSLASHAcrshort] = ACTIONS(4483), - [anon_sym_BSLASHACRshort] = ACTIONS(4483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), - [anon_sym_BSLASHacrlong] = ACTIONS(4483), - [anon_sym_BSLASHAcrlong] = ACTIONS(4483), - [anon_sym_BSLASHACRlong] = ACTIONS(4483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), - [anon_sym_BSLASHacrfull] = ACTIONS(4483), - [anon_sym_BSLASHAcrfull] = ACTIONS(4483), - [anon_sym_BSLASHACRfull] = ACTIONS(4483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), - [anon_sym_BSLASHacs] = ACTIONS(4483), - [anon_sym_BSLASHAcs] = ACTIONS(4483), - [anon_sym_BSLASHacsp] = ACTIONS(4483), - [anon_sym_BSLASHAcsp] = ACTIONS(4483), - [anon_sym_BSLASHacl] = ACTIONS(4483), - [anon_sym_BSLASHAcl] = ACTIONS(4483), - [anon_sym_BSLASHaclp] = ACTIONS(4483), - [anon_sym_BSLASHAclp] = ACTIONS(4483), - [anon_sym_BSLASHacf] = ACTIONS(4483), - [anon_sym_BSLASHAcf] = ACTIONS(4483), - [anon_sym_BSLASHacfp] = ACTIONS(4483), - [anon_sym_BSLASHAcfp] = ACTIONS(4483), - [anon_sym_BSLASHac] = ACTIONS(4483), - [anon_sym_BSLASHAc] = ACTIONS(4483), - [anon_sym_BSLASHacp] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), - [anon_sym_BSLASHcolor] = ACTIONS(4483), - [anon_sym_BSLASHcolorbox] = ACTIONS(4483), - [anon_sym_BSLASHtextcolor] = ACTIONS(4483), - [anon_sym_BSLASHpagecolor] = ACTIONS(4483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), - [anon_sym_BSLASHtext] = ACTIONS(4483), - [anon_sym_BSLASHintertext] = ACTIONS(4483), - [anon_sym_shortintertext] = ACTIONS(4483), + [sym_command_name] = ACTIONS(4562), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4560), + [anon_sym_RPAREN] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4560), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_COMMA] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_BSLASHpart] = ACTIONS(4562), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddpart] = ACTIONS(4562), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4560), + [anon_sym_BSLASHchapter] = ACTIONS(4562), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4562), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4562), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddsec] = ACTIONS(4562), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4562), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4560), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4562), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4560), + [anon_sym_BSLASHitem] = ACTIONS(4562), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4560), + [anon_sym_LBRACE] = ACTIONS(4560), + [sym_word] = ACTIONS(4562), + [sym_placeholder] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4562), + [anon_sym_SLASH] = ACTIONS(4562), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym__] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4562), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_SQUOTE] = ACTIONS(4562), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4560), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4560), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4560), + [anon_sym_BSLASHbegin] = ACTIONS(4562), + [anon_sym_BSLASHusepackage] = ACTIONS(4562), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4562), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4562), + [anon_sym_BSLASHinclude] = ACTIONS(4562), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4562), + [anon_sym_BSLASHinput] = ACTIONS(4562), + [anon_sym_BSLASHsubfile] = ACTIONS(4562), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4562), + [anon_sym_BSLASHbibliography] = ACTIONS(4562), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4562), + [anon_sym_BSLASHincludesvg] = ACTIONS(4562), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4562), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4562), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4562), + [anon_sym_BSLASHimport] = ACTIONS(4562), + [anon_sym_BSLASHsubimport] = ACTIONS(4562), + [anon_sym_BSLASHinputfrom] = ACTIONS(4562), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4562), + [anon_sym_BSLASHincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4562), + [anon_sym_BSLASHcaption] = ACTIONS(4562), + [anon_sym_BSLASHcite] = ACTIONS(4562), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCite] = ACTIONS(4562), + [anon_sym_BSLASHnocite] = ACTIONS(4562), + [anon_sym_BSLASHcitet] = ACTIONS(4562), + [anon_sym_BSLASHcitep] = ACTIONS(4562), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteauthor] = ACTIONS(4562), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4562), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitetitle] = ACTIONS(4562), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteyear] = ACTIONS(4562), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4560), + [anon_sym_BSLASHcitedate] = ACTIONS(4562), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4560), + [anon_sym_BSLASHciteurl] = ACTIONS(4562), + [anon_sym_BSLASHfullcite] = ACTIONS(4562), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4562), + [anon_sym_BSLASHcitealt] = ACTIONS(4562), + [anon_sym_BSLASHcitealp] = ACTIONS(4562), + [anon_sym_BSLASHcitetext] = ACTIONS(4562), + [anon_sym_BSLASHparencite] = ACTIONS(4562), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHParencite] = ACTIONS(4562), + [anon_sym_BSLASHfootcite] = ACTIONS(4562), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4562), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4562), + [anon_sym_BSLASHtextcite] = ACTIONS(4562), + [anon_sym_BSLASHTextcite] = ACTIONS(4562), + [anon_sym_BSLASHsmartcite] = ACTIONS(4562), + [anon_sym_BSLASHSmartcite] = ACTIONS(4562), + [anon_sym_BSLASHsupercite] = ACTIONS(4562), + [anon_sym_BSLASHautocite] = ACTIONS(4562), + [anon_sym_BSLASHAutocite] = ACTIONS(4562), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4560), + [anon_sym_BSLASHvolcite] = ACTIONS(4562), + [anon_sym_BSLASHVolcite] = ACTIONS(4562), + [anon_sym_BSLASHpvolcite] = ACTIONS(4562), + [anon_sym_BSLASHPvolcite] = ACTIONS(4562), + [anon_sym_BSLASHfvolcite] = ACTIONS(4562), + [anon_sym_BSLASHftvolcite] = ACTIONS(4562), + [anon_sym_BSLASHsvolcite] = ACTIONS(4562), + [anon_sym_BSLASHSvolcite] = ACTIONS(4562), + [anon_sym_BSLASHtvolcite] = ACTIONS(4562), + [anon_sym_BSLASHTvolcite] = ACTIONS(4562), + [anon_sym_BSLASHavolcite] = ACTIONS(4562), + [anon_sym_BSLASHAvolcite] = ACTIONS(4562), + [anon_sym_BSLASHnotecite] = ACTIONS(4562), + [anon_sym_BSLASHNotecite] = ACTIONS(4562), + [anon_sym_BSLASHpnotecite] = ACTIONS(4562), + [anon_sym_BSLASHPnotecite] = ACTIONS(4562), + [anon_sym_BSLASHfnotecite] = ACTIONS(4562), + [anon_sym_BSLASHlabel] = ACTIONS(4562), + [anon_sym_BSLASHref] = ACTIONS(4562), + [anon_sym_BSLASHeqref] = ACTIONS(4562), + [anon_sym_BSLASHvref] = ACTIONS(4562), + [anon_sym_BSLASHVref] = ACTIONS(4562), + [anon_sym_BSLASHautoref] = ACTIONS(4562), + [anon_sym_BSLASHpageref] = ACTIONS(4562), + [anon_sym_BSLASHcref] = ACTIONS(4562), + [anon_sym_BSLASHCref] = ACTIONS(4562), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnameCref] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4562), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4562), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4562), + [anon_sym_BSLASHlabelcref] = ACTIONS(4562), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange] = ACTIONS(4562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHCrefrange] = ACTIONS(4562), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4560), + [anon_sym_BSLASHnewlabel] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand] = ACTIONS(4562), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4562), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4562), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4560), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4562), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdef] = ACTIONS(4562), + [anon_sym_BSLASHlet] = ACTIONS(4562), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4562), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4562), + [anon_sym_BSLASHgls] = ACTIONS(4562), + [anon_sym_BSLASHGls] = ACTIONS(4562), + [anon_sym_BSLASHGLS] = ACTIONS(4562), + [anon_sym_BSLASHglspl] = ACTIONS(4562), + [anon_sym_BSLASHGlspl] = ACTIONS(4562), + [anon_sym_BSLASHGLSpl] = ACTIONS(4562), + [anon_sym_BSLASHglsdisp] = ACTIONS(4562), + [anon_sym_BSLASHglslink] = ACTIONS(4562), + [anon_sym_BSLASHglstext] = ACTIONS(4562), + [anon_sym_BSLASHGlstext] = ACTIONS(4562), + [anon_sym_BSLASHGLStext] = ACTIONS(4562), + [anon_sym_BSLASHglsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4562), + [anon_sym_BSLASHglsplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSplural] = ACTIONS(4562), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4562), + [anon_sym_BSLASHglsname] = ACTIONS(4562), + [anon_sym_BSLASHGlsname] = ACTIONS(4562), + [anon_sym_BSLASHGLSname] = ACTIONS(4562), + [anon_sym_BSLASHglssymbol] = ACTIONS(4562), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4562), + [anon_sym_BSLASHglsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4562), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4562), + [anon_sym_BSLASHglsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4562), + [anon_sym_BSLASHglsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4562), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4562), + [anon_sym_BSLASHglsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4562), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4562), + [anon_sym_BSLASHglsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4562), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4562), + [anon_sym_BSLASHnewacronym] = ACTIONS(4562), + [anon_sym_BSLASHacrshort] = ACTIONS(4562), + [anon_sym_BSLASHAcrshort] = ACTIONS(4562), + [anon_sym_BSLASHACRshort] = ACTIONS(4562), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4562), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4562), + [anon_sym_BSLASHacrlong] = ACTIONS(4562), + [anon_sym_BSLASHAcrlong] = ACTIONS(4562), + [anon_sym_BSLASHACRlong] = ACTIONS(4562), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4562), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4562), + [anon_sym_BSLASHacrfull] = ACTIONS(4562), + [anon_sym_BSLASHAcrfull] = ACTIONS(4562), + [anon_sym_BSLASHACRfull] = ACTIONS(4562), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4562), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4562), + [anon_sym_BSLASHacs] = ACTIONS(4562), + [anon_sym_BSLASHAcs] = ACTIONS(4562), + [anon_sym_BSLASHacsp] = ACTIONS(4562), + [anon_sym_BSLASHAcsp] = ACTIONS(4562), + [anon_sym_BSLASHacl] = ACTIONS(4562), + [anon_sym_BSLASHAcl] = ACTIONS(4562), + [anon_sym_BSLASHaclp] = ACTIONS(4562), + [anon_sym_BSLASHAclp] = ACTIONS(4562), + [anon_sym_BSLASHacf] = ACTIONS(4562), + [anon_sym_BSLASHAcf] = ACTIONS(4562), + [anon_sym_BSLASHacfp] = ACTIONS(4562), + [anon_sym_BSLASHAcfp] = ACTIONS(4562), + [anon_sym_BSLASHac] = ACTIONS(4562), + [anon_sym_BSLASHAc] = ACTIONS(4562), + [anon_sym_BSLASHacp] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4562), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4562), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4562), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4562), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4562), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4560), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4562), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4562), + [anon_sym_BSLASHcolor] = ACTIONS(4562), + [anon_sym_BSLASHcolorbox] = ACTIONS(4562), + [anon_sym_BSLASHtextcolor] = ACTIONS(4562), + [anon_sym_BSLASHpagecolor] = ACTIONS(4562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4562), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4562), + [anon_sym_BSLASHtext] = ACTIONS(4562), + [anon_sym_BSLASHintertext] = ACTIONS(4562), + [anon_sym_shortintertext] = ACTIONS(4562), }, [602] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [603] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [604] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [605] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(4479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(4477), - [anon_sym_BSLASHpart] = ACTIONS(4479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddpart] = ACTIONS(4479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), - [anon_sym_BSLASHchapter] = ACTIONS(4479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddchap] = ACTIONS(4479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsection] = ACTIONS(4479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHaddsec] = ACTIONS(4479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHitem] = ACTIONS(4479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [sym_word] = ACTIONS(4479), - [sym_placeholder] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_SLASH] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym__] = ACTIONS(4479), - [anon_sym_LT] = ACTIONS(4479), - [anon_sym_GT] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_COLON] = ACTIONS(4479), - [anon_sym_SQUOTE] = ACTIONS(4479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), - [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHusepackage] = ACTIONS(4479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), - [anon_sym_BSLASHinclude] = ACTIONS(4479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), - [anon_sym_BSLASHinput] = ACTIONS(4479), - [anon_sym_BSLASHsubfile] = ACTIONS(4479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), - [anon_sym_BSLASHbibliography] = ACTIONS(4479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), - [anon_sym_BSLASHincludesvg] = ACTIONS(4479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), - [anon_sym_BSLASHimport] = ACTIONS(4479), - [anon_sym_BSLASHsubimport] = ACTIONS(4479), - [anon_sym_BSLASHinputfrom] = ACTIONS(4479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), - [anon_sym_BSLASHincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), - [anon_sym_BSLASHcaption] = ACTIONS(4479), - [anon_sym_BSLASHcite] = ACTIONS(4479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCite] = ACTIONS(4479), - [anon_sym_BSLASHnocite] = ACTIONS(4479), - [anon_sym_BSLASHcitet] = ACTIONS(4479), - [anon_sym_BSLASHcitep] = ACTIONS(4479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteauthor] = ACTIONS(4479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitetitle] = ACTIONS(4479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteyear] = ACTIONS(4479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), - [anon_sym_BSLASHcitedate] = ACTIONS(4479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), - [anon_sym_BSLASHciteurl] = ACTIONS(4479), - [anon_sym_BSLASHfullcite] = ACTIONS(4479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), - [anon_sym_BSLASHcitealt] = ACTIONS(4479), - [anon_sym_BSLASHcitealp] = ACTIONS(4479), - [anon_sym_BSLASHcitetext] = ACTIONS(4479), - [anon_sym_BSLASHparencite] = ACTIONS(4479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHParencite] = ACTIONS(4479), - [anon_sym_BSLASHfootcite] = ACTIONS(4479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), - [anon_sym_BSLASHtextcite] = ACTIONS(4479), - [anon_sym_BSLASHTextcite] = ACTIONS(4479), - [anon_sym_BSLASHsmartcite] = ACTIONS(4479), - [anon_sym_BSLASHSmartcite] = ACTIONS(4479), - [anon_sym_BSLASHsupercite] = ACTIONS(4479), - [anon_sym_BSLASHautocite] = ACTIONS(4479), - [anon_sym_BSLASHAutocite] = ACTIONS(4479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), - [anon_sym_BSLASHvolcite] = ACTIONS(4479), - [anon_sym_BSLASHVolcite] = ACTIONS(4479), - [anon_sym_BSLASHpvolcite] = ACTIONS(4479), - [anon_sym_BSLASHPvolcite] = ACTIONS(4479), - [anon_sym_BSLASHfvolcite] = ACTIONS(4479), - [anon_sym_BSLASHftvolcite] = ACTIONS(4479), - [anon_sym_BSLASHsvolcite] = ACTIONS(4479), - [anon_sym_BSLASHSvolcite] = ACTIONS(4479), - [anon_sym_BSLASHtvolcite] = ACTIONS(4479), - [anon_sym_BSLASHTvolcite] = ACTIONS(4479), - [anon_sym_BSLASHavolcite] = ACTIONS(4479), - [anon_sym_BSLASHAvolcite] = ACTIONS(4479), - [anon_sym_BSLASHnotecite] = ACTIONS(4479), - [anon_sym_BSLASHNotecite] = ACTIONS(4479), - [anon_sym_BSLASHpnotecite] = ACTIONS(4479), - [anon_sym_BSLASHPnotecite] = ACTIONS(4479), - [anon_sym_BSLASHfnotecite] = ACTIONS(4479), - [anon_sym_BSLASHlabel] = ACTIONS(4479), - [anon_sym_BSLASHref] = ACTIONS(4479), - [anon_sym_BSLASHeqref] = ACTIONS(4479), - [anon_sym_BSLASHvref] = ACTIONS(4479), - [anon_sym_BSLASHVref] = ACTIONS(4479), - [anon_sym_BSLASHautoref] = ACTIONS(4479), - [anon_sym_BSLASHpageref] = ACTIONS(4479), - [anon_sym_BSLASHcref] = ACTIONS(4479), - [anon_sym_BSLASHCref] = ACTIONS(4479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnameCref] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), - [anon_sym_BSLASHlabelcref] = ACTIONS(4479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange] = ACTIONS(4479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHCrefrange] = ACTIONS(4479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), - [anon_sym_BSLASHnewlabel] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand] = ACTIONS(4479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), - [anon_sym_BSLASHdef] = ACTIONS(4479), - [anon_sym_BSLASHlet] = ACTIONS(4479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), - [anon_sym_BSLASHgls] = ACTIONS(4479), - [anon_sym_BSLASHGls] = ACTIONS(4479), - [anon_sym_BSLASHGLS] = ACTIONS(4479), - [anon_sym_BSLASHglspl] = ACTIONS(4479), - [anon_sym_BSLASHGlspl] = ACTIONS(4479), - [anon_sym_BSLASHGLSpl] = ACTIONS(4479), - [anon_sym_BSLASHglsdisp] = ACTIONS(4479), - [anon_sym_BSLASHglslink] = ACTIONS(4479), - [anon_sym_BSLASHglstext] = ACTIONS(4479), - [anon_sym_BSLASHGlstext] = ACTIONS(4479), - [anon_sym_BSLASHGLStext] = ACTIONS(4479), - [anon_sym_BSLASHglsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), - [anon_sym_BSLASHglsplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSplural] = ACTIONS(4479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), - [anon_sym_BSLASHglsname] = ACTIONS(4479), - [anon_sym_BSLASHGlsname] = ACTIONS(4479), - [anon_sym_BSLASHGLSname] = ACTIONS(4479), - [anon_sym_BSLASHglssymbol] = ACTIONS(4479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), - [anon_sym_BSLASHglsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), - [anon_sym_BSLASHglsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), - [anon_sym_BSLASHglsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), - [anon_sym_BSLASHglsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), - [anon_sym_BSLASHglsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), - [anon_sym_BSLASHnewacronym] = ACTIONS(4479), - [anon_sym_BSLASHacrshort] = ACTIONS(4479), - [anon_sym_BSLASHAcrshort] = ACTIONS(4479), - [anon_sym_BSLASHACRshort] = ACTIONS(4479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), - [anon_sym_BSLASHacrlong] = ACTIONS(4479), - [anon_sym_BSLASHAcrlong] = ACTIONS(4479), - [anon_sym_BSLASHACRlong] = ACTIONS(4479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), - [anon_sym_BSLASHacrfull] = ACTIONS(4479), - [anon_sym_BSLASHAcrfull] = ACTIONS(4479), - [anon_sym_BSLASHACRfull] = ACTIONS(4479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), - [anon_sym_BSLASHacs] = ACTIONS(4479), - [anon_sym_BSLASHAcs] = ACTIONS(4479), - [anon_sym_BSLASHacsp] = ACTIONS(4479), - [anon_sym_BSLASHAcsp] = ACTIONS(4479), - [anon_sym_BSLASHacl] = ACTIONS(4479), - [anon_sym_BSLASHAcl] = ACTIONS(4479), - [anon_sym_BSLASHaclp] = ACTIONS(4479), - [anon_sym_BSLASHAclp] = ACTIONS(4479), - [anon_sym_BSLASHacf] = ACTIONS(4479), - [anon_sym_BSLASHAcf] = ACTIONS(4479), - [anon_sym_BSLASHacfp] = ACTIONS(4479), - [anon_sym_BSLASHAcfp] = ACTIONS(4479), - [anon_sym_BSLASHac] = ACTIONS(4479), - [anon_sym_BSLASHAc] = ACTIONS(4479), - [anon_sym_BSLASHacp] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), - [anon_sym_BSLASHcolor] = ACTIONS(4479), - [anon_sym_BSLASHcolorbox] = ACTIONS(4479), - [anon_sym_BSLASHtextcolor] = ACTIONS(4479), - [anon_sym_BSLASHpagecolor] = ACTIONS(4479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), - [anon_sym_BSLASHtext] = ACTIONS(4479), - [anon_sym_BSLASHintertext] = ACTIONS(4479), - [anon_sym_shortintertext] = ACTIONS(4479), + [sym_command_name] = ACTIONS(4558), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_COMMA] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_BSLASHpart] = ACTIONS(4558), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddpart] = ACTIONS(4558), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4556), + [anon_sym_BSLASHchapter] = ACTIONS(4558), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddchap] = ACTIONS(4558), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsection] = ACTIONS(4558), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHaddsec] = ACTIONS(4558), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsection] = ACTIONS(4558), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(4558), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4558), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4556), + [anon_sym_BSLASHitem] = ACTIONS(4558), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4556), + [sym_word] = ACTIONS(4558), + [sym_placeholder] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4558), + [anon_sym_SLASH] = ACTIONS(4558), + [anon_sym_CARET] = ACTIONS(4558), + [anon_sym__] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4558), + [anon_sym_GT] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(4558), + [anon_sym_PIPE] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_SQUOTE] = ACTIONS(4558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4556), + [anon_sym_DOLLAR] = ACTIONS(4558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4556), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4556), + [anon_sym_BSLASHbegin] = ACTIONS(4558), + [anon_sym_BSLASHusepackage] = ACTIONS(4558), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4558), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4558), + [anon_sym_BSLASHinclude] = ACTIONS(4558), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4558), + [anon_sym_BSLASHinput] = ACTIONS(4558), + [anon_sym_BSLASHsubfile] = ACTIONS(4558), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4558), + [anon_sym_BSLASHbibliography] = ACTIONS(4558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4558), + [anon_sym_BSLASHincludesvg] = ACTIONS(4558), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4558), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4558), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4558), + [anon_sym_BSLASHimport] = ACTIONS(4558), + [anon_sym_BSLASHsubimport] = ACTIONS(4558), + [anon_sym_BSLASHinputfrom] = ACTIONS(4558), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4558), + [anon_sym_BSLASHincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4558), + [anon_sym_BSLASHcaption] = ACTIONS(4558), + [anon_sym_BSLASHcite] = ACTIONS(4558), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCite] = ACTIONS(4558), + [anon_sym_BSLASHnocite] = ACTIONS(4558), + [anon_sym_BSLASHcitet] = ACTIONS(4558), + [anon_sym_BSLASHcitep] = ACTIONS(4558), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteauthor] = ACTIONS(4558), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4558), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitetitle] = ACTIONS(4558), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteyear] = ACTIONS(4558), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4556), + [anon_sym_BSLASHcitedate] = ACTIONS(4558), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4556), + [anon_sym_BSLASHciteurl] = ACTIONS(4558), + [anon_sym_BSLASHfullcite] = ACTIONS(4558), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4558), + [anon_sym_BSLASHcitealt] = ACTIONS(4558), + [anon_sym_BSLASHcitealp] = ACTIONS(4558), + [anon_sym_BSLASHcitetext] = ACTIONS(4558), + [anon_sym_BSLASHparencite] = ACTIONS(4558), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHParencite] = ACTIONS(4558), + [anon_sym_BSLASHfootcite] = ACTIONS(4558), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4558), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4558), + [anon_sym_BSLASHtextcite] = ACTIONS(4558), + [anon_sym_BSLASHTextcite] = ACTIONS(4558), + [anon_sym_BSLASHsmartcite] = ACTIONS(4558), + [anon_sym_BSLASHSmartcite] = ACTIONS(4558), + [anon_sym_BSLASHsupercite] = ACTIONS(4558), + [anon_sym_BSLASHautocite] = ACTIONS(4558), + [anon_sym_BSLASHAutocite] = ACTIONS(4558), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4556), + [anon_sym_BSLASHvolcite] = ACTIONS(4558), + [anon_sym_BSLASHVolcite] = ACTIONS(4558), + [anon_sym_BSLASHpvolcite] = ACTIONS(4558), + [anon_sym_BSLASHPvolcite] = ACTIONS(4558), + [anon_sym_BSLASHfvolcite] = ACTIONS(4558), + [anon_sym_BSLASHftvolcite] = ACTIONS(4558), + [anon_sym_BSLASHsvolcite] = ACTIONS(4558), + [anon_sym_BSLASHSvolcite] = ACTIONS(4558), + [anon_sym_BSLASHtvolcite] = ACTIONS(4558), + [anon_sym_BSLASHTvolcite] = ACTIONS(4558), + [anon_sym_BSLASHavolcite] = ACTIONS(4558), + [anon_sym_BSLASHAvolcite] = ACTIONS(4558), + [anon_sym_BSLASHnotecite] = ACTIONS(4558), + [anon_sym_BSLASHNotecite] = ACTIONS(4558), + [anon_sym_BSLASHpnotecite] = ACTIONS(4558), + [anon_sym_BSLASHPnotecite] = ACTIONS(4558), + [anon_sym_BSLASHfnotecite] = ACTIONS(4558), + [anon_sym_BSLASHlabel] = ACTIONS(4558), + [anon_sym_BSLASHref] = ACTIONS(4558), + [anon_sym_BSLASHeqref] = ACTIONS(4558), + [anon_sym_BSLASHvref] = ACTIONS(4558), + [anon_sym_BSLASHVref] = ACTIONS(4558), + [anon_sym_BSLASHautoref] = ACTIONS(4558), + [anon_sym_BSLASHpageref] = ACTIONS(4558), + [anon_sym_BSLASHcref] = ACTIONS(4558), + [anon_sym_BSLASHCref] = ACTIONS(4558), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnameCref] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4558), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4558), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4558), + [anon_sym_BSLASHlabelcref] = ACTIONS(4558), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange] = ACTIONS(4558), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHCrefrange] = ACTIONS(4558), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4556), + [anon_sym_BSLASHnewlabel] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand] = ACTIONS(4558), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4558), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4558), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4556), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4558), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdef] = ACTIONS(4558), + [anon_sym_BSLASHlet] = ACTIONS(4558), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4558), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4558), + [anon_sym_BSLASHgls] = ACTIONS(4558), + [anon_sym_BSLASHGls] = ACTIONS(4558), + [anon_sym_BSLASHGLS] = ACTIONS(4558), + [anon_sym_BSLASHglspl] = ACTIONS(4558), + [anon_sym_BSLASHGlspl] = ACTIONS(4558), + [anon_sym_BSLASHGLSpl] = ACTIONS(4558), + [anon_sym_BSLASHglsdisp] = ACTIONS(4558), + [anon_sym_BSLASHglslink] = ACTIONS(4558), + [anon_sym_BSLASHglstext] = ACTIONS(4558), + [anon_sym_BSLASHGlstext] = ACTIONS(4558), + [anon_sym_BSLASHGLStext] = ACTIONS(4558), + [anon_sym_BSLASHglsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4558), + [anon_sym_BSLASHglsplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSplural] = ACTIONS(4558), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4558), + [anon_sym_BSLASHglsname] = ACTIONS(4558), + [anon_sym_BSLASHGlsname] = ACTIONS(4558), + [anon_sym_BSLASHGLSname] = ACTIONS(4558), + [anon_sym_BSLASHglssymbol] = ACTIONS(4558), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4558), + [anon_sym_BSLASHglsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4558), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4558), + [anon_sym_BSLASHglsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4558), + [anon_sym_BSLASHglsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4558), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4558), + [anon_sym_BSLASHglsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4558), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4558), + [anon_sym_BSLASHglsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4558), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4558), + [anon_sym_BSLASHnewacronym] = ACTIONS(4558), + [anon_sym_BSLASHacrshort] = ACTIONS(4558), + [anon_sym_BSLASHAcrshort] = ACTIONS(4558), + [anon_sym_BSLASHACRshort] = ACTIONS(4558), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4558), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4558), + [anon_sym_BSLASHacrlong] = ACTIONS(4558), + [anon_sym_BSLASHAcrlong] = ACTIONS(4558), + [anon_sym_BSLASHACRlong] = ACTIONS(4558), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4558), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4558), + [anon_sym_BSLASHacrfull] = ACTIONS(4558), + [anon_sym_BSLASHAcrfull] = ACTIONS(4558), + [anon_sym_BSLASHACRfull] = ACTIONS(4558), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4558), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4558), + [anon_sym_BSLASHacs] = ACTIONS(4558), + [anon_sym_BSLASHAcs] = ACTIONS(4558), + [anon_sym_BSLASHacsp] = ACTIONS(4558), + [anon_sym_BSLASHAcsp] = ACTIONS(4558), + [anon_sym_BSLASHacl] = ACTIONS(4558), + [anon_sym_BSLASHAcl] = ACTIONS(4558), + [anon_sym_BSLASHaclp] = ACTIONS(4558), + [anon_sym_BSLASHAclp] = ACTIONS(4558), + [anon_sym_BSLASHacf] = ACTIONS(4558), + [anon_sym_BSLASHAcf] = ACTIONS(4558), + [anon_sym_BSLASHacfp] = ACTIONS(4558), + [anon_sym_BSLASHAcfp] = ACTIONS(4558), + [anon_sym_BSLASHac] = ACTIONS(4558), + [anon_sym_BSLASHAc] = ACTIONS(4558), + [anon_sym_BSLASHacp] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4558), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4558), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4558), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4558), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4558), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4556), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4558), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4558), + [anon_sym_BSLASHcolor] = ACTIONS(4558), + [anon_sym_BSLASHcolorbox] = ACTIONS(4558), + [anon_sym_BSLASHtextcolor] = ACTIONS(4558), + [anon_sym_BSLASHpagecolor] = ACTIONS(4558), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4558), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4558), + [anon_sym_BSLASHtext] = ACTIONS(4558), + [anon_sym_BSLASHintertext] = ACTIONS(4558), + [anon_sym_shortintertext] = ACTIONS(4558), }, [606] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [607] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [608] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [609] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [610] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym_RPAREN] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4473), - [anon_sym_RBRACK] = ACTIONS(4473), - [anon_sym_COMMA] = ACTIONS(4473), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_BSLASHpart] = ACTIONS(4475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddpart] = ACTIONS(4475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), - [anon_sym_BSLASHchapter] = ACTIONS(4475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddchap] = ACTIONS(4475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsection] = ACTIONS(4475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHaddsec] = ACTIONS(4475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), - [anon_sym_BSLASHparagraph] = ACTIONS(4475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), - [anon_sym_BSLASHitem] = ACTIONS(4475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [sym_word] = ACTIONS(4475), - [sym_placeholder] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym__] = ACTIONS(4475), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_PIPE] = ACTIONS(4475), - [anon_sym_COLON] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(4475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), - [anon_sym_BSLASHbegin] = ACTIONS(4475), - [anon_sym_BSLASHusepackage] = ACTIONS(4475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), - [anon_sym_BSLASHinclude] = ACTIONS(4475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), - [anon_sym_BSLASHinput] = ACTIONS(4475), - [anon_sym_BSLASHsubfile] = ACTIONS(4475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), - [anon_sym_BSLASHbibliography] = ACTIONS(4475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), - [anon_sym_BSLASHimport] = ACTIONS(4475), - [anon_sym_BSLASHsubimport] = ACTIONS(4475), - [anon_sym_BSLASHinputfrom] = ACTIONS(4475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), - [anon_sym_BSLASHincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), - [anon_sym_BSLASHcaption] = ACTIONS(4475), - [anon_sym_BSLASHcite] = ACTIONS(4475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCite] = ACTIONS(4475), - [anon_sym_BSLASHnocite] = ACTIONS(4475), - [anon_sym_BSLASHcitet] = ACTIONS(4475), - [anon_sym_BSLASHcitep] = ACTIONS(4475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteauthor] = ACTIONS(4475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitetitle] = ACTIONS(4475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteyear] = ACTIONS(4475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), - [anon_sym_BSLASHcitedate] = ACTIONS(4475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), - [anon_sym_BSLASHciteurl] = ACTIONS(4475), - [anon_sym_BSLASHfullcite] = ACTIONS(4475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), - [anon_sym_BSLASHcitealt] = ACTIONS(4475), - [anon_sym_BSLASHcitealp] = ACTIONS(4475), - [anon_sym_BSLASHcitetext] = ACTIONS(4475), - [anon_sym_BSLASHparencite] = ACTIONS(4475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHParencite] = ACTIONS(4475), - [anon_sym_BSLASHfootcite] = ACTIONS(4475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), - [anon_sym_BSLASHtextcite] = ACTIONS(4475), - [anon_sym_BSLASHTextcite] = ACTIONS(4475), - [anon_sym_BSLASHsmartcite] = ACTIONS(4475), - [anon_sym_BSLASHSmartcite] = ACTIONS(4475), - [anon_sym_BSLASHsupercite] = ACTIONS(4475), - [anon_sym_BSLASHautocite] = ACTIONS(4475), - [anon_sym_BSLASHAutocite] = ACTIONS(4475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), - [anon_sym_BSLASHvolcite] = ACTIONS(4475), - [anon_sym_BSLASHVolcite] = ACTIONS(4475), - [anon_sym_BSLASHpvolcite] = ACTIONS(4475), - [anon_sym_BSLASHPvolcite] = ACTIONS(4475), - [anon_sym_BSLASHfvolcite] = ACTIONS(4475), - [anon_sym_BSLASHftvolcite] = ACTIONS(4475), - [anon_sym_BSLASHsvolcite] = ACTIONS(4475), - [anon_sym_BSLASHSvolcite] = ACTIONS(4475), - [anon_sym_BSLASHtvolcite] = ACTIONS(4475), - [anon_sym_BSLASHTvolcite] = ACTIONS(4475), - [anon_sym_BSLASHavolcite] = ACTIONS(4475), - [anon_sym_BSLASHAvolcite] = ACTIONS(4475), - [anon_sym_BSLASHnotecite] = ACTIONS(4475), - [anon_sym_BSLASHNotecite] = ACTIONS(4475), - [anon_sym_BSLASHpnotecite] = ACTIONS(4475), - [anon_sym_BSLASHPnotecite] = ACTIONS(4475), - [anon_sym_BSLASHfnotecite] = ACTIONS(4475), - [anon_sym_BSLASHlabel] = ACTIONS(4475), - [anon_sym_BSLASHref] = ACTIONS(4475), - [anon_sym_BSLASHeqref] = ACTIONS(4475), - [anon_sym_BSLASHvref] = ACTIONS(4475), - [anon_sym_BSLASHVref] = ACTIONS(4475), - [anon_sym_BSLASHautoref] = ACTIONS(4475), - [anon_sym_BSLASHpageref] = ACTIONS(4475), - [anon_sym_BSLASHcref] = ACTIONS(4475), - [anon_sym_BSLASHCref] = ACTIONS(4475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnameCref] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), - [anon_sym_BSLASHlabelcref] = ACTIONS(4475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange] = ACTIONS(4475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHCrefrange] = ACTIONS(4475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), - [anon_sym_BSLASHnewlabel] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand] = ACTIONS(4475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), - [anon_sym_BSLASHgls] = ACTIONS(4475), - [anon_sym_BSLASHGls] = ACTIONS(4475), - [anon_sym_BSLASHGLS] = ACTIONS(4475), - [anon_sym_BSLASHglspl] = ACTIONS(4475), - [anon_sym_BSLASHGlspl] = ACTIONS(4475), - [anon_sym_BSLASHGLSpl] = ACTIONS(4475), - [anon_sym_BSLASHglsdisp] = ACTIONS(4475), - [anon_sym_BSLASHglslink] = ACTIONS(4475), - [anon_sym_BSLASHglstext] = ACTIONS(4475), - [anon_sym_BSLASHGlstext] = ACTIONS(4475), - [anon_sym_BSLASHGLStext] = ACTIONS(4475), - [anon_sym_BSLASHglsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), - [anon_sym_BSLASHglsplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSplural] = ACTIONS(4475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), - [anon_sym_BSLASHglsname] = ACTIONS(4475), - [anon_sym_BSLASHGlsname] = ACTIONS(4475), - [anon_sym_BSLASHGLSname] = ACTIONS(4475), - [anon_sym_BSLASHglssymbol] = ACTIONS(4475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), - [anon_sym_BSLASHglsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), - [anon_sym_BSLASHglsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), - [anon_sym_BSLASHglsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), - [anon_sym_BSLASHglsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), - [anon_sym_BSLASHglsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), - [anon_sym_BSLASHnewacronym] = ACTIONS(4475), - [anon_sym_BSLASHacrshort] = ACTIONS(4475), - [anon_sym_BSLASHAcrshort] = ACTIONS(4475), - [anon_sym_BSLASHACRshort] = ACTIONS(4475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), - [anon_sym_BSLASHacrlong] = ACTIONS(4475), - [anon_sym_BSLASHAcrlong] = ACTIONS(4475), - [anon_sym_BSLASHACRlong] = ACTIONS(4475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), - [anon_sym_BSLASHacrfull] = ACTIONS(4475), - [anon_sym_BSLASHAcrfull] = ACTIONS(4475), - [anon_sym_BSLASHACRfull] = ACTIONS(4475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), - [anon_sym_BSLASHacs] = ACTIONS(4475), - [anon_sym_BSLASHAcs] = ACTIONS(4475), - [anon_sym_BSLASHacsp] = ACTIONS(4475), - [anon_sym_BSLASHAcsp] = ACTIONS(4475), - [anon_sym_BSLASHacl] = ACTIONS(4475), - [anon_sym_BSLASHAcl] = ACTIONS(4475), - [anon_sym_BSLASHaclp] = ACTIONS(4475), - [anon_sym_BSLASHAclp] = ACTIONS(4475), - [anon_sym_BSLASHacf] = ACTIONS(4475), - [anon_sym_BSLASHAcf] = ACTIONS(4475), - [anon_sym_BSLASHacfp] = ACTIONS(4475), - [anon_sym_BSLASHAcfp] = ACTIONS(4475), - [anon_sym_BSLASHac] = ACTIONS(4475), - [anon_sym_BSLASHAc] = ACTIONS(4475), - [anon_sym_BSLASHacp] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), - [anon_sym_BSLASHcolor] = ACTIONS(4475), - [anon_sym_BSLASHcolorbox] = ACTIONS(4475), - [anon_sym_BSLASHtextcolor] = ACTIONS(4475), - [anon_sym_BSLASHpagecolor] = ACTIONS(4475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), - [anon_sym_BSLASHtext] = ACTIONS(4475), - [anon_sym_BSLASHintertext] = ACTIONS(4475), - [anon_sym_shortintertext] = ACTIONS(4475), + [sym_command_name] = ACTIONS(4554), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASHpart] = ACTIONS(4554), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddpart] = ACTIONS(4554), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4552), + [anon_sym_BSLASHchapter] = ACTIONS(4554), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddchap] = ACTIONS(4554), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsection] = ACTIONS(4554), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHaddsec] = ACTIONS(4554), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4552), + [anon_sym_BSLASHparagraph] = ACTIONS(4554), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4554), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4552), + [anon_sym_BSLASHitem] = ACTIONS(4554), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4552), + [anon_sym_LBRACE] = ACTIONS(4552), + [sym_word] = ACTIONS(4554), + [sym_placeholder] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_SLASH] = ACTIONS(4554), + [anon_sym_CARET] = ACTIONS(4554), + [anon_sym__] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4554), + [anon_sym_GT] = ACTIONS(4554), + [anon_sym_BANG] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_SQUOTE] = ACTIONS(4554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4552), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4552), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4552), + [anon_sym_BSLASHbegin] = ACTIONS(4554), + [anon_sym_BSLASHusepackage] = ACTIONS(4554), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4554), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4554), + [anon_sym_BSLASHinclude] = ACTIONS(4554), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4554), + [anon_sym_BSLASHinput] = ACTIONS(4554), + [anon_sym_BSLASHsubfile] = ACTIONS(4554), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4554), + [anon_sym_BSLASHbibliography] = ACTIONS(4554), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4554), + [anon_sym_BSLASHincludesvg] = ACTIONS(4554), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4554), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4554), + [anon_sym_BSLASHimport] = ACTIONS(4554), + [anon_sym_BSLASHsubimport] = ACTIONS(4554), + [anon_sym_BSLASHinputfrom] = ACTIONS(4554), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4554), + [anon_sym_BSLASHincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4554), + [anon_sym_BSLASHcaption] = ACTIONS(4554), + [anon_sym_BSLASHcite] = ACTIONS(4554), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCite] = ACTIONS(4554), + [anon_sym_BSLASHnocite] = ACTIONS(4554), + [anon_sym_BSLASHcitet] = ACTIONS(4554), + [anon_sym_BSLASHcitep] = ACTIONS(4554), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteauthor] = ACTIONS(4554), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4554), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitetitle] = ACTIONS(4554), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteyear] = ACTIONS(4554), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4552), + [anon_sym_BSLASHcitedate] = ACTIONS(4554), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4552), + [anon_sym_BSLASHciteurl] = ACTIONS(4554), + [anon_sym_BSLASHfullcite] = ACTIONS(4554), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4554), + [anon_sym_BSLASHcitealt] = ACTIONS(4554), + [anon_sym_BSLASHcitealp] = ACTIONS(4554), + [anon_sym_BSLASHcitetext] = ACTIONS(4554), + [anon_sym_BSLASHparencite] = ACTIONS(4554), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHParencite] = ACTIONS(4554), + [anon_sym_BSLASHfootcite] = ACTIONS(4554), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4554), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4554), + [anon_sym_BSLASHtextcite] = ACTIONS(4554), + [anon_sym_BSLASHTextcite] = ACTIONS(4554), + [anon_sym_BSLASHsmartcite] = ACTIONS(4554), + [anon_sym_BSLASHSmartcite] = ACTIONS(4554), + [anon_sym_BSLASHsupercite] = ACTIONS(4554), + [anon_sym_BSLASHautocite] = ACTIONS(4554), + [anon_sym_BSLASHAutocite] = ACTIONS(4554), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4552), + [anon_sym_BSLASHvolcite] = ACTIONS(4554), + [anon_sym_BSLASHVolcite] = ACTIONS(4554), + [anon_sym_BSLASHpvolcite] = ACTIONS(4554), + [anon_sym_BSLASHPvolcite] = ACTIONS(4554), + [anon_sym_BSLASHfvolcite] = ACTIONS(4554), + [anon_sym_BSLASHftvolcite] = ACTIONS(4554), + [anon_sym_BSLASHsvolcite] = ACTIONS(4554), + [anon_sym_BSLASHSvolcite] = ACTIONS(4554), + [anon_sym_BSLASHtvolcite] = ACTIONS(4554), + [anon_sym_BSLASHTvolcite] = ACTIONS(4554), + [anon_sym_BSLASHavolcite] = ACTIONS(4554), + [anon_sym_BSLASHAvolcite] = ACTIONS(4554), + [anon_sym_BSLASHnotecite] = ACTIONS(4554), + [anon_sym_BSLASHNotecite] = ACTIONS(4554), + [anon_sym_BSLASHpnotecite] = ACTIONS(4554), + [anon_sym_BSLASHPnotecite] = ACTIONS(4554), + [anon_sym_BSLASHfnotecite] = ACTIONS(4554), + [anon_sym_BSLASHlabel] = ACTIONS(4554), + [anon_sym_BSLASHref] = ACTIONS(4554), + [anon_sym_BSLASHeqref] = ACTIONS(4554), + [anon_sym_BSLASHvref] = ACTIONS(4554), + [anon_sym_BSLASHVref] = ACTIONS(4554), + [anon_sym_BSLASHautoref] = ACTIONS(4554), + [anon_sym_BSLASHpageref] = ACTIONS(4554), + [anon_sym_BSLASHcref] = ACTIONS(4554), + [anon_sym_BSLASHCref] = ACTIONS(4554), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnameCref] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4554), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4554), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4554), + [anon_sym_BSLASHlabelcref] = ACTIONS(4554), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange] = ACTIONS(4554), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHCrefrange] = ACTIONS(4554), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4552), + [anon_sym_BSLASHnewlabel] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand] = ACTIONS(4554), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4554), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4554), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4552), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdef] = ACTIONS(4554), + [anon_sym_BSLASHlet] = ACTIONS(4554), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4554), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4554), + [anon_sym_BSLASHgls] = ACTIONS(4554), + [anon_sym_BSLASHGls] = ACTIONS(4554), + [anon_sym_BSLASHGLS] = ACTIONS(4554), + [anon_sym_BSLASHglspl] = ACTIONS(4554), + [anon_sym_BSLASHGlspl] = ACTIONS(4554), + [anon_sym_BSLASHGLSpl] = ACTIONS(4554), + [anon_sym_BSLASHglsdisp] = ACTIONS(4554), + [anon_sym_BSLASHglslink] = ACTIONS(4554), + [anon_sym_BSLASHglstext] = ACTIONS(4554), + [anon_sym_BSLASHGlstext] = ACTIONS(4554), + [anon_sym_BSLASHGLStext] = ACTIONS(4554), + [anon_sym_BSLASHglsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4554), + [anon_sym_BSLASHglsplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSplural] = ACTIONS(4554), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4554), + [anon_sym_BSLASHglsname] = ACTIONS(4554), + [anon_sym_BSLASHGlsname] = ACTIONS(4554), + [anon_sym_BSLASHGLSname] = ACTIONS(4554), + [anon_sym_BSLASHglssymbol] = ACTIONS(4554), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4554), + [anon_sym_BSLASHglsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4554), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4554), + [anon_sym_BSLASHglsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4554), + [anon_sym_BSLASHglsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4554), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4554), + [anon_sym_BSLASHglsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4554), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4554), + [anon_sym_BSLASHglsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4554), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4554), + [anon_sym_BSLASHnewacronym] = ACTIONS(4554), + [anon_sym_BSLASHacrshort] = ACTIONS(4554), + [anon_sym_BSLASHAcrshort] = ACTIONS(4554), + [anon_sym_BSLASHACRshort] = ACTIONS(4554), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4554), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4554), + [anon_sym_BSLASHacrlong] = ACTIONS(4554), + [anon_sym_BSLASHAcrlong] = ACTIONS(4554), + [anon_sym_BSLASHACRlong] = ACTIONS(4554), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4554), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4554), + [anon_sym_BSLASHacrfull] = ACTIONS(4554), + [anon_sym_BSLASHAcrfull] = ACTIONS(4554), + [anon_sym_BSLASHACRfull] = ACTIONS(4554), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4554), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4554), + [anon_sym_BSLASHacs] = ACTIONS(4554), + [anon_sym_BSLASHAcs] = ACTIONS(4554), + [anon_sym_BSLASHacsp] = ACTIONS(4554), + [anon_sym_BSLASHAcsp] = ACTIONS(4554), + [anon_sym_BSLASHacl] = ACTIONS(4554), + [anon_sym_BSLASHAcl] = ACTIONS(4554), + [anon_sym_BSLASHaclp] = ACTIONS(4554), + [anon_sym_BSLASHAclp] = ACTIONS(4554), + [anon_sym_BSLASHacf] = ACTIONS(4554), + [anon_sym_BSLASHAcf] = ACTIONS(4554), + [anon_sym_BSLASHacfp] = ACTIONS(4554), + [anon_sym_BSLASHAcfp] = ACTIONS(4554), + [anon_sym_BSLASHac] = ACTIONS(4554), + [anon_sym_BSLASHAc] = ACTIONS(4554), + [anon_sym_BSLASHacp] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4554), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4554), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4554), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4554), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4554), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4552), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4554), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4554), + [anon_sym_BSLASHcolor] = ACTIONS(4554), + [anon_sym_BSLASHcolorbox] = ACTIONS(4554), + [anon_sym_BSLASHtextcolor] = ACTIONS(4554), + [anon_sym_BSLASHpagecolor] = ACTIONS(4554), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), + [anon_sym_BSLASHtext] = ACTIONS(4554), + [anon_sym_BSLASHintertext] = ACTIONS(4554), + [anon_sym_shortintertext] = ACTIONS(4554), }, [611] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_BSLASHpart] = ACTIONS(1923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(1923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddsec] = ACTIONS(1923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), - [anon_sym_BSLASHparagraph] = ACTIONS(1923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1921), - [sym_word] = ACTIONS(1923), - [sym_placeholder] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym__] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(1923), - [anon_sym_BSLASHusepackage] = ACTIONS(1923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), - [anon_sym_BSLASHinclude] = ACTIONS(1923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), - [anon_sym_BSLASHinput] = ACTIONS(1923), - [anon_sym_BSLASHsubfile] = ACTIONS(1923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), - [anon_sym_BSLASHbibliography] = ACTIONS(1923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), - [anon_sym_BSLASHincludesvg] = ACTIONS(1923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), - [anon_sym_BSLASHimport] = ACTIONS(1923), - [anon_sym_BSLASHsubimport] = ACTIONS(1923), - [anon_sym_BSLASHinputfrom] = ACTIONS(1923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), - [anon_sym_BSLASHincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), - [anon_sym_BSLASHcaption] = ACTIONS(1923), - [anon_sym_BSLASHcite] = ACTIONS(1923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCite] = ACTIONS(1923), - [anon_sym_BSLASHnocite] = ACTIONS(1923), - [anon_sym_BSLASHcitet] = ACTIONS(1923), - [anon_sym_BSLASHcitep] = ACTIONS(1923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteauthor] = ACTIONS(1923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitetitle] = ACTIONS(1923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteyear] = ACTIONS(1923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), - [anon_sym_BSLASHcitedate] = ACTIONS(1923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), - [anon_sym_BSLASHciteurl] = ACTIONS(1923), - [anon_sym_BSLASHfullcite] = ACTIONS(1923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), - [anon_sym_BSLASHcitealt] = ACTIONS(1923), - [anon_sym_BSLASHcitealp] = ACTIONS(1923), - [anon_sym_BSLASHcitetext] = ACTIONS(1923), - [anon_sym_BSLASHparencite] = ACTIONS(1923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHParencite] = ACTIONS(1923), - [anon_sym_BSLASHfootcite] = ACTIONS(1923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), - [anon_sym_BSLASHtextcite] = ACTIONS(1923), - [anon_sym_BSLASHTextcite] = ACTIONS(1923), - [anon_sym_BSLASHsmartcite] = ACTIONS(1923), - [anon_sym_BSLASHSmartcite] = ACTIONS(1923), - [anon_sym_BSLASHsupercite] = ACTIONS(1923), - [anon_sym_BSLASHautocite] = ACTIONS(1923), - [anon_sym_BSLASHAutocite] = ACTIONS(1923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), - [anon_sym_BSLASHvolcite] = ACTIONS(1923), - [anon_sym_BSLASHVolcite] = ACTIONS(1923), - [anon_sym_BSLASHpvolcite] = ACTIONS(1923), - [anon_sym_BSLASHPvolcite] = ACTIONS(1923), - [anon_sym_BSLASHfvolcite] = ACTIONS(1923), - [anon_sym_BSLASHftvolcite] = ACTIONS(1923), - [anon_sym_BSLASHsvolcite] = ACTIONS(1923), - [anon_sym_BSLASHSvolcite] = ACTIONS(1923), - [anon_sym_BSLASHtvolcite] = ACTIONS(1923), - [anon_sym_BSLASHTvolcite] = ACTIONS(1923), - [anon_sym_BSLASHavolcite] = ACTIONS(1923), - [anon_sym_BSLASHAvolcite] = ACTIONS(1923), - [anon_sym_BSLASHnotecite] = ACTIONS(1923), - [anon_sym_BSLASHNotecite] = ACTIONS(1923), - [anon_sym_BSLASHpnotecite] = ACTIONS(1923), - [anon_sym_BSLASHPnotecite] = ACTIONS(1923), - [anon_sym_BSLASHfnotecite] = ACTIONS(1923), - [anon_sym_BSLASHlabel] = ACTIONS(1923), - [anon_sym_BSLASHref] = ACTIONS(1923), - [anon_sym_BSLASHeqref] = ACTIONS(1923), - [anon_sym_BSLASHvref] = ACTIONS(1923), - [anon_sym_BSLASHVref] = ACTIONS(1923), - [anon_sym_BSLASHautoref] = ACTIONS(1923), - [anon_sym_BSLASHpageref] = ACTIONS(1923), - [anon_sym_BSLASHcref] = ACTIONS(1923), - [anon_sym_BSLASHCref] = ACTIONS(1923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnameCref] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), - [anon_sym_BSLASHlabelcref] = ACTIONS(1923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange] = ACTIONS(1923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHCrefrange] = ACTIONS(1923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), - [anon_sym_BSLASHnewlabel] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand] = ACTIONS(1923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), - [anon_sym_BSLASHdef] = ACTIONS(1923), - [anon_sym_BSLASHlet] = ACTIONS(1923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), - [anon_sym_BSLASHgls] = ACTIONS(1923), - [anon_sym_BSLASHGls] = ACTIONS(1923), - [anon_sym_BSLASHGLS] = ACTIONS(1923), - [anon_sym_BSLASHglspl] = ACTIONS(1923), - [anon_sym_BSLASHGlspl] = ACTIONS(1923), - [anon_sym_BSLASHGLSpl] = ACTIONS(1923), - [anon_sym_BSLASHglsdisp] = ACTIONS(1923), - [anon_sym_BSLASHglslink] = ACTIONS(1923), - [anon_sym_BSLASHglstext] = ACTIONS(1923), - [anon_sym_BSLASHGlstext] = ACTIONS(1923), - [anon_sym_BSLASHGLStext] = ACTIONS(1923), - [anon_sym_BSLASHglsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), - [anon_sym_BSLASHglsplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSplural] = ACTIONS(1923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), - [anon_sym_BSLASHglsname] = ACTIONS(1923), - [anon_sym_BSLASHGlsname] = ACTIONS(1923), - [anon_sym_BSLASHGLSname] = ACTIONS(1923), - [anon_sym_BSLASHglssymbol] = ACTIONS(1923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), - [anon_sym_BSLASHglsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), - [anon_sym_BSLASHglsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), - [anon_sym_BSLASHglsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), - [anon_sym_BSLASHglsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), - [anon_sym_BSLASHglsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), - [anon_sym_BSLASHnewacronym] = ACTIONS(1923), - [anon_sym_BSLASHacrshort] = ACTIONS(1923), - [anon_sym_BSLASHAcrshort] = ACTIONS(1923), - [anon_sym_BSLASHACRshort] = ACTIONS(1923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), - [anon_sym_BSLASHacrlong] = ACTIONS(1923), - [anon_sym_BSLASHAcrlong] = ACTIONS(1923), - [anon_sym_BSLASHACRlong] = ACTIONS(1923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), - [anon_sym_BSLASHacrfull] = ACTIONS(1923), - [anon_sym_BSLASHAcrfull] = ACTIONS(1923), - [anon_sym_BSLASHACRfull] = ACTIONS(1923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), - [anon_sym_BSLASHacs] = ACTIONS(1923), - [anon_sym_BSLASHAcs] = ACTIONS(1923), - [anon_sym_BSLASHacsp] = ACTIONS(1923), - [anon_sym_BSLASHAcsp] = ACTIONS(1923), - [anon_sym_BSLASHacl] = ACTIONS(1923), - [anon_sym_BSLASHAcl] = ACTIONS(1923), - [anon_sym_BSLASHaclp] = ACTIONS(1923), - [anon_sym_BSLASHAclp] = ACTIONS(1923), - [anon_sym_BSLASHacf] = ACTIONS(1923), - [anon_sym_BSLASHAcf] = ACTIONS(1923), - [anon_sym_BSLASHacfp] = ACTIONS(1923), - [anon_sym_BSLASHAcfp] = ACTIONS(1923), - [anon_sym_BSLASHac] = ACTIONS(1923), - [anon_sym_BSLASHAc] = ACTIONS(1923), - [anon_sym_BSLASHacp] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), - [anon_sym_BSLASHcolor] = ACTIONS(1923), - [anon_sym_BSLASHcolorbox] = ACTIONS(1923), - [anon_sym_BSLASHtextcolor] = ACTIONS(1923), - [anon_sym_BSLASHpagecolor] = ACTIONS(1923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), - [anon_sym_BSLASHtext] = ACTIONS(1923), - [anon_sym_BSLASHintertext] = ACTIONS(1923), - [anon_sym_shortintertext] = ACTIONS(1923), + [sym_command_name] = ACTIONS(1948), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_BSLASHpart] = ACTIONS(1948), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddpart] = ACTIONS(1948), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1946), + [anon_sym_BSLASHchapter] = ACTIONS(1948), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddchap] = ACTIONS(1948), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsection] = ACTIONS(1948), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHaddsec] = ACTIONS(1948), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1948), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1946), + [anon_sym_BSLASHparagraph] = ACTIONS(1948), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1948), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1946), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1946), + [sym_word] = ACTIONS(1948), + [sym_placeholder] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym__] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1946), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1946), + [anon_sym_BSLASHbegin] = ACTIONS(1948), + [anon_sym_BSLASHusepackage] = ACTIONS(1948), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1948), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1948), + [anon_sym_BSLASHinclude] = ACTIONS(1948), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1948), + [anon_sym_BSLASHinput] = ACTIONS(1948), + [anon_sym_BSLASHsubfile] = ACTIONS(1948), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1948), + [anon_sym_BSLASHbibliography] = ACTIONS(1948), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1948), + [anon_sym_BSLASHincludesvg] = ACTIONS(1948), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1948), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1948), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1948), + [anon_sym_BSLASHimport] = ACTIONS(1948), + [anon_sym_BSLASHsubimport] = ACTIONS(1948), + [anon_sym_BSLASHinputfrom] = ACTIONS(1948), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1948), + [anon_sym_BSLASHincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1948), + [anon_sym_BSLASHcaption] = ACTIONS(1948), + [anon_sym_BSLASHcite] = ACTIONS(1948), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCite] = ACTIONS(1948), + [anon_sym_BSLASHnocite] = ACTIONS(1948), + [anon_sym_BSLASHcitet] = ACTIONS(1948), + [anon_sym_BSLASHcitep] = ACTIONS(1948), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteauthor] = ACTIONS(1948), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1948), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitetitle] = ACTIONS(1948), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteyear] = ACTIONS(1948), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1946), + [anon_sym_BSLASHcitedate] = ACTIONS(1948), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1946), + [anon_sym_BSLASHciteurl] = ACTIONS(1948), + [anon_sym_BSLASHfullcite] = ACTIONS(1948), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1948), + [anon_sym_BSLASHcitealt] = ACTIONS(1948), + [anon_sym_BSLASHcitealp] = ACTIONS(1948), + [anon_sym_BSLASHcitetext] = ACTIONS(1948), + [anon_sym_BSLASHparencite] = ACTIONS(1948), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHParencite] = ACTIONS(1948), + [anon_sym_BSLASHfootcite] = ACTIONS(1948), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1948), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1948), + [anon_sym_BSLASHtextcite] = ACTIONS(1948), + [anon_sym_BSLASHTextcite] = ACTIONS(1948), + [anon_sym_BSLASHsmartcite] = ACTIONS(1948), + [anon_sym_BSLASHSmartcite] = ACTIONS(1948), + [anon_sym_BSLASHsupercite] = ACTIONS(1948), + [anon_sym_BSLASHautocite] = ACTIONS(1948), + [anon_sym_BSLASHAutocite] = ACTIONS(1948), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1946), + [anon_sym_BSLASHvolcite] = ACTIONS(1948), + [anon_sym_BSLASHVolcite] = ACTIONS(1948), + [anon_sym_BSLASHpvolcite] = ACTIONS(1948), + [anon_sym_BSLASHPvolcite] = ACTIONS(1948), + [anon_sym_BSLASHfvolcite] = ACTIONS(1948), + [anon_sym_BSLASHftvolcite] = ACTIONS(1948), + [anon_sym_BSLASHsvolcite] = ACTIONS(1948), + [anon_sym_BSLASHSvolcite] = ACTIONS(1948), + [anon_sym_BSLASHtvolcite] = ACTIONS(1948), + [anon_sym_BSLASHTvolcite] = ACTIONS(1948), + [anon_sym_BSLASHavolcite] = ACTIONS(1948), + [anon_sym_BSLASHAvolcite] = ACTIONS(1948), + [anon_sym_BSLASHnotecite] = ACTIONS(1948), + [anon_sym_BSLASHNotecite] = ACTIONS(1948), + [anon_sym_BSLASHpnotecite] = ACTIONS(1948), + [anon_sym_BSLASHPnotecite] = ACTIONS(1948), + [anon_sym_BSLASHfnotecite] = ACTIONS(1948), + [anon_sym_BSLASHlabel] = ACTIONS(1948), + [anon_sym_BSLASHref] = ACTIONS(1948), + [anon_sym_BSLASHeqref] = ACTIONS(1948), + [anon_sym_BSLASHvref] = ACTIONS(1948), + [anon_sym_BSLASHVref] = ACTIONS(1948), + [anon_sym_BSLASHautoref] = ACTIONS(1948), + [anon_sym_BSLASHpageref] = ACTIONS(1948), + [anon_sym_BSLASHcref] = ACTIONS(1948), + [anon_sym_BSLASHCref] = ACTIONS(1948), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnameCref] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1948), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1948), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1948), + [anon_sym_BSLASHlabelcref] = ACTIONS(1948), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange] = ACTIONS(1948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHCrefrange] = ACTIONS(1948), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1946), + [anon_sym_BSLASHnewlabel] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand] = ACTIONS(1948), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1948), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1948), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1946), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdef] = ACTIONS(1948), + [anon_sym_BSLASHlet] = ACTIONS(1948), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1948), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1948), + [anon_sym_BSLASHgls] = ACTIONS(1948), + [anon_sym_BSLASHGls] = ACTIONS(1948), + [anon_sym_BSLASHGLS] = ACTIONS(1948), + [anon_sym_BSLASHglspl] = ACTIONS(1948), + [anon_sym_BSLASHGlspl] = ACTIONS(1948), + [anon_sym_BSLASHGLSpl] = ACTIONS(1948), + [anon_sym_BSLASHglsdisp] = ACTIONS(1948), + [anon_sym_BSLASHglslink] = ACTIONS(1948), + [anon_sym_BSLASHglstext] = ACTIONS(1948), + [anon_sym_BSLASHGlstext] = ACTIONS(1948), + [anon_sym_BSLASHGLStext] = ACTIONS(1948), + [anon_sym_BSLASHglsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1948), + [anon_sym_BSLASHglsplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSplural] = ACTIONS(1948), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1948), + [anon_sym_BSLASHglsname] = ACTIONS(1948), + [anon_sym_BSLASHGlsname] = ACTIONS(1948), + [anon_sym_BSLASHGLSname] = ACTIONS(1948), + [anon_sym_BSLASHglssymbol] = ACTIONS(1948), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1948), + [anon_sym_BSLASHglsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1948), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1948), + [anon_sym_BSLASHglsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1948), + [anon_sym_BSLASHglsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1948), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1948), + [anon_sym_BSLASHglsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1948), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1948), + [anon_sym_BSLASHglsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1948), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1948), + [anon_sym_BSLASHnewacronym] = ACTIONS(1948), + [anon_sym_BSLASHacrshort] = ACTIONS(1948), + [anon_sym_BSLASHAcrshort] = ACTIONS(1948), + [anon_sym_BSLASHACRshort] = ACTIONS(1948), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1948), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1948), + [anon_sym_BSLASHacrlong] = ACTIONS(1948), + [anon_sym_BSLASHAcrlong] = ACTIONS(1948), + [anon_sym_BSLASHACRlong] = ACTIONS(1948), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1948), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1948), + [anon_sym_BSLASHacrfull] = ACTIONS(1948), + [anon_sym_BSLASHAcrfull] = ACTIONS(1948), + [anon_sym_BSLASHACRfull] = ACTIONS(1948), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1948), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1948), + [anon_sym_BSLASHacs] = ACTIONS(1948), + [anon_sym_BSLASHAcs] = ACTIONS(1948), + [anon_sym_BSLASHacsp] = ACTIONS(1948), + [anon_sym_BSLASHAcsp] = ACTIONS(1948), + [anon_sym_BSLASHacl] = ACTIONS(1948), + [anon_sym_BSLASHAcl] = ACTIONS(1948), + [anon_sym_BSLASHaclp] = ACTIONS(1948), + [anon_sym_BSLASHAclp] = ACTIONS(1948), + [anon_sym_BSLASHacf] = ACTIONS(1948), + [anon_sym_BSLASHAcf] = ACTIONS(1948), + [anon_sym_BSLASHacfp] = ACTIONS(1948), + [anon_sym_BSLASHAcfp] = ACTIONS(1948), + [anon_sym_BSLASHac] = ACTIONS(1948), + [anon_sym_BSLASHAc] = ACTIONS(1948), + [anon_sym_BSLASHacp] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1948), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1948), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1948), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1948), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1948), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1946), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1948), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1948), + [anon_sym_BSLASHcolor] = ACTIONS(1948), + [anon_sym_BSLASHcolorbox] = ACTIONS(1948), + [anon_sym_BSLASHtextcolor] = ACTIONS(1948), + [anon_sym_BSLASHpagecolor] = ACTIONS(1948), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1948), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1948), + [anon_sym_BSLASHtext] = ACTIONS(1948), + [anon_sym_BSLASHintertext] = ACTIONS(1948), + [anon_sym_shortintertext] = ACTIONS(1948), }, [612] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [613] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [614] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [615] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(1947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(1972), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [616] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(4471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddsec] = ACTIONS(4471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(4550), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddsec] = ACTIONS(4550), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [617] = { [sym__section_declaration] = STATE(144), [sym_section] = STATE(631), [aux_sym__section_repeat3] = STATE(631), - [sym_command_name] = ACTIONS(4471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym_RPAREN] = ACTIONS(4469), - [anon_sym_LBRACK] = ACTIONS(4469), - [anon_sym_RBRACK] = ACTIONS(4469), - [anon_sym_COMMA] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_BSLASHpart] = ACTIONS(4471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddpart] = ACTIONS(4471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), - [anon_sym_BSLASHchapter] = ACTIONS(4471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), - [anon_sym_BSLASHaddchap] = ACTIONS(4471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), - [anon_sym_BSLASHparagraph] = ACTIONS(4471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), - [anon_sym_BSLASHitem] = ACTIONS(4471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [sym_word] = ACTIONS(4471), - [sym_placeholder] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_SLASH] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym__] = ACTIONS(4471), - [anon_sym_LT] = ACTIONS(4471), - [anon_sym_GT] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_PIPE] = ACTIONS(4471), - [anon_sym_COLON] = ACTIONS(4471), - [anon_sym_SQUOTE] = ACTIONS(4471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), - [anon_sym_BSLASHbegin] = ACTIONS(4471), - [anon_sym_BSLASHusepackage] = ACTIONS(4471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), - [anon_sym_BSLASHinclude] = ACTIONS(4471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), - [anon_sym_BSLASHinput] = ACTIONS(4471), - [anon_sym_BSLASHsubfile] = ACTIONS(4471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), - [anon_sym_BSLASHbibliography] = ACTIONS(4471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), - [anon_sym_BSLASHincludesvg] = ACTIONS(4471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), - [anon_sym_BSLASHimport] = ACTIONS(4471), - [anon_sym_BSLASHsubimport] = ACTIONS(4471), - [anon_sym_BSLASHinputfrom] = ACTIONS(4471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), - [anon_sym_BSLASHincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), - [anon_sym_BSLASHcaption] = ACTIONS(4471), - [anon_sym_BSLASHcite] = ACTIONS(4471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCite] = ACTIONS(4471), - [anon_sym_BSLASHnocite] = ACTIONS(4471), - [anon_sym_BSLASHcitet] = ACTIONS(4471), - [anon_sym_BSLASHcitep] = ACTIONS(4471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor] = ACTIONS(4471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle] = ACTIONS(4471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteyear] = ACTIONS(4471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), - [anon_sym_BSLASHcitedate] = ACTIONS(4471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), - [anon_sym_BSLASHciteurl] = ACTIONS(4471), - [anon_sym_BSLASHfullcite] = ACTIONS(4471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), - [anon_sym_BSLASHcitealt] = ACTIONS(4471), - [anon_sym_BSLASHcitealp] = ACTIONS(4471), - [anon_sym_BSLASHcitetext] = ACTIONS(4471), - [anon_sym_BSLASHparencite] = ACTIONS(4471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHParencite] = ACTIONS(4471), - [anon_sym_BSLASHfootcite] = ACTIONS(4471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), - [anon_sym_BSLASHtextcite] = ACTIONS(4471), - [anon_sym_BSLASHTextcite] = ACTIONS(4471), - [anon_sym_BSLASHsmartcite] = ACTIONS(4471), - [anon_sym_BSLASHSmartcite] = ACTIONS(4471), - [anon_sym_BSLASHsupercite] = ACTIONS(4471), - [anon_sym_BSLASHautocite] = ACTIONS(4471), - [anon_sym_BSLASHAutocite] = ACTIONS(4471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), - [anon_sym_BSLASHvolcite] = ACTIONS(4471), - [anon_sym_BSLASHVolcite] = ACTIONS(4471), - [anon_sym_BSLASHpvolcite] = ACTIONS(4471), - [anon_sym_BSLASHPvolcite] = ACTIONS(4471), - [anon_sym_BSLASHfvolcite] = ACTIONS(4471), - [anon_sym_BSLASHftvolcite] = ACTIONS(4471), - [anon_sym_BSLASHsvolcite] = ACTIONS(4471), - [anon_sym_BSLASHSvolcite] = ACTIONS(4471), - [anon_sym_BSLASHtvolcite] = ACTIONS(4471), - [anon_sym_BSLASHTvolcite] = ACTIONS(4471), - [anon_sym_BSLASHavolcite] = ACTIONS(4471), - [anon_sym_BSLASHAvolcite] = ACTIONS(4471), - [anon_sym_BSLASHnotecite] = ACTIONS(4471), - [anon_sym_BSLASHNotecite] = ACTIONS(4471), - [anon_sym_BSLASHpnotecite] = ACTIONS(4471), - [anon_sym_BSLASHPnotecite] = ACTIONS(4471), - [anon_sym_BSLASHfnotecite] = ACTIONS(4471), - [anon_sym_BSLASHlabel] = ACTIONS(4471), - [anon_sym_BSLASHref] = ACTIONS(4471), - [anon_sym_BSLASHeqref] = ACTIONS(4471), - [anon_sym_BSLASHvref] = ACTIONS(4471), - [anon_sym_BSLASHVref] = ACTIONS(4471), - [anon_sym_BSLASHautoref] = ACTIONS(4471), - [anon_sym_BSLASHpageref] = ACTIONS(4471), - [anon_sym_BSLASHcref] = ACTIONS(4471), - [anon_sym_BSLASHCref] = ACTIONS(4471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnameCref] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), - [anon_sym_BSLASHlabelcref] = ACTIONS(4471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange] = ACTIONS(4471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange] = ACTIONS(4471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), - [anon_sym_BSLASHnewlabel] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand] = ACTIONS(4471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), - [anon_sym_BSLASHdef] = ACTIONS(4471), - [anon_sym_BSLASHlet] = ACTIONS(4471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), - [anon_sym_BSLASHgls] = ACTIONS(4471), - [anon_sym_BSLASHGls] = ACTIONS(4471), - [anon_sym_BSLASHGLS] = ACTIONS(4471), - [anon_sym_BSLASHglspl] = ACTIONS(4471), - [anon_sym_BSLASHGlspl] = ACTIONS(4471), - [anon_sym_BSLASHGLSpl] = ACTIONS(4471), - [anon_sym_BSLASHglsdisp] = ACTIONS(4471), - [anon_sym_BSLASHglslink] = ACTIONS(4471), - [anon_sym_BSLASHglstext] = ACTIONS(4471), - [anon_sym_BSLASHGlstext] = ACTIONS(4471), - [anon_sym_BSLASHGLStext] = ACTIONS(4471), - [anon_sym_BSLASHglsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), - [anon_sym_BSLASHglsplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSplural] = ACTIONS(4471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), - [anon_sym_BSLASHglsname] = ACTIONS(4471), - [anon_sym_BSLASHGlsname] = ACTIONS(4471), - [anon_sym_BSLASHGLSname] = ACTIONS(4471), - [anon_sym_BSLASHglssymbol] = ACTIONS(4471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), - [anon_sym_BSLASHglsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), - [anon_sym_BSLASHglsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), - [anon_sym_BSLASHglsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), - [anon_sym_BSLASHglsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), - [anon_sym_BSLASHglsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), - [anon_sym_BSLASHnewacronym] = ACTIONS(4471), - [anon_sym_BSLASHacrshort] = ACTIONS(4471), - [anon_sym_BSLASHAcrshort] = ACTIONS(4471), - [anon_sym_BSLASHACRshort] = ACTIONS(4471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), - [anon_sym_BSLASHacrlong] = ACTIONS(4471), - [anon_sym_BSLASHAcrlong] = ACTIONS(4471), - [anon_sym_BSLASHACRlong] = ACTIONS(4471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), - [anon_sym_BSLASHacrfull] = ACTIONS(4471), - [anon_sym_BSLASHAcrfull] = ACTIONS(4471), - [anon_sym_BSLASHACRfull] = ACTIONS(4471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), - [anon_sym_BSLASHacs] = ACTIONS(4471), - [anon_sym_BSLASHAcs] = ACTIONS(4471), - [anon_sym_BSLASHacsp] = ACTIONS(4471), - [anon_sym_BSLASHAcsp] = ACTIONS(4471), - [anon_sym_BSLASHacl] = ACTIONS(4471), - [anon_sym_BSLASHAcl] = ACTIONS(4471), - [anon_sym_BSLASHaclp] = ACTIONS(4471), - [anon_sym_BSLASHAclp] = ACTIONS(4471), - [anon_sym_BSLASHacf] = ACTIONS(4471), - [anon_sym_BSLASHAcf] = ACTIONS(4471), - [anon_sym_BSLASHacfp] = ACTIONS(4471), - [anon_sym_BSLASHAcfp] = ACTIONS(4471), - [anon_sym_BSLASHac] = ACTIONS(4471), - [anon_sym_BSLASHAc] = ACTIONS(4471), - [anon_sym_BSLASHacp] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), - [anon_sym_BSLASHcolor] = ACTIONS(4471), - [anon_sym_BSLASHcolorbox] = ACTIONS(4471), - [anon_sym_BSLASHtextcolor] = ACTIONS(4471), - [anon_sym_BSLASHpagecolor] = ACTIONS(4471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), - [anon_sym_BSLASHtext] = ACTIONS(4471), - [anon_sym_BSLASHintertext] = ACTIONS(4471), - [anon_sym_shortintertext] = ACTIONS(4471), + [sym_command_name] = ACTIONS(4550), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_BSLASHpart] = ACTIONS(4550), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddpart] = ACTIONS(4550), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4548), + [anon_sym_BSLASHchapter] = ACTIONS(4550), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4548), + [anon_sym_BSLASHaddchap] = ACTIONS(4550), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4550), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4548), + [anon_sym_BSLASHparagraph] = ACTIONS(4550), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4550), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4548), + [anon_sym_BSLASHitem] = ACTIONS(4550), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [sym_word] = ACTIONS(4550), + [sym_placeholder] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_SLASH] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym__] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4550), + [anon_sym_GT] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_PIPE] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4548), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4548), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4548), + [anon_sym_BSLASHbegin] = ACTIONS(4550), + [anon_sym_BSLASHusepackage] = ACTIONS(4550), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4550), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4550), + [anon_sym_BSLASHinclude] = ACTIONS(4550), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4550), + [anon_sym_BSLASHinput] = ACTIONS(4550), + [anon_sym_BSLASHsubfile] = ACTIONS(4550), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4550), + [anon_sym_BSLASHbibliography] = ACTIONS(4550), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4550), + [anon_sym_BSLASHincludesvg] = ACTIONS(4550), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4550), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4550), + [anon_sym_BSLASHimport] = ACTIONS(4550), + [anon_sym_BSLASHsubimport] = ACTIONS(4550), + [anon_sym_BSLASHinputfrom] = ACTIONS(4550), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4550), + [anon_sym_BSLASHincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4550), + [anon_sym_BSLASHcaption] = ACTIONS(4550), + [anon_sym_BSLASHcite] = ACTIONS(4550), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCite] = ACTIONS(4550), + [anon_sym_BSLASHnocite] = ACTIONS(4550), + [anon_sym_BSLASHcitet] = ACTIONS(4550), + [anon_sym_BSLASHcitep] = ACTIONS(4550), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteauthor] = ACTIONS(4550), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4550), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitetitle] = ACTIONS(4550), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteyear] = ACTIONS(4550), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4548), + [anon_sym_BSLASHcitedate] = ACTIONS(4550), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4548), + [anon_sym_BSLASHciteurl] = ACTIONS(4550), + [anon_sym_BSLASHfullcite] = ACTIONS(4550), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4550), + [anon_sym_BSLASHcitealt] = ACTIONS(4550), + [anon_sym_BSLASHcitealp] = ACTIONS(4550), + [anon_sym_BSLASHcitetext] = ACTIONS(4550), + [anon_sym_BSLASHparencite] = ACTIONS(4550), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHParencite] = ACTIONS(4550), + [anon_sym_BSLASHfootcite] = ACTIONS(4550), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4550), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4550), + [anon_sym_BSLASHtextcite] = ACTIONS(4550), + [anon_sym_BSLASHTextcite] = ACTIONS(4550), + [anon_sym_BSLASHsmartcite] = ACTIONS(4550), + [anon_sym_BSLASHSmartcite] = ACTIONS(4550), + [anon_sym_BSLASHsupercite] = ACTIONS(4550), + [anon_sym_BSLASHautocite] = ACTIONS(4550), + [anon_sym_BSLASHAutocite] = ACTIONS(4550), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4548), + [anon_sym_BSLASHvolcite] = ACTIONS(4550), + [anon_sym_BSLASHVolcite] = ACTIONS(4550), + [anon_sym_BSLASHpvolcite] = ACTIONS(4550), + [anon_sym_BSLASHPvolcite] = ACTIONS(4550), + [anon_sym_BSLASHfvolcite] = ACTIONS(4550), + [anon_sym_BSLASHftvolcite] = ACTIONS(4550), + [anon_sym_BSLASHsvolcite] = ACTIONS(4550), + [anon_sym_BSLASHSvolcite] = ACTIONS(4550), + [anon_sym_BSLASHtvolcite] = ACTIONS(4550), + [anon_sym_BSLASHTvolcite] = ACTIONS(4550), + [anon_sym_BSLASHavolcite] = ACTIONS(4550), + [anon_sym_BSLASHAvolcite] = ACTIONS(4550), + [anon_sym_BSLASHnotecite] = ACTIONS(4550), + [anon_sym_BSLASHNotecite] = ACTIONS(4550), + [anon_sym_BSLASHpnotecite] = ACTIONS(4550), + [anon_sym_BSLASHPnotecite] = ACTIONS(4550), + [anon_sym_BSLASHfnotecite] = ACTIONS(4550), + [anon_sym_BSLASHlabel] = ACTIONS(4550), + [anon_sym_BSLASHref] = ACTIONS(4550), + [anon_sym_BSLASHeqref] = ACTIONS(4550), + [anon_sym_BSLASHvref] = ACTIONS(4550), + [anon_sym_BSLASHVref] = ACTIONS(4550), + [anon_sym_BSLASHautoref] = ACTIONS(4550), + [anon_sym_BSLASHpageref] = ACTIONS(4550), + [anon_sym_BSLASHcref] = ACTIONS(4550), + [anon_sym_BSLASHCref] = ACTIONS(4550), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnameCref] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4550), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4550), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4550), + [anon_sym_BSLASHlabelcref] = ACTIONS(4550), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange] = ACTIONS(4550), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHCrefrange] = ACTIONS(4550), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4548), + [anon_sym_BSLASHnewlabel] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand] = ACTIONS(4550), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4550), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4550), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4548), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4550), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdef] = ACTIONS(4550), + [anon_sym_BSLASHlet] = ACTIONS(4550), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4550), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4550), + [anon_sym_BSLASHgls] = ACTIONS(4550), + [anon_sym_BSLASHGls] = ACTIONS(4550), + [anon_sym_BSLASHGLS] = ACTIONS(4550), + [anon_sym_BSLASHglspl] = ACTIONS(4550), + [anon_sym_BSLASHGlspl] = ACTIONS(4550), + [anon_sym_BSLASHGLSpl] = ACTIONS(4550), + [anon_sym_BSLASHglsdisp] = ACTIONS(4550), + [anon_sym_BSLASHglslink] = ACTIONS(4550), + [anon_sym_BSLASHglstext] = ACTIONS(4550), + [anon_sym_BSLASHGlstext] = ACTIONS(4550), + [anon_sym_BSLASHGLStext] = ACTIONS(4550), + [anon_sym_BSLASHglsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4550), + [anon_sym_BSLASHglsplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSplural] = ACTIONS(4550), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4550), + [anon_sym_BSLASHglsname] = ACTIONS(4550), + [anon_sym_BSLASHGlsname] = ACTIONS(4550), + [anon_sym_BSLASHGLSname] = ACTIONS(4550), + [anon_sym_BSLASHglssymbol] = ACTIONS(4550), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4550), + [anon_sym_BSLASHglsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4550), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4550), + [anon_sym_BSLASHglsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4550), + [anon_sym_BSLASHglsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4550), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4550), + [anon_sym_BSLASHglsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4550), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4550), + [anon_sym_BSLASHglsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4550), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4550), + [anon_sym_BSLASHnewacronym] = ACTIONS(4550), + [anon_sym_BSLASHacrshort] = ACTIONS(4550), + [anon_sym_BSLASHAcrshort] = ACTIONS(4550), + [anon_sym_BSLASHACRshort] = ACTIONS(4550), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4550), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4550), + [anon_sym_BSLASHacrlong] = ACTIONS(4550), + [anon_sym_BSLASHAcrlong] = ACTIONS(4550), + [anon_sym_BSLASHACRlong] = ACTIONS(4550), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4550), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4550), + [anon_sym_BSLASHacrfull] = ACTIONS(4550), + [anon_sym_BSLASHAcrfull] = ACTIONS(4550), + [anon_sym_BSLASHACRfull] = ACTIONS(4550), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4550), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4550), + [anon_sym_BSLASHacs] = ACTIONS(4550), + [anon_sym_BSLASHAcs] = ACTIONS(4550), + [anon_sym_BSLASHacsp] = ACTIONS(4550), + [anon_sym_BSLASHAcsp] = ACTIONS(4550), + [anon_sym_BSLASHacl] = ACTIONS(4550), + [anon_sym_BSLASHAcl] = ACTIONS(4550), + [anon_sym_BSLASHaclp] = ACTIONS(4550), + [anon_sym_BSLASHAclp] = ACTIONS(4550), + [anon_sym_BSLASHacf] = ACTIONS(4550), + [anon_sym_BSLASHAcf] = ACTIONS(4550), + [anon_sym_BSLASHacfp] = ACTIONS(4550), + [anon_sym_BSLASHAcfp] = ACTIONS(4550), + [anon_sym_BSLASHac] = ACTIONS(4550), + [anon_sym_BSLASHAc] = ACTIONS(4550), + [anon_sym_BSLASHacp] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4550), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4550), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4550), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4548), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4550), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), + [anon_sym_BSLASHcolor] = ACTIONS(4550), + [anon_sym_BSLASHcolorbox] = ACTIONS(4550), + [anon_sym_BSLASHtextcolor] = ACTIONS(4550), + [anon_sym_BSLASHpagecolor] = ACTIONS(4550), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4550), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4550), + [anon_sym_BSLASHtext] = ACTIONS(4550), + [anon_sym_BSLASHintertext] = ACTIONS(4550), + [anon_sym_shortintertext] = ACTIONS(4550), }, [618] = { [sym_curly_group] = STATE(952), [sym_mixed_group] = STATE(952), [aux_sym_generic_command_repeat1] = STATE(417), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4759), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_BSLASHpart] = ACTIONS(4451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddpart] = ACTIONS(4451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), - [anon_sym_BSLASHchapter] = ACTIONS(4451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddchap] = ACTIONS(4451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsection] = ACTIONS(4451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHaddsec] = ACTIONS(4451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), - [anon_sym_BSLASHparagraph] = ACTIONS(4451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), - [anon_sym_BSLASHitem] = ACTIONS(4451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASHbegin] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_BSLASHpart] = ACTIONS(4530), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddpart] = ACTIONS(4530), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4528), + [anon_sym_BSLASHchapter] = ACTIONS(4530), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddchap] = ACTIONS(4530), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsection] = ACTIONS(4530), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHaddsec] = ACTIONS(4530), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4530), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4528), + [anon_sym_BSLASHparagraph] = ACTIONS(4530), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4530), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4528), + [anon_sym_BSLASHitem] = ACTIONS(4530), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASHbegin] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [619] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1947), - [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(1947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddpart] = ACTIONS(1947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), - [anon_sym_BSLASHchapter] = ACTIONS(1947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddchap] = ACTIONS(1947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsection] = ACTIONS(1947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHaddsec] = ACTIONS(1947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), - [anon_sym_BSLASHparagraph] = ACTIONS(1947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1945), - [sym_word] = ACTIONS(1947), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym__] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1945), - [anon_sym_BSLASHbegin] = ACTIONS(1947), - [anon_sym_BSLASHusepackage] = ACTIONS(1947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), - [anon_sym_BSLASHinclude] = ACTIONS(1947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), - [anon_sym_BSLASHinput] = ACTIONS(1947), - [anon_sym_BSLASHsubfile] = ACTIONS(1947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), - [anon_sym_BSLASHincludesvg] = ACTIONS(1947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), - [anon_sym_BSLASHimport] = ACTIONS(1947), - [anon_sym_BSLASHsubimport] = ACTIONS(1947), - [anon_sym_BSLASHinputfrom] = ACTIONS(1947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), - [anon_sym_BSLASHincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), - [anon_sym_BSLASHcaption] = ACTIONS(1947), - [anon_sym_BSLASHcite] = ACTIONS(1947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCite] = ACTIONS(1947), - [anon_sym_BSLASHnocite] = ACTIONS(1947), - [anon_sym_BSLASHcitet] = ACTIONS(1947), - [anon_sym_BSLASHcitep] = ACTIONS(1947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteauthor] = ACTIONS(1947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitetitle] = ACTIONS(1947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteyear] = ACTIONS(1947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), - [anon_sym_BSLASHcitedate] = ACTIONS(1947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), - [anon_sym_BSLASHciteurl] = ACTIONS(1947), - [anon_sym_BSLASHfullcite] = ACTIONS(1947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), - [anon_sym_BSLASHcitealt] = ACTIONS(1947), - [anon_sym_BSLASHcitealp] = ACTIONS(1947), - [anon_sym_BSLASHcitetext] = ACTIONS(1947), - [anon_sym_BSLASHparencite] = ACTIONS(1947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHParencite] = ACTIONS(1947), - [anon_sym_BSLASHfootcite] = ACTIONS(1947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), - [anon_sym_BSLASHtextcite] = ACTIONS(1947), - [anon_sym_BSLASHTextcite] = ACTIONS(1947), - [anon_sym_BSLASHsmartcite] = ACTIONS(1947), - [anon_sym_BSLASHSmartcite] = ACTIONS(1947), - [anon_sym_BSLASHsupercite] = ACTIONS(1947), - [anon_sym_BSLASHautocite] = ACTIONS(1947), - [anon_sym_BSLASHAutocite] = ACTIONS(1947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), - [anon_sym_BSLASHvolcite] = ACTIONS(1947), - [anon_sym_BSLASHVolcite] = ACTIONS(1947), - [anon_sym_BSLASHpvolcite] = ACTIONS(1947), - [anon_sym_BSLASHPvolcite] = ACTIONS(1947), - [anon_sym_BSLASHfvolcite] = ACTIONS(1947), - [anon_sym_BSLASHftvolcite] = ACTIONS(1947), - [anon_sym_BSLASHsvolcite] = ACTIONS(1947), - [anon_sym_BSLASHSvolcite] = ACTIONS(1947), - [anon_sym_BSLASHtvolcite] = ACTIONS(1947), - [anon_sym_BSLASHTvolcite] = ACTIONS(1947), - [anon_sym_BSLASHavolcite] = ACTIONS(1947), - [anon_sym_BSLASHAvolcite] = ACTIONS(1947), - [anon_sym_BSLASHnotecite] = ACTIONS(1947), - [anon_sym_BSLASHNotecite] = ACTIONS(1947), - [anon_sym_BSLASHpnotecite] = ACTIONS(1947), - [anon_sym_BSLASHPnotecite] = ACTIONS(1947), - [anon_sym_BSLASHfnotecite] = ACTIONS(1947), - [anon_sym_BSLASHlabel] = ACTIONS(1947), - [anon_sym_BSLASHref] = ACTIONS(1947), - [anon_sym_BSLASHeqref] = ACTIONS(1947), - [anon_sym_BSLASHvref] = ACTIONS(1947), - [anon_sym_BSLASHVref] = ACTIONS(1947), - [anon_sym_BSLASHautoref] = ACTIONS(1947), - [anon_sym_BSLASHpageref] = ACTIONS(1947), - [anon_sym_BSLASHcref] = ACTIONS(1947), - [anon_sym_BSLASHCref] = ACTIONS(1947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnameCref] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), - [anon_sym_BSLASHlabelcref] = ACTIONS(1947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange] = ACTIONS(1947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHCrefrange] = ACTIONS(1947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), - [anon_sym_BSLASHnewlabel] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand] = ACTIONS(1947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), - [anon_sym_BSLASHdef] = ACTIONS(1947), - [anon_sym_BSLASHlet] = ACTIONS(1947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), - [anon_sym_BSLASHgls] = ACTIONS(1947), - [anon_sym_BSLASHGls] = ACTIONS(1947), - [anon_sym_BSLASHGLS] = ACTIONS(1947), - [anon_sym_BSLASHglspl] = ACTIONS(1947), - [anon_sym_BSLASHGlspl] = ACTIONS(1947), - [anon_sym_BSLASHGLSpl] = ACTIONS(1947), - [anon_sym_BSLASHglsdisp] = ACTIONS(1947), - [anon_sym_BSLASHglslink] = ACTIONS(1947), - [anon_sym_BSLASHglstext] = ACTIONS(1947), - [anon_sym_BSLASHGlstext] = ACTIONS(1947), - [anon_sym_BSLASHGLStext] = ACTIONS(1947), - [anon_sym_BSLASHglsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), - [anon_sym_BSLASHglsplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSplural] = ACTIONS(1947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), - [anon_sym_BSLASHglsname] = ACTIONS(1947), - [anon_sym_BSLASHGlsname] = ACTIONS(1947), - [anon_sym_BSLASHGLSname] = ACTIONS(1947), - [anon_sym_BSLASHglssymbol] = ACTIONS(1947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), - [anon_sym_BSLASHglsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), - [anon_sym_BSLASHglsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), - [anon_sym_BSLASHglsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), - [anon_sym_BSLASHglsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), - [anon_sym_BSLASHglsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), - [anon_sym_BSLASHnewacronym] = ACTIONS(1947), - [anon_sym_BSLASHacrshort] = ACTIONS(1947), - [anon_sym_BSLASHAcrshort] = ACTIONS(1947), - [anon_sym_BSLASHACRshort] = ACTIONS(1947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), - [anon_sym_BSLASHacrlong] = ACTIONS(1947), - [anon_sym_BSLASHAcrlong] = ACTIONS(1947), - [anon_sym_BSLASHACRlong] = ACTIONS(1947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), - [anon_sym_BSLASHacrfull] = ACTIONS(1947), - [anon_sym_BSLASHAcrfull] = ACTIONS(1947), - [anon_sym_BSLASHACRfull] = ACTIONS(1947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), - [anon_sym_BSLASHacs] = ACTIONS(1947), - [anon_sym_BSLASHAcs] = ACTIONS(1947), - [anon_sym_BSLASHacsp] = ACTIONS(1947), - [anon_sym_BSLASHAcsp] = ACTIONS(1947), - [anon_sym_BSLASHacl] = ACTIONS(1947), - [anon_sym_BSLASHAcl] = ACTIONS(1947), - [anon_sym_BSLASHaclp] = ACTIONS(1947), - [anon_sym_BSLASHAclp] = ACTIONS(1947), - [anon_sym_BSLASHacf] = ACTIONS(1947), - [anon_sym_BSLASHAcf] = ACTIONS(1947), - [anon_sym_BSLASHacfp] = ACTIONS(1947), - [anon_sym_BSLASHAcfp] = ACTIONS(1947), - [anon_sym_BSLASHac] = ACTIONS(1947), - [anon_sym_BSLASHAc] = ACTIONS(1947), - [anon_sym_BSLASHacp] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), - [anon_sym_BSLASHcolor] = ACTIONS(1947), - [anon_sym_BSLASHcolorbox] = ACTIONS(1947), - [anon_sym_BSLASHtextcolor] = ACTIONS(1947), - [anon_sym_BSLASHpagecolor] = ACTIONS(1947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), - [anon_sym_BSLASHtext] = ACTIONS(1947), - [anon_sym_BSLASHintertext] = ACTIONS(1947), - [anon_sym_shortintertext] = ACTIONS(1947), + [sym_command_name] = ACTIONS(1972), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_BSLASHpart] = ACTIONS(1972), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddpart] = ACTIONS(1972), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1970), + [anon_sym_BSLASHchapter] = ACTIONS(1972), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddchap] = ACTIONS(1972), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsection] = ACTIONS(1972), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHaddsec] = ACTIONS(1972), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1972), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1970), + [anon_sym_BSLASHparagraph] = ACTIONS(1972), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1972), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1970), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1970), + [sym_word] = ACTIONS(1972), + [sym_placeholder] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym__] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1970), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1970), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1970), + [anon_sym_BSLASHbegin] = ACTIONS(1972), + [anon_sym_BSLASHusepackage] = ACTIONS(1972), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1972), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1972), + [anon_sym_BSLASHinclude] = ACTIONS(1972), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1972), + [anon_sym_BSLASHinput] = ACTIONS(1972), + [anon_sym_BSLASHsubfile] = ACTIONS(1972), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1972), + [anon_sym_BSLASHbibliography] = ACTIONS(1972), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1972), + [anon_sym_BSLASHincludesvg] = ACTIONS(1972), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1972), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1972), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1972), + [anon_sym_BSLASHimport] = ACTIONS(1972), + [anon_sym_BSLASHsubimport] = ACTIONS(1972), + [anon_sym_BSLASHinputfrom] = ACTIONS(1972), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1972), + [anon_sym_BSLASHincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1972), + [anon_sym_BSLASHcaption] = ACTIONS(1972), + [anon_sym_BSLASHcite] = ACTIONS(1972), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCite] = ACTIONS(1972), + [anon_sym_BSLASHnocite] = ACTIONS(1972), + [anon_sym_BSLASHcitet] = ACTIONS(1972), + [anon_sym_BSLASHcitep] = ACTIONS(1972), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteauthor] = ACTIONS(1972), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1972), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitetitle] = ACTIONS(1972), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteyear] = ACTIONS(1972), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1970), + [anon_sym_BSLASHcitedate] = ACTIONS(1972), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1970), + [anon_sym_BSLASHciteurl] = ACTIONS(1972), + [anon_sym_BSLASHfullcite] = ACTIONS(1972), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1972), + [anon_sym_BSLASHcitealt] = ACTIONS(1972), + [anon_sym_BSLASHcitealp] = ACTIONS(1972), + [anon_sym_BSLASHcitetext] = ACTIONS(1972), + [anon_sym_BSLASHparencite] = ACTIONS(1972), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHParencite] = ACTIONS(1972), + [anon_sym_BSLASHfootcite] = ACTIONS(1972), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1972), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1972), + [anon_sym_BSLASHtextcite] = ACTIONS(1972), + [anon_sym_BSLASHTextcite] = ACTIONS(1972), + [anon_sym_BSLASHsmartcite] = ACTIONS(1972), + [anon_sym_BSLASHSmartcite] = ACTIONS(1972), + [anon_sym_BSLASHsupercite] = ACTIONS(1972), + [anon_sym_BSLASHautocite] = ACTIONS(1972), + [anon_sym_BSLASHAutocite] = ACTIONS(1972), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1970), + [anon_sym_BSLASHvolcite] = ACTIONS(1972), + [anon_sym_BSLASHVolcite] = ACTIONS(1972), + [anon_sym_BSLASHpvolcite] = ACTIONS(1972), + [anon_sym_BSLASHPvolcite] = ACTIONS(1972), + [anon_sym_BSLASHfvolcite] = ACTIONS(1972), + [anon_sym_BSLASHftvolcite] = ACTIONS(1972), + [anon_sym_BSLASHsvolcite] = ACTIONS(1972), + [anon_sym_BSLASHSvolcite] = ACTIONS(1972), + [anon_sym_BSLASHtvolcite] = ACTIONS(1972), + [anon_sym_BSLASHTvolcite] = ACTIONS(1972), + [anon_sym_BSLASHavolcite] = ACTIONS(1972), + [anon_sym_BSLASHAvolcite] = ACTIONS(1972), + [anon_sym_BSLASHnotecite] = ACTIONS(1972), + [anon_sym_BSLASHNotecite] = ACTIONS(1972), + [anon_sym_BSLASHpnotecite] = ACTIONS(1972), + [anon_sym_BSLASHPnotecite] = ACTIONS(1972), + [anon_sym_BSLASHfnotecite] = ACTIONS(1972), + [anon_sym_BSLASHlabel] = ACTIONS(1972), + [anon_sym_BSLASHref] = ACTIONS(1972), + [anon_sym_BSLASHeqref] = ACTIONS(1972), + [anon_sym_BSLASHvref] = ACTIONS(1972), + [anon_sym_BSLASHVref] = ACTIONS(1972), + [anon_sym_BSLASHautoref] = ACTIONS(1972), + [anon_sym_BSLASHpageref] = ACTIONS(1972), + [anon_sym_BSLASHcref] = ACTIONS(1972), + [anon_sym_BSLASHCref] = ACTIONS(1972), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnameCref] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1972), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1972), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1972), + [anon_sym_BSLASHlabelcref] = ACTIONS(1972), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange] = ACTIONS(1972), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHCrefrange] = ACTIONS(1972), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1970), + [anon_sym_BSLASHnewlabel] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand] = ACTIONS(1972), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1972), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1972), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1970), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1972), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdef] = ACTIONS(1972), + [anon_sym_BSLASHlet] = ACTIONS(1972), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1972), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1972), + [anon_sym_BSLASHgls] = ACTIONS(1972), + [anon_sym_BSLASHGls] = ACTIONS(1972), + [anon_sym_BSLASHGLS] = ACTIONS(1972), + [anon_sym_BSLASHglspl] = ACTIONS(1972), + [anon_sym_BSLASHGlspl] = ACTIONS(1972), + [anon_sym_BSLASHGLSpl] = ACTIONS(1972), + [anon_sym_BSLASHglsdisp] = ACTIONS(1972), + [anon_sym_BSLASHglslink] = ACTIONS(1972), + [anon_sym_BSLASHglstext] = ACTIONS(1972), + [anon_sym_BSLASHGlstext] = ACTIONS(1972), + [anon_sym_BSLASHGLStext] = ACTIONS(1972), + [anon_sym_BSLASHglsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1972), + [anon_sym_BSLASHglsplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSplural] = ACTIONS(1972), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1972), + [anon_sym_BSLASHglsname] = ACTIONS(1972), + [anon_sym_BSLASHGlsname] = ACTIONS(1972), + [anon_sym_BSLASHGLSname] = ACTIONS(1972), + [anon_sym_BSLASHglssymbol] = ACTIONS(1972), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1972), + [anon_sym_BSLASHglsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1972), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1972), + [anon_sym_BSLASHglsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1972), + [anon_sym_BSLASHglsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1972), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1972), + [anon_sym_BSLASHglsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1972), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1972), + [anon_sym_BSLASHglsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1972), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1972), + [anon_sym_BSLASHnewacronym] = ACTIONS(1972), + [anon_sym_BSLASHacrshort] = ACTIONS(1972), + [anon_sym_BSLASHAcrshort] = ACTIONS(1972), + [anon_sym_BSLASHACRshort] = ACTIONS(1972), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1972), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1972), + [anon_sym_BSLASHacrlong] = ACTIONS(1972), + [anon_sym_BSLASHAcrlong] = ACTIONS(1972), + [anon_sym_BSLASHACRlong] = ACTIONS(1972), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1972), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1972), + [anon_sym_BSLASHacrfull] = ACTIONS(1972), + [anon_sym_BSLASHAcrfull] = ACTIONS(1972), + [anon_sym_BSLASHACRfull] = ACTIONS(1972), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1972), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1972), + [anon_sym_BSLASHacs] = ACTIONS(1972), + [anon_sym_BSLASHAcs] = ACTIONS(1972), + [anon_sym_BSLASHacsp] = ACTIONS(1972), + [anon_sym_BSLASHAcsp] = ACTIONS(1972), + [anon_sym_BSLASHacl] = ACTIONS(1972), + [anon_sym_BSLASHAcl] = ACTIONS(1972), + [anon_sym_BSLASHaclp] = ACTIONS(1972), + [anon_sym_BSLASHAclp] = ACTIONS(1972), + [anon_sym_BSLASHacf] = ACTIONS(1972), + [anon_sym_BSLASHAcf] = ACTIONS(1972), + [anon_sym_BSLASHacfp] = ACTIONS(1972), + [anon_sym_BSLASHAcfp] = ACTIONS(1972), + [anon_sym_BSLASHac] = ACTIONS(1972), + [anon_sym_BSLASHAc] = ACTIONS(1972), + [anon_sym_BSLASHacp] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1972), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1972), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1972), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1972), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1972), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1970), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1972), + [anon_sym_BSLASHcolor] = ACTIONS(1972), + [anon_sym_BSLASHcolorbox] = ACTIONS(1972), + [anon_sym_BSLASHtextcolor] = ACTIONS(1972), + [anon_sym_BSLASHpagecolor] = ACTIONS(1972), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1972), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1972), + [anon_sym_BSLASHtext] = ACTIONS(1972), + [anon_sym_BSLASHintertext] = ACTIONS(1972), + [anon_sym_shortintertext] = ACTIONS(1972), }, [620] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [621] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(684), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(686), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [622] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(671), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(680), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(682), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [623] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(667), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(676), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(678), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [624] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(672), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(674), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [625] = { [sym__section_declaration] = STATE(144), [sym_section] = STATE(631), [aux_sym__section_repeat3] = STATE(631), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(4457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddchap] = ACTIONS(4457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsection] = ACTIONS(659), - [anon_sym_BSLASHsection_STAR] = ACTIONS(661), - [anon_sym_BSLASHaddsec] = ACTIONS(659), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(4536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddchap] = ACTIONS(4536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsection] = ACTIONS(668), + [anon_sym_BSLASHsection_STAR] = ACTIONS(670), + [anon_sym_BSLASHaddsec] = ACTIONS(668), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(670), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [626] = { [sym__chapter_declaration] = STATE(135), [sym_chapter] = STATE(630), [aux_sym__section_repeat2] = STATE(630), - [sym_command_name] = ACTIONS(4457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_RPAREN] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_RBRACK] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4455), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASHpart] = ACTIONS(4457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddpart] = ACTIONS(4457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), - [anon_sym_BSLASHchapter] = ACTIONS(655), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), - [anon_sym_BSLASHaddchap] = ACTIONS(655), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), - [anon_sym_BSLASHsection] = ACTIONS(4457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHaddsec] = ACTIONS(4457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), - [anon_sym_BSLASHparagraph] = ACTIONS(4457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [sym_word] = ACTIONS(4457), - [sym_placeholder] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym__] = ACTIONS(4457), - [anon_sym_LT] = ACTIONS(4457), - [anon_sym_GT] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), - [anon_sym_BSLASHbegin] = ACTIONS(4457), - [anon_sym_BSLASHusepackage] = ACTIONS(4457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), - [anon_sym_BSLASHinclude] = ACTIONS(4457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), - [anon_sym_BSLASHinput] = ACTIONS(4457), - [anon_sym_BSLASHsubfile] = ACTIONS(4457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), - [anon_sym_BSLASHbibliography] = ACTIONS(4457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), - [anon_sym_BSLASHincludesvg] = ACTIONS(4457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), - [anon_sym_BSLASHimport] = ACTIONS(4457), - [anon_sym_BSLASHsubimport] = ACTIONS(4457), - [anon_sym_BSLASHinputfrom] = ACTIONS(4457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), - [anon_sym_BSLASHincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), - [anon_sym_BSLASHcaption] = ACTIONS(4457), - [anon_sym_BSLASHcite] = ACTIONS(4457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCite] = ACTIONS(4457), - [anon_sym_BSLASHnocite] = ACTIONS(4457), - [anon_sym_BSLASHcitet] = ACTIONS(4457), - [anon_sym_BSLASHcitep] = ACTIONS(4457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor] = ACTIONS(4457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle] = ACTIONS(4457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteyear] = ACTIONS(4457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), - [anon_sym_BSLASHcitedate] = ACTIONS(4457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), - [anon_sym_BSLASHciteurl] = ACTIONS(4457), - [anon_sym_BSLASHfullcite] = ACTIONS(4457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), - [anon_sym_BSLASHcitealt] = ACTIONS(4457), - [anon_sym_BSLASHcitealp] = ACTIONS(4457), - [anon_sym_BSLASHcitetext] = ACTIONS(4457), - [anon_sym_BSLASHparencite] = ACTIONS(4457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHParencite] = ACTIONS(4457), - [anon_sym_BSLASHfootcite] = ACTIONS(4457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), - [anon_sym_BSLASHtextcite] = ACTIONS(4457), - [anon_sym_BSLASHTextcite] = ACTIONS(4457), - [anon_sym_BSLASHsmartcite] = ACTIONS(4457), - [anon_sym_BSLASHSmartcite] = ACTIONS(4457), - [anon_sym_BSLASHsupercite] = ACTIONS(4457), - [anon_sym_BSLASHautocite] = ACTIONS(4457), - [anon_sym_BSLASHAutocite] = ACTIONS(4457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), - [anon_sym_BSLASHvolcite] = ACTIONS(4457), - [anon_sym_BSLASHVolcite] = ACTIONS(4457), - [anon_sym_BSLASHpvolcite] = ACTIONS(4457), - [anon_sym_BSLASHPvolcite] = ACTIONS(4457), - [anon_sym_BSLASHfvolcite] = ACTIONS(4457), - [anon_sym_BSLASHftvolcite] = ACTIONS(4457), - [anon_sym_BSLASHsvolcite] = ACTIONS(4457), - [anon_sym_BSLASHSvolcite] = ACTIONS(4457), - [anon_sym_BSLASHtvolcite] = ACTIONS(4457), - [anon_sym_BSLASHTvolcite] = ACTIONS(4457), - [anon_sym_BSLASHavolcite] = ACTIONS(4457), - [anon_sym_BSLASHAvolcite] = ACTIONS(4457), - [anon_sym_BSLASHnotecite] = ACTIONS(4457), - [anon_sym_BSLASHNotecite] = ACTIONS(4457), - [anon_sym_BSLASHpnotecite] = ACTIONS(4457), - [anon_sym_BSLASHPnotecite] = ACTIONS(4457), - [anon_sym_BSLASHfnotecite] = ACTIONS(4457), - [anon_sym_BSLASHlabel] = ACTIONS(4457), - [anon_sym_BSLASHref] = ACTIONS(4457), - [anon_sym_BSLASHeqref] = ACTIONS(4457), - [anon_sym_BSLASHvref] = ACTIONS(4457), - [anon_sym_BSLASHVref] = ACTIONS(4457), - [anon_sym_BSLASHautoref] = ACTIONS(4457), - [anon_sym_BSLASHpageref] = ACTIONS(4457), - [anon_sym_BSLASHcref] = ACTIONS(4457), - [anon_sym_BSLASHCref] = ACTIONS(4457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnameCref] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), - [anon_sym_BSLASHlabelcref] = ACTIONS(4457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange] = ACTIONS(4457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange] = ACTIONS(4457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), - [anon_sym_BSLASHnewlabel] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand] = ACTIONS(4457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), - [anon_sym_BSLASHdef] = ACTIONS(4457), - [anon_sym_BSLASHlet] = ACTIONS(4457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), - [anon_sym_BSLASHgls] = ACTIONS(4457), - [anon_sym_BSLASHGls] = ACTIONS(4457), - [anon_sym_BSLASHGLS] = ACTIONS(4457), - [anon_sym_BSLASHglspl] = ACTIONS(4457), - [anon_sym_BSLASHGlspl] = ACTIONS(4457), - [anon_sym_BSLASHGLSpl] = ACTIONS(4457), - [anon_sym_BSLASHglsdisp] = ACTIONS(4457), - [anon_sym_BSLASHglslink] = ACTIONS(4457), - [anon_sym_BSLASHglstext] = ACTIONS(4457), - [anon_sym_BSLASHGlstext] = ACTIONS(4457), - [anon_sym_BSLASHGLStext] = ACTIONS(4457), - [anon_sym_BSLASHglsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), - [anon_sym_BSLASHglsplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSplural] = ACTIONS(4457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), - [anon_sym_BSLASHglsname] = ACTIONS(4457), - [anon_sym_BSLASHGlsname] = ACTIONS(4457), - [anon_sym_BSLASHGLSname] = ACTIONS(4457), - [anon_sym_BSLASHglssymbol] = ACTIONS(4457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), - [anon_sym_BSLASHglsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), - [anon_sym_BSLASHglsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), - [anon_sym_BSLASHglsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), - [anon_sym_BSLASHglsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), - [anon_sym_BSLASHglsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), - [anon_sym_BSLASHnewacronym] = ACTIONS(4457), - [anon_sym_BSLASHacrshort] = ACTIONS(4457), - [anon_sym_BSLASHAcrshort] = ACTIONS(4457), - [anon_sym_BSLASHACRshort] = ACTIONS(4457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), - [anon_sym_BSLASHacrlong] = ACTIONS(4457), - [anon_sym_BSLASHAcrlong] = ACTIONS(4457), - [anon_sym_BSLASHACRlong] = ACTIONS(4457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), - [anon_sym_BSLASHacrfull] = ACTIONS(4457), - [anon_sym_BSLASHAcrfull] = ACTIONS(4457), - [anon_sym_BSLASHACRfull] = ACTIONS(4457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), - [anon_sym_BSLASHacs] = ACTIONS(4457), - [anon_sym_BSLASHAcs] = ACTIONS(4457), - [anon_sym_BSLASHacsp] = ACTIONS(4457), - [anon_sym_BSLASHAcsp] = ACTIONS(4457), - [anon_sym_BSLASHacl] = ACTIONS(4457), - [anon_sym_BSLASHAcl] = ACTIONS(4457), - [anon_sym_BSLASHaclp] = ACTIONS(4457), - [anon_sym_BSLASHAclp] = ACTIONS(4457), - [anon_sym_BSLASHacf] = ACTIONS(4457), - [anon_sym_BSLASHAcf] = ACTIONS(4457), - [anon_sym_BSLASHacfp] = ACTIONS(4457), - [anon_sym_BSLASHAcfp] = ACTIONS(4457), - [anon_sym_BSLASHac] = ACTIONS(4457), - [anon_sym_BSLASHAc] = ACTIONS(4457), - [anon_sym_BSLASHacp] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), - [anon_sym_BSLASHcolor] = ACTIONS(4457), - [anon_sym_BSLASHcolorbox] = ACTIONS(4457), - [anon_sym_BSLASHtextcolor] = ACTIONS(4457), - [anon_sym_BSLASHpagecolor] = ACTIONS(4457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), - [anon_sym_BSLASHtext] = ACTIONS(4457), - [anon_sym_BSLASHintertext] = ACTIONS(4457), - [anon_sym_shortintertext] = ACTIONS(4457), + [sym_command_name] = ACTIONS(4536), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_BSLASHpart] = ACTIONS(4536), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddpart] = ACTIONS(4536), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4534), + [anon_sym_BSLASHchapter] = ACTIONS(664), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(666), + [anon_sym_BSLASHaddchap] = ACTIONS(664), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(666), + [anon_sym_BSLASHsection] = ACTIONS(4536), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHaddsec] = ACTIONS(4536), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4536), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4534), + [anon_sym_BSLASHparagraph] = ACTIONS(4536), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4536), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4534), + [anon_sym_BSLASHitem] = ACTIONS(4536), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [sym_word] = ACTIONS(4536), + [sym_placeholder] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_SLASH] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym__] = ACTIONS(4536), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(4536), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4534), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4534), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4534), + [anon_sym_BSLASHbegin] = ACTIONS(4536), + [anon_sym_BSLASHusepackage] = ACTIONS(4536), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4536), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4536), + [anon_sym_BSLASHinclude] = ACTIONS(4536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4536), + [anon_sym_BSLASHinput] = ACTIONS(4536), + [anon_sym_BSLASHsubfile] = ACTIONS(4536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4536), + [anon_sym_BSLASHbibliography] = ACTIONS(4536), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4536), + [anon_sym_BSLASHincludesvg] = ACTIONS(4536), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4536), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4536), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4536), + [anon_sym_BSLASHimport] = ACTIONS(4536), + [anon_sym_BSLASHsubimport] = ACTIONS(4536), + [anon_sym_BSLASHinputfrom] = ACTIONS(4536), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4536), + [anon_sym_BSLASHincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4536), + [anon_sym_BSLASHcaption] = ACTIONS(4536), + [anon_sym_BSLASHcite] = ACTIONS(4536), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCite] = ACTIONS(4536), + [anon_sym_BSLASHnocite] = ACTIONS(4536), + [anon_sym_BSLASHcitet] = ACTIONS(4536), + [anon_sym_BSLASHcitep] = ACTIONS(4536), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteauthor] = ACTIONS(4536), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4536), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitetitle] = ACTIONS(4536), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteyear] = ACTIONS(4536), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4534), + [anon_sym_BSLASHcitedate] = ACTIONS(4536), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4534), + [anon_sym_BSLASHciteurl] = ACTIONS(4536), + [anon_sym_BSLASHfullcite] = ACTIONS(4536), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4536), + [anon_sym_BSLASHcitealt] = ACTIONS(4536), + [anon_sym_BSLASHcitealp] = ACTIONS(4536), + [anon_sym_BSLASHcitetext] = ACTIONS(4536), + [anon_sym_BSLASHparencite] = ACTIONS(4536), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHParencite] = ACTIONS(4536), + [anon_sym_BSLASHfootcite] = ACTIONS(4536), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4536), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4536), + [anon_sym_BSLASHtextcite] = ACTIONS(4536), + [anon_sym_BSLASHTextcite] = ACTIONS(4536), + [anon_sym_BSLASHsmartcite] = ACTIONS(4536), + [anon_sym_BSLASHSmartcite] = ACTIONS(4536), + [anon_sym_BSLASHsupercite] = ACTIONS(4536), + [anon_sym_BSLASHautocite] = ACTIONS(4536), + [anon_sym_BSLASHAutocite] = ACTIONS(4536), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4534), + [anon_sym_BSLASHvolcite] = ACTIONS(4536), + [anon_sym_BSLASHVolcite] = ACTIONS(4536), + [anon_sym_BSLASHpvolcite] = ACTIONS(4536), + [anon_sym_BSLASHPvolcite] = ACTIONS(4536), + [anon_sym_BSLASHfvolcite] = ACTIONS(4536), + [anon_sym_BSLASHftvolcite] = ACTIONS(4536), + [anon_sym_BSLASHsvolcite] = ACTIONS(4536), + [anon_sym_BSLASHSvolcite] = ACTIONS(4536), + [anon_sym_BSLASHtvolcite] = ACTIONS(4536), + [anon_sym_BSLASHTvolcite] = ACTIONS(4536), + [anon_sym_BSLASHavolcite] = ACTIONS(4536), + [anon_sym_BSLASHAvolcite] = ACTIONS(4536), + [anon_sym_BSLASHnotecite] = ACTIONS(4536), + [anon_sym_BSLASHNotecite] = ACTIONS(4536), + [anon_sym_BSLASHpnotecite] = ACTIONS(4536), + [anon_sym_BSLASHPnotecite] = ACTIONS(4536), + [anon_sym_BSLASHfnotecite] = ACTIONS(4536), + [anon_sym_BSLASHlabel] = ACTIONS(4536), + [anon_sym_BSLASHref] = ACTIONS(4536), + [anon_sym_BSLASHeqref] = ACTIONS(4536), + [anon_sym_BSLASHvref] = ACTIONS(4536), + [anon_sym_BSLASHVref] = ACTIONS(4536), + [anon_sym_BSLASHautoref] = ACTIONS(4536), + [anon_sym_BSLASHpageref] = ACTIONS(4536), + [anon_sym_BSLASHcref] = ACTIONS(4536), + [anon_sym_BSLASHCref] = ACTIONS(4536), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnameCref] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4536), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4536), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4536), + [anon_sym_BSLASHlabelcref] = ACTIONS(4536), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange] = ACTIONS(4536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHCrefrange] = ACTIONS(4536), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4534), + [anon_sym_BSLASHnewlabel] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand] = ACTIONS(4536), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4536), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4536), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4534), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4536), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdef] = ACTIONS(4536), + [anon_sym_BSLASHlet] = ACTIONS(4536), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4536), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), + [anon_sym_BSLASHgls] = ACTIONS(4536), + [anon_sym_BSLASHGls] = ACTIONS(4536), + [anon_sym_BSLASHGLS] = ACTIONS(4536), + [anon_sym_BSLASHglspl] = ACTIONS(4536), + [anon_sym_BSLASHGlspl] = ACTIONS(4536), + [anon_sym_BSLASHGLSpl] = ACTIONS(4536), + [anon_sym_BSLASHglsdisp] = ACTIONS(4536), + [anon_sym_BSLASHglslink] = ACTIONS(4536), + [anon_sym_BSLASHglstext] = ACTIONS(4536), + [anon_sym_BSLASHGlstext] = ACTIONS(4536), + [anon_sym_BSLASHGLStext] = ACTIONS(4536), + [anon_sym_BSLASHglsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4536), + [anon_sym_BSLASHglsplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSplural] = ACTIONS(4536), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4536), + [anon_sym_BSLASHglsname] = ACTIONS(4536), + [anon_sym_BSLASHGlsname] = ACTIONS(4536), + [anon_sym_BSLASHGLSname] = ACTIONS(4536), + [anon_sym_BSLASHglssymbol] = ACTIONS(4536), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4536), + [anon_sym_BSLASHglsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4536), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4536), + [anon_sym_BSLASHglsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4536), + [anon_sym_BSLASHglsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4536), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4536), + [anon_sym_BSLASHglsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4536), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4536), + [anon_sym_BSLASHglsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4536), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4536), + [anon_sym_BSLASHnewacronym] = ACTIONS(4536), + [anon_sym_BSLASHacrshort] = ACTIONS(4536), + [anon_sym_BSLASHAcrshort] = ACTIONS(4536), + [anon_sym_BSLASHACRshort] = ACTIONS(4536), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4536), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4536), + [anon_sym_BSLASHacrlong] = ACTIONS(4536), + [anon_sym_BSLASHAcrlong] = ACTIONS(4536), + [anon_sym_BSLASHACRlong] = ACTIONS(4536), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4536), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4536), + [anon_sym_BSLASHacrfull] = ACTIONS(4536), + [anon_sym_BSLASHAcrfull] = ACTIONS(4536), + [anon_sym_BSLASHACRfull] = ACTIONS(4536), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4536), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4536), + [anon_sym_BSLASHacs] = ACTIONS(4536), + [anon_sym_BSLASHAcs] = ACTIONS(4536), + [anon_sym_BSLASHacsp] = ACTIONS(4536), + [anon_sym_BSLASHAcsp] = ACTIONS(4536), + [anon_sym_BSLASHacl] = ACTIONS(4536), + [anon_sym_BSLASHAcl] = ACTIONS(4536), + [anon_sym_BSLASHaclp] = ACTIONS(4536), + [anon_sym_BSLASHAclp] = ACTIONS(4536), + [anon_sym_BSLASHacf] = ACTIONS(4536), + [anon_sym_BSLASHAcf] = ACTIONS(4536), + [anon_sym_BSLASHacfp] = ACTIONS(4536), + [anon_sym_BSLASHAcfp] = ACTIONS(4536), + [anon_sym_BSLASHac] = ACTIONS(4536), + [anon_sym_BSLASHAc] = ACTIONS(4536), + [anon_sym_BSLASHacp] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4536), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4536), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4536), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4536), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4536), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4534), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4536), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4536), + [anon_sym_BSLASHcolor] = ACTIONS(4536), + [anon_sym_BSLASHcolorbox] = ACTIONS(4536), + [anon_sym_BSLASHtextcolor] = ACTIONS(4536), + [anon_sym_BSLASHpagecolor] = ACTIONS(4536), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4536), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4536), + [anon_sym_BSLASHtext] = ACTIONS(4536), + [anon_sym_BSLASHintertext] = ACTIONS(4536), + [anon_sym_shortintertext] = ACTIONS(4536), }, [627] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(1965), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1965), - [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(1965), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddpart] = ACTIONS(1965), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), - [anon_sym_BSLASHchapter] = ACTIONS(1965), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddchap] = ACTIONS(1965), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsection] = ACTIONS(1965), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHaddsec] = ACTIONS(1965), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), - [anon_sym_BSLASHparagraph] = ACTIONS(1965), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), - [anon_sym_BSLASHitem] = ACTIONS(679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(1963), - [sym_word] = ACTIONS(1965), - [sym_placeholder] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_SLASH] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), - [anon_sym__] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_COLON] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1963), - [anon_sym_BSLASHbegin] = ACTIONS(1965), - [anon_sym_BSLASHusepackage] = ACTIONS(1965), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), - [anon_sym_BSLASHinclude] = ACTIONS(1965), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), - [anon_sym_BSLASHinput] = ACTIONS(1965), - [anon_sym_BSLASHsubfile] = ACTIONS(1965), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), - [anon_sym_BSLASHbibliography] = ACTIONS(1965), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), - [anon_sym_BSLASHincludesvg] = ACTIONS(1965), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), - [anon_sym_BSLASHimport] = ACTIONS(1965), - [anon_sym_BSLASHsubimport] = ACTIONS(1965), - [anon_sym_BSLASHinputfrom] = ACTIONS(1965), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), - [anon_sym_BSLASHincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), - [anon_sym_BSLASHcaption] = ACTIONS(1965), - [anon_sym_BSLASHcite] = ACTIONS(1965), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCite] = ACTIONS(1965), - [anon_sym_BSLASHnocite] = ACTIONS(1965), - [anon_sym_BSLASHcitet] = ACTIONS(1965), - [anon_sym_BSLASHcitep] = ACTIONS(1965), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteauthor] = ACTIONS(1965), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitetitle] = ACTIONS(1965), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteyear] = ACTIONS(1965), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), - [anon_sym_BSLASHcitedate] = ACTIONS(1965), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), - [anon_sym_BSLASHciteurl] = ACTIONS(1965), - [anon_sym_BSLASHfullcite] = ACTIONS(1965), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), - [anon_sym_BSLASHcitealt] = ACTIONS(1965), - [anon_sym_BSLASHcitealp] = ACTIONS(1965), - [anon_sym_BSLASHcitetext] = ACTIONS(1965), - [anon_sym_BSLASHparencite] = ACTIONS(1965), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHParencite] = ACTIONS(1965), - [anon_sym_BSLASHfootcite] = ACTIONS(1965), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), - [anon_sym_BSLASHtextcite] = ACTIONS(1965), - [anon_sym_BSLASHTextcite] = ACTIONS(1965), - [anon_sym_BSLASHsmartcite] = ACTIONS(1965), - [anon_sym_BSLASHSmartcite] = ACTIONS(1965), - [anon_sym_BSLASHsupercite] = ACTIONS(1965), - [anon_sym_BSLASHautocite] = ACTIONS(1965), - [anon_sym_BSLASHAutocite] = ACTIONS(1965), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), - [anon_sym_BSLASHvolcite] = ACTIONS(1965), - [anon_sym_BSLASHVolcite] = ACTIONS(1965), - [anon_sym_BSLASHpvolcite] = ACTIONS(1965), - [anon_sym_BSLASHPvolcite] = ACTIONS(1965), - [anon_sym_BSLASHfvolcite] = ACTIONS(1965), - [anon_sym_BSLASHftvolcite] = ACTIONS(1965), - [anon_sym_BSLASHsvolcite] = ACTIONS(1965), - [anon_sym_BSLASHSvolcite] = ACTIONS(1965), - [anon_sym_BSLASHtvolcite] = ACTIONS(1965), - [anon_sym_BSLASHTvolcite] = ACTIONS(1965), - [anon_sym_BSLASHavolcite] = ACTIONS(1965), - [anon_sym_BSLASHAvolcite] = ACTIONS(1965), - [anon_sym_BSLASHnotecite] = ACTIONS(1965), - [anon_sym_BSLASHNotecite] = ACTIONS(1965), - [anon_sym_BSLASHpnotecite] = ACTIONS(1965), - [anon_sym_BSLASHPnotecite] = ACTIONS(1965), - [anon_sym_BSLASHfnotecite] = ACTIONS(1965), - [anon_sym_BSLASHlabel] = ACTIONS(1965), - [anon_sym_BSLASHref] = ACTIONS(1965), - [anon_sym_BSLASHeqref] = ACTIONS(1965), - [anon_sym_BSLASHvref] = ACTIONS(1965), - [anon_sym_BSLASHVref] = ACTIONS(1965), - [anon_sym_BSLASHautoref] = ACTIONS(1965), - [anon_sym_BSLASHpageref] = ACTIONS(1965), - [anon_sym_BSLASHcref] = ACTIONS(1965), - [anon_sym_BSLASHCref] = ACTIONS(1965), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnameCref] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), - [anon_sym_BSLASHlabelcref] = ACTIONS(1965), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange] = ACTIONS(1965), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHCrefrange] = ACTIONS(1965), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), - [anon_sym_BSLASHnewlabel] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand] = ACTIONS(1965), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), - [anon_sym_BSLASHdef] = ACTIONS(1965), - [anon_sym_BSLASHlet] = ACTIONS(1965), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), - [anon_sym_BSLASHgls] = ACTIONS(1965), - [anon_sym_BSLASHGls] = ACTIONS(1965), - [anon_sym_BSLASHGLS] = ACTIONS(1965), - [anon_sym_BSLASHglspl] = ACTIONS(1965), - [anon_sym_BSLASHGlspl] = ACTIONS(1965), - [anon_sym_BSLASHGLSpl] = ACTIONS(1965), - [anon_sym_BSLASHglsdisp] = ACTIONS(1965), - [anon_sym_BSLASHglslink] = ACTIONS(1965), - [anon_sym_BSLASHglstext] = ACTIONS(1965), - [anon_sym_BSLASHGlstext] = ACTIONS(1965), - [anon_sym_BSLASHGLStext] = ACTIONS(1965), - [anon_sym_BSLASHglsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), - [anon_sym_BSLASHglsplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSplural] = ACTIONS(1965), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), - [anon_sym_BSLASHglsname] = ACTIONS(1965), - [anon_sym_BSLASHGlsname] = ACTIONS(1965), - [anon_sym_BSLASHGLSname] = ACTIONS(1965), - [anon_sym_BSLASHglssymbol] = ACTIONS(1965), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), - [anon_sym_BSLASHglsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), - [anon_sym_BSLASHglsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), - [anon_sym_BSLASHglsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), - [anon_sym_BSLASHglsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), - [anon_sym_BSLASHglsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), - [anon_sym_BSLASHnewacronym] = ACTIONS(1965), - [anon_sym_BSLASHacrshort] = ACTIONS(1965), - [anon_sym_BSLASHAcrshort] = ACTIONS(1965), - [anon_sym_BSLASHACRshort] = ACTIONS(1965), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), - [anon_sym_BSLASHacrlong] = ACTIONS(1965), - [anon_sym_BSLASHAcrlong] = ACTIONS(1965), - [anon_sym_BSLASHACRlong] = ACTIONS(1965), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), - [anon_sym_BSLASHacrfull] = ACTIONS(1965), - [anon_sym_BSLASHAcrfull] = ACTIONS(1965), - [anon_sym_BSLASHACRfull] = ACTIONS(1965), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), - [anon_sym_BSLASHacs] = ACTIONS(1965), - [anon_sym_BSLASHAcs] = ACTIONS(1965), - [anon_sym_BSLASHacsp] = ACTIONS(1965), - [anon_sym_BSLASHAcsp] = ACTIONS(1965), - [anon_sym_BSLASHacl] = ACTIONS(1965), - [anon_sym_BSLASHAcl] = ACTIONS(1965), - [anon_sym_BSLASHaclp] = ACTIONS(1965), - [anon_sym_BSLASHAclp] = ACTIONS(1965), - [anon_sym_BSLASHacf] = ACTIONS(1965), - [anon_sym_BSLASHAcf] = ACTIONS(1965), - [anon_sym_BSLASHacfp] = ACTIONS(1965), - [anon_sym_BSLASHAcfp] = ACTIONS(1965), - [anon_sym_BSLASHac] = ACTIONS(1965), - [anon_sym_BSLASHAc] = ACTIONS(1965), - [anon_sym_BSLASHacp] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), - [anon_sym_BSLASHcolor] = ACTIONS(1965), - [anon_sym_BSLASHcolorbox] = ACTIONS(1965), - [anon_sym_BSLASHtextcolor] = ACTIONS(1965), - [anon_sym_BSLASHpagecolor] = ACTIONS(1965), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), - [anon_sym_BSLASHtext] = ACTIONS(1965), - [anon_sym_BSLASHintertext] = ACTIONS(1965), - [anon_sym_shortintertext] = ACTIONS(1965), + [sym_command_name] = ACTIONS(1990), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1988), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1988), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1988), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1988), + [anon_sym_BSLASHitem] = ACTIONS(688), + [anon_sym_BSLASHitem_STAR] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(1988), + [sym_word] = ACTIONS(1990), + [sym_placeholder] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym__] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1988), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1988), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1988), + [anon_sym_BSLASHbegin] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(1990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1990), + [anon_sym_BSLASHinclude] = ACTIONS(1990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1990), + [anon_sym_BSLASHinput] = ACTIONS(1990), + [anon_sym_BSLASHsubfile] = ACTIONS(1990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1990), + [anon_sym_BSLASHbibliography] = ACTIONS(1990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1990), + [anon_sym_BSLASHincludesvg] = ACTIONS(1990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1990), + [anon_sym_BSLASHimport] = ACTIONS(1990), + [anon_sym_BSLASHsubimport] = ACTIONS(1990), + [anon_sym_BSLASHinputfrom] = ACTIONS(1990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1990), + [anon_sym_BSLASHincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1990), + [anon_sym_BSLASHcaption] = ACTIONS(1990), + [anon_sym_BSLASHcite] = ACTIONS(1990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCite] = ACTIONS(1990), + [anon_sym_BSLASHnocite] = ACTIONS(1990), + [anon_sym_BSLASHcitet] = ACTIONS(1990), + [anon_sym_BSLASHcitep] = ACTIONS(1990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteauthor] = ACTIONS(1990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitetitle] = ACTIONS(1990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteyear] = ACTIONS(1990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1988), + [anon_sym_BSLASHcitedate] = ACTIONS(1990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1988), + [anon_sym_BSLASHciteurl] = ACTIONS(1990), + [anon_sym_BSLASHfullcite] = ACTIONS(1990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1990), + [anon_sym_BSLASHcitealt] = ACTIONS(1990), + [anon_sym_BSLASHcitealp] = ACTIONS(1990), + [anon_sym_BSLASHcitetext] = ACTIONS(1990), + [anon_sym_BSLASHparencite] = ACTIONS(1990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHParencite] = ACTIONS(1990), + [anon_sym_BSLASHfootcite] = ACTIONS(1990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1990), + [anon_sym_BSLASHtextcite] = ACTIONS(1990), + [anon_sym_BSLASHTextcite] = ACTIONS(1990), + [anon_sym_BSLASHsmartcite] = ACTIONS(1990), + [anon_sym_BSLASHSmartcite] = ACTIONS(1990), + [anon_sym_BSLASHsupercite] = ACTIONS(1990), + [anon_sym_BSLASHautocite] = ACTIONS(1990), + [anon_sym_BSLASHAutocite] = ACTIONS(1990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1988), + [anon_sym_BSLASHvolcite] = ACTIONS(1990), + [anon_sym_BSLASHVolcite] = ACTIONS(1990), + [anon_sym_BSLASHpvolcite] = ACTIONS(1990), + [anon_sym_BSLASHPvolcite] = ACTIONS(1990), + [anon_sym_BSLASHfvolcite] = ACTIONS(1990), + [anon_sym_BSLASHftvolcite] = ACTIONS(1990), + [anon_sym_BSLASHsvolcite] = ACTIONS(1990), + [anon_sym_BSLASHSvolcite] = ACTIONS(1990), + [anon_sym_BSLASHtvolcite] = ACTIONS(1990), + [anon_sym_BSLASHTvolcite] = ACTIONS(1990), + [anon_sym_BSLASHavolcite] = ACTIONS(1990), + [anon_sym_BSLASHAvolcite] = ACTIONS(1990), + [anon_sym_BSLASHnotecite] = ACTIONS(1990), + [anon_sym_BSLASHNotecite] = ACTIONS(1990), + [anon_sym_BSLASHpnotecite] = ACTIONS(1990), + [anon_sym_BSLASHPnotecite] = ACTIONS(1990), + [anon_sym_BSLASHfnotecite] = ACTIONS(1990), + [anon_sym_BSLASHlabel] = ACTIONS(1990), + [anon_sym_BSLASHref] = ACTIONS(1990), + [anon_sym_BSLASHeqref] = ACTIONS(1990), + [anon_sym_BSLASHvref] = ACTIONS(1990), + [anon_sym_BSLASHVref] = ACTIONS(1990), + [anon_sym_BSLASHautoref] = ACTIONS(1990), + [anon_sym_BSLASHpageref] = ACTIONS(1990), + [anon_sym_BSLASHcref] = ACTIONS(1990), + [anon_sym_BSLASHCref] = ACTIONS(1990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnameCref] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1990), + [anon_sym_BSLASHlabelcref] = ACTIONS(1990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange] = ACTIONS(1990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHCrefrange] = ACTIONS(1990), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1988), + [anon_sym_BSLASHnewlabel] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand] = ACTIONS(1990), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1990), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1990), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1988), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdef] = ACTIONS(1990), + [anon_sym_BSLASHlet] = ACTIONS(1990), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1990), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1990), + [anon_sym_BSLASHgls] = ACTIONS(1990), + [anon_sym_BSLASHGls] = ACTIONS(1990), + [anon_sym_BSLASHGLS] = ACTIONS(1990), + [anon_sym_BSLASHglspl] = ACTIONS(1990), + [anon_sym_BSLASHGlspl] = ACTIONS(1990), + [anon_sym_BSLASHGLSpl] = ACTIONS(1990), + [anon_sym_BSLASHglsdisp] = ACTIONS(1990), + [anon_sym_BSLASHglslink] = ACTIONS(1990), + [anon_sym_BSLASHglstext] = ACTIONS(1990), + [anon_sym_BSLASHGlstext] = ACTIONS(1990), + [anon_sym_BSLASHGLStext] = ACTIONS(1990), + [anon_sym_BSLASHglsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1990), + [anon_sym_BSLASHglsplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSplural] = ACTIONS(1990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1990), + [anon_sym_BSLASHglsname] = ACTIONS(1990), + [anon_sym_BSLASHGlsname] = ACTIONS(1990), + [anon_sym_BSLASHGLSname] = ACTIONS(1990), + [anon_sym_BSLASHglssymbol] = ACTIONS(1990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1990), + [anon_sym_BSLASHglsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1990), + [anon_sym_BSLASHglsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1990), + [anon_sym_BSLASHglsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1990), + [anon_sym_BSLASHglsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1990), + [anon_sym_BSLASHglsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1990), + [anon_sym_BSLASHnewacronym] = ACTIONS(1990), + [anon_sym_BSLASHacrshort] = ACTIONS(1990), + [anon_sym_BSLASHAcrshort] = ACTIONS(1990), + [anon_sym_BSLASHACRshort] = ACTIONS(1990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1990), + [anon_sym_BSLASHacrlong] = ACTIONS(1990), + [anon_sym_BSLASHAcrlong] = ACTIONS(1990), + [anon_sym_BSLASHACRlong] = ACTIONS(1990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1990), + [anon_sym_BSLASHacrfull] = ACTIONS(1990), + [anon_sym_BSLASHAcrfull] = ACTIONS(1990), + [anon_sym_BSLASHACRfull] = ACTIONS(1990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1990), + [anon_sym_BSLASHacs] = ACTIONS(1990), + [anon_sym_BSLASHAcs] = ACTIONS(1990), + [anon_sym_BSLASHacsp] = ACTIONS(1990), + [anon_sym_BSLASHAcsp] = ACTIONS(1990), + [anon_sym_BSLASHacl] = ACTIONS(1990), + [anon_sym_BSLASHAcl] = ACTIONS(1990), + [anon_sym_BSLASHaclp] = ACTIONS(1990), + [anon_sym_BSLASHAclp] = ACTIONS(1990), + [anon_sym_BSLASHacf] = ACTIONS(1990), + [anon_sym_BSLASHAcf] = ACTIONS(1990), + [anon_sym_BSLASHacfp] = ACTIONS(1990), + [anon_sym_BSLASHAcfp] = ACTIONS(1990), + [anon_sym_BSLASHac] = ACTIONS(1990), + [anon_sym_BSLASHAc] = ACTIONS(1990), + [anon_sym_BSLASHacp] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1990), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1990), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1988), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1990), + [anon_sym_BSLASHcolor] = ACTIONS(1990), + [anon_sym_BSLASHcolorbox] = ACTIONS(1990), + [anon_sym_BSLASHtextcolor] = ACTIONS(1990), + [anon_sym_BSLASHpagecolor] = ACTIONS(1990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1990), + [anon_sym_BSLASHtext] = ACTIONS(1990), + [anon_sym_BSLASHintertext] = ACTIONS(1990), + [anon_sym_shortintertext] = ACTIONS(1990), }, [628] = { [sym__part_declaration] = STATE(131), [sym_part] = STATE(628), [aux_sym__section_repeat1] = STATE(628), - [sym_command_name] = ACTIONS(4569), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4569), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4567), - [anon_sym_RBRACK] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_BSLASHpart] = ACTIONS(4761), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4764), - [anon_sym_BSLASHaddpart] = ACTIONS(4761), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4764), - [anon_sym_BSLASHchapter] = ACTIONS(4569), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddchap] = ACTIONS(4569), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsection] = ACTIONS(4569), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHaddsec] = ACTIONS(4569), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), - [anon_sym_BSLASHparagraph] = ACTIONS(4569), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), - [anon_sym_BSLASHitem] = ACTIONS(4569), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [sym_word] = ACTIONS(4569), - [sym_placeholder] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym__] = ACTIONS(4569), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_PIPE] = ACTIONS(4569), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4567), - [anon_sym_BSLASHbegin] = ACTIONS(4569), - [anon_sym_BSLASHusepackage] = ACTIONS(4569), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), - [anon_sym_BSLASHinclude] = ACTIONS(4569), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), - [anon_sym_BSLASHinput] = ACTIONS(4569), - [anon_sym_BSLASHsubfile] = ACTIONS(4569), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), - [anon_sym_BSLASHbibliography] = ACTIONS(4569), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), - [anon_sym_BSLASHincludesvg] = ACTIONS(4569), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), - [anon_sym_BSLASHimport] = ACTIONS(4569), - [anon_sym_BSLASHsubimport] = ACTIONS(4569), - [anon_sym_BSLASHinputfrom] = ACTIONS(4569), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), - [anon_sym_BSLASHincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), - [anon_sym_BSLASHcaption] = ACTIONS(4569), - [anon_sym_BSLASHcite] = ACTIONS(4569), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCite] = ACTIONS(4569), - [anon_sym_BSLASHnocite] = ACTIONS(4569), - [anon_sym_BSLASHcitet] = ACTIONS(4569), - [anon_sym_BSLASHcitep] = ACTIONS(4569), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteauthor] = ACTIONS(4569), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitetitle] = ACTIONS(4569), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteyear] = ACTIONS(4569), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), - [anon_sym_BSLASHcitedate] = ACTIONS(4569), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), - [anon_sym_BSLASHciteurl] = ACTIONS(4569), - [anon_sym_BSLASHfullcite] = ACTIONS(4569), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), - [anon_sym_BSLASHcitealt] = ACTIONS(4569), - [anon_sym_BSLASHcitealp] = ACTIONS(4569), - [anon_sym_BSLASHcitetext] = ACTIONS(4569), - [anon_sym_BSLASHparencite] = ACTIONS(4569), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHParencite] = ACTIONS(4569), - [anon_sym_BSLASHfootcite] = ACTIONS(4569), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), - [anon_sym_BSLASHtextcite] = ACTIONS(4569), - [anon_sym_BSLASHTextcite] = ACTIONS(4569), - [anon_sym_BSLASHsmartcite] = ACTIONS(4569), - [anon_sym_BSLASHSmartcite] = ACTIONS(4569), - [anon_sym_BSLASHsupercite] = ACTIONS(4569), - [anon_sym_BSLASHautocite] = ACTIONS(4569), - [anon_sym_BSLASHAutocite] = ACTIONS(4569), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), - [anon_sym_BSLASHvolcite] = ACTIONS(4569), - [anon_sym_BSLASHVolcite] = ACTIONS(4569), - [anon_sym_BSLASHpvolcite] = ACTIONS(4569), - [anon_sym_BSLASHPvolcite] = ACTIONS(4569), - [anon_sym_BSLASHfvolcite] = ACTIONS(4569), - [anon_sym_BSLASHftvolcite] = ACTIONS(4569), - [anon_sym_BSLASHsvolcite] = ACTIONS(4569), - [anon_sym_BSLASHSvolcite] = ACTIONS(4569), - [anon_sym_BSLASHtvolcite] = ACTIONS(4569), - [anon_sym_BSLASHTvolcite] = ACTIONS(4569), - [anon_sym_BSLASHavolcite] = ACTIONS(4569), - [anon_sym_BSLASHAvolcite] = ACTIONS(4569), - [anon_sym_BSLASHnotecite] = ACTIONS(4569), - [anon_sym_BSLASHNotecite] = ACTIONS(4569), - [anon_sym_BSLASHpnotecite] = ACTIONS(4569), - [anon_sym_BSLASHPnotecite] = ACTIONS(4569), - [anon_sym_BSLASHfnotecite] = ACTIONS(4569), - [anon_sym_BSLASHlabel] = ACTIONS(4569), - [anon_sym_BSLASHref] = ACTIONS(4569), - [anon_sym_BSLASHeqref] = ACTIONS(4569), - [anon_sym_BSLASHvref] = ACTIONS(4569), - [anon_sym_BSLASHVref] = ACTIONS(4569), - [anon_sym_BSLASHautoref] = ACTIONS(4569), - [anon_sym_BSLASHpageref] = ACTIONS(4569), - [anon_sym_BSLASHcref] = ACTIONS(4569), - [anon_sym_BSLASHCref] = ACTIONS(4569), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnameCref] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), - [anon_sym_BSLASHlabelcref] = ACTIONS(4569), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnewlabel] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand] = ACTIONS(4569), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), - [anon_sym_BSLASHdef] = ACTIONS(4569), - [anon_sym_BSLASHlet] = ACTIONS(4569), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), - [anon_sym_BSLASHgls] = ACTIONS(4569), - [anon_sym_BSLASHGls] = ACTIONS(4569), - [anon_sym_BSLASHGLS] = ACTIONS(4569), - [anon_sym_BSLASHglspl] = ACTIONS(4569), - [anon_sym_BSLASHGlspl] = ACTIONS(4569), - [anon_sym_BSLASHGLSpl] = ACTIONS(4569), - [anon_sym_BSLASHglsdisp] = ACTIONS(4569), - [anon_sym_BSLASHglslink] = ACTIONS(4569), - [anon_sym_BSLASHglstext] = ACTIONS(4569), - [anon_sym_BSLASHGlstext] = ACTIONS(4569), - [anon_sym_BSLASHGLStext] = ACTIONS(4569), - [anon_sym_BSLASHglsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), - [anon_sym_BSLASHglsplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSplural] = ACTIONS(4569), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), - [anon_sym_BSLASHglsname] = ACTIONS(4569), - [anon_sym_BSLASHGlsname] = ACTIONS(4569), - [anon_sym_BSLASHGLSname] = ACTIONS(4569), - [anon_sym_BSLASHglssymbol] = ACTIONS(4569), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), - [anon_sym_BSLASHglsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), - [anon_sym_BSLASHglsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), - [anon_sym_BSLASHglsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), - [anon_sym_BSLASHglsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), - [anon_sym_BSLASHglsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), - [anon_sym_BSLASHnewacronym] = ACTIONS(4569), - [anon_sym_BSLASHacrshort] = ACTIONS(4569), - [anon_sym_BSLASHAcrshort] = ACTIONS(4569), - [anon_sym_BSLASHACRshort] = ACTIONS(4569), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), - [anon_sym_BSLASHacrlong] = ACTIONS(4569), - [anon_sym_BSLASHAcrlong] = ACTIONS(4569), - [anon_sym_BSLASHACRlong] = ACTIONS(4569), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), - [anon_sym_BSLASHacrfull] = ACTIONS(4569), - [anon_sym_BSLASHAcrfull] = ACTIONS(4569), - [anon_sym_BSLASHACRfull] = ACTIONS(4569), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), - [anon_sym_BSLASHacs] = ACTIONS(4569), - [anon_sym_BSLASHAcs] = ACTIONS(4569), - [anon_sym_BSLASHacsp] = ACTIONS(4569), - [anon_sym_BSLASHAcsp] = ACTIONS(4569), - [anon_sym_BSLASHacl] = ACTIONS(4569), - [anon_sym_BSLASHAcl] = ACTIONS(4569), - [anon_sym_BSLASHaclp] = ACTIONS(4569), - [anon_sym_BSLASHAclp] = ACTIONS(4569), - [anon_sym_BSLASHacf] = ACTIONS(4569), - [anon_sym_BSLASHAcf] = ACTIONS(4569), - [anon_sym_BSLASHacfp] = ACTIONS(4569), - [anon_sym_BSLASHAcfp] = ACTIONS(4569), - [anon_sym_BSLASHac] = ACTIONS(4569), - [anon_sym_BSLASHAc] = ACTIONS(4569), - [anon_sym_BSLASHacp] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), - [anon_sym_BSLASHcolor] = ACTIONS(4569), - [anon_sym_BSLASHcolorbox] = ACTIONS(4569), - [anon_sym_BSLASHtextcolor] = ACTIONS(4569), - [anon_sym_BSLASHpagecolor] = ACTIONS(4569), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), - [anon_sym_BSLASHtext] = ACTIONS(4569), - [anon_sym_BSLASHintertext] = ACTIONS(4569), - [anon_sym_shortintertext] = ACTIONS(4569), + [sym_command_name] = ACTIONS(4648), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_BSLASHpart] = ACTIONS(4840), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddpart] = ACTIONS(4840), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHchapter] = ACTIONS(4648), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddchap] = ACTIONS(4648), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsection] = ACTIONS(4648), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHaddsec] = ACTIONS(4648), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4648), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4646), + [anon_sym_BSLASHparagraph] = ACTIONS(4648), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4648), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4646), + [anon_sym_BSLASHitem] = ACTIONS(4648), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [sym_word] = ACTIONS(4648), + [sym_placeholder] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym__] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_COLON] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4646), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4646), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4646), + [anon_sym_BSLASHbegin] = ACTIONS(4648), + [anon_sym_BSLASHusepackage] = ACTIONS(4648), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4648), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4648), + [anon_sym_BSLASHinclude] = ACTIONS(4648), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4648), + [anon_sym_BSLASHinput] = ACTIONS(4648), + [anon_sym_BSLASHsubfile] = ACTIONS(4648), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4648), + [anon_sym_BSLASHbibliography] = ACTIONS(4648), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4648), + [anon_sym_BSLASHincludesvg] = ACTIONS(4648), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4648), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4648), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4648), + [anon_sym_BSLASHimport] = ACTIONS(4648), + [anon_sym_BSLASHsubimport] = ACTIONS(4648), + [anon_sym_BSLASHinputfrom] = ACTIONS(4648), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4648), + [anon_sym_BSLASHincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4648), + [anon_sym_BSLASHcaption] = ACTIONS(4648), + [anon_sym_BSLASHcite] = ACTIONS(4648), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCite] = ACTIONS(4648), + [anon_sym_BSLASHnocite] = ACTIONS(4648), + [anon_sym_BSLASHcitet] = ACTIONS(4648), + [anon_sym_BSLASHcitep] = ACTIONS(4648), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteauthor] = ACTIONS(4648), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4648), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitetitle] = ACTIONS(4648), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteyear] = ACTIONS(4648), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4646), + [anon_sym_BSLASHcitedate] = ACTIONS(4648), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4646), + [anon_sym_BSLASHciteurl] = ACTIONS(4648), + [anon_sym_BSLASHfullcite] = ACTIONS(4648), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4648), + [anon_sym_BSLASHcitealt] = ACTIONS(4648), + [anon_sym_BSLASHcitealp] = ACTIONS(4648), + [anon_sym_BSLASHcitetext] = ACTIONS(4648), + [anon_sym_BSLASHparencite] = ACTIONS(4648), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHParencite] = ACTIONS(4648), + [anon_sym_BSLASHfootcite] = ACTIONS(4648), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4648), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4648), + [anon_sym_BSLASHtextcite] = ACTIONS(4648), + [anon_sym_BSLASHTextcite] = ACTIONS(4648), + [anon_sym_BSLASHsmartcite] = ACTIONS(4648), + [anon_sym_BSLASHSmartcite] = ACTIONS(4648), + [anon_sym_BSLASHsupercite] = ACTIONS(4648), + [anon_sym_BSLASHautocite] = ACTIONS(4648), + [anon_sym_BSLASHAutocite] = ACTIONS(4648), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4646), + [anon_sym_BSLASHvolcite] = ACTIONS(4648), + [anon_sym_BSLASHVolcite] = ACTIONS(4648), + [anon_sym_BSLASHpvolcite] = ACTIONS(4648), + [anon_sym_BSLASHPvolcite] = ACTIONS(4648), + [anon_sym_BSLASHfvolcite] = ACTIONS(4648), + [anon_sym_BSLASHftvolcite] = ACTIONS(4648), + [anon_sym_BSLASHsvolcite] = ACTIONS(4648), + [anon_sym_BSLASHSvolcite] = ACTIONS(4648), + [anon_sym_BSLASHtvolcite] = ACTIONS(4648), + [anon_sym_BSLASHTvolcite] = ACTIONS(4648), + [anon_sym_BSLASHavolcite] = ACTIONS(4648), + [anon_sym_BSLASHAvolcite] = ACTIONS(4648), + [anon_sym_BSLASHnotecite] = ACTIONS(4648), + [anon_sym_BSLASHNotecite] = ACTIONS(4648), + [anon_sym_BSLASHpnotecite] = ACTIONS(4648), + [anon_sym_BSLASHPnotecite] = ACTIONS(4648), + [anon_sym_BSLASHfnotecite] = ACTIONS(4648), + [anon_sym_BSLASHlabel] = ACTIONS(4648), + [anon_sym_BSLASHref] = ACTIONS(4648), + [anon_sym_BSLASHeqref] = ACTIONS(4648), + [anon_sym_BSLASHvref] = ACTIONS(4648), + [anon_sym_BSLASHVref] = ACTIONS(4648), + [anon_sym_BSLASHautoref] = ACTIONS(4648), + [anon_sym_BSLASHpageref] = ACTIONS(4648), + [anon_sym_BSLASHcref] = ACTIONS(4648), + [anon_sym_BSLASHCref] = ACTIONS(4648), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnameCref] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4648), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4648), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4648), + [anon_sym_BSLASHlabelcref] = ACTIONS(4648), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange] = ACTIONS(4648), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHCrefrange] = ACTIONS(4648), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4646), + [anon_sym_BSLASHnewlabel] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand] = ACTIONS(4648), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4648), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4648), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4646), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4648), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdef] = ACTIONS(4648), + [anon_sym_BSLASHlet] = ACTIONS(4648), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4648), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4648), + [anon_sym_BSLASHgls] = ACTIONS(4648), + [anon_sym_BSLASHGls] = ACTIONS(4648), + [anon_sym_BSLASHGLS] = ACTIONS(4648), + [anon_sym_BSLASHglspl] = ACTIONS(4648), + [anon_sym_BSLASHGlspl] = ACTIONS(4648), + [anon_sym_BSLASHGLSpl] = ACTIONS(4648), + [anon_sym_BSLASHglsdisp] = ACTIONS(4648), + [anon_sym_BSLASHglslink] = ACTIONS(4648), + [anon_sym_BSLASHglstext] = ACTIONS(4648), + [anon_sym_BSLASHGlstext] = ACTIONS(4648), + [anon_sym_BSLASHGLStext] = ACTIONS(4648), + [anon_sym_BSLASHglsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4648), + [anon_sym_BSLASHglsplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSplural] = ACTIONS(4648), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4648), + [anon_sym_BSLASHglsname] = ACTIONS(4648), + [anon_sym_BSLASHGlsname] = ACTIONS(4648), + [anon_sym_BSLASHGLSname] = ACTIONS(4648), + [anon_sym_BSLASHglssymbol] = ACTIONS(4648), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4648), + [anon_sym_BSLASHglsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4648), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4648), + [anon_sym_BSLASHglsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4648), + [anon_sym_BSLASHglsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4648), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4648), + [anon_sym_BSLASHglsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4648), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4648), + [anon_sym_BSLASHglsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4648), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4648), + [anon_sym_BSLASHnewacronym] = ACTIONS(4648), + [anon_sym_BSLASHacrshort] = ACTIONS(4648), + [anon_sym_BSLASHAcrshort] = ACTIONS(4648), + [anon_sym_BSLASHACRshort] = ACTIONS(4648), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4648), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4648), + [anon_sym_BSLASHacrlong] = ACTIONS(4648), + [anon_sym_BSLASHAcrlong] = ACTIONS(4648), + [anon_sym_BSLASHACRlong] = ACTIONS(4648), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4648), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4648), + [anon_sym_BSLASHacrfull] = ACTIONS(4648), + [anon_sym_BSLASHAcrfull] = ACTIONS(4648), + [anon_sym_BSLASHACRfull] = ACTIONS(4648), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4648), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4648), + [anon_sym_BSLASHacs] = ACTIONS(4648), + [anon_sym_BSLASHAcs] = ACTIONS(4648), + [anon_sym_BSLASHacsp] = ACTIONS(4648), + [anon_sym_BSLASHAcsp] = ACTIONS(4648), + [anon_sym_BSLASHacl] = ACTIONS(4648), + [anon_sym_BSLASHAcl] = ACTIONS(4648), + [anon_sym_BSLASHaclp] = ACTIONS(4648), + [anon_sym_BSLASHAclp] = ACTIONS(4648), + [anon_sym_BSLASHacf] = ACTIONS(4648), + [anon_sym_BSLASHAcf] = ACTIONS(4648), + [anon_sym_BSLASHacfp] = ACTIONS(4648), + [anon_sym_BSLASHAcfp] = ACTIONS(4648), + [anon_sym_BSLASHac] = ACTIONS(4648), + [anon_sym_BSLASHAc] = ACTIONS(4648), + [anon_sym_BSLASHacp] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4648), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4648), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4648), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4648), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4648), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4646), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4648), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4648), + [anon_sym_BSLASHcolor] = ACTIONS(4648), + [anon_sym_BSLASHcolorbox] = ACTIONS(4648), + [anon_sym_BSLASHtextcolor] = ACTIONS(4648), + [anon_sym_BSLASHpagecolor] = ACTIONS(4648), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4648), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4648), + [anon_sym_BSLASHtext] = ACTIONS(4648), + [anon_sym_BSLASHintertext] = ACTIONS(4648), + [anon_sym_shortintertext] = ACTIONS(4648), }, [629] = { [sym_curly_group] = STATE(898), [sym_mixed_group] = STATE(898), [aux_sym_generic_command_repeat1] = STATE(629), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4767), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_BSLASHpart] = ACTIONS(4461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddpart] = ACTIONS(4461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), - [anon_sym_BSLASHchapter] = ACTIONS(4461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddchap] = ACTIONS(4461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsection] = ACTIONS(4461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHaddsec] = ACTIONS(4461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), - [anon_sym_BSLASHparagraph] = ACTIONS(4461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), - [anon_sym_BSLASHitem] = ACTIONS(4461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(4770), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4459), - [anon_sym_BSLASHbegin] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_BSLASHpart] = ACTIONS(4540), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddpart] = ACTIONS(4540), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4538), + [anon_sym_BSLASHchapter] = ACTIONS(4540), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddchap] = ACTIONS(4540), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsection] = ACTIONS(4540), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHaddsec] = ACTIONS(4540), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4540), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4538), + [anon_sym_BSLASHparagraph] = ACTIONS(4540), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4540), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4538), + [anon_sym_BSLASHitem] = ACTIONS(4540), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4849), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4538), + [anon_sym_BSLASHbegin] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [630] = { [sym__chapter_declaration] = STATE(135), [sym_chapter] = STATE(630), [aux_sym__section_repeat2] = STATE(630), - [sym_command_name] = ACTIONS(4555), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_RPAREN] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_RBRACK] = ACTIONS(4553), - [anon_sym_COMMA] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_BSLASHpart] = ACTIONS(4555), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddpart] = ACTIONS(4555), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), - [anon_sym_BSLASHchapter] = ACTIONS(4773), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4776), - [anon_sym_BSLASHaddchap] = ACTIONS(4773), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4776), - [anon_sym_BSLASHsection] = ACTIONS(4555), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHaddsec] = ACTIONS(4555), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), - [anon_sym_BSLASHparagraph] = ACTIONS(4555), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), - [anon_sym_BSLASHitem] = ACTIONS(4555), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4553), - [sym_word] = ACTIONS(4555), - [sym_placeholder] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym__] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4553), - [anon_sym_BSLASHbegin] = ACTIONS(4555), - [anon_sym_BSLASHusepackage] = ACTIONS(4555), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), - [anon_sym_BSLASHinclude] = ACTIONS(4555), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), - [anon_sym_BSLASHinput] = ACTIONS(4555), - [anon_sym_BSLASHsubfile] = ACTIONS(4555), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), - [anon_sym_BSLASHbibliography] = ACTIONS(4555), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), - [anon_sym_BSLASHincludesvg] = ACTIONS(4555), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), - [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(4555), - [anon_sym_BSLASHcite] = ACTIONS(4555), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCite] = ACTIONS(4555), - [anon_sym_BSLASHnocite] = ACTIONS(4555), - [anon_sym_BSLASHcitet] = ACTIONS(4555), - [anon_sym_BSLASHcitep] = ACTIONS(4555), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteauthor] = ACTIONS(4555), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitetitle] = ACTIONS(4555), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteyear] = ACTIONS(4555), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), - [anon_sym_BSLASHcitedate] = ACTIONS(4555), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), - [anon_sym_BSLASHciteurl] = ACTIONS(4555), - [anon_sym_BSLASHfullcite] = ACTIONS(4555), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), - [anon_sym_BSLASHcitealt] = ACTIONS(4555), - [anon_sym_BSLASHcitealp] = ACTIONS(4555), - [anon_sym_BSLASHcitetext] = ACTIONS(4555), - [anon_sym_BSLASHparencite] = ACTIONS(4555), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHParencite] = ACTIONS(4555), - [anon_sym_BSLASHfootcite] = ACTIONS(4555), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), - [anon_sym_BSLASHtextcite] = ACTIONS(4555), - [anon_sym_BSLASHTextcite] = ACTIONS(4555), - [anon_sym_BSLASHsmartcite] = ACTIONS(4555), - [anon_sym_BSLASHSmartcite] = ACTIONS(4555), - [anon_sym_BSLASHsupercite] = ACTIONS(4555), - [anon_sym_BSLASHautocite] = ACTIONS(4555), - [anon_sym_BSLASHAutocite] = ACTIONS(4555), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), - [anon_sym_BSLASHvolcite] = ACTIONS(4555), - [anon_sym_BSLASHVolcite] = ACTIONS(4555), - [anon_sym_BSLASHpvolcite] = ACTIONS(4555), - [anon_sym_BSLASHPvolcite] = ACTIONS(4555), - [anon_sym_BSLASHfvolcite] = ACTIONS(4555), - [anon_sym_BSLASHftvolcite] = ACTIONS(4555), - [anon_sym_BSLASHsvolcite] = ACTIONS(4555), - [anon_sym_BSLASHSvolcite] = ACTIONS(4555), - [anon_sym_BSLASHtvolcite] = ACTIONS(4555), - [anon_sym_BSLASHTvolcite] = ACTIONS(4555), - [anon_sym_BSLASHavolcite] = ACTIONS(4555), - [anon_sym_BSLASHAvolcite] = ACTIONS(4555), - [anon_sym_BSLASHnotecite] = ACTIONS(4555), - [anon_sym_BSLASHNotecite] = ACTIONS(4555), - [anon_sym_BSLASHpnotecite] = ACTIONS(4555), - [anon_sym_BSLASHPnotecite] = ACTIONS(4555), - [anon_sym_BSLASHfnotecite] = ACTIONS(4555), - [anon_sym_BSLASHlabel] = ACTIONS(4555), - [anon_sym_BSLASHref] = ACTIONS(4555), - [anon_sym_BSLASHeqref] = ACTIONS(4555), - [anon_sym_BSLASHvref] = ACTIONS(4555), - [anon_sym_BSLASHVref] = ACTIONS(4555), - [anon_sym_BSLASHautoref] = ACTIONS(4555), - [anon_sym_BSLASHpageref] = ACTIONS(4555), - [anon_sym_BSLASHcref] = ACTIONS(4555), - [anon_sym_BSLASHCref] = ACTIONS(4555), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnameCref] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), - [anon_sym_BSLASHlabelcref] = ACTIONS(4555), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange] = ACTIONS(4555), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHCrefrange] = ACTIONS(4555), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), - [anon_sym_BSLASHnewlabel] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand] = ACTIONS(4555), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), - [anon_sym_BSLASHdef] = ACTIONS(4555), - [anon_sym_BSLASHlet] = ACTIONS(4555), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), - [anon_sym_BSLASHgls] = ACTIONS(4555), - [anon_sym_BSLASHGls] = ACTIONS(4555), - [anon_sym_BSLASHGLS] = ACTIONS(4555), - [anon_sym_BSLASHglspl] = ACTIONS(4555), - [anon_sym_BSLASHGlspl] = ACTIONS(4555), - [anon_sym_BSLASHGLSpl] = ACTIONS(4555), - [anon_sym_BSLASHglsdisp] = ACTIONS(4555), - [anon_sym_BSLASHglslink] = ACTIONS(4555), - [anon_sym_BSLASHglstext] = ACTIONS(4555), - [anon_sym_BSLASHGlstext] = ACTIONS(4555), - [anon_sym_BSLASHGLStext] = ACTIONS(4555), - [anon_sym_BSLASHglsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), - [anon_sym_BSLASHglsplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSplural] = ACTIONS(4555), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), - [anon_sym_BSLASHglsname] = ACTIONS(4555), - [anon_sym_BSLASHGlsname] = ACTIONS(4555), - [anon_sym_BSLASHGLSname] = ACTIONS(4555), - [anon_sym_BSLASHglssymbol] = ACTIONS(4555), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), - [anon_sym_BSLASHglsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), - [anon_sym_BSLASHglsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), - [anon_sym_BSLASHglsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), - [anon_sym_BSLASHglsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), - [anon_sym_BSLASHglsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), - [anon_sym_BSLASHnewacronym] = ACTIONS(4555), - [anon_sym_BSLASHacrshort] = ACTIONS(4555), - [anon_sym_BSLASHAcrshort] = ACTIONS(4555), - [anon_sym_BSLASHACRshort] = ACTIONS(4555), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), - [anon_sym_BSLASHacrlong] = ACTIONS(4555), - [anon_sym_BSLASHAcrlong] = ACTIONS(4555), - [anon_sym_BSLASHACRlong] = ACTIONS(4555), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), - [anon_sym_BSLASHacrfull] = ACTIONS(4555), - [anon_sym_BSLASHAcrfull] = ACTIONS(4555), - [anon_sym_BSLASHACRfull] = ACTIONS(4555), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), - [anon_sym_BSLASHacs] = ACTIONS(4555), - [anon_sym_BSLASHAcs] = ACTIONS(4555), - [anon_sym_BSLASHacsp] = ACTIONS(4555), - [anon_sym_BSLASHAcsp] = ACTIONS(4555), - [anon_sym_BSLASHacl] = ACTIONS(4555), - [anon_sym_BSLASHAcl] = ACTIONS(4555), - [anon_sym_BSLASHaclp] = ACTIONS(4555), - [anon_sym_BSLASHAclp] = ACTIONS(4555), - [anon_sym_BSLASHacf] = ACTIONS(4555), - [anon_sym_BSLASHAcf] = ACTIONS(4555), - [anon_sym_BSLASHacfp] = ACTIONS(4555), - [anon_sym_BSLASHAcfp] = ACTIONS(4555), - [anon_sym_BSLASHac] = ACTIONS(4555), - [anon_sym_BSLASHAc] = ACTIONS(4555), - [anon_sym_BSLASHacp] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), - [anon_sym_BSLASHcolor] = ACTIONS(4555), - [anon_sym_BSLASHcolorbox] = ACTIONS(4555), - [anon_sym_BSLASHtextcolor] = ACTIONS(4555), - [anon_sym_BSLASHpagecolor] = ACTIONS(4555), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), - [anon_sym_BSLASHtext] = ACTIONS(4555), - [anon_sym_BSLASHintertext] = ACTIONS(4555), - [anon_sym_shortintertext] = ACTIONS(4555), + [sym_command_name] = ACTIONS(4634), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_BSLASHpart] = ACTIONS(4634), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddpart] = ACTIONS(4634), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4632), + [anon_sym_BSLASHchapter] = ACTIONS(4852), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddchap] = ACTIONS(4852), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsection] = ACTIONS(4634), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHaddsec] = ACTIONS(4634), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4634), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4632), + [anon_sym_BSLASHparagraph] = ACTIONS(4634), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4634), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4632), + [anon_sym_BSLASHitem] = ACTIONS(4634), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4632), + [sym_word] = ACTIONS(4634), + [sym_placeholder] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_SLASH] = ACTIONS(4634), + [anon_sym_CARET] = ACTIONS(4634), + [anon_sym__] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4634), + [anon_sym_GT] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_PIPE] = ACTIONS(4634), + [anon_sym_COLON] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4632), + [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4632), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4632), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4632), + [anon_sym_BSLASHbegin] = ACTIONS(4634), + [anon_sym_BSLASHusepackage] = ACTIONS(4634), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4634), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4634), + [anon_sym_BSLASHinclude] = ACTIONS(4634), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4634), + [anon_sym_BSLASHinput] = ACTIONS(4634), + [anon_sym_BSLASHsubfile] = ACTIONS(4634), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4634), + [anon_sym_BSLASHbibliography] = ACTIONS(4634), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4634), + [anon_sym_BSLASHincludesvg] = ACTIONS(4634), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4634), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4634), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4634), + [anon_sym_BSLASHimport] = ACTIONS(4634), + [anon_sym_BSLASHsubimport] = ACTIONS(4634), + [anon_sym_BSLASHinputfrom] = ACTIONS(4634), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4634), + [anon_sym_BSLASHincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4634), + [anon_sym_BSLASHcaption] = ACTIONS(4634), + [anon_sym_BSLASHcite] = ACTIONS(4634), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCite] = ACTIONS(4634), + [anon_sym_BSLASHnocite] = ACTIONS(4634), + [anon_sym_BSLASHcitet] = ACTIONS(4634), + [anon_sym_BSLASHcitep] = ACTIONS(4634), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteauthor] = ACTIONS(4634), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4634), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitetitle] = ACTIONS(4634), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteyear] = ACTIONS(4634), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4632), + [anon_sym_BSLASHcitedate] = ACTIONS(4634), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4632), + [anon_sym_BSLASHciteurl] = ACTIONS(4634), + [anon_sym_BSLASHfullcite] = ACTIONS(4634), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4634), + [anon_sym_BSLASHcitealt] = ACTIONS(4634), + [anon_sym_BSLASHcitealp] = ACTIONS(4634), + [anon_sym_BSLASHcitetext] = ACTIONS(4634), + [anon_sym_BSLASHparencite] = ACTIONS(4634), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHParencite] = ACTIONS(4634), + [anon_sym_BSLASHfootcite] = ACTIONS(4634), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4634), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4634), + [anon_sym_BSLASHtextcite] = ACTIONS(4634), + [anon_sym_BSLASHTextcite] = ACTIONS(4634), + [anon_sym_BSLASHsmartcite] = ACTIONS(4634), + [anon_sym_BSLASHSmartcite] = ACTIONS(4634), + [anon_sym_BSLASHsupercite] = ACTIONS(4634), + [anon_sym_BSLASHautocite] = ACTIONS(4634), + [anon_sym_BSLASHAutocite] = ACTIONS(4634), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4632), + [anon_sym_BSLASHvolcite] = ACTIONS(4634), + [anon_sym_BSLASHVolcite] = ACTIONS(4634), + [anon_sym_BSLASHpvolcite] = ACTIONS(4634), + [anon_sym_BSLASHPvolcite] = ACTIONS(4634), + [anon_sym_BSLASHfvolcite] = ACTIONS(4634), + [anon_sym_BSLASHftvolcite] = ACTIONS(4634), + [anon_sym_BSLASHsvolcite] = ACTIONS(4634), + [anon_sym_BSLASHSvolcite] = ACTIONS(4634), + [anon_sym_BSLASHtvolcite] = ACTIONS(4634), + [anon_sym_BSLASHTvolcite] = ACTIONS(4634), + [anon_sym_BSLASHavolcite] = ACTIONS(4634), + [anon_sym_BSLASHAvolcite] = ACTIONS(4634), + [anon_sym_BSLASHnotecite] = ACTIONS(4634), + [anon_sym_BSLASHNotecite] = ACTIONS(4634), + [anon_sym_BSLASHpnotecite] = ACTIONS(4634), + [anon_sym_BSLASHPnotecite] = ACTIONS(4634), + [anon_sym_BSLASHfnotecite] = ACTIONS(4634), + [anon_sym_BSLASHlabel] = ACTIONS(4634), + [anon_sym_BSLASHref] = ACTIONS(4634), + [anon_sym_BSLASHeqref] = ACTIONS(4634), + [anon_sym_BSLASHvref] = ACTIONS(4634), + [anon_sym_BSLASHVref] = ACTIONS(4634), + [anon_sym_BSLASHautoref] = ACTIONS(4634), + [anon_sym_BSLASHpageref] = ACTIONS(4634), + [anon_sym_BSLASHcref] = ACTIONS(4634), + [anon_sym_BSLASHCref] = ACTIONS(4634), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnameCref] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4634), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4634), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4634), + [anon_sym_BSLASHlabelcref] = ACTIONS(4634), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange] = ACTIONS(4634), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHCrefrange] = ACTIONS(4634), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4632), + [anon_sym_BSLASHnewlabel] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand] = ACTIONS(4634), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4634), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4634), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4632), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4634), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdef] = ACTIONS(4634), + [anon_sym_BSLASHlet] = ACTIONS(4634), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4634), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4634), + [anon_sym_BSLASHgls] = ACTIONS(4634), + [anon_sym_BSLASHGls] = ACTIONS(4634), + [anon_sym_BSLASHGLS] = ACTIONS(4634), + [anon_sym_BSLASHglspl] = ACTIONS(4634), + [anon_sym_BSLASHGlspl] = ACTIONS(4634), + [anon_sym_BSLASHGLSpl] = ACTIONS(4634), + [anon_sym_BSLASHglsdisp] = ACTIONS(4634), + [anon_sym_BSLASHglslink] = ACTIONS(4634), + [anon_sym_BSLASHglstext] = ACTIONS(4634), + [anon_sym_BSLASHGlstext] = ACTIONS(4634), + [anon_sym_BSLASHGLStext] = ACTIONS(4634), + [anon_sym_BSLASHglsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4634), + [anon_sym_BSLASHglsplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSplural] = ACTIONS(4634), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4634), + [anon_sym_BSLASHglsname] = ACTIONS(4634), + [anon_sym_BSLASHGlsname] = ACTIONS(4634), + [anon_sym_BSLASHGLSname] = ACTIONS(4634), + [anon_sym_BSLASHglssymbol] = ACTIONS(4634), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4634), + [anon_sym_BSLASHglsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4634), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4634), + [anon_sym_BSLASHglsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4634), + [anon_sym_BSLASHglsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4634), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4634), + [anon_sym_BSLASHglsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4634), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4634), + [anon_sym_BSLASHglsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4634), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4634), + [anon_sym_BSLASHnewacronym] = ACTIONS(4634), + [anon_sym_BSLASHacrshort] = ACTIONS(4634), + [anon_sym_BSLASHAcrshort] = ACTIONS(4634), + [anon_sym_BSLASHACRshort] = ACTIONS(4634), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4634), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4634), + [anon_sym_BSLASHacrlong] = ACTIONS(4634), + [anon_sym_BSLASHAcrlong] = ACTIONS(4634), + [anon_sym_BSLASHACRlong] = ACTIONS(4634), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4634), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4634), + [anon_sym_BSLASHacrfull] = ACTIONS(4634), + [anon_sym_BSLASHAcrfull] = ACTIONS(4634), + [anon_sym_BSLASHACRfull] = ACTIONS(4634), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4634), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4634), + [anon_sym_BSLASHacs] = ACTIONS(4634), + [anon_sym_BSLASHAcs] = ACTIONS(4634), + [anon_sym_BSLASHacsp] = ACTIONS(4634), + [anon_sym_BSLASHAcsp] = ACTIONS(4634), + [anon_sym_BSLASHacl] = ACTIONS(4634), + [anon_sym_BSLASHAcl] = ACTIONS(4634), + [anon_sym_BSLASHaclp] = ACTIONS(4634), + [anon_sym_BSLASHAclp] = ACTIONS(4634), + [anon_sym_BSLASHacf] = ACTIONS(4634), + [anon_sym_BSLASHAcf] = ACTIONS(4634), + [anon_sym_BSLASHacfp] = ACTIONS(4634), + [anon_sym_BSLASHAcfp] = ACTIONS(4634), + [anon_sym_BSLASHac] = ACTIONS(4634), + [anon_sym_BSLASHAc] = ACTIONS(4634), + [anon_sym_BSLASHacp] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4634), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4634), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4634), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4634), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4634), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4632), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4634), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4634), + [anon_sym_BSLASHcolor] = ACTIONS(4634), + [anon_sym_BSLASHcolorbox] = ACTIONS(4634), + [anon_sym_BSLASHtextcolor] = ACTIONS(4634), + [anon_sym_BSLASHpagecolor] = ACTIONS(4634), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4634), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4634), + [anon_sym_BSLASHtext] = ACTIONS(4634), + [anon_sym_BSLASHintertext] = ACTIONS(4634), + [anon_sym_shortintertext] = ACTIONS(4634), }, [631] = { [sym__section_declaration] = STATE(144), [sym_section] = STATE(631), [aux_sym__section_repeat3] = STATE(631), - [sym_command_name] = ACTIONS(4545), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4545), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_RBRACK] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_BSLASHpart] = ACTIONS(4545), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddpart] = ACTIONS(4545), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), - [anon_sym_BSLASHchapter] = ACTIONS(4545), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), - [anon_sym_BSLASHaddchap] = ACTIONS(4545), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsection] = ACTIONS(4779), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4782), - [anon_sym_BSLASHaddsec] = ACTIONS(4779), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4782), - [anon_sym_BSLASHsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), - [anon_sym_BSLASHparagraph] = ACTIONS(4545), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(4545), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [sym_word] = ACTIONS(4545), - [sym_placeholder] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym__] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_PIPE] = ACTIONS(4545), - [anon_sym_COLON] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4545), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4543), - [anon_sym_BSLASHbegin] = ACTIONS(4545), - [anon_sym_BSLASHusepackage] = ACTIONS(4545), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), - [anon_sym_BSLASHinclude] = ACTIONS(4545), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), - [anon_sym_BSLASHinput] = ACTIONS(4545), - [anon_sym_BSLASHsubfile] = ACTIONS(4545), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), - [anon_sym_BSLASHincludesvg] = ACTIONS(4545), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), - [anon_sym_BSLASHimport] = ACTIONS(4545), - [anon_sym_BSLASHsubimport] = ACTIONS(4545), - [anon_sym_BSLASHinputfrom] = ACTIONS(4545), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), - [anon_sym_BSLASHincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), - [anon_sym_BSLASHcaption] = ACTIONS(4545), - [anon_sym_BSLASHcite] = ACTIONS(4545), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCite] = ACTIONS(4545), - [anon_sym_BSLASHnocite] = ACTIONS(4545), - [anon_sym_BSLASHcitet] = ACTIONS(4545), - [anon_sym_BSLASHcitep] = ACTIONS(4545), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteauthor] = ACTIONS(4545), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitetitle] = ACTIONS(4545), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteyear] = ACTIONS(4545), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), - [anon_sym_BSLASHcitedate] = ACTIONS(4545), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), - [anon_sym_BSLASHciteurl] = ACTIONS(4545), - [anon_sym_BSLASHfullcite] = ACTIONS(4545), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), - [anon_sym_BSLASHcitealt] = ACTIONS(4545), - [anon_sym_BSLASHcitealp] = ACTIONS(4545), - [anon_sym_BSLASHcitetext] = ACTIONS(4545), - [anon_sym_BSLASHparencite] = ACTIONS(4545), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHParencite] = ACTIONS(4545), - [anon_sym_BSLASHfootcite] = ACTIONS(4545), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), - [anon_sym_BSLASHtextcite] = ACTIONS(4545), - [anon_sym_BSLASHTextcite] = ACTIONS(4545), - [anon_sym_BSLASHsmartcite] = ACTIONS(4545), - [anon_sym_BSLASHSmartcite] = ACTIONS(4545), - [anon_sym_BSLASHsupercite] = ACTIONS(4545), - [anon_sym_BSLASHautocite] = ACTIONS(4545), - [anon_sym_BSLASHAutocite] = ACTIONS(4545), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), - [anon_sym_BSLASHvolcite] = ACTIONS(4545), - [anon_sym_BSLASHVolcite] = ACTIONS(4545), - [anon_sym_BSLASHpvolcite] = ACTIONS(4545), - [anon_sym_BSLASHPvolcite] = ACTIONS(4545), - [anon_sym_BSLASHfvolcite] = ACTIONS(4545), - [anon_sym_BSLASHftvolcite] = ACTIONS(4545), - [anon_sym_BSLASHsvolcite] = ACTIONS(4545), - [anon_sym_BSLASHSvolcite] = ACTIONS(4545), - [anon_sym_BSLASHtvolcite] = ACTIONS(4545), - [anon_sym_BSLASHTvolcite] = ACTIONS(4545), - [anon_sym_BSLASHavolcite] = ACTIONS(4545), - [anon_sym_BSLASHAvolcite] = ACTIONS(4545), - [anon_sym_BSLASHnotecite] = ACTIONS(4545), - [anon_sym_BSLASHNotecite] = ACTIONS(4545), - [anon_sym_BSLASHpnotecite] = ACTIONS(4545), - [anon_sym_BSLASHPnotecite] = ACTIONS(4545), - [anon_sym_BSLASHfnotecite] = ACTIONS(4545), - [anon_sym_BSLASHlabel] = ACTIONS(4545), - [anon_sym_BSLASHref] = ACTIONS(4545), - [anon_sym_BSLASHeqref] = ACTIONS(4545), - [anon_sym_BSLASHvref] = ACTIONS(4545), - [anon_sym_BSLASHVref] = ACTIONS(4545), - [anon_sym_BSLASHautoref] = ACTIONS(4545), - [anon_sym_BSLASHpageref] = ACTIONS(4545), - [anon_sym_BSLASHcref] = ACTIONS(4545), - [anon_sym_BSLASHCref] = ACTIONS(4545), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnameCref] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), - [anon_sym_BSLASHlabelcref] = ACTIONS(4545), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange] = ACTIONS(4545), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHCrefrange] = ACTIONS(4545), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), - [anon_sym_BSLASHnewlabel] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand] = ACTIONS(4545), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), - [anon_sym_BSLASHdef] = ACTIONS(4545), - [anon_sym_BSLASHlet] = ACTIONS(4545), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), - [anon_sym_BSLASHgls] = ACTIONS(4545), - [anon_sym_BSLASHGls] = ACTIONS(4545), - [anon_sym_BSLASHGLS] = ACTIONS(4545), - [anon_sym_BSLASHglspl] = ACTIONS(4545), - [anon_sym_BSLASHGlspl] = ACTIONS(4545), - [anon_sym_BSLASHGLSpl] = ACTIONS(4545), - [anon_sym_BSLASHglsdisp] = ACTIONS(4545), - [anon_sym_BSLASHglslink] = ACTIONS(4545), - [anon_sym_BSLASHglstext] = ACTIONS(4545), - [anon_sym_BSLASHGlstext] = ACTIONS(4545), - [anon_sym_BSLASHGLStext] = ACTIONS(4545), - [anon_sym_BSLASHglsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), - [anon_sym_BSLASHglsplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSplural] = ACTIONS(4545), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), - [anon_sym_BSLASHglsname] = ACTIONS(4545), - [anon_sym_BSLASHGlsname] = ACTIONS(4545), - [anon_sym_BSLASHGLSname] = ACTIONS(4545), - [anon_sym_BSLASHglssymbol] = ACTIONS(4545), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), - [anon_sym_BSLASHglsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), - [anon_sym_BSLASHglsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), - [anon_sym_BSLASHglsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), - [anon_sym_BSLASHglsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), - [anon_sym_BSLASHglsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), - [anon_sym_BSLASHnewacronym] = ACTIONS(4545), - [anon_sym_BSLASHacrshort] = ACTIONS(4545), - [anon_sym_BSLASHAcrshort] = ACTIONS(4545), - [anon_sym_BSLASHACRshort] = ACTIONS(4545), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), - [anon_sym_BSLASHacrlong] = ACTIONS(4545), - [anon_sym_BSLASHAcrlong] = ACTIONS(4545), - [anon_sym_BSLASHACRlong] = ACTIONS(4545), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), - [anon_sym_BSLASHacrfull] = ACTIONS(4545), - [anon_sym_BSLASHAcrfull] = ACTIONS(4545), - [anon_sym_BSLASHACRfull] = ACTIONS(4545), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), - [anon_sym_BSLASHacs] = ACTIONS(4545), - [anon_sym_BSLASHAcs] = ACTIONS(4545), - [anon_sym_BSLASHacsp] = ACTIONS(4545), - [anon_sym_BSLASHAcsp] = ACTIONS(4545), - [anon_sym_BSLASHacl] = ACTIONS(4545), - [anon_sym_BSLASHAcl] = ACTIONS(4545), - [anon_sym_BSLASHaclp] = ACTIONS(4545), - [anon_sym_BSLASHAclp] = ACTIONS(4545), - [anon_sym_BSLASHacf] = ACTIONS(4545), - [anon_sym_BSLASHAcf] = ACTIONS(4545), - [anon_sym_BSLASHacfp] = ACTIONS(4545), - [anon_sym_BSLASHAcfp] = ACTIONS(4545), - [anon_sym_BSLASHac] = ACTIONS(4545), - [anon_sym_BSLASHAc] = ACTIONS(4545), - [anon_sym_BSLASHacp] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), - [anon_sym_BSLASHcolor] = ACTIONS(4545), - [anon_sym_BSLASHcolorbox] = ACTIONS(4545), - [anon_sym_BSLASHtextcolor] = ACTIONS(4545), - [anon_sym_BSLASHpagecolor] = ACTIONS(4545), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), - [anon_sym_BSLASHtext] = ACTIONS(4545), - [anon_sym_BSLASHintertext] = ACTIONS(4545), - [anon_sym_shortintertext] = ACTIONS(4545), + [sym_command_name] = ACTIONS(4624), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(4622), + [anon_sym_BSLASHpart] = ACTIONS(4624), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddpart] = ACTIONS(4624), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4622), + [anon_sym_BSLASHchapter] = ACTIONS(4624), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4622), + [anon_sym_BSLASHaddchap] = ACTIONS(4624), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsection] = ACTIONS(4858), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4861), + [anon_sym_BSLASHaddsec] = ACTIONS(4858), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4861), + [anon_sym_BSLASHsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4624), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4622), + [anon_sym_BSLASHparagraph] = ACTIONS(4624), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4624), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4622), + [anon_sym_BSLASHitem] = ACTIONS(4624), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4622), + [sym_word] = ACTIONS(4624), + [sym_placeholder] = ACTIONS(4622), + [anon_sym_PLUS] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4624), + [anon_sym_STAR] = ACTIONS(4624), + [anon_sym_SLASH] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4624), + [anon_sym__] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_SQUOTE] = ACTIONS(4624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4624), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4622), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4622), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4622), + [anon_sym_BSLASHbegin] = ACTIONS(4624), + [anon_sym_BSLASHusepackage] = ACTIONS(4624), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4624), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4624), + [anon_sym_BSLASHinclude] = ACTIONS(4624), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4624), + [anon_sym_BSLASHinput] = ACTIONS(4624), + [anon_sym_BSLASHsubfile] = ACTIONS(4624), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4624), + [anon_sym_BSLASHbibliography] = ACTIONS(4624), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4624), + [anon_sym_BSLASHincludesvg] = ACTIONS(4624), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4624), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4624), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4624), + [anon_sym_BSLASHimport] = ACTIONS(4624), + [anon_sym_BSLASHsubimport] = ACTIONS(4624), + [anon_sym_BSLASHinputfrom] = ACTIONS(4624), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4624), + [anon_sym_BSLASHincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4624), + [anon_sym_BSLASHcaption] = ACTIONS(4624), + [anon_sym_BSLASHcite] = ACTIONS(4624), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCite] = ACTIONS(4624), + [anon_sym_BSLASHnocite] = ACTIONS(4624), + [anon_sym_BSLASHcitet] = ACTIONS(4624), + [anon_sym_BSLASHcitep] = ACTIONS(4624), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteauthor] = ACTIONS(4624), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4624), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitetitle] = ACTIONS(4624), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteyear] = ACTIONS(4624), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4622), + [anon_sym_BSLASHcitedate] = ACTIONS(4624), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4622), + [anon_sym_BSLASHciteurl] = ACTIONS(4624), + [anon_sym_BSLASHfullcite] = ACTIONS(4624), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4624), + [anon_sym_BSLASHcitealt] = ACTIONS(4624), + [anon_sym_BSLASHcitealp] = ACTIONS(4624), + [anon_sym_BSLASHcitetext] = ACTIONS(4624), + [anon_sym_BSLASHparencite] = ACTIONS(4624), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHParencite] = ACTIONS(4624), + [anon_sym_BSLASHfootcite] = ACTIONS(4624), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4624), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4624), + [anon_sym_BSLASHtextcite] = ACTIONS(4624), + [anon_sym_BSLASHTextcite] = ACTIONS(4624), + [anon_sym_BSLASHsmartcite] = ACTIONS(4624), + [anon_sym_BSLASHSmartcite] = ACTIONS(4624), + [anon_sym_BSLASHsupercite] = ACTIONS(4624), + [anon_sym_BSLASHautocite] = ACTIONS(4624), + [anon_sym_BSLASHAutocite] = ACTIONS(4624), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4622), + [anon_sym_BSLASHvolcite] = ACTIONS(4624), + [anon_sym_BSLASHVolcite] = ACTIONS(4624), + [anon_sym_BSLASHpvolcite] = ACTIONS(4624), + [anon_sym_BSLASHPvolcite] = ACTIONS(4624), + [anon_sym_BSLASHfvolcite] = ACTIONS(4624), + [anon_sym_BSLASHftvolcite] = ACTIONS(4624), + [anon_sym_BSLASHsvolcite] = ACTIONS(4624), + [anon_sym_BSLASHSvolcite] = ACTIONS(4624), + [anon_sym_BSLASHtvolcite] = ACTIONS(4624), + [anon_sym_BSLASHTvolcite] = ACTIONS(4624), + [anon_sym_BSLASHavolcite] = ACTIONS(4624), + [anon_sym_BSLASHAvolcite] = ACTIONS(4624), + [anon_sym_BSLASHnotecite] = ACTIONS(4624), + [anon_sym_BSLASHNotecite] = ACTIONS(4624), + [anon_sym_BSLASHpnotecite] = ACTIONS(4624), + [anon_sym_BSLASHPnotecite] = ACTIONS(4624), + [anon_sym_BSLASHfnotecite] = ACTIONS(4624), + [anon_sym_BSLASHlabel] = ACTIONS(4624), + [anon_sym_BSLASHref] = ACTIONS(4624), + [anon_sym_BSLASHeqref] = ACTIONS(4624), + [anon_sym_BSLASHvref] = ACTIONS(4624), + [anon_sym_BSLASHVref] = ACTIONS(4624), + [anon_sym_BSLASHautoref] = ACTIONS(4624), + [anon_sym_BSLASHpageref] = ACTIONS(4624), + [anon_sym_BSLASHcref] = ACTIONS(4624), + [anon_sym_BSLASHCref] = ACTIONS(4624), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnameCref] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4624), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4624), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4624), + [anon_sym_BSLASHlabelcref] = ACTIONS(4624), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange] = ACTIONS(4624), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHCrefrange] = ACTIONS(4624), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4622), + [anon_sym_BSLASHnewlabel] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand] = ACTIONS(4624), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4624), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4624), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4622), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4624), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdef] = ACTIONS(4624), + [anon_sym_BSLASHlet] = ACTIONS(4624), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4624), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4624), + [anon_sym_BSLASHgls] = ACTIONS(4624), + [anon_sym_BSLASHGls] = ACTIONS(4624), + [anon_sym_BSLASHGLS] = ACTIONS(4624), + [anon_sym_BSLASHglspl] = ACTIONS(4624), + [anon_sym_BSLASHGlspl] = ACTIONS(4624), + [anon_sym_BSLASHGLSpl] = ACTIONS(4624), + [anon_sym_BSLASHglsdisp] = ACTIONS(4624), + [anon_sym_BSLASHglslink] = ACTIONS(4624), + [anon_sym_BSLASHglstext] = ACTIONS(4624), + [anon_sym_BSLASHGlstext] = ACTIONS(4624), + [anon_sym_BSLASHGLStext] = ACTIONS(4624), + [anon_sym_BSLASHglsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4624), + [anon_sym_BSLASHglsplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSplural] = ACTIONS(4624), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4624), + [anon_sym_BSLASHglsname] = ACTIONS(4624), + [anon_sym_BSLASHGlsname] = ACTIONS(4624), + [anon_sym_BSLASHGLSname] = ACTIONS(4624), + [anon_sym_BSLASHglssymbol] = ACTIONS(4624), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4624), + [anon_sym_BSLASHglsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4624), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4624), + [anon_sym_BSLASHglsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4624), + [anon_sym_BSLASHglsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4624), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4624), + [anon_sym_BSLASHglsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4624), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4624), + [anon_sym_BSLASHglsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4624), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4624), + [anon_sym_BSLASHnewacronym] = ACTIONS(4624), + [anon_sym_BSLASHacrshort] = ACTIONS(4624), + [anon_sym_BSLASHAcrshort] = ACTIONS(4624), + [anon_sym_BSLASHACRshort] = ACTIONS(4624), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4624), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4624), + [anon_sym_BSLASHacrlong] = ACTIONS(4624), + [anon_sym_BSLASHAcrlong] = ACTIONS(4624), + [anon_sym_BSLASHACRlong] = ACTIONS(4624), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4624), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4624), + [anon_sym_BSLASHacrfull] = ACTIONS(4624), + [anon_sym_BSLASHAcrfull] = ACTIONS(4624), + [anon_sym_BSLASHACRfull] = ACTIONS(4624), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4624), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4624), + [anon_sym_BSLASHacs] = ACTIONS(4624), + [anon_sym_BSLASHAcs] = ACTIONS(4624), + [anon_sym_BSLASHacsp] = ACTIONS(4624), + [anon_sym_BSLASHAcsp] = ACTIONS(4624), + [anon_sym_BSLASHacl] = ACTIONS(4624), + [anon_sym_BSLASHAcl] = ACTIONS(4624), + [anon_sym_BSLASHaclp] = ACTIONS(4624), + [anon_sym_BSLASHAclp] = ACTIONS(4624), + [anon_sym_BSLASHacf] = ACTIONS(4624), + [anon_sym_BSLASHAcf] = ACTIONS(4624), + [anon_sym_BSLASHacfp] = ACTIONS(4624), + [anon_sym_BSLASHAcfp] = ACTIONS(4624), + [anon_sym_BSLASHac] = ACTIONS(4624), + [anon_sym_BSLASHAc] = ACTIONS(4624), + [anon_sym_BSLASHacp] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4624), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4624), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4624), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4624), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4624), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4622), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4624), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4624), + [anon_sym_BSLASHcolor] = ACTIONS(4624), + [anon_sym_BSLASHcolorbox] = ACTIONS(4624), + [anon_sym_BSLASHtextcolor] = ACTIONS(4624), + [anon_sym_BSLASHpagecolor] = ACTIONS(4624), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4624), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4624), + [anon_sym_BSLASHtext] = ACTIONS(4624), + [anon_sym_BSLASHintertext] = ACTIONS(4624), + [anon_sym_shortintertext] = ACTIONS(4624), }, [632] = { [sym__subsection_declaration] = STATE(158), [sym_subsection] = STATE(632), [aux_sym__section_repeat4] = STATE(632), - [sym_command_name] = ACTIONS(4535), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_RBRACK] = ACTIONS(4533), - [anon_sym_COMMA] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_BSLASHpart] = ACTIONS(4535), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddpart] = ACTIONS(4535), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), - [anon_sym_BSLASHchapter] = ACTIONS(4535), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddchap] = ACTIONS(4535), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsection] = ACTIONS(4535), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHaddsec] = ACTIONS(4535), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4788), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), - [anon_sym_BSLASHparagraph] = ACTIONS(4535), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), - [anon_sym_BSLASHitem] = ACTIONS(4535), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [sym_word] = ACTIONS(4535), - [sym_placeholder] = ACTIONS(4533), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym__] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4533), - [anon_sym_BSLASHbegin] = ACTIONS(4535), - [anon_sym_BSLASHusepackage] = ACTIONS(4535), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), - [anon_sym_BSLASHinclude] = ACTIONS(4535), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), - [anon_sym_BSLASHinput] = ACTIONS(4535), - [anon_sym_BSLASHsubfile] = ACTIONS(4535), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), - [anon_sym_BSLASHbibliography] = ACTIONS(4535), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), - [anon_sym_BSLASHincludesvg] = ACTIONS(4535), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), - [anon_sym_BSLASHimport] = ACTIONS(4535), - [anon_sym_BSLASHsubimport] = ACTIONS(4535), - [anon_sym_BSLASHinputfrom] = ACTIONS(4535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), - [anon_sym_BSLASHincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), - [anon_sym_BSLASHcaption] = ACTIONS(4535), - [anon_sym_BSLASHcite] = ACTIONS(4535), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCite] = ACTIONS(4535), - [anon_sym_BSLASHnocite] = ACTIONS(4535), - [anon_sym_BSLASHcitet] = ACTIONS(4535), - [anon_sym_BSLASHcitep] = ACTIONS(4535), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteauthor] = ACTIONS(4535), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitetitle] = ACTIONS(4535), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteyear] = ACTIONS(4535), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), - [anon_sym_BSLASHcitedate] = ACTIONS(4535), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), - [anon_sym_BSLASHciteurl] = ACTIONS(4535), - [anon_sym_BSLASHfullcite] = ACTIONS(4535), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), - [anon_sym_BSLASHcitealt] = ACTIONS(4535), - [anon_sym_BSLASHcitealp] = ACTIONS(4535), - [anon_sym_BSLASHcitetext] = ACTIONS(4535), - [anon_sym_BSLASHparencite] = ACTIONS(4535), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHParencite] = ACTIONS(4535), - [anon_sym_BSLASHfootcite] = ACTIONS(4535), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), - [anon_sym_BSLASHtextcite] = ACTIONS(4535), - [anon_sym_BSLASHTextcite] = ACTIONS(4535), - [anon_sym_BSLASHsmartcite] = ACTIONS(4535), - [anon_sym_BSLASHSmartcite] = ACTIONS(4535), - [anon_sym_BSLASHsupercite] = ACTIONS(4535), - [anon_sym_BSLASHautocite] = ACTIONS(4535), - [anon_sym_BSLASHAutocite] = ACTIONS(4535), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), - [anon_sym_BSLASHvolcite] = ACTIONS(4535), - [anon_sym_BSLASHVolcite] = ACTIONS(4535), - [anon_sym_BSLASHpvolcite] = ACTIONS(4535), - [anon_sym_BSLASHPvolcite] = ACTIONS(4535), - [anon_sym_BSLASHfvolcite] = ACTIONS(4535), - [anon_sym_BSLASHftvolcite] = ACTIONS(4535), - [anon_sym_BSLASHsvolcite] = ACTIONS(4535), - [anon_sym_BSLASHSvolcite] = ACTIONS(4535), - [anon_sym_BSLASHtvolcite] = ACTIONS(4535), - [anon_sym_BSLASHTvolcite] = ACTIONS(4535), - [anon_sym_BSLASHavolcite] = ACTIONS(4535), - [anon_sym_BSLASHAvolcite] = ACTIONS(4535), - [anon_sym_BSLASHnotecite] = ACTIONS(4535), - [anon_sym_BSLASHNotecite] = ACTIONS(4535), - [anon_sym_BSLASHpnotecite] = ACTIONS(4535), - [anon_sym_BSLASHPnotecite] = ACTIONS(4535), - [anon_sym_BSLASHfnotecite] = ACTIONS(4535), - [anon_sym_BSLASHlabel] = ACTIONS(4535), - [anon_sym_BSLASHref] = ACTIONS(4535), - [anon_sym_BSLASHeqref] = ACTIONS(4535), - [anon_sym_BSLASHvref] = ACTIONS(4535), - [anon_sym_BSLASHVref] = ACTIONS(4535), - [anon_sym_BSLASHautoref] = ACTIONS(4535), - [anon_sym_BSLASHpageref] = ACTIONS(4535), - [anon_sym_BSLASHcref] = ACTIONS(4535), - [anon_sym_BSLASHCref] = ACTIONS(4535), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnameCref] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), - [anon_sym_BSLASHlabelcref] = ACTIONS(4535), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange] = ACTIONS(4535), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHCrefrange] = ACTIONS(4535), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), - [anon_sym_BSLASHnewlabel] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand] = ACTIONS(4535), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), - [anon_sym_BSLASHdef] = ACTIONS(4535), - [anon_sym_BSLASHlet] = ACTIONS(4535), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), - [anon_sym_BSLASHgls] = ACTIONS(4535), - [anon_sym_BSLASHGls] = ACTIONS(4535), - [anon_sym_BSLASHGLS] = ACTIONS(4535), - [anon_sym_BSLASHglspl] = ACTIONS(4535), - [anon_sym_BSLASHGlspl] = ACTIONS(4535), - [anon_sym_BSLASHGLSpl] = ACTIONS(4535), - [anon_sym_BSLASHglsdisp] = ACTIONS(4535), - [anon_sym_BSLASHglslink] = ACTIONS(4535), - [anon_sym_BSLASHglstext] = ACTIONS(4535), - [anon_sym_BSLASHGlstext] = ACTIONS(4535), - [anon_sym_BSLASHGLStext] = ACTIONS(4535), - [anon_sym_BSLASHglsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), - [anon_sym_BSLASHglsplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSplural] = ACTIONS(4535), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), - [anon_sym_BSLASHglsname] = ACTIONS(4535), - [anon_sym_BSLASHGlsname] = ACTIONS(4535), - [anon_sym_BSLASHGLSname] = ACTIONS(4535), - [anon_sym_BSLASHglssymbol] = ACTIONS(4535), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), - [anon_sym_BSLASHglsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), - [anon_sym_BSLASHglsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), - [anon_sym_BSLASHglsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), - [anon_sym_BSLASHglsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), - [anon_sym_BSLASHglsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), - [anon_sym_BSLASHnewacronym] = ACTIONS(4535), - [anon_sym_BSLASHacrshort] = ACTIONS(4535), - [anon_sym_BSLASHAcrshort] = ACTIONS(4535), - [anon_sym_BSLASHACRshort] = ACTIONS(4535), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), - [anon_sym_BSLASHacrlong] = ACTIONS(4535), - [anon_sym_BSLASHAcrlong] = ACTIONS(4535), - [anon_sym_BSLASHACRlong] = ACTIONS(4535), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), - [anon_sym_BSLASHacrfull] = ACTIONS(4535), - [anon_sym_BSLASHAcrfull] = ACTIONS(4535), - [anon_sym_BSLASHACRfull] = ACTIONS(4535), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), - [anon_sym_BSLASHacs] = ACTIONS(4535), - [anon_sym_BSLASHAcs] = ACTIONS(4535), - [anon_sym_BSLASHacsp] = ACTIONS(4535), - [anon_sym_BSLASHAcsp] = ACTIONS(4535), - [anon_sym_BSLASHacl] = ACTIONS(4535), - [anon_sym_BSLASHAcl] = ACTIONS(4535), - [anon_sym_BSLASHaclp] = ACTIONS(4535), - [anon_sym_BSLASHAclp] = ACTIONS(4535), - [anon_sym_BSLASHacf] = ACTIONS(4535), - [anon_sym_BSLASHAcf] = ACTIONS(4535), - [anon_sym_BSLASHacfp] = ACTIONS(4535), - [anon_sym_BSLASHAcfp] = ACTIONS(4535), - [anon_sym_BSLASHac] = ACTIONS(4535), - [anon_sym_BSLASHAc] = ACTIONS(4535), - [anon_sym_BSLASHacp] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), - [anon_sym_BSLASHcolor] = ACTIONS(4535), - [anon_sym_BSLASHcolorbox] = ACTIONS(4535), - [anon_sym_BSLASHtextcolor] = ACTIONS(4535), - [anon_sym_BSLASHpagecolor] = ACTIONS(4535), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), - [anon_sym_BSLASHtext] = ACTIONS(4535), - [anon_sym_BSLASHintertext] = ACTIONS(4535), - [anon_sym_shortintertext] = ACTIONS(4535), + [sym_command_name] = ACTIONS(4614), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4612), + [anon_sym_RBRACK] = ACTIONS(4612), + [anon_sym_COMMA] = ACTIONS(4612), + [anon_sym_EQ] = ACTIONS(4612), + [anon_sym_BSLASHpart] = ACTIONS(4614), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddpart] = ACTIONS(4614), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4612), + [anon_sym_BSLASHchapter] = ACTIONS(4614), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddchap] = ACTIONS(4614), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsection] = ACTIONS(4614), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHaddsec] = ACTIONS(4614), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubsection] = ACTIONS(4864), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4614), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHparagraph] = ACTIONS(4614), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4614), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4612), + [anon_sym_BSLASHitem] = ACTIONS(4614), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4612), + [sym_word] = ACTIONS(4614), + [sym_placeholder] = ACTIONS(4612), + [anon_sym_PLUS] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_SLASH] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4614), + [anon_sym__] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_SQUOTE] = ACTIONS(4614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4612), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4612), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4612), + [anon_sym_BSLASHbegin] = ACTIONS(4614), + [anon_sym_BSLASHusepackage] = ACTIONS(4614), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4614), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4614), + [anon_sym_BSLASHinclude] = ACTIONS(4614), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4614), + [anon_sym_BSLASHinput] = ACTIONS(4614), + [anon_sym_BSLASHsubfile] = ACTIONS(4614), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4614), + [anon_sym_BSLASHbibliography] = ACTIONS(4614), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4614), + [anon_sym_BSLASHincludesvg] = ACTIONS(4614), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4614), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4614), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4614), + [anon_sym_BSLASHimport] = ACTIONS(4614), + [anon_sym_BSLASHsubimport] = ACTIONS(4614), + [anon_sym_BSLASHinputfrom] = ACTIONS(4614), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4614), + [anon_sym_BSLASHincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4614), + [anon_sym_BSLASHcaption] = ACTIONS(4614), + [anon_sym_BSLASHcite] = ACTIONS(4614), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCite] = ACTIONS(4614), + [anon_sym_BSLASHnocite] = ACTIONS(4614), + [anon_sym_BSLASHcitet] = ACTIONS(4614), + [anon_sym_BSLASHcitep] = ACTIONS(4614), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteauthor] = ACTIONS(4614), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4614), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitetitle] = ACTIONS(4614), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteyear] = ACTIONS(4614), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4612), + [anon_sym_BSLASHcitedate] = ACTIONS(4614), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4612), + [anon_sym_BSLASHciteurl] = ACTIONS(4614), + [anon_sym_BSLASHfullcite] = ACTIONS(4614), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4614), + [anon_sym_BSLASHcitealt] = ACTIONS(4614), + [anon_sym_BSLASHcitealp] = ACTIONS(4614), + [anon_sym_BSLASHcitetext] = ACTIONS(4614), + [anon_sym_BSLASHparencite] = ACTIONS(4614), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHParencite] = ACTIONS(4614), + [anon_sym_BSLASHfootcite] = ACTIONS(4614), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4614), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4614), + [anon_sym_BSLASHtextcite] = ACTIONS(4614), + [anon_sym_BSLASHTextcite] = ACTIONS(4614), + [anon_sym_BSLASHsmartcite] = ACTIONS(4614), + [anon_sym_BSLASHSmartcite] = ACTIONS(4614), + [anon_sym_BSLASHsupercite] = ACTIONS(4614), + [anon_sym_BSLASHautocite] = ACTIONS(4614), + [anon_sym_BSLASHAutocite] = ACTIONS(4614), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4612), + [anon_sym_BSLASHvolcite] = ACTIONS(4614), + [anon_sym_BSLASHVolcite] = ACTIONS(4614), + [anon_sym_BSLASHpvolcite] = ACTIONS(4614), + [anon_sym_BSLASHPvolcite] = ACTIONS(4614), + [anon_sym_BSLASHfvolcite] = ACTIONS(4614), + [anon_sym_BSLASHftvolcite] = ACTIONS(4614), + [anon_sym_BSLASHsvolcite] = ACTIONS(4614), + [anon_sym_BSLASHSvolcite] = ACTIONS(4614), + [anon_sym_BSLASHtvolcite] = ACTIONS(4614), + [anon_sym_BSLASHTvolcite] = ACTIONS(4614), + [anon_sym_BSLASHavolcite] = ACTIONS(4614), + [anon_sym_BSLASHAvolcite] = ACTIONS(4614), + [anon_sym_BSLASHnotecite] = ACTIONS(4614), + [anon_sym_BSLASHNotecite] = ACTIONS(4614), + [anon_sym_BSLASHpnotecite] = ACTIONS(4614), + [anon_sym_BSLASHPnotecite] = ACTIONS(4614), + [anon_sym_BSLASHfnotecite] = ACTIONS(4614), + [anon_sym_BSLASHlabel] = ACTIONS(4614), + [anon_sym_BSLASHref] = ACTIONS(4614), + [anon_sym_BSLASHeqref] = ACTIONS(4614), + [anon_sym_BSLASHvref] = ACTIONS(4614), + [anon_sym_BSLASHVref] = ACTIONS(4614), + [anon_sym_BSLASHautoref] = ACTIONS(4614), + [anon_sym_BSLASHpageref] = ACTIONS(4614), + [anon_sym_BSLASHcref] = ACTIONS(4614), + [anon_sym_BSLASHCref] = ACTIONS(4614), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnameCref] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4614), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4614), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4614), + [anon_sym_BSLASHlabelcref] = ACTIONS(4614), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange] = ACTIONS(4614), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHCrefrange] = ACTIONS(4614), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4612), + [anon_sym_BSLASHnewlabel] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand] = ACTIONS(4614), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4614), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4614), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4612), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4614), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdef] = ACTIONS(4614), + [anon_sym_BSLASHlet] = ACTIONS(4614), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4614), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4614), + [anon_sym_BSLASHgls] = ACTIONS(4614), + [anon_sym_BSLASHGls] = ACTIONS(4614), + [anon_sym_BSLASHGLS] = ACTIONS(4614), + [anon_sym_BSLASHglspl] = ACTIONS(4614), + [anon_sym_BSLASHGlspl] = ACTIONS(4614), + [anon_sym_BSLASHGLSpl] = ACTIONS(4614), + [anon_sym_BSLASHglsdisp] = ACTIONS(4614), + [anon_sym_BSLASHglslink] = ACTIONS(4614), + [anon_sym_BSLASHglstext] = ACTIONS(4614), + [anon_sym_BSLASHGlstext] = ACTIONS(4614), + [anon_sym_BSLASHGLStext] = ACTIONS(4614), + [anon_sym_BSLASHglsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4614), + [anon_sym_BSLASHglsplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSplural] = ACTIONS(4614), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4614), + [anon_sym_BSLASHglsname] = ACTIONS(4614), + [anon_sym_BSLASHGlsname] = ACTIONS(4614), + [anon_sym_BSLASHGLSname] = ACTIONS(4614), + [anon_sym_BSLASHglssymbol] = ACTIONS(4614), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4614), + [anon_sym_BSLASHglsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4614), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4614), + [anon_sym_BSLASHglsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4614), + [anon_sym_BSLASHglsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4614), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4614), + [anon_sym_BSLASHglsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4614), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4614), + [anon_sym_BSLASHglsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4614), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4614), + [anon_sym_BSLASHnewacronym] = ACTIONS(4614), + [anon_sym_BSLASHacrshort] = ACTIONS(4614), + [anon_sym_BSLASHAcrshort] = ACTIONS(4614), + [anon_sym_BSLASHACRshort] = ACTIONS(4614), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4614), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4614), + [anon_sym_BSLASHacrlong] = ACTIONS(4614), + [anon_sym_BSLASHAcrlong] = ACTIONS(4614), + [anon_sym_BSLASHACRlong] = ACTIONS(4614), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4614), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4614), + [anon_sym_BSLASHacrfull] = ACTIONS(4614), + [anon_sym_BSLASHAcrfull] = ACTIONS(4614), + [anon_sym_BSLASHACRfull] = ACTIONS(4614), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4614), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4614), + [anon_sym_BSLASHacs] = ACTIONS(4614), + [anon_sym_BSLASHAcs] = ACTIONS(4614), + [anon_sym_BSLASHacsp] = ACTIONS(4614), + [anon_sym_BSLASHAcsp] = ACTIONS(4614), + [anon_sym_BSLASHacl] = ACTIONS(4614), + [anon_sym_BSLASHAcl] = ACTIONS(4614), + [anon_sym_BSLASHaclp] = ACTIONS(4614), + [anon_sym_BSLASHAclp] = ACTIONS(4614), + [anon_sym_BSLASHacf] = ACTIONS(4614), + [anon_sym_BSLASHAcf] = ACTIONS(4614), + [anon_sym_BSLASHacfp] = ACTIONS(4614), + [anon_sym_BSLASHAcfp] = ACTIONS(4614), + [anon_sym_BSLASHac] = ACTIONS(4614), + [anon_sym_BSLASHAc] = ACTIONS(4614), + [anon_sym_BSLASHacp] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4614), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4614), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4614), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4614), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4614), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4612), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4614), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4614), + [anon_sym_BSLASHcolor] = ACTIONS(4614), + [anon_sym_BSLASHcolorbox] = ACTIONS(4614), + [anon_sym_BSLASHtextcolor] = ACTIONS(4614), + [anon_sym_BSLASHpagecolor] = ACTIONS(4614), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4614), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4614), + [anon_sym_BSLASHtext] = ACTIONS(4614), + [anon_sym_BSLASHintertext] = ACTIONS(4614), + [anon_sym_shortintertext] = ACTIONS(4614), }, [633] = { [sym__subsubsection_declaration] = STATE(169), [sym_subsubsection] = STATE(633), [aux_sym__section_repeat5] = STATE(633), - [sym_command_name] = ACTIONS(4525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4525), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4523), - [anon_sym_BSLASHpart] = ACTIONS(4525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddpart] = ACTIONS(4525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), - [anon_sym_BSLASHchapter] = ACTIONS(4525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddchap] = ACTIONS(4525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsection] = ACTIONS(4525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHaddsec] = ACTIONS(4525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsection] = ACTIONS(4525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4791), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4794), - [anon_sym_BSLASHparagraph] = ACTIONS(4525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), - [anon_sym_BSLASHitem] = ACTIONS(4525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), - [anon_sym_LBRACE] = ACTIONS(4523), - [sym_word] = ACTIONS(4525), - [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_DOLLAR_DOLLAR] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), - [anon_sym_DOLLAR] = ACTIONS(4525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4523), - [anon_sym_BSLASHbegin] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), - [anon_sym_BSLASHinclude] = ACTIONS(4525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), - [anon_sym_BSLASHinput] = ACTIONS(4525), - [anon_sym_BSLASHsubfile] = ACTIONS(4525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), - [anon_sym_BSLASHbibliography] = ACTIONS(4525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), - [anon_sym_BSLASHincludesvg] = ACTIONS(4525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), - [anon_sym_BSLASHimport] = ACTIONS(4525), - [anon_sym_BSLASHsubimport] = ACTIONS(4525), - [anon_sym_BSLASHinputfrom] = ACTIONS(4525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), - [anon_sym_BSLASHincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), - [anon_sym_BSLASHcaption] = ACTIONS(4525), - [anon_sym_BSLASHcite] = ACTIONS(4525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCite] = ACTIONS(4525), - [anon_sym_BSLASHnocite] = ACTIONS(4525), - [anon_sym_BSLASHcitet] = ACTIONS(4525), - [anon_sym_BSLASHcitep] = ACTIONS(4525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteauthor] = ACTIONS(4525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitetitle] = ACTIONS(4525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteyear] = ACTIONS(4525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), - [anon_sym_BSLASHcitedate] = ACTIONS(4525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), - [anon_sym_BSLASHciteurl] = ACTIONS(4525), - [anon_sym_BSLASHfullcite] = ACTIONS(4525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), - [anon_sym_BSLASHcitealt] = ACTIONS(4525), - [anon_sym_BSLASHcitealp] = ACTIONS(4525), - [anon_sym_BSLASHcitetext] = ACTIONS(4525), - [anon_sym_BSLASHparencite] = ACTIONS(4525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHParencite] = ACTIONS(4525), - [anon_sym_BSLASHfootcite] = ACTIONS(4525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), - [anon_sym_BSLASHtextcite] = ACTIONS(4525), - [anon_sym_BSLASHTextcite] = ACTIONS(4525), - [anon_sym_BSLASHsmartcite] = ACTIONS(4525), - [anon_sym_BSLASHSmartcite] = ACTIONS(4525), - [anon_sym_BSLASHsupercite] = ACTIONS(4525), - [anon_sym_BSLASHautocite] = ACTIONS(4525), - [anon_sym_BSLASHAutocite] = ACTIONS(4525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), - [anon_sym_BSLASHvolcite] = ACTIONS(4525), - [anon_sym_BSLASHVolcite] = ACTIONS(4525), - [anon_sym_BSLASHpvolcite] = ACTIONS(4525), - [anon_sym_BSLASHPvolcite] = ACTIONS(4525), - [anon_sym_BSLASHfvolcite] = ACTIONS(4525), - [anon_sym_BSLASHftvolcite] = ACTIONS(4525), - [anon_sym_BSLASHsvolcite] = ACTIONS(4525), - [anon_sym_BSLASHSvolcite] = ACTIONS(4525), - [anon_sym_BSLASHtvolcite] = ACTIONS(4525), - [anon_sym_BSLASHTvolcite] = ACTIONS(4525), - [anon_sym_BSLASHavolcite] = ACTIONS(4525), - [anon_sym_BSLASHAvolcite] = ACTIONS(4525), - [anon_sym_BSLASHnotecite] = ACTIONS(4525), - [anon_sym_BSLASHNotecite] = ACTIONS(4525), - [anon_sym_BSLASHpnotecite] = ACTIONS(4525), - [anon_sym_BSLASHPnotecite] = ACTIONS(4525), - [anon_sym_BSLASHfnotecite] = ACTIONS(4525), - [anon_sym_BSLASHlabel] = ACTIONS(4525), - [anon_sym_BSLASHref] = ACTIONS(4525), - [anon_sym_BSLASHeqref] = ACTIONS(4525), - [anon_sym_BSLASHvref] = ACTIONS(4525), - [anon_sym_BSLASHVref] = ACTIONS(4525), - [anon_sym_BSLASHautoref] = ACTIONS(4525), - [anon_sym_BSLASHpageref] = ACTIONS(4525), - [anon_sym_BSLASHcref] = ACTIONS(4525), - [anon_sym_BSLASHCref] = ACTIONS(4525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnameCref] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), - [anon_sym_BSLASHlabelcref] = ACTIONS(4525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange] = ACTIONS(4525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHCrefrange] = ACTIONS(4525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), - [anon_sym_BSLASHnewlabel] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand] = ACTIONS(4525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), - [anon_sym_BSLASHdef] = ACTIONS(4525), - [anon_sym_BSLASHlet] = ACTIONS(4525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), - [anon_sym_BSLASHgls] = ACTIONS(4525), - [anon_sym_BSLASHGls] = ACTIONS(4525), - [anon_sym_BSLASHGLS] = ACTIONS(4525), - [anon_sym_BSLASHglspl] = ACTIONS(4525), - [anon_sym_BSLASHGlspl] = ACTIONS(4525), - [anon_sym_BSLASHGLSpl] = ACTIONS(4525), - [anon_sym_BSLASHglsdisp] = ACTIONS(4525), - [anon_sym_BSLASHglslink] = ACTIONS(4525), - [anon_sym_BSLASHglstext] = ACTIONS(4525), - [anon_sym_BSLASHGlstext] = ACTIONS(4525), - [anon_sym_BSLASHGLStext] = ACTIONS(4525), - [anon_sym_BSLASHglsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), - [anon_sym_BSLASHglsplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSplural] = ACTIONS(4525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), - [anon_sym_BSLASHglsname] = ACTIONS(4525), - [anon_sym_BSLASHGlsname] = ACTIONS(4525), - [anon_sym_BSLASHGLSname] = ACTIONS(4525), - [anon_sym_BSLASHglssymbol] = ACTIONS(4525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), - [anon_sym_BSLASHglsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), - [anon_sym_BSLASHglsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), - [anon_sym_BSLASHglsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), - [anon_sym_BSLASHglsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), - [anon_sym_BSLASHglsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), - [anon_sym_BSLASHnewacronym] = ACTIONS(4525), - [anon_sym_BSLASHacrshort] = ACTIONS(4525), - [anon_sym_BSLASHAcrshort] = ACTIONS(4525), - [anon_sym_BSLASHACRshort] = ACTIONS(4525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), - [anon_sym_BSLASHacrlong] = ACTIONS(4525), - [anon_sym_BSLASHAcrlong] = ACTIONS(4525), - [anon_sym_BSLASHACRlong] = ACTIONS(4525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), - [anon_sym_BSLASHacrfull] = ACTIONS(4525), - [anon_sym_BSLASHAcrfull] = ACTIONS(4525), - [anon_sym_BSLASHACRfull] = ACTIONS(4525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), - [anon_sym_BSLASHacs] = ACTIONS(4525), - [anon_sym_BSLASHAcs] = ACTIONS(4525), - [anon_sym_BSLASHacsp] = ACTIONS(4525), - [anon_sym_BSLASHAcsp] = ACTIONS(4525), - [anon_sym_BSLASHacl] = ACTIONS(4525), - [anon_sym_BSLASHAcl] = ACTIONS(4525), - [anon_sym_BSLASHaclp] = ACTIONS(4525), - [anon_sym_BSLASHAclp] = ACTIONS(4525), - [anon_sym_BSLASHacf] = ACTIONS(4525), - [anon_sym_BSLASHAcf] = ACTIONS(4525), - [anon_sym_BSLASHacfp] = ACTIONS(4525), - [anon_sym_BSLASHAcfp] = ACTIONS(4525), - [anon_sym_BSLASHac] = ACTIONS(4525), - [anon_sym_BSLASHAc] = ACTIONS(4525), - [anon_sym_BSLASHacp] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), - [anon_sym_BSLASHcolor] = ACTIONS(4525), - [anon_sym_BSLASHcolorbox] = ACTIONS(4525), - [anon_sym_BSLASHtextcolor] = ACTIONS(4525), - [anon_sym_BSLASHpagecolor] = ACTIONS(4525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), - [anon_sym_BSLASHtext] = ACTIONS(4525), - [anon_sym_BSLASHintertext] = ACTIONS(4525), - [anon_sym_shortintertext] = ACTIONS(4525), + [sym_command_name] = ACTIONS(4604), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4604), + [anon_sym_LPAREN] = ACTIONS(4602), + [anon_sym_RPAREN] = ACTIONS(4602), + [anon_sym_LBRACK] = ACTIONS(4602), + [anon_sym_RBRACK] = ACTIONS(4602), + [anon_sym_COMMA] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_BSLASHpart] = ACTIONS(4604), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddpart] = ACTIONS(4604), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4602), + [anon_sym_BSLASHchapter] = ACTIONS(4604), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddchap] = ACTIONS(4604), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsection] = ACTIONS(4604), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHaddsec] = ACTIONS(4604), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsection] = ACTIONS(4604), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4870), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4873), + [anon_sym_BSLASHparagraph] = ACTIONS(4604), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4604), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4602), + [anon_sym_BSLASHitem] = ACTIONS(4604), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(4602), + [sym_word] = ACTIONS(4604), + [sym_placeholder] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4604), + [anon_sym_SLASH] = ACTIONS(4604), + [anon_sym_CARET] = ACTIONS(4604), + [anon_sym__] = ACTIONS(4604), + [anon_sym_LT] = ACTIONS(4604), + [anon_sym_GT] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4604), + [anon_sym_COLON] = ACTIONS(4604), + [anon_sym_SQUOTE] = ACTIONS(4604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4602), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4602), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4602), + [anon_sym_BSLASHbegin] = ACTIONS(4604), + [anon_sym_BSLASHusepackage] = ACTIONS(4604), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4604), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4604), + [anon_sym_BSLASHinclude] = ACTIONS(4604), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4604), + [anon_sym_BSLASHinput] = ACTIONS(4604), + [anon_sym_BSLASHsubfile] = ACTIONS(4604), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4604), + [anon_sym_BSLASHbibliography] = ACTIONS(4604), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4604), + [anon_sym_BSLASHincludesvg] = ACTIONS(4604), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4604), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4604), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4604), + [anon_sym_BSLASHimport] = ACTIONS(4604), + [anon_sym_BSLASHsubimport] = ACTIONS(4604), + [anon_sym_BSLASHinputfrom] = ACTIONS(4604), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4604), + [anon_sym_BSLASHincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4604), + [anon_sym_BSLASHcaption] = ACTIONS(4604), + [anon_sym_BSLASHcite] = ACTIONS(4604), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCite] = ACTIONS(4604), + [anon_sym_BSLASHnocite] = ACTIONS(4604), + [anon_sym_BSLASHcitet] = ACTIONS(4604), + [anon_sym_BSLASHcitep] = ACTIONS(4604), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteauthor] = ACTIONS(4604), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4604), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitetitle] = ACTIONS(4604), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteyear] = ACTIONS(4604), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4602), + [anon_sym_BSLASHcitedate] = ACTIONS(4604), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4602), + [anon_sym_BSLASHciteurl] = ACTIONS(4604), + [anon_sym_BSLASHfullcite] = ACTIONS(4604), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4604), + [anon_sym_BSLASHcitealt] = ACTIONS(4604), + [anon_sym_BSLASHcitealp] = ACTIONS(4604), + [anon_sym_BSLASHcitetext] = ACTIONS(4604), + [anon_sym_BSLASHparencite] = ACTIONS(4604), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHParencite] = ACTIONS(4604), + [anon_sym_BSLASHfootcite] = ACTIONS(4604), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4604), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4604), + [anon_sym_BSLASHtextcite] = ACTIONS(4604), + [anon_sym_BSLASHTextcite] = ACTIONS(4604), + [anon_sym_BSLASHsmartcite] = ACTIONS(4604), + [anon_sym_BSLASHSmartcite] = ACTIONS(4604), + [anon_sym_BSLASHsupercite] = ACTIONS(4604), + [anon_sym_BSLASHautocite] = ACTIONS(4604), + [anon_sym_BSLASHAutocite] = ACTIONS(4604), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4602), + [anon_sym_BSLASHvolcite] = ACTIONS(4604), + [anon_sym_BSLASHVolcite] = ACTIONS(4604), + [anon_sym_BSLASHpvolcite] = ACTIONS(4604), + [anon_sym_BSLASHPvolcite] = ACTIONS(4604), + [anon_sym_BSLASHfvolcite] = ACTIONS(4604), + [anon_sym_BSLASHftvolcite] = ACTIONS(4604), + [anon_sym_BSLASHsvolcite] = ACTIONS(4604), + [anon_sym_BSLASHSvolcite] = ACTIONS(4604), + [anon_sym_BSLASHtvolcite] = ACTIONS(4604), + [anon_sym_BSLASHTvolcite] = ACTIONS(4604), + [anon_sym_BSLASHavolcite] = ACTIONS(4604), + [anon_sym_BSLASHAvolcite] = ACTIONS(4604), + [anon_sym_BSLASHnotecite] = ACTIONS(4604), + [anon_sym_BSLASHNotecite] = ACTIONS(4604), + [anon_sym_BSLASHpnotecite] = ACTIONS(4604), + [anon_sym_BSLASHPnotecite] = ACTIONS(4604), + [anon_sym_BSLASHfnotecite] = ACTIONS(4604), + [anon_sym_BSLASHlabel] = ACTIONS(4604), + [anon_sym_BSLASHref] = ACTIONS(4604), + [anon_sym_BSLASHeqref] = ACTIONS(4604), + [anon_sym_BSLASHvref] = ACTIONS(4604), + [anon_sym_BSLASHVref] = ACTIONS(4604), + [anon_sym_BSLASHautoref] = ACTIONS(4604), + [anon_sym_BSLASHpageref] = ACTIONS(4604), + [anon_sym_BSLASHcref] = ACTIONS(4604), + [anon_sym_BSLASHCref] = ACTIONS(4604), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnameCref] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4604), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4604), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4604), + [anon_sym_BSLASHlabelcref] = ACTIONS(4604), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange] = ACTIONS(4604), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHCrefrange] = ACTIONS(4604), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4602), + [anon_sym_BSLASHnewlabel] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand] = ACTIONS(4604), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4604), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4604), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4602), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4604), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdef] = ACTIONS(4604), + [anon_sym_BSLASHlet] = ACTIONS(4604), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4604), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4604), + [anon_sym_BSLASHgls] = ACTIONS(4604), + [anon_sym_BSLASHGls] = ACTIONS(4604), + [anon_sym_BSLASHGLS] = ACTIONS(4604), + [anon_sym_BSLASHglspl] = ACTIONS(4604), + [anon_sym_BSLASHGlspl] = ACTIONS(4604), + [anon_sym_BSLASHGLSpl] = ACTIONS(4604), + [anon_sym_BSLASHglsdisp] = ACTIONS(4604), + [anon_sym_BSLASHglslink] = ACTIONS(4604), + [anon_sym_BSLASHglstext] = ACTIONS(4604), + [anon_sym_BSLASHGlstext] = ACTIONS(4604), + [anon_sym_BSLASHGLStext] = ACTIONS(4604), + [anon_sym_BSLASHglsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4604), + [anon_sym_BSLASHglsplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSplural] = ACTIONS(4604), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4604), + [anon_sym_BSLASHglsname] = ACTIONS(4604), + [anon_sym_BSLASHGlsname] = ACTIONS(4604), + [anon_sym_BSLASHGLSname] = ACTIONS(4604), + [anon_sym_BSLASHglssymbol] = ACTIONS(4604), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4604), + [anon_sym_BSLASHglsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4604), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4604), + [anon_sym_BSLASHglsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4604), + [anon_sym_BSLASHglsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4604), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4604), + [anon_sym_BSLASHglsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4604), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4604), + [anon_sym_BSLASHglsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4604), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4604), + [anon_sym_BSLASHnewacronym] = ACTIONS(4604), + [anon_sym_BSLASHacrshort] = ACTIONS(4604), + [anon_sym_BSLASHAcrshort] = ACTIONS(4604), + [anon_sym_BSLASHACRshort] = ACTIONS(4604), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4604), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4604), + [anon_sym_BSLASHacrlong] = ACTIONS(4604), + [anon_sym_BSLASHAcrlong] = ACTIONS(4604), + [anon_sym_BSLASHACRlong] = ACTIONS(4604), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4604), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4604), + [anon_sym_BSLASHacrfull] = ACTIONS(4604), + [anon_sym_BSLASHAcrfull] = ACTIONS(4604), + [anon_sym_BSLASHACRfull] = ACTIONS(4604), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4604), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4604), + [anon_sym_BSLASHacs] = ACTIONS(4604), + [anon_sym_BSLASHAcs] = ACTIONS(4604), + [anon_sym_BSLASHacsp] = ACTIONS(4604), + [anon_sym_BSLASHAcsp] = ACTIONS(4604), + [anon_sym_BSLASHacl] = ACTIONS(4604), + [anon_sym_BSLASHAcl] = ACTIONS(4604), + [anon_sym_BSLASHaclp] = ACTIONS(4604), + [anon_sym_BSLASHAclp] = ACTIONS(4604), + [anon_sym_BSLASHacf] = ACTIONS(4604), + [anon_sym_BSLASHAcf] = ACTIONS(4604), + [anon_sym_BSLASHacfp] = ACTIONS(4604), + [anon_sym_BSLASHAcfp] = ACTIONS(4604), + [anon_sym_BSLASHac] = ACTIONS(4604), + [anon_sym_BSLASHAc] = ACTIONS(4604), + [anon_sym_BSLASHacp] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4604), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4604), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4604), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4604), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4604), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4602), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4604), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4604), + [anon_sym_BSLASHcolor] = ACTIONS(4604), + [anon_sym_BSLASHcolorbox] = ACTIONS(4604), + [anon_sym_BSLASHtextcolor] = ACTIONS(4604), + [anon_sym_BSLASHpagecolor] = ACTIONS(4604), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4604), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4604), + [anon_sym_BSLASHtext] = ACTIONS(4604), + [anon_sym_BSLASHintertext] = ACTIONS(4604), + [anon_sym_shortintertext] = ACTIONS(4604), }, [634] = { [sym__paragraph_declaration] = STATE(178), [sym_paragraph] = STATE(634), [aux_sym__section_repeat6] = STATE(634), - [sym_command_name] = ACTIONS(4515), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_RPAREN] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [anon_sym_RBRACK] = ACTIONS(4513), - [anon_sym_COMMA] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_BSLASHpart] = ACTIONS(4515), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddpart] = ACTIONS(4515), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), - [anon_sym_BSLASHchapter] = ACTIONS(4515), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddchap] = ACTIONS(4515), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsection] = ACTIONS(4515), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHaddsec] = ACTIONS(4515), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), - [anon_sym_BSLASHparagraph] = ACTIONS(4797), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4800), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), - [anon_sym_BSLASHitem] = ACTIONS(4515), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4513), - [sym_word] = ACTIONS(4515), - [sym_placeholder] = ACTIONS(4513), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_SLASH] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym__] = ACTIONS(4515), - [anon_sym_LT] = ACTIONS(4515), - [anon_sym_GT] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_PIPE] = ACTIONS(4515), - [anon_sym_COLON] = ACTIONS(4515), - [anon_sym_SQUOTE] = ACTIONS(4515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), - [anon_sym_DOLLAR] = ACTIONS(4515), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4513), - [anon_sym_BSLASHbegin] = ACTIONS(4515), - [anon_sym_BSLASHusepackage] = ACTIONS(4515), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), - [anon_sym_BSLASHinclude] = ACTIONS(4515), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), - [anon_sym_BSLASHinput] = ACTIONS(4515), - [anon_sym_BSLASHsubfile] = ACTIONS(4515), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), - [anon_sym_BSLASHbibliography] = ACTIONS(4515), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), - [anon_sym_BSLASHincludesvg] = ACTIONS(4515), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), - [anon_sym_BSLASHimport] = ACTIONS(4515), - [anon_sym_BSLASHsubimport] = ACTIONS(4515), - [anon_sym_BSLASHinputfrom] = ACTIONS(4515), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), - [anon_sym_BSLASHincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), - [anon_sym_BSLASHcaption] = ACTIONS(4515), - [anon_sym_BSLASHcite] = ACTIONS(4515), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCite] = ACTIONS(4515), - [anon_sym_BSLASHnocite] = ACTIONS(4515), - [anon_sym_BSLASHcitet] = ACTIONS(4515), - [anon_sym_BSLASHcitep] = ACTIONS(4515), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor] = ACTIONS(4515), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle] = ACTIONS(4515), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteyear] = ACTIONS(4515), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), - [anon_sym_BSLASHcitedate] = ACTIONS(4515), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), - [anon_sym_BSLASHciteurl] = ACTIONS(4515), - [anon_sym_BSLASHfullcite] = ACTIONS(4515), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), - [anon_sym_BSLASHcitealt] = ACTIONS(4515), - [anon_sym_BSLASHcitealp] = ACTIONS(4515), - [anon_sym_BSLASHcitetext] = ACTIONS(4515), - [anon_sym_BSLASHparencite] = ACTIONS(4515), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHParencite] = ACTIONS(4515), - [anon_sym_BSLASHfootcite] = ACTIONS(4515), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), - [anon_sym_BSLASHtextcite] = ACTIONS(4515), - [anon_sym_BSLASHTextcite] = ACTIONS(4515), - [anon_sym_BSLASHsmartcite] = ACTIONS(4515), - [anon_sym_BSLASHSmartcite] = ACTIONS(4515), - [anon_sym_BSLASHsupercite] = ACTIONS(4515), - [anon_sym_BSLASHautocite] = ACTIONS(4515), - [anon_sym_BSLASHAutocite] = ACTIONS(4515), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), - [anon_sym_BSLASHvolcite] = ACTIONS(4515), - [anon_sym_BSLASHVolcite] = ACTIONS(4515), - [anon_sym_BSLASHpvolcite] = ACTIONS(4515), - [anon_sym_BSLASHPvolcite] = ACTIONS(4515), - [anon_sym_BSLASHfvolcite] = ACTIONS(4515), - [anon_sym_BSLASHftvolcite] = ACTIONS(4515), - [anon_sym_BSLASHsvolcite] = ACTIONS(4515), - [anon_sym_BSLASHSvolcite] = ACTIONS(4515), - [anon_sym_BSLASHtvolcite] = ACTIONS(4515), - [anon_sym_BSLASHTvolcite] = ACTIONS(4515), - [anon_sym_BSLASHavolcite] = ACTIONS(4515), - [anon_sym_BSLASHAvolcite] = ACTIONS(4515), - [anon_sym_BSLASHnotecite] = ACTIONS(4515), - [anon_sym_BSLASHNotecite] = ACTIONS(4515), - [anon_sym_BSLASHpnotecite] = ACTIONS(4515), - [anon_sym_BSLASHPnotecite] = ACTIONS(4515), - [anon_sym_BSLASHfnotecite] = ACTIONS(4515), - [anon_sym_BSLASHlabel] = ACTIONS(4515), - [anon_sym_BSLASHref] = ACTIONS(4515), - [anon_sym_BSLASHeqref] = ACTIONS(4515), - [anon_sym_BSLASHvref] = ACTIONS(4515), - [anon_sym_BSLASHVref] = ACTIONS(4515), - [anon_sym_BSLASHautoref] = ACTIONS(4515), - [anon_sym_BSLASHpageref] = ACTIONS(4515), - [anon_sym_BSLASHcref] = ACTIONS(4515), - [anon_sym_BSLASHCref] = ACTIONS(4515), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnameCref] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), - [anon_sym_BSLASHlabelcref] = ACTIONS(4515), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange] = ACTIONS(4515), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange] = ACTIONS(4515), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), - [anon_sym_BSLASHnewlabel] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand] = ACTIONS(4515), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), - [anon_sym_BSLASHdef] = ACTIONS(4515), - [anon_sym_BSLASHlet] = ACTIONS(4515), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), - [anon_sym_BSLASHgls] = ACTIONS(4515), - [anon_sym_BSLASHGls] = ACTIONS(4515), - [anon_sym_BSLASHGLS] = ACTIONS(4515), - [anon_sym_BSLASHglspl] = ACTIONS(4515), - [anon_sym_BSLASHGlspl] = ACTIONS(4515), - [anon_sym_BSLASHGLSpl] = ACTIONS(4515), - [anon_sym_BSLASHglsdisp] = ACTIONS(4515), - [anon_sym_BSLASHglslink] = ACTIONS(4515), - [anon_sym_BSLASHglstext] = ACTIONS(4515), - [anon_sym_BSLASHGlstext] = ACTIONS(4515), - [anon_sym_BSLASHGLStext] = ACTIONS(4515), - [anon_sym_BSLASHglsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), - [anon_sym_BSLASHglsplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSplural] = ACTIONS(4515), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), - [anon_sym_BSLASHglsname] = ACTIONS(4515), - [anon_sym_BSLASHGlsname] = ACTIONS(4515), - [anon_sym_BSLASHGLSname] = ACTIONS(4515), - [anon_sym_BSLASHglssymbol] = ACTIONS(4515), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), - [anon_sym_BSLASHglsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), - [anon_sym_BSLASHglsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), - [anon_sym_BSLASHglsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), - [anon_sym_BSLASHglsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), - [anon_sym_BSLASHglsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), - [anon_sym_BSLASHnewacronym] = ACTIONS(4515), - [anon_sym_BSLASHacrshort] = ACTIONS(4515), - [anon_sym_BSLASHAcrshort] = ACTIONS(4515), - [anon_sym_BSLASHACRshort] = ACTIONS(4515), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), - [anon_sym_BSLASHacrlong] = ACTIONS(4515), - [anon_sym_BSLASHAcrlong] = ACTIONS(4515), - [anon_sym_BSLASHACRlong] = ACTIONS(4515), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), - [anon_sym_BSLASHacrfull] = ACTIONS(4515), - [anon_sym_BSLASHAcrfull] = ACTIONS(4515), - [anon_sym_BSLASHACRfull] = ACTIONS(4515), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), - [anon_sym_BSLASHacs] = ACTIONS(4515), - [anon_sym_BSLASHAcs] = ACTIONS(4515), - [anon_sym_BSLASHacsp] = ACTIONS(4515), - [anon_sym_BSLASHAcsp] = ACTIONS(4515), - [anon_sym_BSLASHacl] = ACTIONS(4515), - [anon_sym_BSLASHAcl] = ACTIONS(4515), - [anon_sym_BSLASHaclp] = ACTIONS(4515), - [anon_sym_BSLASHAclp] = ACTIONS(4515), - [anon_sym_BSLASHacf] = ACTIONS(4515), - [anon_sym_BSLASHAcf] = ACTIONS(4515), - [anon_sym_BSLASHacfp] = ACTIONS(4515), - [anon_sym_BSLASHAcfp] = ACTIONS(4515), - [anon_sym_BSLASHac] = ACTIONS(4515), - [anon_sym_BSLASHAc] = ACTIONS(4515), - [anon_sym_BSLASHacp] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), - [anon_sym_BSLASHcolor] = ACTIONS(4515), - [anon_sym_BSLASHcolorbox] = ACTIONS(4515), - [anon_sym_BSLASHtextcolor] = ACTIONS(4515), - [anon_sym_BSLASHpagecolor] = ACTIONS(4515), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), - [anon_sym_BSLASHtext] = ACTIONS(4515), - [anon_sym_BSLASHintertext] = ACTIONS(4515), - [anon_sym_shortintertext] = ACTIONS(4515), + [sym_command_name] = ACTIONS(4594), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4592), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_RBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_BSLASHpart] = ACTIONS(4594), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddpart] = ACTIONS(4594), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4592), + [anon_sym_BSLASHchapter] = ACTIONS(4594), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddchap] = ACTIONS(4594), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsection] = ACTIONS(4594), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHaddsec] = ACTIONS(4594), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4594), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4592), + [anon_sym_BSLASHparagraph] = ACTIONS(4876), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4879), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4594), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4592), + [anon_sym_BSLASHitem] = ACTIONS(4594), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4592), + [sym_word] = ACTIONS(4594), + [sym_placeholder] = ACTIONS(4592), + [anon_sym_PLUS] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_SLASH] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym__] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4594), + [anon_sym_COLON] = ACTIONS(4594), + [anon_sym_SQUOTE] = ACTIONS(4594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4594), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4592), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4592), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4592), + [anon_sym_BSLASHbegin] = ACTIONS(4594), + [anon_sym_BSLASHusepackage] = ACTIONS(4594), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4594), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4594), + [anon_sym_BSLASHinclude] = ACTIONS(4594), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4594), + [anon_sym_BSLASHinput] = ACTIONS(4594), + [anon_sym_BSLASHsubfile] = ACTIONS(4594), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4594), + [anon_sym_BSLASHbibliography] = ACTIONS(4594), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4594), + [anon_sym_BSLASHincludesvg] = ACTIONS(4594), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4594), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4594), + [anon_sym_BSLASHimport] = ACTIONS(4594), + [anon_sym_BSLASHsubimport] = ACTIONS(4594), + [anon_sym_BSLASHinputfrom] = ACTIONS(4594), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4594), + [anon_sym_BSLASHincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4594), + [anon_sym_BSLASHcaption] = ACTIONS(4594), + [anon_sym_BSLASHcite] = ACTIONS(4594), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCite] = ACTIONS(4594), + [anon_sym_BSLASHnocite] = ACTIONS(4594), + [anon_sym_BSLASHcitet] = ACTIONS(4594), + [anon_sym_BSLASHcitep] = ACTIONS(4594), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteauthor] = ACTIONS(4594), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4594), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitetitle] = ACTIONS(4594), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteyear] = ACTIONS(4594), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4592), + [anon_sym_BSLASHcitedate] = ACTIONS(4594), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4592), + [anon_sym_BSLASHciteurl] = ACTIONS(4594), + [anon_sym_BSLASHfullcite] = ACTIONS(4594), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4594), + [anon_sym_BSLASHcitealt] = ACTIONS(4594), + [anon_sym_BSLASHcitealp] = ACTIONS(4594), + [anon_sym_BSLASHcitetext] = ACTIONS(4594), + [anon_sym_BSLASHparencite] = ACTIONS(4594), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHParencite] = ACTIONS(4594), + [anon_sym_BSLASHfootcite] = ACTIONS(4594), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4594), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4594), + [anon_sym_BSLASHtextcite] = ACTIONS(4594), + [anon_sym_BSLASHTextcite] = ACTIONS(4594), + [anon_sym_BSLASHsmartcite] = ACTIONS(4594), + [anon_sym_BSLASHSmartcite] = ACTIONS(4594), + [anon_sym_BSLASHsupercite] = ACTIONS(4594), + [anon_sym_BSLASHautocite] = ACTIONS(4594), + [anon_sym_BSLASHAutocite] = ACTIONS(4594), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4592), + [anon_sym_BSLASHvolcite] = ACTIONS(4594), + [anon_sym_BSLASHVolcite] = ACTIONS(4594), + [anon_sym_BSLASHpvolcite] = ACTIONS(4594), + [anon_sym_BSLASHPvolcite] = ACTIONS(4594), + [anon_sym_BSLASHfvolcite] = ACTIONS(4594), + [anon_sym_BSLASHftvolcite] = ACTIONS(4594), + [anon_sym_BSLASHsvolcite] = ACTIONS(4594), + [anon_sym_BSLASHSvolcite] = ACTIONS(4594), + [anon_sym_BSLASHtvolcite] = ACTIONS(4594), + [anon_sym_BSLASHTvolcite] = ACTIONS(4594), + [anon_sym_BSLASHavolcite] = ACTIONS(4594), + [anon_sym_BSLASHAvolcite] = ACTIONS(4594), + [anon_sym_BSLASHnotecite] = ACTIONS(4594), + [anon_sym_BSLASHNotecite] = ACTIONS(4594), + [anon_sym_BSLASHpnotecite] = ACTIONS(4594), + [anon_sym_BSLASHPnotecite] = ACTIONS(4594), + [anon_sym_BSLASHfnotecite] = ACTIONS(4594), + [anon_sym_BSLASHlabel] = ACTIONS(4594), + [anon_sym_BSLASHref] = ACTIONS(4594), + [anon_sym_BSLASHeqref] = ACTIONS(4594), + [anon_sym_BSLASHvref] = ACTIONS(4594), + [anon_sym_BSLASHVref] = ACTIONS(4594), + [anon_sym_BSLASHautoref] = ACTIONS(4594), + [anon_sym_BSLASHpageref] = ACTIONS(4594), + [anon_sym_BSLASHcref] = ACTIONS(4594), + [anon_sym_BSLASHCref] = ACTIONS(4594), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnameCref] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4594), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4594), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4594), + [anon_sym_BSLASHlabelcref] = ACTIONS(4594), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange] = ACTIONS(4594), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHCrefrange] = ACTIONS(4594), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4592), + [anon_sym_BSLASHnewlabel] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand] = ACTIONS(4594), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4594), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4594), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4592), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4594), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdef] = ACTIONS(4594), + [anon_sym_BSLASHlet] = ACTIONS(4594), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4594), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4594), + [anon_sym_BSLASHgls] = ACTIONS(4594), + [anon_sym_BSLASHGls] = ACTIONS(4594), + [anon_sym_BSLASHGLS] = ACTIONS(4594), + [anon_sym_BSLASHglspl] = ACTIONS(4594), + [anon_sym_BSLASHGlspl] = ACTIONS(4594), + [anon_sym_BSLASHGLSpl] = ACTIONS(4594), + [anon_sym_BSLASHglsdisp] = ACTIONS(4594), + [anon_sym_BSLASHglslink] = ACTIONS(4594), + [anon_sym_BSLASHglstext] = ACTIONS(4594), + [anon_sym_BSLASHGlstext] = ACTIONS(4594), + [anon_sym_BSLASHGLStext] = ACTIONS(4594), + [anon_sym_BSLASHglsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4594), + [anon_sym_BSLASHglsplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSplural] = ACTIONS(4594), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4594), + [anon_sym_BSLASHglsname] = ACTIONS(4594), + [anon_sym_BSLASHGlsname] = ACTIONS(4594), + [anon_sym_BSLASHGLSname] = ACTIONS(4594), + [anon_sym_BSLASHglssymbol] = ACTIONS(4594), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4594), + [anon_sym_BSLASHglsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4594), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4594), + [anon_sym_BSLASHglsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4594), + [anon_sym_BSLASHglsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4594), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4594), + [anon_sym_BSLASHglsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4594), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4594), + [anon_sym_BSLASHglsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4594), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4594), + [anon_sym_BSLASHnewacronym] = ACTIONS(4594), + [anon_sym_BSLASHacrshort] = ACTIONS(4594), + [anon_sym_BSLASHAcrshort] = ACTIONS(4594), + [anon_sym_BSLASHACRshort] = ACTIONS(4594), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4594), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4594), + [anon_sym_BSLASHacrlong] = ACTIONS(4594), + [anon_sym_BSLASHAcrlong] = ACTIONS(4594), + [anon_sym_BSLASHACRlong] = ACTIONS(4594), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4594), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4594), + [anon_sym_BSLASHacrfull] = ACTIONS(4594), + [anon_sym_BSLASHAcrfull] = ACTIONS(4594), + [anon_sym_BSLASHACRfull] = ACTIONS(4594), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4594), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4594), + [anon_sym_BSLASHacs] = ACTIONS(4594), + [anon_sym_BSLASHAcs] = ACTIONS(4594), + [anon_sym_BSLASHacsp] = ACTIONS(4594), + [anon_sym_BSLASHAcsp] = ACTIONS(4594), + [anon_sym_BSLASHacl] = ACTIONS(4594), + [anon_sym_BSLASHAcl] = ACTIONS(4594), + [anon_sym_BSLASHaclp] = ACTIONS(4594), + [anon_sym_BSLASHAclp] = ACTIONS(4594), + [anon_sym_BSLASHacf] = ACTIONS(4594), + [anon_sym_BSLASHAcf] = ACTIONS(4594), + [anon_sym_BSLASHacfp] = ACTIONS(4594), + [anon_sym_BSLASHAcfp] = ACTIONS(4594), + [anon_sym_BSLASHac] = ACTIONS(4594), + [anon_sym_BSLASHAc] = ACTIONS(4594), + [anon_sym_BSLASHacp] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4594), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4594), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4594), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4594), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4594), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4592), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4594), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4594), + [anon_sym_BSLASHcolor] = ACTIONS(4594), + [anon_sym_BSLASHcolorbox] = ACTIONS(4594), + [anon_sym_BSLASHtextcolor] = ACTIONS(4594), + [anon_sym_BSLASHpagecolor] = ACTIONS(4594), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4594), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4594), + [anon_sym_BSLASHtext] = ACTIONS(4594), + [anon_sym_BSLASHintertext] = ACTIONS(4594), + [anon_sym_shortintertext] = ACTIONS(4594), }, [635] = { [sym__subparagraph_declaration] = STATE(188), [sym_subparagraph] = STATE(635), [aux_sym__section_repeat7] = STATE(635), - [sym_command_name] = ACTIONS(4505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_BSLASHpart] = ACTIONS(4505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddpart] = ACTIONS(4505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), - [anon_sym_BSLASHchapter] = ACTIONS(4505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddchap] = ACTIONS(4505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsection] = ACTIONS(4505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHaddsec] = ACTIONS(4505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), - [anon_sym_BSLASHparagraph] = ACTIONS(4505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4803), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4806), - [anon_sym_BSLASHitem] = ACTIONS(4505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), - [anon_sym_LBRACE] = ACTIONS(4503), - [sym_word] = ACTIONS(4505), - [sym_placeholder] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(4505), - [anon_sym_SLASH] = ACTIONS(4505), - [anon_sym_CARET] = ACTIONS(4505), - [anon_sym__] = ACTIONS(4505), - [anon_sym_LT] = ACTIONS(4505), - [anon_sym_GT] = ACTIONS(4505), - [anon_sym_BANG] = ACTIONS(4505), - [anon_sym_PIPE] = ACTIONS(4505), - [anon_sym_COLON] = ACTIONS(4505), - [anon_sym_SQUOTE] = ACTIONS(4505), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4503), - [anon_sym_BSLASHbegin] = ACTIONS(4505), - [anon_sym_BSLASHusepackage] = ACTIONS(4505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), - [anon_sym_BSLASHinclude] = ACTIONS(4505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), - [anon_sym_BSLASHinput] = ACTIONS(4505), - [anon_sym_BSLASHsubfile] = ACTIONS(4505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), - [anon_sym_BSLASHbibliography] = ACTIONS(4505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), - [anon_sym_BSLASHincludesvg] = ACTIONS(4505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), - [anon_sym_BSLASHimport] = ACTIONS(4505), - [anon_sym_BSLASHsubimport] = ACTIONS(4505), - [anon_sym_BSLASHinputfrom] = ACTIONS(4505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), - [anon_sym_BSLASHincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), - [anon_sym_BSLASHcaption] = ACTIONS(4505), - [anon_sym_BSLASHcite] = ACTIONS(4505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCite] = ACTIONS(4505), - [anon_sym_BSLASHnocite] = ACTIONS(4505), - [anon_sym_BSLASHcitet] = ACTIONS(4505), - [anon_sym_BSLASHcitep] = ACTIONS(4505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor] = ACTIONS(4505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle] = ACTIONS(4505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteyear] = ACTIONS(4505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), - [anon_sym_BSLASHcitedate] = ACTIONS(4505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), - [anon_sym_BSLASHciteurl] = ACTIONS(4505), - [anon_sym_BSLASHfullcite] = ACTIONS(4505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), - [anon_sym_BSLASHcitealt] = ACTIONS(4505), - [anon_sym_BSLASHcitealp] = ACTIONS(4505), - [anon_sym_BSLASHcitetext] = ACTIONS(4505), - [anon_sym_BSLASHparencite] = ACTIONS(4505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHParencite] = ACTIONS(4505), - [anon_sym_BSLASHfootcite] = ACTIONS(4505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), - [anon_sym_BSLASHtextcite] = ACTIONS(4505), - [anon_sym_BSLASHTextcite] = ACTIONS(4505), - [anon_sym_BSLASHsmartcite] = ACTIONS(4505), - [anon_sym_BSLASHSmartcite] = ACTIONS(4505), - [anon_sym_BSLASHsupercite] = ACTIONS(4505), - [anon_sym_BSLASHautocite] = ACTIONS(4505), - [anon_sym_BSLASHAutocite] = ACTIONS(4505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), - [anon_sym_BSLASHvolcite] = ACTIONS(4505), - [anon_sym_BSLASHVolcite] = ACTIONS(4505), - [anon_sym_BSLASHpvolcite] = ACTIONS(4505), - [anon_sym_BSLASHPvolcite] = ACTIONS(4505), - [anon_sym_BSLASHfvolcite] = ACTIONS(4505), - [anon_sym_BSLASHftvolcite] = ACTIONS(4505), - [anon_sym_BSLASHsvolcite] = ACTIONS(4505), - [anon_sym_BSLASHSvolcite] = ACTIONS(4505), - [anon_sym_BSLASHtvolcite] = ACTIONS(4505), - [anon_sym_BSLASHTvolcite] = ACTIONS(4505), - [anon_sym_BSLASHavolcite] = ACTIONS(4505), - [anon_sym_BSLASHAvolcite] = ACTIONS(4505), - [anon_sym_BSLASHnotecite] = ACTIONS(4505), - [anon_sym_BSLASHNotecite] = ACTIONS(4505), - [anon_sym_BSLASHpnotecite] = ACTIONS(4505), - [anon_sym_BSLASHPnotecite] = ACTIONS(4505), - [anon_sym_BSLASHfnotecite] = ACTIONS(4505), - [anon_sym_BSLASHlabel] = ACTIONS(4505), - [anon_sym_BSLASHref] = ACTIONS(4505), - [anon_sym_BSLASHeqref] = ACTIONS(4505), - [anon_sym_BSLASHvref] = ACTIONS(4505), - [anon_sym_BSLASHVref] = ACTIONS(4505), - [anon_sym_BSLASHautoref] = ACTIONS(4505), - [anon_sym_BSLASHpageref] = ACTIONS(4505), - [anon_sym_BSLASHcref] = ACTIONS(4505), - [anon_sym_BSLASHCref] = ACTIONS(4505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnameCref] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), - [anon_sym_BSLASHlabelcref] = ACTIONS(4505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange] = ACTIONS(4505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange] = ACTIONS(4505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), - [anon_sym_BSLASHnewlabel] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand] = ACTIONS(4505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), - [anon_sym_BSLASHdef] = ACTIONS(4505), - [anon_sym_BSLASHlet] = ACTIONS(4505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), - [anon_sym_BSLASHgls] = ACTIONS(4505), - [anon_sym_BSLASHGls] = ACTIONS(4505), - [anon_sym_BSLASHGLS] = ACTIONS(4505), - [anon_sym_BSLASHglspl] = ACTIONS(4505), - [anon_sym_BSLASHGlspl] = ACTIONS(4505), - [anon_sym_BSLASHGLSpl] = ACTIONS(4505), - [anon_sym_BSLASHglsdisp] = ACTIONS(4505), - [anon_sym_BSLASHglslink] = ACTIONS(4505), - [anon_sym_BSLASHglstext] = ACTIONS(4505), - [anon_sym_BSLASHGlstext] = ACTIONS(4505), - [anon_sym_BSLASHGLStext] = ACTIONS(4505), - [anon_sym_BSLASHglsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), - [anon_sym_BSLASHglsplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSplural] = ACTIONS(4505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), - [anon_sym_BSLASHglsname] = ACTIONS(4505), - [anon_sym_BSLASHGlsname] = ACTIONS(4505), - [anon_sym_BSLASHGLSname] = ACTIONS(4505), - [anon_sym_BSLASHglssymbol] = ACTIONS(4505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), - [anon_sym_BSLASHglsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), - [anon_sym_BSLASHglsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), - [anon_sym_BSLASHglsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), - [anon_sym_BSLASHglsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), - [anon_sym_BSLASHglsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), - [anon_sym_BSLASHnewacronym] = ACTIONS(4505), - [anon_sym_BSLASHacrshort] = ACTIONS(4505), - [anon_sym_BSLASHAcrshort] = ACTIONS(4505), - [anon_sym_BSLASHACRshort] = ACTIONS(4505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), - [anon_sym_BSLASHacrlong] = ACTIONS(4505), - [anon_sym_BSLASHAcrlong] = ACTIONS(4505), - [anon_sym_BSLASHACRlong] = ACTIONS(4505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), - [anon_sym_BSLASHacrfull] = ACTIONS(4505), - [anon_sym_BSLASHAcrfull] = ACTIONS(4505), - [anon_sym_BSLASHACRfull] = ACTIONS(4505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), - [anon_sym_BSLASHacs] = ACTIONS(4505), - [anon_sym_BSLASHAcs] = ACTIONS(4505), - [anon_sym_BSLASHacsp] = ACTIONS(4505), - [anon_sym_BSLASHAcsp] = ACTIONS(4505), - [anon_sym_BSLASHacl] = ACTIONS(4505), - [anon_sym_BSLASHAcl] = ACTIONS(4505), - [anon_sym_BSLASHaclp] = ACTIONS(4505), - [anon_sym_BSLASHAclp] = ACTIONS(4505), - [anon_sym_BSLASHacf] = ACTIONS(4505), - [anon_sym_BSLASHAcf] = ACTIONS(4505), - [anon_sym_BSLASHacfp] = ACTIONS(4505), - [anon_sym_BSLASHAcfp] = ACTIONS(4505), - [anon_sym_BSLASHac] = ACTIONS(4505), - [anon_sym_BSLASHAc] = ACTIONS(4505), - [anon_sym_BSLASHacp] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), - [anon_sym_BSLASHcolor] = ACTIONS(4505), - [anon_sym_BSLASHcolorbox] = ACTIONS(4505), - [anon_sym_BSLASHtextcolor] = ACTIONS(4505), - [anon_sym_BSLASHpagecolor] = ACTIONS(4505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), - [anon_sym_BSLASHtext] = ACTIONS(4505), - [anon_sym_BSLASHintertext] = ACTIONS(4505), - [anon_sym_shortintertext] = ACTIONS(4505), + [sym_command_name] = ACTIONS(4584), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_RPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_RBRACK] = ACTIONS(4582), + [anon_sym_COMMA] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_BSLASHpart] = ACTIONS(4584), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddpart] = ACTIONS(4584), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4582), + [anon_sym_BSLASHchapter] = ACTIONS(4584), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddchap] = ACTIONS(4584), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsection] = ACTIONS(4584), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHaddsec] = ACTIONS(4584), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4584), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4582), + [anon_sym_BSLASHparagraph] = ACTIONS(4584), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4582), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4882), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHitem] = ACTIONS(4584), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4582), + [sym_word] = ACTIONS(4584), + [sym_placeholder] = ACTIONS(4582), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym__] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4584), + [anon_sym_GT] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_SQUOTE] = ACTIONS(4584), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4582), + [anon_sym_DOLLAR] = ACTIONS(4584), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4582), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4582), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4582), + [anon_sym_BSLASHbegin] = ACTIONS(4584), + [anon_sym_BSLASHusepackage] = ACTIONS(4584), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4584), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4584), + [anon_sym_BSLASHinclude] = ACTIONS(4584), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4584), + [anon_sym_BSLASHinput] = ACTIONS(4584), + [anon_sym_BSLASHsubfile] = ACTIONS(4584), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4584), + [anon_sym_BSLASHbibliography] = ACTIONS(4584), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4584), + [anon_sym_BSLASHincludesvg] = ACTIONS(4584), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4584), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4584), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4584), + [anon_sym_BSLASHimport] = ACTIONS(4584), + [anon_sym_BSLASHsubimport] = ACTIONS(4584), + [anon_sym_BSLASHinputfrom] = ACTIONS(4584), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4584), + [anon_sym_BSLASHincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4584), + [anon_sym_BSLASHcaption] = ACTIONS(4584), + [anon_sym_BSLASHcite] = ACTIONS(4584), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCite] = ACTIONS(4584), + [anon_sym_BSLASHnocite] = ACTIONS(4584), + [anon_sym_BSLASHcitet] = ACTIONS(4584), + [anon_sym_BSLASHcitep] = ACTIONS(4584), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteauthor] = ACTIONS(4584), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4584), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitetitle] = ACTIONS(4584), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteyear] = ACTIONS(4584), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4582), + [anon_sym_BSLASHcitedate] = ACTIONS(4584), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4582), + [anon_sym_BSLASHciteurl] = ACTIONS(4584), + [anon_sym_BSLASHfullcite] = ACTIONS(4584), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4584), + [anon_sym_BSLASHcitealt] = ACTIONS(4584), + [anon_sym_BSLASHcitealp] = ACTIONS(4584), + [anon_sym_BSLASHcitetext] = ACTIONS(4584), + [anon_sym_BSLASHparencite] = ACTIONS(4584), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHParencite] = ACTIONS(4584), + [anon_sym_BSLASHfootcite] = ACTIONS(4584), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4584), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4584), + [anon_sym_BSLASHtextcite] = ACTIONS(4584), + [anon_sym_BSLASHTextcite] = ACTIONS(4584), + [anon_sym_BSLASHsmartcite] = ACTIONS(4584), + [anon_sym_BSLASHSmartcite] = ACTIONS(4584), + [anon_sym_BSLASHsupercite] = ACTIONS(4584), + [anon_sym_BSLASHautocite] = ACTIONS(4584), + [anon_sym_BSLASHAutocite] = ACTIONS(4584), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4582), + [anon_sym_BSLASHvolcite] = ACTIONS(4584), + [anon_sym_BSLASHVolcite] = ACTIONS(4584), + [anon_sym_BSLASHpvolcite] = ACTIONS(4584), + [anon_sym_BSLASHPvolcite] = ACTIONS(4584), + [anon_sym_BSLASHfvolcite] = ACTIONS(4584), + [anon_sym_BSLASHftvolcite] = ACTIONS(4584), + [anon_sym_BSLASHsvolcite] = ACTIONS(4584), + [anon_sym_BSLASHSvolcite] = ACTIONS(4584), + [anon_sym_BSLASHtvolcite] = ACTIONS(4584), + [anon_sym_BSLASHTvolcite] = ACTIONS(4584), + [anon_sym_BSLASHavolcite] = ACTIONS(4584), + [anon_sym_BSLASHAvolcite] = ACTIONS(4584), + [anon_sym_BSLASHnotecite] = ACTIONS(4584), + [anon_sym_BSLASHNotecite] = ACTIONS(4584), + [anon_sym_BSLASHpnotecite] = ACTIONS(4584), + [anon_sym_BSLASHPnotecite] = ACTIONS(4584), + [anon_sym_BSLASHfnotecite] = ACTIONS(4584), + [anon_sym_BSLASHlabel] = ACTIONS(4584), + [anon_sym_BSLASHref] = ACTIONS(4584), + [anon_sym_BSLASHeqref] = ACTIONS(4584), + [anon_sym_BSLASHvref] = ACTIONS(4584), + [anon_sym_BSLASHVref] = ACTIONS(4584), + [anon_sym_BSLASHautoref] = ACTIONS(4584), + [anon_sym_BSLASHpageref] = ACTIONS(4584), + [anon_sym_BSLASHcref] = ACTIONS(4584), + [anon_sym_BSLASHCref] = ACTIONS(4584), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnameCref] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4584), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4584), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4584), + [anon_sym_BSLASHlabelcref] = ACTIONS(4584), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange] = ACTIONS(4584), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHCrefrange] = ACTIONS(4584), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4582), + [anon_sym_BSLASHnewlabel] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand] = ACTIONS(4584), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4584), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4584), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4582), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4584), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdef] = ACTIONS(4584), + [anon_sym_BSLASHlet] = ACTIONS(4584), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4584), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4584), + [anon_sym_BSLASHgls] = ACTIONS(4584), + [anon_sym_BSLASHGls] = ACTIONS(4584), + [anon_sym_BSLASHGLS] = ACTIONS(4584), + [anon_sym_BSLASHglspl] = ACTIONS(4584), + [anon_sym_BSLASHGlspl] = ACTIONS(4584), + [anon_sym_BSLASHGLSpl] = ACTIONS(4584), + [anon_sym_BSLASHglsdisp] = ACTIONS(4584), + [anon_sym_BSLASHglslink] = ACTIONS(4584), + [anon_sym_BSLASHglstext] = ACTIONS(4584), + [anon_sym_BSLASHGlstext] = ACTIONS(4584), + [anon_sym_BSLASHGLStext] = ACTIONS(4584), + [anon_sym_BSLASHglsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4584), + [anon_sym_BSLASHglsplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSplural] = ACTIONS(4584), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4584), + [anon_sym_BSLASHglsname] = ACTIONS(4584), + [anon_sym_BSLASHGlsname] = ACTIONS(4584), + [anon_sym_BSLASHGLSname] = ACTIONS(4584), + [anon_sym_BSLASHglssymbol] = ACTIONS(4584), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4584), + [anon_sym_BSLASHglsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4584), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4584), + [anon_sym_BSLASHglsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4584), + [anon_sym_BSLASHglsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4584), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4584), + [anon_sym_BSLASHglsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4584), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4584), + [anon_sym_BSLASHglsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4584), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4584), + [anon_sym_BSLASHnewacronym] = ACTIONS(4584), + [anon_sym_BSLASHacrshort] = ACTIONS(4584), + [anon_sym_BSLASHAcrshort] = ACTIONS(4584), + [anon_sym_BSLASHACRshort] = ACTIONS(4584), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4584), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4584), + [anon_sym_BSLASHacrlong] = ACTIONS(4584), + [anon_sym_BSLASHAcrlong] = ACTIONS(4584), + [anon_sym_BSLASHACRlong] = ACTIONS(4584), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4584), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4584), + [anon_sym_BSLASHacrfull] = ACTIONS(4584), + [anon_sym_BSLASHAcrfull] = ACTIONS(4584), + [anon_sym_BSLASHACRfull] = ACTIONS(4584), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4584), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4584), + [anon_sym_BSLASHacs] = ACTIONS(4584), + [anon_sym_BSLASHAcs] = ACTIONS(4584), + [anon_sym_BSLASHacsp] = ACTIONS(4584), + [anon_sym_BSLASHAcsp] = ACTIONS(4584), + [anon_sym_BSLASHacl] = ACTIONS(4584), + [anon_sym_BSLASHAcl] = ACTIONS(4584), + [anon_sym_BSLASHaclp] = ACTIONS(4584), + [anon_sym_BSLASHAclp] = ACTIONS(4584), + [anon_sym_BSLASHacf] = ACTIONS(4584), + [anon_sym_BSLASHAcf] = ACTIONS(4584), + [anon_sym_BSLASHacfp] = ACTIONS(4584), + [anon_sym_BSLASHAcfp] = ACTIONS(4584), + [anon_sym_BSLASHac] = ACTIONS(4584), + [anon_sym_BSLASHAc] = ACTIONS(4584), + [anon_sym_BSLASHacp] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4584), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4584), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4584), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4584), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4584), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4582), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4584), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4584), + [anon_sym_BSLASHcolor] = ACTIONS(4584), + [anon_sym_BSLASHcolorbox] = ACTIONS(4584), + [anon_sym_BSLASHtextcolor] = ACTIONS(4584), + [anon_sym_BSLASHpagecolor] = ACTIONS(4584), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4584), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4584), + [anon_sym_BSLASHtext] = ACTIONS(4584), + [anon_sym_BSLASHintertext] = ACTIONS(4584), + [anon_sym_shortintertext] = ACTIONS(4584), }, [636] = { [sym__enum_itemdeclaration] = STATE(203), [sym_enum_item] = STATE(636), [aux_sym__section_repeat8] = STATE(636), - [sym_command_name] = ACTIONS(4495), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4493), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [anon_sym_RBRACK] = ACTIONS(4493), - [anon_sym_COMMA] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_BSLASHpart] = ACTIONS(4495), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddpart] = ACTIONS(4495), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), - [anon_sym_BSLASHchapter] = ACTIONS(4495), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddchap] = ACTIONS(4495), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsection] = ACTIONS(4495), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHaddsec] = ACTIONS(4495), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), - [anon_sym_BSLASHparagraph] = ACTIONS(4495), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), - [anon_sym_BSLASHitem] = ACTIONS(4809), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4812), - [anon_sym_LBRACE] = ACTIONS(4493), - [sym_word] = ACTIONS(4495), - [sym_placeholder] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_SLASH] = ACTIONS(4495), - [anon_sym_CARET] = ACTIONS(4495), - [anon_sym__] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_PIPE] = ACTIONS(4495), - [anon_sym_COLON] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4493), - [anon_sym_BSLASHbegin] = ACTIONS(4495), - [anon_sym_BSLASHusepackage] = ACTIONS(4495), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), - [anon_sym_BSLASHinclude] = ACTIONS(4495), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), - [anon_sym_BSLASHinput] = ACTIONS(4495), - [anon_sym_BSLASHsubfile] = ACTIONS(4495), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), - [anon_sym_BSLASHbibliography] = ACTIONS(4495), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), - [anon_sym_BSLASHincludesvg] = ACTIONS(4495), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), - [anon_sym_BSLASHimport] = ACTIONS(4495), - [anon_sym_BSLASHsubimport] = ACTIONS(4495), - [anon_sym_BSLASHinputfrom] = ACTIONS(4495), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), - [anon_sym_BSLASHincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), - [anon_sym_BSLASHcaption] = ACTIONS(4495), - [anon_sym_BSLASHcite] = ACTIONS(4495), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCite] = ACTIONS(4495), - [anon_sym_BSLASHnocite] = ACTIONS(4495), - [anon_sym_BSLASHcitet] = ACTIONS(4495), - [anon_sym_BSLASHcitep] = ACTIONS(4495), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor] = ACTIONS(4495), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle] = ACTIONS(4495), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteyear] = ACTIONS(4495), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), - [anon_sym_BSLASHcitedate] = ACTIONS(4495), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), - [anon_sym_BSLASHciteurl] = ACTIONS(4495), - [anon_sym_BSLASHfullcite] = ACTIONS(4495), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), - [anon_sym_BSLASHcitealt] = ACTIONS(4495), - [anon_sym_BSLASHcitealp] = ACTIONS(4495), - [anon_sym_BSLASHcitetext] = ACTIONS(4495), - [anon_sym_BSLASHparencite] = ACTIONS(4495), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHParencite] = ACTIONS(4495), - [anon_sym_BSLASHfootcite] = ACTIONS(4495), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), - [anon_sym_BSLASHtextcite] = ACTIONS(4495), - [anon_sym_BSLASHTextcite] = ACTIONS(4495), - [anon_sym_BSLASHsmartcite] = ACTIONS(4495), - [anon_sym_BSLASHSmartcite] = ACTIONS(4495), - [anon_sym_BSLASHsupercite] = ACTIONS(4495), - [anon_sym_BSLASHautocite] = ACTIONS(4495), - [anon_sym_BSLASHAutocite] = ACTIONS(4495), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), - [anon_sym_BSLASHvolcite] = ACTIONS(4495), - [anon_sym_BSLASHVolcite] = ACTIONS(4495), - [anon_sym_BSLASHpvolcite] = ACTIONS(4495), - [anon_sym_BSLASHPvolcite] = ACTIONS(4495), - [anon_sym_BSLASHfvolcite] = ACTIONS(4495), - [anon_sym_BSLASHftvolcite] = ACTIONS(4495), - [anon_sym_BSLASHsvolcite] = ACTIONS(4495), - [anon_sym_BSLASHSvolcite] = ACTIONS(4495), - [anon_sym_BSLASHtvolcite] = ACTIONS(4495), - [anon_sym_BSLASHTvolcite] = ACTIONS(4495), - [anon_sym_BSLASHavolcite] = ACTIONS(4495), - [anon_sym_BSLASHAvolcite] = ACTIONS(4495), - [anon_sym_BSLASHnotecite] = ACTIONS(4495), - [anon_sym_BSLASHNotecite] = ACTIONS(4495), - [anon_sym_BSLASHpnotecite] = ACTIONS(4495), - [anon_sym_BSLASHPnotecite] = ACTIONS(4495), - [anon_sym_BSLASHfnotecite] = ACTIONS(4495), - [anon_sym_BSLASHlabel] = ACTIONS(4495), - [anon_sym_BSLASHref] = ACTIONS(4495), - [anon_sym_BSLASHeqref] = ACTIONS(4495), - [anon_sym_BSLASHvref] = ACTIONS(4495), - [anon_sym_BSLASHVref] = ACTIONS(4495), - [anon_sym_BSLASHautoref] = ACTIONS(4495), - [anon_sym_BSLASHpageref] = ACTIONS(4495), - [anon_sym_BSLASHcref] = ACTIONS(4495), - [anon_sym_BSLASHCref] = ACTIONS(4495), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnameCref] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), - [anon_sym_BSLASHlabelcref] = ACTIONS(4495), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange] = ACTIONS(4495), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange] = ACTIONS(4495), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), - [anon_sym_BSLASHnewlabel] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand] = ACTIONS(4495), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), - [anon_sym_BSLASHdef] = ACTIONS(4495), - [anon_sym_BSLASHlet] = ACTIONS(4495), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), - [anon_sym_BSLASHgls] = ACTIONS(4495), - [anon_sym_BSLASHGls] = ACTIONS(4495), - [anon_sym_BSLASHGLS] = ACTIONS(4495), - [anon_sym_BSLASHglspl] = ACTIONS(4495), - [anon_sym_BSLASHGlspl] = ACTIONS(4495), - [anon_sym_BSLASHGLSpl] = ACTIONS(4495), - [anon_sym_BSLASHglsdisp] = ACTIONS(4495), - [anon_sym_BSLASHglslink] = ACTIONS(4495), - [anon_sym_BSLASHglstext] = ACTIONS(4495), - [anon_sym_BSLASHGlstext] = ACTIONS(4495), - [anon_sym_BSLASHGLStext] = ACTIONS(4495), - [anon_sym_BSLASHglsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), - [anon_sym_BSLASHglsplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSplural] = ACTIONS(4495), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), - [anon_sym_BSLASHglsname] = ACTIONS(4495), - [anon_sym_BSLASHGlsname] = ACTIONS(4495), - [anon_sym_BSLASHGLSname] = ACTIONS(4495), - [anon_sym_BSLASHglssymbol] = ACTIONS(4495), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), - [anon_sym_BSLASHglsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), - [anon_sym_BSLASHglsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), - [anon_sym_BSLASHglsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), - [anon_sym_BSLASHglsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), - [anon_sym_BSLASHglsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), - [anon_sym_BSLASHnewacronym] = ACTIONS(4495), - [anon_sym_BSLASHacrshort] = ACTIONS(4495), - [anon_sym_BSLASHAcrshort] = ACTIONS(4495), - [anon_sym_BSLASHACRshort] = ACTIONS(4495), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), - [anon_sym_BSLASHacrlong] = ACTIONS(4495), - [anon_sym_BSLASHAcrlong] = ACTIONS(4495), - [anon_sym_BSLASHACRlong] = ACTIONS(4495), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), - [anon_sym_BSLASHacrfull] = ACTIONS(4495), - [anon_sym_BSLASHAcrfull] = ACTIONS(4495), - [anon_sym_BSLASHACRfull] = ACTIONS(4495), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), - [anon_sym_BSLASHacs] = ACTIONS(4495), - [anon_sym_BSLASHAcs] = ACTIONS(4495), - [anon_sym_BSLASHacsp] = ACTIONS(4495), - [anon_sym_BSLASHAcsp] = ACTIONS(4495), - [anon_sym_BSLASHacl] = ACTIONS(4495), - [anon_sym_BSLASHAcl] = ACTIONS(4495), - [anon_sym_BSLASHaclp] = ACTIONS(4495), - [anon_sym_BSLASHAclp] = ACTIONS(4495), - [anon_sym_BSLASHacf] = ACTIONS(4495), - [anon_sym_BSLASHAcf] = ACTIONS(4495), - [anon_sym_BSLASHacfp] = ACTIONS(4495), - [anon_sym_BSLASHAcfp] = ACTIONS(4495), - [anon_sym_BSLASHac] = ACTIONS(4495), - [anon_sym_BSLASHAc] = ACTIONS(4495), - [anon_sym_BSLASHacp] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), - [anon_sym_BSLASHcolor] = ACTIONS(4495), - [anon_sym_BSLASHcolorbox] = ACTIONS(4495), - [anon_sym_BSLASHtextcolor] = ACTIONS(4495), - [anon_sym_BSLASHpagecolor] = ACTIONS(4495), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), - [anon_sym_BSLASHtext] = ACTIONS(4495), - [anon_sym_BSLASHintertext] = ACTIONS(4495), - [anon_sym_shortintertext] = ACTIONS(4495), + [sym_command_name] = ACTIONS(4574), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4574), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_BSLASHpart] = ACTIONS(4574), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddpart] = ACTIONS(4574), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4572), + [anon_sym_BSLASHchapter] = ACTIONS(4574), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddchap] = ACTIONS(4574), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsection] = ACTIONS(4574), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHaddsec] = ACTIONS(4574), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4574), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4572), + [anon_sym_BSLASHparagraph] = ACTIONS(4574), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4574), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4572), + [anon_sym_BSLASHitem] = ACTIONS(4888), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4891), + [anon_sym_LBRACE] = ACTIONS(4572), + [sym_word] = ACTIONS(4574), + [sym_placeholder] = ACTIONS(4572), + [anon_sym_PLUS] = ACTIONS(4574), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym__] = ACTIONS(4574), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4574), + [anon_sym_BANG] = ACTIONS(4574), + [anon_sym_PIPE] = ACTIONS(4574), + [anon_sym_COLON] = ACTIONS(4574), + [anon_sym_SQUOTE] = ACTIONS(4574), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4572), + [anon_sym_DOLLAR] = ACTIONS(4574), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4572), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4572), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4572), + [anon_sym_BSLASHbegin] = ACTIONS(4574), + [anon_sym_BSLASHusepackage] = ACTIONS(4574), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4574), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4574), + [anon_sym_BSLASHinclude] = ACTIONS(4574), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4574), + [anon_sym_BSLASHinput] = ACTIONS(4574), + [anon_sym_BSLASHsubfile] = ACTIONS(4574), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4574), + [anon_sym_BSLASHbibliography] = ACTIONS(4574), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4574), + [anon_sym_BSLASHincludesvg] = ACTIONS(4574), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4574), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4574), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4574), + [anon_sym_BSLASHimport] = ACTIONS(4574), + [anon_sym_BSLASHsubimport] = ACTIONS(4574), + [anon_sym_BSLASHinputfrom] = ACTIONS(4574), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4574), + [anon_sym_BSLASHincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4574), + [anon_sym_BSLASHcaption] = ACTIONS(4574), + [anon_sym_BSLASHcite] = ACTIONS(4574), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCite] = ACTIONS(4574), + [anon_sym_BSLASHnocite] = ACTIONS(4574), + [anon_sym_BSLASHcitet] = ACTIONS(4574), + [anon_sym_BSLASHcitep] = ACTIONS(4574), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteauthor] = ACTIONS(4574), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4574), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitetitle] = ACTIONS(4574), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteyear] = ACTIONS(4574), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4572), + [anon_sym_BSLASHcitedate] = ACTIONS(4574), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4572), + [anon_sym_BSLASHciteurl] = ACTIONS(4574), + [anon_sym_BSLASHfullcite] = ACTIONS(4574), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4574), + [anon_sym_BSLASHcitealt] = ACTIONS(4574), + [anon_sym_BSLASHcitealp] = ACTIONS(4574), + [anon_sym_BSLASHcitetext] = ACTIONS(4574), + [anon_sym_BSLASHparencite] = ACTIONS(4574), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHParencite] = ACTIONS(4574), + [anon_sym_BSLASHfootcite] = ACTIONS(4574), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4574), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4574), + [anon_sym_BSLASHtextcite] = ACTIONS(4574), + [anon_sym_BSLASHTextcite] = ACTIONS(4574), + [anon_sym_BSLASHsmartcite] = ACTIONS(4574), + [anon_sym_BSLASHSmartcite] = ACTIONS(4574), + [anon_sym_BSLASHsupercite] = ACTIONS(4574), + [anon_sym_BSLASHautocite] = ACTIONS(4574), + [anon_sym_BSLASHAutocite] = ACTIONS(4574), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4572), + [anon_sym_BSLASHvolcite] = ACTIONS(4574), + [anon_sym_BSLASHVolcite] = ACTIONS(4574), + [anon_sym_BSLASHpvolcite] = ACTIONS(4574), + [anon_sym_BSLASHPvolcite] = ACTIONS(4574), + [anon_sym_BSLASHfvolcite] = ACTIONS(4574), + [anon_sym_BSLASHftvolcite] = ACTIONS(4574), + [anon_sym_BSLASHsvolcite] = ACTIONS(4574), + [anon_sym_BSLASHSvolcite] = ACTIONS(4574), + [anon_sym_BSLASHtvolcite] = ACTIONS(4574), + [anon_sym_BSLASHTvolcite] = ACTIONS(4574), + [anon_sym_BSLASHavolcite] = ACTIONS(4574), + [anon_sym_BSLASHAvolcite] = ACTIONS(4574), + [anon_sym_BSLASHnotecite] = ACTIONS(4574), + [anon_sym_BSLASHNotecite] = ACTIONS(4574), + [anon_sym_BSLASHpnotecite] = ACTIONS(4574), + [anon_sym_BSLASHPnotecite] = ACTIONS(4574), + [anon_sym_BSLASHfnotecite] = ACTIONS(4574), + [anon_sym_BSLASHlabel] = ACTIONS(4574), + [anon_sym_BSLASHref] = ACTIONS(4574), + [anon_sym_BSLASHeqref] = ACTIONS(4574), + [anon_sym_BSLASHvref] = ACTIONS(4574), + [anon_sym_BSLASHVref] = ACTIONS(4574), + [anon_sym_BSLASHautoref] = ACTIONS(4574), + [anon_sym_BSLASHpageref] = ACTIONS(4574), + [anon_sym_BSLASHcref] = ACTIONS(4574), + [anon_sym_BSLASHCref] = ACTIONS(4574), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnameCref] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4574), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4574), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4574), + [anon_sym_BSLASHlabelcref] = ACTIONS(4574), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange] = ACTIONS(4574), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHCrefrange] = ACTIONS(4574), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4572), + [anon_sym_BSLASHnewlabel] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand] = ACTIONS(4574), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4574), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4574), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4572), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4574), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdef] = ACTIONS(4574), + [anon_sym_BSLASHlet] = ACTIONS(4574), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4574), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4574), + [anon_sym_BSLASHgls] = ACTIONS(4574), + [anon_sym_BSLASHGls] = ACTIONS(4574), + [anon_sym_BSLASHGLS] = ACTIONS(4574), + [anon_sym_BSLASHglspl] = ACTIONS(4574), + [anon_sym_BSLASHGlspl] = ACTIONS(4574), + [anon_sym_BSLASHGLSpl] = ACTIONS(4574), + [anon_sym_BSLASHglsdisp] = ACTIONS(4574), + [anon_sym_BSLASHglslink] = ACTIONS(4574), + [anon_sym_BSLASHglstext] = ACTIONS(4574), + [anon_sym_BSLASHGlstext] = ACTIONS(4574), + [anon_sym_BSLASHGLStext] = ACTIONS(4574), + [anon_sym_BSLASHglsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4574), + [anon_sym_BSLASHglsplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSplural] = ACTIONS(4574), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4574), + [anon_sym_BSLASHglsname] = ACTIONS(4574), + [anon_sym_BSLASHGlsname] = ACTIONS(4574), + [anon_sym_BSLASHGLSname] = ACTIONS(4574), + [anon_sym_BSLASHglssymbol] = ACTIONS(4574), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4574), + [anon_sym_BSLASHglsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4574), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4574), + [anon_sym_BSLASHglsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4574), + [anon_sym_BSLASHglsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4574), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4574), + [anon_sym_BSLASHglsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4574), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4574), + [anon_sym_BSLASHglsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4574), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4574), + [anon_sym_BSLASHnewacronym] = ACTIONS(4574), + [anon_sym_BSLASHacrshort] = ACTIONS(4574), + [anon_sym_BSLASHAcrshort] = ACTIONS(4574), + [anon_sym_BSLASHACRshort] = ACTIONS(4574), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4574), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4574), + [anon_sym_BSLASHacrlong] = ACTIONS(4574), + [anon_sym_BSLASHAcrlong] = ACTIONS(4574), + [anon_sym_BSLASHACRlong] = ACTIONS(4574), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4574), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4574), + [anon_sym_BSLASHacrfull] = ACTIONS(4574), + [anon_sym_BSLASHAcrfull] = ACTIONS(4574), + [anon_sym_BSLASHACRfull] = ACTIONS(4574), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4574), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4574), + [anon_sym_BSLASHacs] = ACTIONS(4574), + [anon_sym_BSLASHAcs] = ACTIONS(4574), + [anon_sym_BSLASHacsp] = ACTIONS(4574), + [anon_sym_BSLASHAcsp] = ACTIONS(4574), + [anon_sym_BSLASHacl] = ACTIONS(4574), + [anon_sym_BSLASHAcl] = ACTIONS(4574), + [anon_sym_BSLASHaclp] = ACTIONS(4574), + [anon_sym_BSLASHAclp] = ACTIONS(4574), + [anon_sym_BSLASHacf] = ACTIONS(4574), + [anon_sym_BSLASHAcf] = ACTIONS(4574), + [anon_sym_BSLASHacfp] = ACTIONS(4574), + [anon_sym_BSLASHAcfp] = ACTIONS(4574), + [anon_sym_BSLASHac] = ACTIONS(4574), + [anon_sym_BSLASHAc] = ACTIONS(4574), + [anon_sym_BSLASHacp] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4574), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4574), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4574), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4574), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4574), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4572), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4574), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4574), + [anon_sym_BSLASHcolor] = ACTIONS(4574), + [anon_sym_BSLASHcolorbox] = ACTIONS(4574), + [anon_sym_BSLASHtextcolor] = ACTIONS(4574), + [anon_sym_BSLASHpagecolor] = ACTIONS(4574), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4574), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4574), + [anon_sym_BSLASHtext] = ACTIONS(4574), + [anon_sym_BSLASHintertext] = ACTIONS(4574), + [anon_sym_shortintertext] = ACTIONS(4574), }, [637] = { [sym__enum_itemdeclaration] = STATE(195), [sym_enum_item] = STATE(441), [aux_sym__section_repeat8] = STATE(441), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(183), + [anon_sym_BSLASHitem_STAR] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [638] = { [sym__subparagraph_declaration] = STATE(190), [sym_subparagraph] = STATE(444), [aux_sym__section_repeat7] = STATE(444), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(181), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [639] = { [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(448), [aux_sym__section_repeat6] = STATE(448), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [640] = { [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(449), [aux_sym__section_repeat5] = STATE(449), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(173), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [641] = { [sym__subsection_declaration] = STATE(154), [sym_subsection] = STATE(451), [aux_sym__section_repeat4] = STATE(451), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [642] = { [sym_curly_group] = STATE(952), [sym_mixed_group] = STATE(952), [aux_sym_generic_command_repeat1] = STATE(618), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4759), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_BSLASHpart] = ACTIONS(4565), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddpart] = ACTIONS(4565), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), - [anon_sym_BSLASHchapter] = ACTIONS(4565), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddchap] = ACTIONS(4565), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsection] = ACTIONS(4565), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHaddsec] = ACTIONS(4565), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), - [anon_sym_BSLASHparagraph] = ACTIONS(4565), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), - [anon_sym_BSLASHitem] = ACTIONS(4565), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASHbegin] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_BSLASHpart] = ACTIONS(4644), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddpart] = ACTIONS(4644), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4642), + [anon_sym_BSLASHchapter] = ACTIONS(4644), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddchap] = ACTIONS(4644), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsection] = ACTIONS(4644), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHaddsec] = ACTIONS(4644), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4644), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4642), + [anon_sym_BSLASHparagraph] = ACTIONS(4644), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4644), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4642), + [anon_sym_BSLASHitem] = ACTIONS(4644), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASHbegin] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [643] = { [sym__section_declaration] = STATE(148), [sym_section] = STATE(456), [aux_sym__section_repeat3] = STATE(456), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddsec] = ACTIONS(161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(165), + [anon_sym_BSLASHaddsec] = ACTIONS(163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [644] = { [sym_curly_group] = STATE(667), [sym_brack_group_text] = STATE(2248), - [ts_builtin_sym_end] = ACTIONS(4815), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_BSLASHpart] = ACTIONS(4817), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddpart] = ACTIONS(4817), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHchapter] = ACTIONS(4817), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddchap] = ACTIONS(4817), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsection] = ACTIONS(4817), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddsec] = ACTIONS(4817), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHparagraph] = ACTIONS(4817), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHitem] = ACTIONS(4817), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), + [ts_builtin_sym_end] = ACTIONS(4894), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_BSLASHpart] = ACTIONS(4896), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddpart] = ACTIONS(4896), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHchapter] = ACTIONS(4896), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddchap] = ACTIONS(4896), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsection] = ACTIONS(4896), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddsec] = ACTIONS(4896), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHparagraph] = ACTIONS(4896), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4896), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHitem] = ACTIONS(4896), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4894), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4815), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASHbegin] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4894), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASHbegin] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [645] = { [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(462), [aux_sym__section_repeat2] = STATE(462), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(4447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddpart] = ACTIONS(4447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), - [anon_sym_BSLASHchapter] = ACTIONS(157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), - [anon_sym_BSLASHaddchap] = ACTIONS(157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(4526), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddpart] = ACTIONS(4526), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4524), + [anon_sym_BSLASHchapter] = ACTIONS(159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(161), + [anon_sym_BSLASHaddchap] = ACTIONS(159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(161), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [646] = { [sym__part_declaration] = STATE(129), [sym_part] = STATE(469), [aux_sym__section_repeat1] = STATE(469), - [sym_command_name] = ACTIONS(4447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym_RPAREN] = ACTIONS(4445), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_COMMA] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(4445), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), - [anon_sym_BSLASHchapter] = ACTIONS(4447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddchap] = ACTIONS(4447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsection] = ACTIONS(4447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHaddsec] = ACTIONS(4447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), - [anon_sym_BSLASHparagraph] = ACTIONS(4447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), - [anon_sym_BSLASHitem] = ACTIONS(4447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [sym_word] = ACTIONS(4447), - [sym_placeholder] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_SLASH] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym__] = ACTIONS(4447), - [anon_sym_LT] = ACTIONS(4447), - [anon_sym_GT] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_PIPE] = ACTIONS(4447), - [anon_sym_COLON] = ACTIONS(4447), - [anon_sym_SQUOTE] = ACTIONS(4447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), - [anon_sym_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), - [anon_sym_BSLASHbegin] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), - [anon_sym_BSLASHinclude] = ACTIONS(4447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), - [anon_sym_BSLASHinput] = ACTIONS(4447), - [anon_sym_BSLASHsubfile] = ACTIONS(4447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), - [anon_sym_BSLASHbibliography] = ACTIONS(4447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), - [anon_sym_BSLASHincludesvg] = ACTIONS(4447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), - [anon_sym_BSLASHimport] = ACTIONS(4447), - [anon_sym_BSLASHsubimport] = ACTIONS(4447), - [anon_sym_BSLASHinputfrom] = ACTIONS(4447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), - [anon_sym_BSLASHincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), - [anon_sym_BSLASHcaption] = ACTIONS(4447), - [anon_sym_BSLASHcite] = ACTIONS(4447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCite] = ACTIONS(4447), - [anon_sym_BSLASHnocite] = ACTIONS(4447), - [anon_sym_BSLASHcitet] = ACTIONS(4447), - [anon_sym_BSLASHcitep] = ACTIONS(4447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteyear] = ACTIONS(4447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), - [anon_sym_BSLASHcitedate] = ACTIONS(4447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), - [anon_sym_BSLASHciteurl] = ACTIONS(4447), - [anon_sym_BSLASHfullcite] = ACTIONS(4447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), - [anon_sym_BSLASHcitealt] = ACTIONS(4447), - [anon_sym_BSLASHcitealp] = ACTIONS(4447), - [anon_sym_BSLASHcitetext] = ACTIONS(4447), - [anon_sym_BSLASHparencite] = ACTIONS(4447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHParencite] = ACTIONS(4447), - [anon_sym_BSLASHfootcite] = ACTIONS(4447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), - [anon_sym_BSLASHtextcite] = ACTIONS(4447), - [anon_sym_BSLASHTextcite] = ACTIONS(4447), - [anon_sym_BSLASHsmartcite] = ACTIONS(4447), - [anon_sym_BSLASHSmartcite] = ACTIONS(4447), - [anon_sym_BSLASHsupercite] = ACTIONS(4447), - [anon_sym_BSLASHautocite] = ACTIONS(4447), - [anon_sym_BSLASHAutocite] = ACTIONS(4447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), - [anon_sym_BSLASHvolcite] = ACTIONS(4447), - [anon_sym_BSLASHVolcite] = ACTIONS(4447), - [anon_sym_BSLASHpvolcite] = ACTIONS(4447), - [anon_sym_BSLASHPvolcite] = ACTIONS(4447), - [anon_sym_BSLASHfvolcite] = ACTIONS(4447), - [anon_sym_BSLASHftvolcite] = ACTIONS(4447), - [anon_sym_BSLASHsvolcite] = ACTIONS(4447), - [anon_sym_BSLASHSvolcite] = ACTIONS(4447), - [anon_sym_BSLASHtvolcite] = ACTIONS(4447), - [anon_sym_BSLASHTvolcite] = ACTIONS(4447), - [anon_sym_BSLASHavolcite] = ACTIONS(4447), - [anon_sym_BSLASHAvolcite] = ACTIONS(4447), - [anon_sym_BSLASHnotecite] = ACTIONS(4447), - [anon_sym_BSLASHNotecite] = ACTIONS(4447), - [anon_sym_BSLASHpnotecite] = ACTIONS(4447), - [anon_sym_BSLASHPnotecite] = ACTIONS(4447), - [anon_sym_BSLASHfnotecite] = ACTIONS(4447), - [anon_sym_BSLASHlabel] = ACTIONS(4447), - [anon_sym_BSLASHref] = ACTIONS(4447), - [anon_sym_BSLASHeqref] = ACTIONS(4447), - [anon_sym_BSLASHvref] = ACTIONS(4447), - [anon_sym_BSLASHVref] = ACTIONS(4447), - [anon_sym_BSLASHautoref] = ACTIONS(4447), - [anon_sym_BSLASHpageref] = ACTIONS(4447), - [anon_sym_BSLASHcref] = ACTIONS(4447), - [anon_sym_BSLASHCref] = ACTIONS(4447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnameCref] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), - [anon_sym_BSLASHlabelcref] = ACTIONS(4447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange] = ACTIONS(4447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), - [anon_sym_BSLASHnewlabel] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand] = ACTIONS(4447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), - [anon_sym_BSLASHdef] = ACTIONS(4447), - [anon_sym_BSLASHlet] = ACTIONS(4447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), - [anon_sym_BSLASHgls] = ACTIONS(4447), - [anon_sym_BSLASHGls] = ACTIONS(4447), - [anon_sym_BSLASHGLS] = ACTIONS(4447), - [anon_sym_BSLASHglspl] = ACTIONS(4447), - [anon_sym_BSLASHGlspl] = ACTIONS(4447), - [anon_sym_BSLASHGLSpl] = ACTIONS(4447), - [anon_sym_BSLASHglsdisp] = ACTIONS(4447), - [anon_sym_BSLASHglslink] = ACTIONS(4447), - [anon_sym_BSLASHglstext] = ACTIONS(4447), - [anon_sym_BSLASHGlstext] = ACTIONS(4447), - [anon_sym_BSLASHGLStext] = ACTIONS(4447), - [anon_sym_BSLASHglsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), - [anon_sym_BSLASHglsplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSplural] = ACTIONS(4447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), - [anon_sym_BSLASHglsname] = ACTIONS(4447), - [anon_sym_BSLASHGlsname] = ACTIONS(4447), - [anon_sym_BSLASHGLSname] = ACTIONS(4447), - [anon_sym_BSLASHglssymbol] = ACTIONS(4447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), - [anon_sym_BSLASHglsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), - [anon_sym_BSLASHglsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), - [anon_sym_BSLASHglsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), - [anon_sym_BSLASHglsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), - [anon_sym_BSLASHglsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), - [anon_sym_BSLASHnewacronym] = ACTIONS(4447), - [anon_sym_BSLASHacrshort] = ACTIONS(4447), - [anon_sym_BSLASHAcrshort] = ACTIONS(4447), - [anon_sym_BSLASHACRshort] = ACTIONS(4447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), - [anon_sym_BSLASHacrlong] = ACTIONS(4447), - [anon_sym_BSLASHAcrlong] = ACTIONS(4447), - [anon_sym_BSLASHACRlong] = ACTIONS(4447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), - [anon_sym_BSLASHacrfull] = ACTIONS(4447), - [anon_sym_BSLASHAcrfull] = ACTIONS(4447), - [anon_sym_BSLASHACRfull] = ACTIONS(4447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), - [anon_sym_BSLASHacs] = ACTIONS(4447), - [anon_sym_BSLASHAcs] = ACTIONS(4447), - [anon_sym_BSLASHacsp] = ACTIONS(4447), - [anon_sym_BSLASHAcsp] = ACTIONS(4447), - [anon_sym_BSLASHacl] = ACTIONS(4447), - [anon_sym_BSLASHAcl] = ACTIONS(4447), - [anon_sym_BSLASHaclp] = ACTIONS(4447), - [anon_sym_BSLASHAclp] = ACTIONS(4447), - [anon_sym_BSLASHacf] = ACTIONS(4447), - [anon_sym_BSLASHAcf] = ACTIONS(4447), - [anon_sym_BSLASHacfp] = ACTIONS(4447), - [anon_sym_BSLASHAcfp] = ACTIONS(4447), - [anon_sym_BSLASHac] = ACTIONS(4447), - [anon_sym_BSLASHAc] = ACTIONS(4447), - [anon_sym_BSLASHacp] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), - [anon_sym_BSLASHcolor] = ACTIONS(4447), - [anon_sym_BSLASHcolorbox] = ACTIONS(4447), - [anon_sym_BSLASHtextcolor] = ACTIONS(4447), - [anon_sym_BSLASHpagecolor] = ACTIONS(4447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), - [anon_sym_BSLASHtext] = ACTIONS(4447), - [anon_sym_BSLASHintertext] = ACTIONS(4447), - [anon_sym_shortintertext] = ACTIONS(4447), + [sym_command_name] = ACTIONS(4526), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4524), + [anon_sym_BSLASHpart] = ACTIONS(155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHaddpart] = ACTIONS(155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(157), + [anon_sym_BSLASHchapter] = ACTIONS(4526), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddchap] = ACTIONS(4526), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsection] = ACTIONS(4526), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHaddsec] = ACTIONS(4526), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4526), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4524), + [anon_sym_BSLASHparagraph] = ACTIONS(4526), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4526), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4524), + [anon_sym_BSLASHitem] = ACTIONS(4526), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [sym_word] = ACTIONS(4526), + [sym_placeholder] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_SLASH] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym__] = ACTIONS(4526), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4526), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(4526), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4524), + [anon_sym_BSLASHbegin] = ACTIONS(4526), + [anon_sym_BSLASHusepackage] = ACTIONS(4526), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4526), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4526), + [anon_sym_BSLASHinclude] = ACTIONS(4526), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4526), + [anon_sym_BSLASHinput] = ACTIONS(4526), + [anon_sym_BSLASHsubfile] = ACTIONS(4526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4526), + [anon_sym_BSLASHbibliography] = ACTIONS(4526), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4526), + [anon_sym_BSLASHincludesvg] = ACTIONS(4526), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4526), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4526), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4526), + [anon_sym_BSLASHimport] = ACTIONS(4526), + [anon_sym_BSLASHsubimport] = ACTIONS(4526), + [anon_sym_BSLASHinputfrom] = ACTIONS(4526), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4526), + [anon_sym_BSLASHincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4526), + [anon_sym_BSLASHcaption] = ACTIONS(4526), + [anon_sym_BSLASHcite] = ACTIONS(4526), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCite] = ACTIONS(4526), + [anon_sym_BSLASHnocite] = ACTIONS(4526), + [anon_sym_BSLASHcitet] = ACTIONS(4526), + [anon_sym_BSLASHcitep] = ACTIONS(4526), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteauthor] = ACTIONS(4526), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4526), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitetitle] = ACTIONS(4526), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteyear] = ACTIONS(4526), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4524), + [anon_sym_BSLASHcitedate] = ACTIONS(4526), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4524), + [anon_sym_BSLASHciteurl] = ACTIONS(4526), + [anon_sym_BSLASHfullcite] = ACTIONS(4526), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4526), + [anon_sym_BSLASHcitealt] = ACTIONS(4526), + [anon_sym_BSLASHcitealp] = ACTIONS(4526), + [anon_sym_BSLASHcitetext] = ACTIONS(4526), + [anon_sym_BSLASHparencite] = ACTIONS(4526), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHParencite] = ACTIONS(4526), + [anon_sym_BSLASHfootcite] = ACTIONS(4526), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4526), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4526), + [anon_sym_BSLASHtextcite] = ACTIONS(4526), + [anon_sym_BSLASHTextcite] = ACTIONS(4526), + [anon_sym_BSLASHsmartcite] = ACTIONS(4526), + [anon_sym_BSLASHSmartcite] = ACTIONS(4526), + [anon_sym_BSLASHsupercite] = ACTIONS(4526), + [anon_sym_BSLASHautocite] = ACTIONS(4526), + [anon_sym_BSLASHAutocite] = ACTIONS(4526), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4524), + [anon_sym_BSLASHvolcite] = ACTIONS(4526), + [anon_sym_BSLASHVolcite] = ACTIONS(4526), + [anon_sym_BSLASHpvolcite] = ACTIONS(4526), + [anon_sym_BSLASHPvolcite] = ACTIONS(4526), + [anon_sym_BSLASHfvolcite] = ACTIONS(4526), + [anon_sym_BSLASHftvolcite] = ACTIONS(4526), + [anon_sym_BSLASHsvolcite] = ACTIONS(4526), + [anon_sym_BSLASHSvolcite] = ACTIONS(4526), + [anon_sym_BSLASHtvolcite] = ACTIONS(4526), + [anon_sym_BSLASHTvolcite] = ACTIONS(4526), + [anon_sym_BSLASHavolcite] = ACTIONS(4526), + [anon_sym_BSLASHAvolcite] = ACTIONS(4526), + [anon_sym_BSLASHnotecite] = ACTIONS(4526), + [anon_sym_BSLASHNotecite] = ACTIONS(4526), + [anon_sym_BSLASHpnotecite] = ACTIONS(4526), + [anon_sym_BSLASHPnotecite] = ACTIONS(4526), + [anon_sym_BSLASHfnotecite] = ACTIONS(4526), + [anon_sym_BSLASHlabel] = ACTIONS(4526), + [anon_sym_BSLASHref] = ACTIONS(4526), + [anon_sym_BSLASHeqref] = ACTIONS(4526), + [anon_sym_BSLASHvref] = ACTIONS(4526), + [anon_sym_BSLASHVref] = ACTIONS(4526), + [anon_sym_BSLASHautoref] = ACTIONS(4526), + [anon_sym_BSLASHpageref] = ACTIONS(4526), + [anon_sym_BSLASHcref] = ACTIONS(4526), + [anon_sym_BSLASHCref] = ACTIONS(4526), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnameCref] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4526), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4526), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4526), + [anon_sym_BSLASHlabelcref] = ACTIONS(4526), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange] = ACTIONS(4526), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHCrefrange] = ACTIONS(4526), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4524), + [anon_sym_BSLASHnewlabel] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand] = ACTIONS(4526), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4526), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4526), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4524), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4526), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdef] = ACTIONS(4526), + [anon_sym_BSLASHlet] = ACTIONS(4526), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4526), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4526), + [anon_sym_BSLASHgls] = ACTIONS(4526), + [anon_sym_BSLASHGls] = ACTIONS(4526), + [anon_sym_BSLASHGLS] = ACTIONS(4526), + [anon_sym_BSLASHglspl] = ACTIONS(4526), + [anon_sym_BSLASHGlspl] = ACTIONS(4526), + [anon_sym_BSLASHGLSpl] = ACTIONS(4526), + [anon_sym_BSLASHglsdisp] = ACTIONS(4526), + [anon_sym_BSLASHglslink] = ACTIONS(4526), + [anon_sym_BSLASHglstext] = ACTIONS(4526), + [anon_sym_BSLASHGlstext] = ACTIONS(4526), + [anon_sym_BSLASHGLStext] = ACTIONS(4526), + [anon_sym_BSLASHglsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4526), + [anon_sym_BSLASHglsplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSplural] = ACTIONS(4526), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4526), + [anon_sym_BSLASHglsname] = ACTIONS(4526), + [anon_sym_BSLASHGlsname] = ACTIONS(4526), + [anon_sym_BSLASHGLSname] = ACTIONS(4526), + [anon_sym_BSLASHglssymbol] = ACTIONS(4526), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4526), + [anon_sym_BSLASHglsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4526), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4526), + [anon_sym_BSLASHglsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4526), + [anon_sym_BSLASHglsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4526), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4526), + [anon_sym_BSLASHglsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4526), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4526), + [anon_sym_BSLASHglsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4526), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4526), + [anon_sym_BSLASHnewacronym] = ACTIONS(4526), + [anon_sym_BSLASHacrshort] = ACTIONS(4526), + [anon_sym_BSLASHAcrshort] = ACTIONS(4526), + [anon_sym_BSLASHACRshort] = ACTIONS(4526), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4526), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4526), + [anon_sym_BSLASHacrlong] = ACTIONS(4526), + [anon_sym_BSLASHAcrlong] = ACTIONS(4526), + [anon_sym_BSLASHACRlong] = ACTIONS(4526), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4526), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4526), + [anon_sym_BSLASHacrfull] = ACTIONS(4526), + [anon_sym_BSLASHAcrfull] = ACTIONS(4526), + [anon_sym_BSLASHACRfull] = ACTIONS(4526), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4526), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4526), + [anon_sym_BSLASHacs] = ACTIONS(4526), + [anon_sym_BSLASHAcs] = ACTIONS(4526), + [anon_sym_BSLASHacsp] = ACTIONS(4526), + [anon_sym_BSLASHAcsp] = ACTIONS(4526), + [anon_sym_BSLASHacl] = ACTIONS(4526), + [anon_sym_BSLASHAcl] = ACTIONS(4526), + [anon_sym_BSLASHaclp] = ACTIONS(4526), + [anon_sym_BSLASHAclp] = ACTIONS(4526), + [anon_sym_BSLASHacf] = ACTIONS(4526), + [anon_sym_BSLASHAcf] = ACTIONS(4526), + [anon_sym_BSLASHacfp] = ACTIONS(4526), + [anon_sym_BSLASHAcfp] = ACTIONS(4526), + [anon_sym_BSLASHac] = ACTIONS(4526), + [anon_sym_BSLASHAc] = ACTIONS(4526), + [anon_sym_BSLASHacp] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4526), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4526), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4526), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4526), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4526), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4524), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4526), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4526), + [anon_sym_BSLASHcolor] = ACTIONS(4526), + [anon_sym_BSLASHcolorbox] = ACTIONS(4526), + [anon_sym_BSLASHtextcolor] = ACTIONS(4526), + [anon_sym_BSLASHpagecolor] = ACTIONS(4526), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4526), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4526), + [anon_sym_BSLASHtext] = ACTIONS(4526), + [anon_sym_BSLASHintertext] = ACTIONS(4526), + [anon_sym_shortintertext] = ACTIONS(4526), }, [647] = { [sym_curly_group] = STATE(785), [sym_brack_group_text] = STATE(1965), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_BSLASHpart] = ACTIONS(4817), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddpart] = ACTIONS(4817), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHchapter] = ACTIONS(4817), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddchap] = ACTIONS(4817), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsection] = ACTIONS(4817), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddsec] = ACTIONS(4817), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHparagraph] = ACTIONS(4817), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHitem] = ACTIONS(4817), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASHbegin] = ACTIONS(4817), - [anon_sym_BSLASHend] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_BSLASHpart] = ACTIONS(4896), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddpart] = ACTIONS(4896), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHchapter] = ACTIONS(4896), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddchap] = ACTIONS(4896), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsection] = ACTIONS(4896), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddsec] = ACTIONS(4896), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHparagraph] = ACTIONS(4896), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4896), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHitem] = ACTIONS(4896), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASHbegin] = ACTIONS(4896), + [anon_sym_BSLASHend] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [648] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_BSLASHpart] = ACTIONS(4753), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddpart] = ACTIONS(4753), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHchapter] = ACTIONS(4753), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddchap] = ACTIONS(4753), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsection] = ACTIONS(4753), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddsec] = ACTIONS(4753), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHparagraph] = ACTIONS(4753), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHitem] = ACTIONS(4753), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4751), - [anon_sym_BSLASHbegin] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(4821), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_BSLASHpart] = ACTIONS(4832), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddpart] = ACTIONS(4832), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHchapter] = ACTIONS(4832), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddchap] = ACTIONS(4832), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsection] = ACTIONS(4832), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddsec] = ACTIONS(4832), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHparagraph] = ACTIONS(4832), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4832), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHitem] = ACTIONS(4832), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4830), + [anon_sym_BSLASHbegin] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(4900), }, [649] = { [sym_curly_group] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(4823), - [sym_command_name] = ACTIONS(4825), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_BSLASHpart] = ACTIONS(4825), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddpart] = ACTIONS(4825), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHchapter] = ACTIONS(4825), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddchap] = ACTIONS(4825), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsection] = ACTIONS(4825), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddsec] = ACTIONS(4825), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHparagraph] = ACTIONS(4825), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHitem] = ACTIONS(4825), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), + [ts_builtin_sym_end] = ACTIONS(4902), + [sym_command_name] = ACTIONS(4904), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_BSLASHpart] = ACTIONS(4904), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddpart] = ACTIONS(4904), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHchapter] = ACTIONS(4904), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddchap] = ACTIONS(4904), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsection] = ACTIONS(4904), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddsec] = ACTIONS(4904), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHparagraph] = ACTIONS(4904), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4904), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHitem] = ACTIONS(4904), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4902), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4823), - [sym_word] = ACTIONS(4825), - [sym_placeholder] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym__] = ACTIONS(4825), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4825), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), - [anon_sym_BSLASHbegin] = ACTIONS(4825), - [anon_sym_BSLASHusepackage] = ACTIONS(4825), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), - [anon_sym_BSLASHinclude] = ACTIONS(4825), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), - [anon_sym_BSLASHinput] = ACTIONS(4825), - [anon_sym_BSLASHsubfile] = ACTIONS(4825), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), - [anon_sym_BSLASHbibliography] = ACTIONS(4825), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), - [anon_sym_BSLASHincludesvg] = ACTIONS(4825), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), - [anon_sym_BSLASHimport] = ACTIONS(4825), - [anon_sym_BSLASHsubimport] = ACTIONS(4825), - [anon_sym_BSLASHinputfrom] = ACTIONS(4825), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), - [anon_sym_BSLASHincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHcaption] = ACTIONS(4825), - [anon_sym_BSLASHcite] = ACTIONS(4825), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCite] = ACTIONS(4825), - [anon_sym_BSLASHnocite] = ACTIONS(4825), - [anon_sym_BSLASHcitet] = ACTIONS(4825), - [anon_sym_BSLASHcitep] = ACTIONS(4825), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteauthor] = ACTIONS(4825), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitetitle] = ACTIONS(4825), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteyear] = ACTIONS(4825), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitedate] = ACTIONS(4825), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteurl] = ACTIONS(4825), - [anon_sym_BSLASHfullcite] = ACTIONS(4825), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), - [anon_sym_BSLASHcitealt] = ACTIONS(4825), - [anon_sym_BSLASHcitealp] = ACTIONS(4825), - [anon_sym_BSLASHcitetext] = ACTIONS(4825), - [anon_sym_BSLASHparencite] = ACTIONS(4825), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHParencite] = ACTIONS(4825), - [anon_sym_BSLASHfootcite] = ACTIONS(4825), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), - [anon_sym_BSLASHtextcite] = ACTIONS(4825), - [anon_sym_BSLASHTextcite] = ACTIONS(4825), - [anon_sym_BSLASHsmartcite] = ACTIONS(4825), - [anon_sym_BSLASHSmartcite] = ACTIONS(4825), - [anon_sym_BSLASHsupercite] = ACTIONS(4825), - [anon_sym_BSLASHautocite] = ACTIONS(4825), - [anon_sym_BSLASHAutocite] = ACTIONS(4825), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHvolcite] = ACTIONS(4825), - [anon_sym_BSLASHVolcite] = ACTIONS(4825), - [anon_sym_BSLASHpvolcite] = ACTIONS(4825), - [anon_sym_BSLASHPvolcite] = ACTIONS(4825), - [anon_sym_BSLASHfvolcite] = ACTIONS(4825), - [anon_sym_BSLASHftvolcite] = ACTIONS(4825), - [anon_sym_BSLASHsvolcite] = ACTIONS(4825), - [anon_sym_BSLASHSvolcite] = ACTIONS(4825), - [anon_sym_BSLASHtvolcite] = ACTIONS(4825), - [anon_sym_BSLASHTvolcite] = ACTIONS(4825), - [anon_sym_BSLASHavolcite] = ACTIONS(4825), - [anon_sym_BSLASHAvolcite] = ACTIONS(4825), - [anon_sym_BSLASHnotecite] = ACTIONS(4825), - [anon_sym_BSLASHNotecite] = ACTIONS(4825), - [anon_sym_BSLASHpnotecite] = ACTIONS(4825), - [anon_sym_BSLASHPnotecite] = ACTIONS(4825), - [anon_sym_BSLASHfnotecite] = ACTIONS(4825), - [anon_sym_BSLASHlabel] = ACTIONS(4825), - [anon_sym_BSLASHref] = ACTIONS(4825), - [anon_sym_BSLASHeqref] = ACTIONS(4825), - [anon_sym_BSLASHvref] = ACTIONS(4825), - [anon_sym_BSLASHVref] = ACTIONS(4825), - [anon_sym_BSLASHautoref] = ACTIONS(4825), - [anon_sym_BSLASHpageref] = ACTIONS(4825), - [anon_sym_BSLASHcref] = ACTIONS(4825), - [anon_sym_BSLASHCref] = ACTIONS(4825), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnameCref] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHlabelcref] = ACTIONS(4825), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCrefrange] = ACTIONS(4825), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnewlabel] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), - [anon_sym_BSLASHdef] = ACTIONS(4825), - [anon_sym_BSLASHlet] = ACTIONS(4825), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), - [anon_sym_BSLASHgls] = ACTIONS(4825), - [anon_sym_BSLASHGls] = ACTIONS(4825), - [anon_sym_BSLASHGLS] = ACTIONS(4825), - [anon_sym_BSLASHglspl] = ACTIONS(4825), - [anon_sym_BSLASHGlspl] = ACTIONS(4825), - [anon_sym_BSLASHGLSpl] = ACTIONS(4825), - [anon_sym_BSLASHglsdisp] = ACTIONS(4825), - [anon_sym_BSLASHglslink] = ACTIONS(4825), - [anon_sym_BSLASHglstext] = ACTIONS(4825), - [anon_sym_BSLASHGlstext] = ACTIONS(4825), - [anon_sym_BSLASHGLStext] = ACTIONS(4825), - [anon_sym_BSLASHglsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), - [anon_sym_BSLASHglsplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSplural] = ACTIONS(4825), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHglsname] = ACTIONS(4825), - [anon_sym_BSLASHGlsname] = ACTIONS(4825), - [anon_sym_BSLASHGLSname] = ACTIONS(4825), - [anon_sym_BSLASHglssymbol] = ACTIONS(4825), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), - [anon_sym_BSLASHglsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), - [anon_sym_BSLASHglsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), - [anon_sym_BSLASHglsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), - [anon_sym_BSLASHglsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), - [anon_sym_BSLASHglsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), - [anon_sym_BSLASHnewacronym] = ACTIONS(4825), - [anon_sym_BSLASHacrshort] = ACTIONS(4825), - [anon_sym_BSLASHAcrshort] = ACTIONS(4825), - [anon_sym_BSLASHACRshort] = ACTIONS(4825), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), - [anon_sym_BSLASHacrlong] = ACTIONS(4825), - [anon_sym_BSLASHAcrlong] = ACTIONS(4825), - [anon_sym_BSLASHACRlong] = ACTIONS(4825), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), - [anon_sym_BSLASHacrfull] = ACTIONS(4825), - [anon_sym_BSLASHAcrfull] = ACTIONS(4825), - [anon_sym_BSLASHACRfull] = ACTIONS(4825), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), - [anon_sym_BSLASHacs] = ACTIONS(4825), - [anon_sym_BSLASHAcs] = ACTIONS(4825), - [anon_sym_BSLASHacsp] = ACTIONS(4825), - [anon_sym_BSLASHAcsp] = ACTIONS(4825), - [anon_sym_BSLASHacl] = ACTIONS(4825), - [anon_sym_BSLASHAcl] = ACTIONS(4825), - [anon_sym_BSLASHaclp] = ACTIONS(4825), - [anon_sym_BSLASHAclp] = ACTIONS(4825), - [anon_sym_BSLASHacf] = ACTIONS(4825), - [anon_sym_BSLASHAcf] = ACTIONS(4825), - [anon_sym_BSLASHacfp] = ACTIONS(4825), - [anon_sym_BSLASHAcfp] = ACTIONS(4825), - [anon_sym_BSLASHac] = ACTIONS(4825), - [anon_sym_BSLASHAc] = ACTIONS(4825), - [anon_sym_BSLASHacp] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), - [anon_sym_BSLASHcolor] = ACTIONS(4825), - [anon_sym_BSLASHcolorbox] = ACTIONS(4825), - [anon_sym_BSLASHtextcolor] = ACTIONS(4825), - [anon_sym_BSLASHpagecolor] = ACTIONS(4825), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), - [anon_sym_BSLASHtext] = ACTIONS(4825), - [anon_sym_BSLASHintertext] = ACTIONS(4825), - [anon_sym_shortintertext] = ACTIONS(4825), + [anon_sym_RBRACE] = ACTIONS(4902), + [sym_word] = ACTIONS(4904), + [sym_placeholder] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym__] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4902), + [anon_sym_BSLASHbegin] = ACTIONS(4904), + [anon_sym_BSLASHusepackage] = ACTIONS(4904), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4904), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4904), + [anon_sym_BSLASHinclude] = ACTIONS(4904), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4904), + [anon_sym_BSLASHinput] = ACTIONS(4904), + [anon_sym_BSLASHsubfile] = ACTIONS(4904), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4904), + [anon_sym_BSLASHbibliography] = ACTIONS(4904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4904), + [anon_sym_BSLASHincludesvg] = ACTIONS(4904), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4904), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4904), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4904), + [anon_sym_BSLASHimport] = ACTIONS(4904), + [anon_sym_BSLASHsubimport] = ACTIONS(4904), + [anon_sym_BSLASHinputfrom] = ACTIONS(4904), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4904), + [anon_sym_BSLASHincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHcaption] = ACTIONS(4904), + [anon_sym_BSLASHcite] = ACTIONS(4904), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCite] = ACTIONS(4904), + [anon_sym_BSLASHnocite] = ACTIONS(4904), + [anon_sym_BSLASHcitet] = ACTIONS(4904), + [anon_sym_BSLASHcitep] = ACTIONS(4904), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteauthor] = ACTIONS(4904), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4904), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitetitle] = ACTIONS(4904), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteyear] = ACTIONS(4904), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitedate] = ACTIONS(4904), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteurl] = ACTIONS(4904), + [anon_sym_BSLASHfullcite] = ACTIONS(4904), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4904), + [anon_sym_BSLASHcitealt] = ACTIONS(4904), + [anon_sym_BSLASHcitealp] = ACTIONS(4904), + [anon_sym_BSLASHcitetext] = ACTIONS(4904), + [anon_sym_BSLASHparencite] = ACTIONS(4904), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHParencite] = ACTIONS(4904), + [anon_sym_BSLASHfootcite] = ACTIONS(4904), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4904), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4904), + [anon_sym_BSLASHtextcite] = ACTIONS(4904), + [anon_sym_BSLASHTextcite] = ACTIONS(4904), + [anon_sym_BSLASHsmartcite] = ACTIONS(4904), + [anon_sym_BSLASHSmartcite] = ACTIONS(4904), + [anon_sym_BSLASHsupercite] = ACTIONS(4904), + [anon_sym_BSLASHautocite] = ACTIONS(4904), + [anon_sym_BSLASHAutocite] = ACTIONS(4904), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHvolcite] = ACTIONS(4904), + [anon_sym_BSLASHVolcite] = ACTIONS(4904), + [anon_sym_BSLASHpvolcite] = ACTIONS(4904), + [anon_sym_BSLASHPvolcite] = ACTIONS(4904), + [anon_sym_BSLASHfvolcite] = ACTIONS(4904), + [anon_sym_BSLASHftvolcite] = ACTIONS(4904), + [anon_sym_BSLASHsvolcite] = ACTIONS(4904), + [anon_sym_BSLASHSvolcite] = ACTIONS(4904), + [anon_sym_BSLASHtvolcite] = ACTIONS(4904), + [anon_sym_BSLASHTvolcite] = ACTIONS(4904), + [anon_sym_BSLASHavolcite] = ACTIONS(4904), + [anon_sym_BSLASHAvolcite] = ACTIONS(4904), + [anon_sym_BSLASHnotecite] = ACTIONS(4904), + [anon_sym_BSLASHNotecite] = ACTIONS(4904), + [anon_sym_BSLASHpnotecite] = ACTIONS(4904), + [anon_sym_BSLASHPnotecite] = ACTIONS(4904), + [anon_sym_BSLASHfnotecite] = ACTIONS(4904), + [anon_sym_BSLASHlabel] = ACTIONS(4904), + [anon_sym_BSLASHref] = ACTIONS(4904), + [anon_sym_BSLASHeqref] = ACTIONS(4904), + [anon_sym_BSLASHvref] = ACTIONS(4904), + [anon_sym_BSLASHVref] = ACTIONS(4904), + [anon_sym_BSLASHautoref] = ACTIONS(4904), + [anon_sym_BSLASHpageref] = ACTIONS(4904), + [anon_sym_BSLASHcref] = ACTIONS(4904), + [anon_sym_BSLASHCref] = ACTIONS(4904), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnameCref] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHlabelcref] = ACTIONS(4904), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCrefrange] = ACTIONS(4904), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnewlabel] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4904), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4904), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4904), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdef] = ACTIONS(4904), + [anon_sym_BSLASHlet] = ACTIONS(4904), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4904), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4904), + [anon_sym_BSLASHgls] = ACTIONS(4904), + [anon_sym_BSLASHGls] = ACTIONS(4904), + [anon_sym_BSLASHGLS] = ACTIONS(4904), + [anon_sym_BSLASHglspl] = ACTIONS(4904), + [anon_sym_BSLASHGlspl] = ACTIONS(4904), + [anon_sym_BSLASHGLSpl] = ACTIONS(4904), + [anon_sym_BSLASHglsdisp] = ACTIONS(4904), + [anon_sym_BSLASHglslink] = ACTIONS(4904), + [anon_sym_BSLASHglstext] = ACTIONS(4904), + [anon_sym_BSLASHGlstext] = ACTIONS(4904), + [anon_sym_BSLASHGLStext] = ACTIONS(4904), + [anon_sym_BSLASHglsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4904), + [anon_sym_BSLASHglsplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSplural] = ACTIONS(4904), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHglsname] = ACTIONS(4904), + [anon_sym_BSLASHGlsname] = ACTIONS(4904), + [anon_sym_BSLASHGLSname] = ACTIONS(4904), + [anon_sym_BSLASHglssymbol] = ACTIONS(4904), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4904), + [anon_sym_BSLASHglsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4904), + [anon_sym_BSLASHglsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4904), + [anon_sym_BSLASHglsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4904), + [anon_sym_BSLASHglsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4904), + [anon_sym_BSLASHglsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4904), + [anon_sym_BSLASHnewacronym] = ACTIONS(4904), + [anon_sym_BSLASHacrshort] = ACTIONS(4904), + [anon_sym_BSLASHAcrshort] = ACTIONS(4904), + [anon_sym_BSLASHACRshort] = ACTIONS(4904), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4904), + [anon_sym_BSLASHacrlong] = ACTIONS(4904), + [anon_sym_BSLASHAcrlong] = ACTIONS(4904), + [anon_sym_BSLASHACRlong] = ACTIONS(4904), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4904), + [anon_sym_BSLASHacrfull] = ACTIONS(4904), + [anon_sym_BSLASHAcrfull] = ACTIONS(4904), + [anon_sym_BSLASHACRfull] = ACTIONS(4904), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4904), + [anon_sym_BSLASHacs] = ACTIONS(4904), + [anon_sym_BSLASHAcs] = ACTIONS(4904), + [anon_sym_BSLASHacsp] = ACTIONS(4904), + [anon_sym_BSLASHAcsp] = ACTIONS(4904), + [anon_sym_BSLASHacl] = ACTIONS(4904), + [anon_sym_BSLASHAcl] = ACTIONS(4904), + [anon_sym_BSLASHaclp] = ACTIONS(4904), + [anon_sym_BSLASHAclp] = ACTIONS(4904), + [anon_sym_BSLASHacf] = ACTIONS(4904), + [anon_sym_BSLASHAcf] = ACTIONS(4904), + [anon_sym_BSLASHacfp] = ACTIONS(4904), + [anon_sym_BSLASHAcfp] = ACTIONS(4904), + [anon_sym_BSLASHac] = ACTIONS(4904), + [anon_sym_BSLASHAc] = ACTIONS(4904), + [anon_sym_BSLASHacp] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4904), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4904), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4904), + [anon_sym_BSLASHcolor] = ACTIONS(4904), + [anon_sym_BSLASHcolorbox] = ACTIONS(4904), + [anon_sym_BSLASHtextcolor] = ACTIONS(4904), + [anon_sym_BSLASHpagecolor] = ACTIONS(4904), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4904), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4904), + [anon_sym_BSLASHtext] = ACTIONS(4904), + [anon_sym_BSLASHintertext] = ACTIONS(4904), + [anon_sym_shortintertext] = ACTIONS(4904), }, [650] = { [sym_curly_group] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(4827), - [sym_command_name] = ACTIONS(4829), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_BSLASHpart] = ACTIONS(4829), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddpart] = ACTIONS(4829), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHchapter] = ACTIONS(4829), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddchap] = ACTIONS(4829), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsection] = ACTIONS(4829), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddsec] = ACTIONS(4829), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHparagraph] = ACTIONS(4829), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHitem] = ACTIONS(4829), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), + [ts_builtin_sym_end] = ACTIONS(4906), + [sym_command_name] = ACTIONS(4908), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_BSLASHpart] = ACTIONS(4908), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddpart] = ACTIONS(4908), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHchapter] = ACTIONS(4908), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddchap] = ACTIONS(4908), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsection] = ACTIONS(4908), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddsec] = ACTIONS(4908), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHparagraph] = ACTIONS(4908), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4908), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHitem] = ACTIONS(4908), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4906), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4827), - [sym_word] = ACTIONS(4829), - [sym_placeholder] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym__] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4829), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4829), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), - [anon_sym_BSLASHbegin] = ACTIONS(4829), - [anon_sym_BSLASHusepackage] = ACTIONS(4829), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), - [anon_sym_BSLASHinclude] = ACTIONS(4829), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), - [anon_sym_BSLASHinput] = ACTIONS(4829), - [anon_sym_BSLASHsubfile] = ACTIONS(4829), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), - [anon_sym_BSLASHbibliography] = ACTIONS(4829), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), - [anon_sym_BSLASHincludesvg] = ACTIONS(4829), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), - [anon_sym_BSLASHimport] = ACTIONS(4829), - [anon_sym_BSLASHsubimport] = ACTIONS(4829), - [anon_sym_BSLASHinputfrom] = ACTIONS(4829), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), - [anon_sym_BSLASHincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHcaption] = ACTIONS(4829), - [anon_sym_BSLASHcite] = ACTIONS(4829), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCite] = ACTIONS(4829), - [anon_sym_BSLASHnocite] = ACTIONS(4829), - [anon_sym_BSLASHcitet] = ACTIONS(4829), - [anon_sym_BSLASHcitep] = ACTIONS(4829), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteauthor] = ACTIONS(4829), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitetitle] = ACTIONS(4829), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteyear] = ACTIONS(4829), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitedate] = ACTIONS(4829), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteurl] = ACTIONS(4829), - [anon_sym_BSLASHfullcite] = ACTIONS(4829), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), - [anon_sym_BSLASHcitealt] = ACTIONS(4829), - [anon_sym_BSLASHcitealp] = ACTIONS(4829), - [anon_sym_BSLASHcitetext] = ACTIONS(4829), - [anon_sym_BSLASHparencite] = ACTIONS(4829), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHParencite] = ACTIONS(4829), - [anon_sym_BSLASHfootcite] = ACTIONS(4829), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), - [anon_sym_BSLASHtextcite] = ACTIONS(4829), - [anon_sym_BSLASHTextcite] = ACTIONS(4829), - [anon_sym_BSLASHsmartcite] = ACTIONS(4829), - [anon_sym_BSLASHSmartcite] = ACTIONS(4829), - [anon_sym_BSLASHsupercite] = ACTIONS(4829), - [anon_sym_BSLASHautocite] = ACTIONS(4829), - [anon_sym_BSLASHAutocite] = ACTIONS(4829), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHvolcite] = ACTIONS(4829), - [anon_sym_BSLASHVolcite] = ACTIONS(4829), - [anon_sym_BSLASHpvolcite] = ACTIONS(4829), - [anon_sym_BSLASHPvolcite] = ACTIONS(4829), - [anon_sym_BSLASHfvolcite] = ACTIONS(4829), - [anon_sym_BSLASHftvolcite] = ACTIONS(4829), - [anon_sym_BSLASHsvolcite] = ACTIONS(4829), - [anon_sym_BSLASHSvolcite] = ACTIONS(4829), - [anon_sym_BSLASHtvolcite] = ACTIONS(4829), - [anon_sym_BSLASHTvolcite] = ACTIONS(4829), - [anon_sym_BSLASHavolcite] = ACTIONS(4829), - [anon_sym_BSLASHAvolcite] = ACTIONS(4829), - [anon_sym_BSLASHnotecite] = ACTIONS(4829), - [anon_sym_BSLASHNotecite] = ACTIONS(4829), - [anon_sym_BSLASHpnotecite] = ACTIONS(4829), - [anon_sym_BSLASHPnotecite] = ACTIONS(4829), - [anon_sym_BSLASHfnotecite] = ACTIONS(4829), - [anon_sym_BSLASHlabel] = ACTIONS(4829), - [anon_sym_BSLASHref] = ACTIONS(4829), - [anon_sym_BSLASHeqref] = ACTIONS(4829), - [anon_sym_BSLASHvref] = ACTIONS(4829), - [anon_sym_BSLASHVref] = ACTIONS(4829), - [anon_sym_BSLASHautoref] = ACTIONS(4829), - [anon_sym_BSLASHpageref] = ACTIONS(4829), - [anon_sym_BSLASHcref] = ACTIONS(4829), - [anon_sym_BSLASHCref] = ACTIONS(4829), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnameCref] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHlabelcref] = ACTIONS(4829), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCrefrange] = ACTIONS(4829), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnewlabel] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), - [anon_sym_BSLASHdef] = ACTIONS(4829), - [anon_sym_BSLASHlet] = ACTIONS(4829), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), - [anon_sym_BSLASHgls] = ACTIONS(4829), - [anon_sym_BSLASHGls] = ACTIONS(4829), - [anon_sym_BSLASHGLS] = ACTIONS(4829), - [anon_sym_BSLASHglspl] = ACTIONS(4829), - [anon_sym_BSLASHGlspl] = ACTIONS(4829), - [anon_sym_BSLASHGLSpl] = ACTIONS(4829), - [anon_sym_BSLASHglsdisp] = ACTIONS(4829), - [anon_sym_BSLASHglslink] = ACTIONS(4829), - [anon_sym_BSLASHglstext] = ACTIONS(4829), - [anon_sym_BSLASHGlstext] = ACTIONS(4829), - [anon_sym_BSLASHGLStext] = ACTIONS(4829), - [anon_sym_BSLASHglsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), - [anon_sym_BSLASHglsplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSplural] = ACTIONS(4829), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHglsname] = ACTIONS(4829), - [anon_sym_BSLASHGlsname] = ACTIONS(4829), - [anon_sym_BSLASHGLSname] = ACTIONS(4829), - [anon_sym_BSLASHglssymbol] = ACTIONS(4829), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), - [anon_sym_BSLASHglsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), - [anon_sym_BSLASHglsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), - [anon_sym_BSLASHglsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), - [anon_sym_BSLASHglsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), - [anon_sym_BSLASHglsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), - [anon_sym_BSLASHnewacronym] = ACTIONS(4829), - [anon_sym_BSLASHacrshort] = ACTIONS(4829), - [anon_sym_BSLASHAcrshort] = ACTIONS(4829), - [anon_sym_BSLASHACRshort] = ACTIONS(4829), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), - [anon_sym_BSLASHacrlong] = ACTIONS(4829), - [anon_sym_BSLASHAcrlong] = ACTIONS(4829), - [anon_sym_BSLASHACRlong] = ACTIONS(4829), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), - [anon_sym_BSLASHacrfull] = ACTIONS(4829), - [anon_sym_BSLASHAcrfull] = ACTIONS(4829), - [anon_sym_BSLASHACRfull] = ACTIONS(4829), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), - [anon_sym_BSLASHacs] = ACTIONS(4829), - [anon_sym_BSLASHAcs] = ACTIONS(4829), - [anon_sym_BSLASHacsp] = ACTIONS(4829), - [anon_sym_BSLASHAcsp] = ACTIONS(4829), - [anon_sym_BSLASHacl] = ACTIONS(4829), - [anon_sym_BSLASHAcl] = ACTIONS(4829), - [anon_sym_BSLASHaclp] = ACTIONS(4829), - [anon_sym_BSLASHAclp] = ACTIONS(4829), - [anon_sym_BSLASHacf] = ACTIONS(4829), - [anon_sym_BSLASHAcf] = ACTIONS(4829), - [anon_sym_BSLASHacfp] = ACTIONS(4829), - [anon_sym_BSLASHAcfp] = ACTIONS(4829), - [anon_sym_BSLASHac] = ACTIONS(4829), - [anon_sym_BSLASHAc] = ACTIONS(4829), - [anon_sym_BSLASHacp] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), - [anon_sym_BSLASHcolor] = ACTIONS(4829), - [anon_sym_BSLASHcolorbox] = ACTIONS(4829), - [anon_sym_BSLASHtextcolor] = ACTIONS(4829), - [anon_sym_BSLASHpagecolor] = ACTIONS(4829), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), - [anon_sym_BSLASHtext] = ACTIONS(4829), - [anon_sym_BSLASHintertext] = ACTIONS(4829), - [anon_sym_shortintertext] = ACTIONS(4829), + [anon_sym_RBRACE] = ACTIONS(4906), + [sym_word] = ACTIONS(4908), + [sym_placeholder] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym__] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4906), + [anon_sym_BSLASHbegin] = ACTIONS(4908), + [anon_sym_BSLASHusepackage] = ACTIONS(4908), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4908), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4908), + [anon_sym_BSLASHinclude] = ACTIONS(4908), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4908), + [anon_sym_BSLASHinput] = ACTIONS(4908), + [anon_sym_BSLASHsubfile] = ACTIONS(4908), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4908), + [anon_sym_BSLASHbibliography] = ACTIONS(4908), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4908), + [anon_sym_BSLASHincludesvg] = ACTIONS(4908), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4908), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4908), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4908), + [anon_sym_BSLASHimport] = ACTIONS(4908), + [anon_sym_BSLASHsubimport] = ACTIONS(4908), + [anon_sym_BSLASHinputfrom] = ACTIONS(4908), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4908), + [anon_sym_BSLASHincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHcaption] = ACTIONS(4908), + [anon_sym_BSLASHcite] = ACTIONS(4908), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCite] = ACTIONS(4908), + [anon_sym_BSLASHnocite] = ACTIONS(4908), + [anon_sym_BSLASHcitet] = ACTIONS(4908), + [anon_sym_BSLASHcitep] = ACTIONS(4908), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteauthor] = ACTIONS(4908), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4908), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitetitle] = ACTIONS(4908), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteyear] = ACTIONS(4908), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitedate] = ACTIONS(4908), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteurl] = ACTIONS(4908), + [anon_sym_BSLASHfullcite] = ACTIONS(4908), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4908), + [anon_sym_BSLASHcitealt] = ACTIONS(4908), + [anon_sym_BSLASHcitealp] = ACTIONS(4908), + [anon_sym_BSLASHcitetext] = ACTIONS(4908), + [anon_sym_BSLASHparencite] = ACTIONS(4908), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHParencite] = ACTIONS(4908), + [anon_sym_BSLASHfootcite] = ACTIONS(4908), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4908), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4908), + [anon_sym_BSLASHtextcite] = ACTIONS(4908), + [anon_sym_BSLASHTextcite] = ACTIONS(4908), + [anon_sym_BSLASHsmartcite] = ACTIONS(4908), + [anon_sym_BSLASHSmartcite] = ACTIONS(4908), + [anon_sym_BSLASHsupercite] = ACTIONS(4908), + [anon_sym_BSLASHautocite] = ACTIONS(4908), + [anon_sym_BSLASHAutocite] = ACTIONS(4908), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHvolcite] = ACTIONS(4908), + [anon_sym_BSLASHVolcite] = ACTIONS(4908), + [anon_sym_BSLASHpvolcite] = ACTIONS(4908), + [anon_sym_BSLASHPvolcite] = ACTIONS(4908), + [anon_sym_BSLASHfvolcite] = ACTIONS(4908), + [anon_sym_BSLASHftvolcite] = ACTIONS(4908), + [anon_sym_BSLASHsvolcite] = ACTIONS(4908), + [anon_sym_BSLASHSvolcite] = ACTIONS(4908), + [anon_sym_BSLASHtvolcite] = ACTIONS(4908), + [anon_sym_BSLASHTvolcite] = ACTIONS(4908), + [anon_sym_BSLASHavolcite] = ACTIONS(4908), + [anon_sym_BSLASHAvolcite] = ACTIONS(4908), + [anon_sym_BSLASHnotecite] = ACTIONS(4908), + [anon_sym_BSLASHNotecite] = ACTIONS(4908), + [anon_sym_BSLASHpnotecite] = ACTIONS(4908), + [anon_sym_BSLASHPnotecite] = ACTIONS(4908), + [anon_sym_BSLASHfnotecite] = ACTIONS(4908), + [anon_sym_BSLASHlabel] = ACTIONS(4908), + [anon_sym_BSLASHref] = ACTIONS(4908), + [anon_sym_BSLASHeqref] = ACTIONS(4908), + [anon_sym_BSLASHvref] = ACTIONS(4908), + [anon_sym_BSLASHVref] = ACTIONS(4908), + [anon_sym_BSLASHautoref] = ACTIONS(4908), + [anon_sym_BSLASHpageref] = ACTIONS(4908), + [anon_sym_BSLASHcref] = ACTIONS(4908), + [anon_sym_BSLASHCref] = ACTIONS(4908), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnameCref] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHlabelcref] = ACTIONS(4908), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCrefrange] = ACTIONS(4908), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnewlabel] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4908), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4908), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4908), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdef] = ACTIONS(4908), + [anon_sym_BSLASHlet] = ACTIONS(4908), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4908), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4908), + [anon_sym_BSLASHgls] = ACTIONS(4908), + [anon_sym_BSLASHGls] = ACTIONS(4908), + [anon_sym_BSLASHGLS] = ACTIONS(4908), + [anon_sym_BSLASHglspl] = ACTIONS(4908), + [anon_sym_BSLASHGlspl] = ACTIONS(4908), + [anon_sym_BSLASHGLSpl] = ACTIONS(4908), + [anon_sym_BSLASHglsdisp] = ACTIONS(4908), + [anon_sym_BSLASHglslink] = ACTIONS(4908), + [anon_sym_BSLASHglstext] = ACTIONS(4908), + [anon_sym_BSLASHGlstext] = ACTIONS(4908), + [anon_sym_BSLASHGLStext] = ACTIONS(4908), + [anon_sym_BSLASHglsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4908), + [anon_sym_BSLASHglsplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSplural] = ACTIONS(4908), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHglsname] = ACTIONS(4908), + [anon_sym_BSLASHGlsname] = ACTIONS(4908), + [anon_sym_BSLASHGLSname] = ACTIONS(4908), + [anon_sym_BSLASHglssymbol] = ACTIONS(4908), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4908), + [anon_sym_BSLASHglsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4908), + [anon_sym_BSLASHglsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4908), + [anon_sym_BSLASHglsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4908), + [anon_sym_BSLASHglsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4908), + [anon_sym_BSLASHglsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4908), + [anon_sym_BSLASHnewacronym] = ACTIONS(4908), + [anon_sym_BSLASHacrshort] = ACTIONS(4908), + [anon_sym_BSLASHAcrshort] = ACTIONS(4908), + [anon_sym_BSLASHACRshort] = ACTIONS(4908), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4908), + [anon_sym_BSLASHacrlong] = ACTIONS(4908), + [anon_sym_BSLASHAcrlong] = ACTIONS(4908), + [anon_sym_BSLASHACRlong] = ACTIONS(4908), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4908), + [anon_sym_BSLASHacrfull] = ACTIONS(4908), + [anon_sym_BSLASHAcrfull] = ACTIONS(4908), + [anon_sym_BSLASHACRfull] = ACTIONS(4908), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4908), + [anon_sym_BSLASHacs] = ACTIONS(4908), + [anon_sym_BSLASHAcs] = ACTIONS(4908), + [anon_sym_BSLASHacsp] = ACTIONS(4908), + [anon_sym_BSLASHAcsp] = ACTIONS(4908), + [anon_sym_BSLASHacl] = ACTIONS(4908), + [anon_sym_BSLASHAcl] = ACTIONS(4908), + [anon_sym_BSLASHaclp] = ACTIONS(4908), + [anon_sym_BSLASHAclp] = ACTIONS(4908), + [anon_sym_BSLASHacf] = ACTIONS(4908), + [anon_sym_BSLASHAcf] = ACTIONS(4908), + [anon_sym_BSLASHacfp] = ACTIONS(4908), + [anon_sym_BSLASHAcfp] = ACTIONS(4908), + [anon_sym_BSLASHac] = ACTIONS(4908), + [anon_sym_BSLASHAc] = ACTIONS(4908), + [anon_sym_BSLASHacp] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4908), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4908), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4908), + [anon_sym_BSLASHcolor] = ACTIONS(4908), + [anon_sym_BSLASHcolorbox] = ACTIONS(4908), + [anon_sym_BSLASHtextcolor] = ACTIONS(4908), + [anon_sym_BSLASHpagecolor] = ACTIONS(4908), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4908), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4908), + [anon_sym_BSLASHtext] = ACTIONS(4908), + [anon_sym_BSLASHintertext] = ACTIONS(4908), + [anon_sym_shortintertext] = ACTIONS(4908), }, [651] = { [sym_curly_group] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(4831), - [sym_command_name] = ACTIONS(4833), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4831), - [anon_sym_BSLASHpart] = ACTIONS(4833), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddpart] = ACTIONS(4833), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHchapter] = ACTIONS(4833), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddchap] = ACTIONS(4833), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsection] = ACTIONS(4833), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddsec] = ACTIONS(4833), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHparagraph] = ACTIONS(4833), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHitem] = ACTIONS(4833), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), + [ts_builtin_sym_end] = ACTIONS(4910), + [sym_command_name] = ACTIONS(4912), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_BSLASHpart] = ACTIONS(4912), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddpart] = ACTIONS(4912), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHchapter] = ACTIONS(4912), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddchap] = ACTIONS(4912), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsection] = ACTIONS(4912), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddsec] = ACTIONS(4912), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHparagraph] = ACTIONS(4912), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4912), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHitem] = ACTIONS(4912), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4910), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4831), - [sym_word] = ACTIONS(4833), - [sym_placeholder] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym__] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), - [anon_sym_BSLASHbegin] = ACTIONS(4833), - [anon_sym_BSLASHusepackage] = ACTIONS(4833), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), - [anon_sym_BSLASHinclude] = ACTIONS(4833), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), - [anon_sym_BSLASHinput] = ACTIONS(4833), - [anon_sym_BSLASHsubfile] = ACTIONS(4833), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), - [anon_sym_BSLASHbibliography] = ACTIONS(4833), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), - [anon_sym_BSLASHincludesvg] = ACTIONS(4833), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), - [anon_sym_BSLASHimport] = ACTIONS(4833), - [anon_sym_BSLASHsubimport] = ACTIONS(4833), - [anon_sym_BSLASHinputfrom] = ACTIONS(4833), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), - [anon_sym_BSLASHincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHcaption] = ACTIONS(4833), - [anon_sym_BSLASHcite] = ACTIONS(4833), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCite] = ACTIONS(4833), - [anon_sym_BSLASHnocite] = ACTIONS(4833), - [anon_sym_BSLASHcitet] = ACTIONS(4833), - [anon_sym_BSLASHcitep] = ACTIONS(4833), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteauthor] = ACTIONS(4833), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitetitle] = ACTIONS(4833), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteyear] = ACTIONS(4833), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitedate] = ACTIONS(4833), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteurl] = ACTIONS(4833), - [anon_sym_BSLASHfullcite] = ACTIONS(4833), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), - [anon_sym_BSLASHcitealt] = ACTIONS(4833), - [anon_sym_BSLASHcitealp] = ACTIONS(4833), - [anon_sym_BSLASHcitetext] = ACTIONS(4833), - [anon_sym_BSLASHparencite] = ACTIONS(4833), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHParencite] = ACTIONS(4833), - [anon_sym_BSLASHfootcite] = ACTIONS(4833), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), - [anon_sym_BSLASHtextcite] = ACTIONS(4833), - [anon_sym_BSLASHTextcite] = ACTIONS(4833), - [anon_sym_BSLASHsmartcite] = ACTIONS(4833), - [anon_sym_BSLASHSmartcite] = ACTIONS(4833), - [anon_sym_BSLASHsupercite] = ACTIONS(4833), - [anon_sym_BSLASHautocite] = ACTIONS(4833), - [anon_sym_BSLASHAutocite] = ACTIONS(4833), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHvolcite] = ACTIONS(4833), - [anon_sym_BSLASHVolcite] = ACTIONS(4833), - [anon_sym_BSLASHpvolcite] = ACTIONS(4833), - [anon_sym_BSLASHPvolcite] = ACTIONS(4833), - [anon_sym_BSLASHfvolcite] = ACTIONS(4833), - [anon_sym_BSLASHftvolcite] = ACTIONS(4833), - [anon_sym_BSLASHsvolcite] = ACTIONS(4833), - [anon_sym_BSLASHSvolcite] = ACTIONS(4833), - [anon_sym_BSLASHtvolcite] = ACTIONS(4833), - [anon_sym_BSLASHTvolcite] = ACTIONS(4833), - [anon_sym_BSLASHavolcite] = ACTIONS(4833), - [anon_sym_BSLASHAvolcite] = ACTIONS(4833), - [anon_sym_BSLASHnotecite] = ACTIONS(4833), - [anon_sym_BSLASHNotecite] = ACTIONS(4833), - [anon_sym_BSLASHpnotecite] = ACTIONS(4833), - [anon_sym_BSLASHPnotecite] = ACTIONS(4833), - [anon_sym_BSLASHfnotecite] = ACTIONS(4833), - [anon_sym_BSLASHlabel] = ACTIONS(4833), - [anon_sym_BSLASHref] = ACTIONS(4833), - [anon_sym_BSLASHeqref] = ACTIONS(4833), - [anon_sym_BSLASHvref] = ACTIONS(4833), - [anon_sym_BSLASHVref] = ACTIONS(4833), - [anon_sym_BSLASHautoref] = ACTIONS(4833), - [anon_sym_BSLASHpageref] = ACTIONS(4833), - [anon_sym_BSLASHcref] = ACTIONS(4833), - [anon_sym_BSLASHCref] = ACTIONS(4833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnameCref] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHlabelcref] = ACTIONS(4833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCrefrange] = ACTIONS(4833), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnewlabel] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), - [anon_sym_BSLASHdef] = ACTIONS(4833), - [anon_sym_BSLASHlet] = ACTIONS(4833), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), - [anon_sym_BSLASHgls] = ACTIONS(4833), - [anon_sym_BSLASHGls] = ACTIONS(4833), - [anon_sym_BSLASHGLS] = ACTIONS(4833), - [anon_sym_BSLASHglspl] = ACTIONS(4833), - [anon_sym_BSLASHGlspl] = ACTIONS(4833), - [anon_sym_BSLASHGLSpl] = ACTIONS(4833), - [anon_sym_BSLASHglsdisp] = ACTIONS(4833), - [anon_sym_BSLASHglslink] = ACTIONS(4833), - [anon_sym_BSLASHglstext] = ACTIONS(4833), - [anon_sym_BSLASHGlstext] = ACTIONS(4833), - [anon_sym_BSLASHGLStext] = ACTIONS(4833), - [anon_sym_BSLASHglsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), - [anon_sym_BSLASHglsplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSplural] = ACTIONS(4833), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHglsname] = ACTIONS(4833), - [anon_sym_BSLASHGlsname] = ACTIONS(4833), - [anon_sym_BSLASHGLSname] = ACTIONS(4833), - [anon_sym_BSLASHglssymbol] = ACTIONS(4833), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), - [anon_sym_BSLASHglsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), - [anon_sym_BSLASHglsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), - [anon_sym_BSLASHglsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), - [anon_sym_BSLASHglsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), - [anon_sym_BSLASHglsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), - [anon_sym_BSLASHnewacronym] = ACTIONS(4833), - [anon_sym_BSLASHacrshort] = ACTIONS(4833), - [anon_sym_BSLASHAcrshort] = ACTIONS(4833), - [anon_sym_BSLASHACRshort] = ACTIONS(4833), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), - [anon_sym_BSLASHacrlong] = ACTIONS(4833), - [anon_sym_BSLASHAcrlong] = ACTIONS(4833), - [anon_sym_BSLASHACRlong] = ACTIONS(4833), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), - [anon_sym_BSLASHacrfull] = ACTIONS(4833), - [anon_sym_BSLASHAcrfull] = ACTIONS(4833), - [anon_sym_BSLASHACRfull] = ACTIONS(4833), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), - [anon_sym_BSLASHacs] = ACTIONS(4833), - [anon_sym_BSLASHAcs] = ACTIONS(4833), - [anon_sym_BSLASHacsp] = ACTIONS(4833), - [anon_sym_BSLASHAcsp] = ACTIONS(4833), - [anon_sym_BSLASHacl] = ACTIONS(4833), - [anon_sym_BSLASHAcl] = ACTIONS(4833), - [anon_sym_BSLASHaclp] = ACTIONS(4833), - [anon_sym_BSLASHAclp] = ACTIONS(4833), - [anon_sym_BSLASHacf] = ACTIONS(4833), - [anon_sym_BSLASHAcf] = ACTIONS(4833), - [anon_sym_BSLASHacfp] = ACTIONS(4833), - [anon_sym_BSLASHAcfp] = ACTIONS(4833), - [anon_sym_BSLASHac] = ACTIONS(4833), - [anon_sym_BSLASHAc] = ACTIONS(4833), - [anon_sym_BSLASHacp] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), - [anon_sym_BSLASHcolor] = ACTIONS(4833), - [anon_sym_BSLASHcolorbox] = ACTIONS(4833), - [anon_sym_BSLASHtextcolor] = ACTIONS(4833), - [anon_sym_BSLASHpagecolor] = ACTIONS(4833), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), - [anon_sym_BSLASHtext] = ACTIONS(4833), - [anon_sym_BSLASHintertext] = ACTIONS(4833), - [anon_sym_shortintertext] = ACTIONS(4833), + [anon_sym_RBRACE] = ACTIONS(4910), + [sym_word] = ACTIONS(4912), + [sym_placeholder] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_CARET] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4910), + [anon_sym_BSLASHbegin] = ACTIONS(4912), + [anon_sym_BSLASHusepackage] = ACTIONS(4912), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4912), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4912), + [anon_sym_BSLASHinclude] = ACTIONS(4912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4912), + [anon_sym_BSLASHinput] = ACTIONS(4912), + [anon_sym_BSLASHsubfile] = ACTIONS(4912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4912), + [anon_sym_BSLASHbibliography] = ACTIONS(4912), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4912), + [anon_sym_BSLASHincludesvg] = ACTIONS(4912), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4912), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4912), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4912), + [anon_sym_BSLASHimport] = ACTIONS(4912), + [anon_sym_BSLASHsubimport] = ACTIONS(4912), + [anon_sym_BSLASHinputfrom] = ACTIONS(4912), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4912), + [anon_sym_BSLASHincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHcaption] = ACTIONS(4912), + [anon_sym_BSLASHcite] = ACTIONS(4912), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCite] = ACTIONS(4912), + [anon_sym_BSLASHnocite] = ACTIONS(4912), + [anon_sym_BSLASHcitet] = ACTIONS(4912), + [anon_sym_BSLASHcitep] = ACTIONS(4912), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteauthor] = ACTIONS(4912), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4912), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitetitle] = ACTIONS(4912), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteyear] = ACTIONS(4912), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitedate] = ACTIONS(4912), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteurl] = ACTIONS(4912), + [anon_sym_BSLASHfullcite] = ACTIONS(4912), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4912), + [anon_sym_BSLASHcitealt] = ACTIONS(4912), + [anon_sym_BSLASHcitealp] = ACTIONS(4912), + [anon_sym_BSLASHcitetext] = ACTIONS(4912), + [anon_sym_BSLASHparencite] = ACTIONS(4912), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHParencite] = ACTIONS(4912), + [anon_sym_BSLASHfootcite] = ACTIONS(4912), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4912), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4912), + [anon_sym_BSLASHtextcite] = ACTIONS(4912), + [anon_sym_BSLASHTextcite] = ACTIONS(4912), + [anon_sym_BSLASHsmartcite] = ACTIONS(4912), + [anon_sym_BSLASHSmartcite] = ACTIONS(4912), + [anon_sym_BSLASHsupercite] = ACTIONS(4912), + [anon_sym_BSLASHautocite] = ACTIONS(4912), + [anon_sym_BSLASHAutocite] = ACTIONS(4912), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHvolcite] = ACTIONS(4912), + [anon_sym_BSLASHVolcite] = ACTIONS(4912), + [anon_sym_BSLASHpvolcite] = ACTIONS(4912), + [anon_sym_BSLASHPvolcite] = ACTIONS(4912), + [anon_sym_BSLASHfvolcite] = ACTIONS(4912), + [anon_sym_BSLASHftvolcite] = ACTIONS(4912), + [anon_sym_BSLASHsvolcite] = ACTIONS(4912), + [anon_sym_BSLASHSvolcite] = ACTIONS(4912), + [anon_sym_BSLASHtvolcite] = ACTIONS(4912), + [anon_sym_BSLASHTvolcite] = ACTIONS(4912), + [anon_sym_BSLASHavolcite] = ACTIONS(4912), + [anon_sym_BSLASHAvolcite] = ACTIONS(4912), + [anon_sym_BSLASHnotecite] = ACTIONS(4912), + [anon_sym_BSLASHNotecite] = ACTIONS(4912), + [anon_sym_BSLASHpnotecite] = ACTIONS(4912), + [anon_sym_BSLASHPnotecite] = ACTIONS(4912), + [anon_sym_BSLASHfnotecite] = ACTIONS(4912), + [anon_sym_BSLASHlabel] = ACTIONS(4912), + [anon_sym_BSLASHref] = ACTIONS(4912), + [anon_sym_BSLASHeqref] = ACTIONS(4912), + [anon_sym_BSLASHvref] = ACTIONS(4912), + [anon_sym_BSLASHVref] = ACTIONS(4912), + [anon_sym_BSLASHautoref] = ACTIONS(4912), + [anon_sym_BSLASHpageref] = ACTIONS(4912), + [anon_sym_BSLASHcref] = ACTIONS(4912), + [anon_sym_BSLASHCref] = ACTIONS(4912), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnameCref] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHlabelcref] = ACTIONS(4912), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCrefrange] = ACTIONS(4912), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnewlabel] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4912), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4912), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4912), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdef] = ACTIONS(4912), + [anon_sym_BSLASHlet] = ACTIONS(4912), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4912), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), + [anon_sym_BSLASHgls] = ACTIONS(4912), + [anon_sym_BSLASHGls] = ACTIONS(4912), + [anon_sym_BSLASHGLS] = ACTIONS(4912), + [anon_sym_BSLASHglspl] = ACTIONS(4912), + [anon_sym_BSLASHGlspl] = ACTIONS(4912), + [anon_sym_BSLASHGLSpl] = ACTIONS(4912), + [anon_sym_BSLASHglsdisp] = ACTIONS(4912), + [anon_sym_BSLASHglslink] = ACTIONS(4912), + [anon_sym_BSLASHglstext] = ACTIONS(4912), + [anon_sym_BSLASHGlstext] = ACTIONS(4912), + [anon_sym_BSLASHGLStext] = ACTIONS(4912), + [anon_sym_BSLASHglsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4912), + [anon_sym_BSLASHglsplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSplural] = ACTIONS(4912), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHglsname] = ACTIONS(4912), + [anon_sym_BSLASHGlsname] = ACTIONS(4912), + [anon_sym_BSLASHGLSname] = ACTIONS(4912), + [anon_sym_BSLASHglssymbol] = ACTIONS(4912), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4912), + [anon_sym_BSLASHglsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4912), + [anon_sym_BSLASHglsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4912), + [anon_sym_BSLASHglsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4912), + [anon_sym_BSLASHglsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4912), + [anon_sym_BSLASHglsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4912), + [anon_sym_BSLASHnewacronym] = ACTIONS(4912), + [anon_sym_BSLASHacrshort] = ACTIONS(4912), + [anon_sym_BSLASHAcrshort] = ACTIONS(4912), + [anon_sym_BSLASHACRshort] = ACTIONS(4912), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4912), + [anon_sym_BSLASHacrlong] = ACTIONS(4912), + [anon_sym_BSLASHAcrlong] = ACTIONS(4912), + [anon_sym_BSLASHACRlong] = ACTIONS(4912), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4912), + [anon_sym_BSLASHacrfull] = ACTIONS(4912), + [anon_sym_BSLASHAcrfull] = ACTIONS(4912), + [anon_sym_BSLASHACRfull] = ACTIONS(4912), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4912), + [anon_sym_BSLASHacs] = ACTIONS(4912), + [anon_sym_BSLASHAcs] = ACTIONS(4912), + [anon_sym_BSLASHacsp] = ACTIONS(4912), + [anon_sym_BSLASHAcsp] = ACTIONS(4912), + [anon_sym_BSLASHacl] = ACTIONS(4912), + [anon_sym_BSLASHAcl] = ACTIONS(4912), + [anon_sym_BSLASHaclp] = ACTIONS(4912), + [anon_sym_BSLASHAclp] = ACTIONS(4912), + [anon_sym_BSLASHacf] = ACTIONS(4912), + [anon_sym_BSLASHAcf] = ACTIONS(4912), + [anon_sym_BSLASHacfp] = ACTIONS(4912), + [anon_sym_BSLASHAcfp] = ACTIONS(4912), + [anon_sym_BSLASHac] = ACTIONS(4912), + [anon_sym_BSLASHAc] = ACTIONS(4912), + [anon_sym_BSLASHacp] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4912), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4912), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4912), + [anon_sym_BSLASHcolor] = ACTIONS(4912), + [anon_sym_BSLASHcolorbox] = ACTIONS(4912), + [anon_sym_BSLASHtextcolor] = ACTIONS(4912), + [anon_sym_BSLASHpagecolor] = ACTIONS(4912), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4912), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4912), + [anon_sym_BSLASHtext] = ACTIONS(4912), + [anon_sym_BSLASHintertext] = ACTIONS(4912), + [anon_sym_shortintertext] = ACTIONS(4912), }, [652] = { [sym_curly_group] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(4835), - [sym_command_name] = ACTIONS(4837), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_BSLASHpart] = ACTIONS(4837), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddpart] = ACTIONS(4837), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHchapter] = ACTIONS(4837), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddchap] = ACTIONS(4837), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsection] = ACTIONS(4837), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddsec] = ACTIONS(4837), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHparagraph] = ACTIONS(4837), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHitem] = ACTIONS(4837), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), + [ts_builtin_sym_end] = ACTIONS(4914), + [sym_command_name] = ACTIONS(4916), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_BSLASHpart] = ACTIONS(4916), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddpart] = ACTIONS(4916), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHchapter] = ACTIONS(4916), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddchap] = ACTIONS(4916), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsection] = ACTIONS(4916), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddsec] = ACTIONS(4916), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHparagraph] = ACTIONS(4916), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4916), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHitem] = ACTIONS(4916), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4914), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4835), - [sym_word] = ACTIONS(4837), - [sym_placeholder] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym__] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), - [anon_sym_BSLASHbegin] = ACTIONS(4837), - [anon_sym_BSLASHusepackage] = ACTIONS(4837), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4837), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), - [anon_sym_BSLASHinput] = ACTIONS(4837), - [anon_sym_BSLASHsubfile] = ACTIONS(4837), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), - [anon_sym_BSLASHbibliography] = ACTIONS(4837), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), - [anon_sym_BSLASHincludesvg] = ACTIONS(4837), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), - [anon_sym_BSLASHimport] = ACTIONS(4837), - [anon_sym_BSLASHsubimport] = ACTIONS(4837), - [anon_sym_BSLASHinputfrom] = ACTIONS(4837), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), - [anon_sym_BSLASHincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHcaption] = ACTIONS(4837), - [anon_sym_BSLASHcite] = ACTIONS(4837), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCite] = ACTIONS(4837), - [anon_sym_BSLASHnocite] = ACTIONS(4837), - [anon_sym_BSLASHcitet] = ACTIONS(4837), - [anon_sym_BSLASHcitep] = ACTIONS(4837), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteauthor] = ACTIONS(4837), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitetitle] = ACTIONS(4837), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteyear] = ACTIONS(4837), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitedate] = ACTIONS(4837), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteurl] = ACTIONS(4837), - [anon_sym_BSLASHfullcite] = ACTIONS(4837), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), - [anon_sym_BSLASHcitealt] = ACTIONS(4837), - [anon_sym_BSLASHcitealp] = ACTIONS(4837), - [anon_sym_BSLASHcitetext] = ACTIONS(4837), - [anon_sym_BSLASHparencite] = ACTIONS(4837), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHParencite] = ACTIONS(4837), - [anon_sym_BSLASHfootcite] = ACTIONS(4837), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), - [anon_sym_BSLASHtextcite] = ACTIONS(4837), - [anon_sym_BSLASHTextcite] = ACTIONS(4837), - [anon_sym_BSLASHsmartcite] = ACTIONS(4837), - [anon_sym_BSLASHSmartcite] = ACTIONS(4837), - [anon_sym_BSLASHsupercite] = ACTIONS(4837), - [anon_sym_BSLASHautocite] = ACTIONS(4837), - [anon_sym_BSLASHAutocite] = ACTIONS(4837), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHvolcite] = ACTIONS(4837), - [anon_sym_BSLASHVolcite] = ACTIONS(4837), - [anon_sym_BSLASHpvolcite] = ACTIONS(4837), - [anon_sym_BSLASHPvolcite] = ACTIONS(4837), - [anon_sym_BSLASHfvolcite] = ACTIONS(4837), - [anon_sym_BSLASHftvolcite] = ACTIONS(4837), - [anon_sym_BSLASHsvolcite] = ACTIONS(4837), - [anon_sym_BSLASHSvolcite] = ACTIONS(4837), - [anon_sym_BSLASHtvolcite] = ACTIONS(4837), - [anon_sym_BSLASHTvolcite] = ACTIONS(4837), - [anon_sym_BSLASHavolcite] = ACTIONS(4837), - [anon_sym_BSLASHAvolcite] = ACTIONS(4837), - [anon_sym_BSLASHnotecite] = ACTIONS(4837), - [anon_sym_BSLASHNotecite] = ACTIONS(4837), - [anon_sym_BSLASHpnotecite] = ACTIONS(4837), - [anon_sym_BSLASHPnotecite] = ACTIONS(4837), - [anon_sym_BSLASHfnotecite] = ACTIONS(4837), - [anon_sym_BSLASHlabel] = ACTIONS(4837), - [anon_sym_BSLASHref] = ACTIONS(4837), - [anon_sym_BSLASHeqref] = ACTIONS(4837), - [anon_sym_BSLASHvref] = ACTIONS(4837), - [anon_sym_BSLASHVref] = ACTIONS(4837), - [anon_sym_BSLASHautoref] = ACTIONS(4837), - [anon_sym_BSLASHpageref] = ACTIONS(4837), - [anon_sym_BSLASHcref] = ACTIONS(4837), - [anon_sym_BSLASHCref] = ACTIONS(4837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnameCref] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHlabelcref] = ACTIONS(4837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCrefrange] = ACTIONS(4837), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnewlabel] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), - [anon_sym_BSLASHdef] = ACTIONS(4837), - [anon_sym_BSLASHlet] = ACTIONS(4837), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), - [anon_sym_BSLASHgls] = ACTIONS(4837), - [anon_sym_BSLASHGls] = ACTIONS(4837), - [anon_sym_BSLASHGLS] = ACTIONS(4837), - [anon_sym_BSLASHglspl] = ACTIONS(4837), - [anon_sym_BSLASHGlspl] = ACTIONS(4837), - [anon_sym_BSLASHGLSpl] = ACTIONS(4837), - [anon_sym_BSLASHglsdisp] = ACTIONS(4837), - [anon_sym_BSLASHglslink] = ACTIONS(4837), - [anon_sym_BSLASHglstext] = ACTIONS(4837), - [anon_sym_BSLASHGlstext] = ACTIONS(4837), - [anon_sym_BSLASHGLStext] = ACTIONS(4837), - [anon_sym_BSLASHglsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), - [anon_sym_BSLASHglsplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSplural] = ACTIONS(4837), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHglsname] = ACTIONS(4837), - [anon_sym_BSLASHGlsname] = ACTIONS(4837), - [anon_sym_BSLASHGLSname] = ACTIONS(4837), - [anon_sym_BSLASHglssymbol] = ACTIONS(4837), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), - [anon_sym_BSLASHglsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), - [anon_sym_BSLASHglsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), - [anon_sym_BSLASHglsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), - [anon_sym_BSLASHglsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), - [anon_sym_BSLASHglsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), - [anon_sym_BSLASHnewacronym] = ACTIONS(4837), - [anon_sym_BSLASHacrshort] = ACTIONS(4837), - [anon_sym_BSLASHAcrshort] = ACTIONS(4837), - [anon_sym_BSLASHACRshort] = ACTIONS(4837), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), - [anon_sym_BSLASHacrlong] = ACTIONS(4837), - [anon_sym_BSLASHAcrlong] = ACTIONS(4837), - [anon_sym_BSLASHACRlong] = ACTIONS(4837), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), - [anon_sym_BSLASHacrfull] = ACTIONS(4837), - [anon_sym_BSLASHAcrfull] = ACTIONS(4837), - [anon_sym_BSLASHACRfull] = ACTIONS(4837), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), - [anon_sym_BSLASHacs] = ACTIONS(4837), - [anon_sym_BSLASHAcs] = ACTIONS(4837), - [anon_sym_BSLASHacsp] = ACTIONS(4837), - [anon_sym_BSLASHAcsp] = ACTIONS(4837), - [anon_sym_BSLASHacl] = ACTIONS(4837), - [anon_sym_BSLASHAcl] = ACTIONS(4837), - [anon_sym_BSLASHaclp] = ACTIONS(4837), - [anon_sym_BSLASHAclp] = ACTIONS(4837), - [anon_sym_BSLASHacf] = ACTIONS(4837), - [anon_sym_BSLASHAcf] = ACTIONS(4837), - [anon_sym_BSLASHacfp] = ACTIONS(4837), - [anon_sym_BSLASHAcfp] = ACTIONS(4837), - [anon_sym_BSLASHac] = ACTIONS(4837), - [anon_sym_BSLASHAc] = ACTIONS(4837), - [anon_sym_BSLASHacp] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), - [anon_sym_BSLASHcolor] = ACTIONS(4837), - [anon_sym_BSLASHcolorbox] = ACTIONS(4837), - [anon_sym_BSLASHtextcolor] = ACTIONS(4837), - [anon_sym_BSLASHpagecolor] = ACTIONS(4837), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), - [anon_sym_BSLASHtext] = ACTIONS(4837), - [anon_sym_BSLASHintertext] = ACTIONS(4837), - [anon_sym_shortintertext] = ACTIONS(4837), + [anon_sym_RBRACE] = ACTIONS(4914), + [sym_word] = ACTIONS(4916), + [sym_placeholder] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym__] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4914), + [anon_sym_BSLASHbegin] = ACTIONS(4916), + [anon_sym_BSLASHusepackage] = ACTIONS(4916), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4916), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4916), + [anon_sym_BSLASHinclude] = ACTIONS(4916), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4916), + [anon_sym_BSLASHinput] = ACTIONS(4916), + [anon_sym_BSLASHsubfile] = ACTIONS(4916), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4916), + [anon_sym_BSLASHbibliography] = ACTIONS(4916), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4916), + [anon_sym_BSLASHincludesvg] = ACTIONS(4916), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4916), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4916), + [anon_sym_BSLASHimport] = ACTIONS(4916), + [anon_sym_BSLASHsubimport] = ACTIONS(4916), + [anon_sym_BSLASHinputfrom] = ACTIONS(4916), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4916), + [anon_sym_BSLASHincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHcaption] = ACTIONS(4916), + [anon_sym_BSLASHcite] = ACTIONS(4916), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCite] = ACTIONS(4916), + [anon_sym_BSLASHnocite] = ACTIONS(4916), + [anon_sym_BSLASHcitet] = ACTIONS(4916), + [anon_sym_BSLASHcitep] = ACTIONS(4916), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteauthor] = ACTIONS(4916), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4916), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitetitle] = ACTIONS(4916), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteyear] = ACTIONS(4916), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitedate] = ACTIONS(4916), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteurl] = ACTIONS(4916), + [anon_sym_BSLASHfullcite] = ACTIONS(4916), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4916), + [anon_sym_BSLASHcitealt] = ACTIONS(4916), + [anon_sym_BSLASHcitealp] = ACTIONS(4916), + [anon_sym_BSLASHcitetext] = ACTIONS(4916), + [anon_sym_BSLASHparencite] = ACTIONS(4916), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHParencite] = ACTIONS(4916), + [anon_sym_BSLASHfootcite] = ACTIONS(4916), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4916), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4916), + [anon_sym_BSLASHtextcite] = ACTIONS(4916), + [anon_sym_BSLASHTextcite] = ACTIONS(4916), + [anon_sym_BSLASHsmartcite] = ACTIONS(4916), + [anon_sym_BSLASHSmartcite] = ACTIONS(4916), + [anon_sym_BSLASHsupercite] = ACTIONS(4916), + [anon_sym_BSLASHautocite] = ACTIONS(4916), + [anon_sym_BSLASHAutocite] = ACTIONS(4916), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHvolcite] = ACTIONS(4916), + [anon_sym_BSLASHVolcite] = ACTIONS(4916), + [anon_sym_BSLASHpvolcite] = ACTIONS(4916), + [anon_sym_BSLASHPvolcite] = ACTIONS(4916), + [anon_sym_BSLASHfvolcite] = ACTIONS(4916), + [anon_sym_BSLASHftvolcite] = ACTIONS(4916), + [anon_sym_BSLASHsvolcite] = ACTIONS(4916), + [anon_sym_BSLASHSvolcite] = ACTIONS(4916), + [anon_sym_BSLASHtvolcite] = ACTIONS(4916), + [anon_sym_BSLASHTvolcite] = ACTIONS(4916), + [anon_sym_BSLASHavolcite] = ACTIONS(4916), + [anon_sym_BSLASHAvolcite] = ACTIONS(4916), + [anon_sym_BSLASHnotecite] = ACTIONS(4916), + [anon_sym_BSLASHNotecite] = ACTIONS(4916), + [anon_sym_BSLASHpnotecite] = ACTIONS(4916), + [anon_sym_BSLASHPnotecite] = ACTIONS(4916), + [anon_sym_BSLASHfnotecite] = ACTIONS(4916), + [anon_sym_BSLASHlabel] = ACTIONS(4916), + [anon_sym_BSLASHref] = ACTIONS(4916), + [anon_sym_BSLASHeqref] = ACTIONS(4916), + [anon_sym_BSLASHvref] = ACTIONS(4916), + [anon_sym_BSLASHVref] = ACTIONS(4916), + [anon_sym_BSLASHautoref] = ACTIONS(4916), + [anon_sym_BSLASHpageref] = ACTIONS(4916), + [anon_sym_BSLASHcref] = ACTIONS(4916), + [anon_sym_BSLASHCref] = ACTIONS(4916), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnameCref] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHlabelcref] = ACTIONS(4916), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCrefrange] = ACTIONS(4916), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnewlabel] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4916), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4916), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4916), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdef] = ACTIONS(4916), + [anon_sym_BSLASHlet] = ACTIONS(4916), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4916), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4916), + [anon_sym_BSLASHgls] = ACTIONS(4916), + [anon_sym_BSLASHGls] = ACTIONS(4916), + [anon_sym_BSLASHGLS] = ACTIONS(4916), + [anon_sym_BSLASHglspl] = ACTIONS(4916), + [anon_sym_BSLASHGlspl] = ACTIONS(4916), + [anon_sym_BSLASHGLSpl] = ACTIONS(4916), + [anon_sym_BSLASHglsdisp] = ACTIONS(4916), + [anon_sym_BSLASHglslink] = ACTIONS(4916), + [anon_sym_BSLASHglstext] = ACTIONS(4916), + [anon_sym_BSLASHGlstext] = ACTIONS(4916), + [anon_sym_BSLASHGLStext] = ACTIONS(4916), + [anon_sym_BSLASHglsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4916), + [anon_sym_BSLASHglsplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSplural] = ACTIONS(4916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHglsname] = ACTIONS(4916), + [anon_sym_BSLASHGlsname] = ACTIONS(4916), + [anon_sym_BSLASHGLSname] = ACTIONS(4916), + [anon_sym_BSLASHglssymbol] = ACTIONS(4916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4916), + [anon_sym_BSLASHglsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4916), + [anon_sym_BSLASHglsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4916), + [anon_sym_BSLASHglsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4916), + [anon_sym_BSLASHglsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4916), + [anon_sym_BSLASHglsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4916), + [anon_sym_BSLASHnewacronym] = ACTIONS(4916), + [anon_sym_BSLASHacrshort] = ACTIONS(4916), + [anon_sym_BSLASHAcrshort] = ACTIONS(4916), + [anon_sym_BSLASHACRshort] = ACTIONS(4916), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4916), + [anon_sym_BSLASHacrlong] = ACTIONS(4916), + [anon_sym_BSLASHAcrlong] = ACTIONS(4916), + [anon_sym_BSLASHACRlong] = ACTIONS(4916), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4916), + [anon_sym_BSLASHacrfull] = ACTIONS(4916), + [anon_sym_BSLASHAcrfull] = ACTIONS(4916), + [anon_sym_BSLASHACRfull] = ACTIONS(4916), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4916), + [anon_sym_BSLASHacs] = ACTIONS(4916), + [anon_sym_BSLASHAcs] = ACTIONS(4916), + [anon_sym_BSLASHacsp] = ACTIONS(4916), + [anon_sym_BSLASHAcsp] = ACTIONS(4916), + [anon_sym_BSLASHacl] = ACTIONS(4916), + [anon_sym_BSLASHAcl] = ACTIONS(4916), + [anon_sym_BSLASHaclp] = ACTIONS(4916), + [anon_sym_BSLASHAclp] = ACTIONS(4916), + [anon_sym_BSLASHacf] = ACTIONS(4916), + [anon_sym_BSLASHAcf] = ACTIONS(4916), + [anon_sym_BSLASHacfp] = ACTIONS(4916), + [anon_sym_BSLASHAcfp] = ACTIONS(4916), + [anon_sym_BSLASHac] = ACTIONS(4916), + [anon_sym_BSLASHAc] = ACTIONS(4916), + [anon_sym_BSLASHacp] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4916), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4916), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4916), + [anon_sym_BSLASHcolor] = ACTIONS(4916), + [anon_sym_BSLASHcolorbox] = ACTIONS(4916), + [anon_sym_BSLASHtextcolor] = ACTIONS(4916), + [anon_sym_BSLASHpagecolor] = ACTIONS(4916), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4916), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4916), + [anon_sym_BSLASHtext] = ACTIONS(4916), + [anon_sym_BSLASHintertext] = ACTIONS(4916), + [anon_sym_shortintertext] = ACTIONS(4916), }, [653] = { [sym_curly_group] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(4839), - [sym_command_name] = ACTIONS(4841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4839), - [anon_sym_BSLASHpart] = ACTIONS(4841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddpart] = ACTIONS(4841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHchapter] = ACTIONS(4841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddchap] = ACTIONS(4841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsection] = ACTIONS(4841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddsec] = ACTIONS(4841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHparagraph] = ACTIONS(4841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHitem] = ACTIONS(4841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), + [ts_builtin_sym_end] = ACTIONS(4918), + [sym_command_name] = ACTIONS(4920), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_BSLASHpart] = ACTIONS(4920), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddpart] = ACTIONS(4920), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHchapter] = ACTIONS(4920), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddchap] = ACTIONS(4920), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsection] = ACTIONS(4920), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddsec] = ACTIONS(4920), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHparagraph] = ACTIONS(4920), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4920), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHitem] = ACTIONS(4920), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4918), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4839), - [sym_word] = ACTIONS(4841), - [sym_placeholder] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym__] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), - [anon_sym_BSLASHbegin] = ACTIONS(4841), - [anon_sym_BSLASHusepackage] = ACTIONS(4841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), - [anon_sym_BSLASHinclude] = ACTIONS(4841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), - [anon_sym_BSLASHinput] = ACTIONS(4841), - [anon_sym_BSLASHsubfile] = ACTIONS(4841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), - [anon_sym_BSLASHbibliography] = ACTIONS(4841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), - [anon_sym_BSLASHincludesvg] = ACTIONS(4841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), - [anon_sym_BSLASHimport] = ACTIONS(4841), - [anon_sym_BSLASHsubimport] = ACTIONS(4841), - [anon_sym_BSLASHinputfrom] = ACTIONS(4841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), - [anon_sym_BSLASHincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHcaption] = ACTIONS(4841), - [anon_sym_BSLASHcite] = ACTIONS(4841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCite] = ACTIONS(4841), - [anon_sym_BSLASHnocite] = ACTIONS(4841), - [anon_sym_BSLASHcitet] = ACTIONS(4841), - [anon_sym_BSLASHcitep] = ACTIONS(4841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteauthor] = ACTIONS(4841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitetitle] = ACTIONS(4841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteyear] = ACTIONS(4841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitedate] = ACTIONS(4841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteurl] = ACTIONS(4841), - [anon_sym_BSLASHfullcite] = ACTIONS(4841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), - [anon_sym_BSLASHcitealt] = ACTIONS(4841), - [anon_sym_BSLASHcitealp] = ACTIONS(4841), - [anon_sym_BSLASHcitetext] = ACTIONS(4841), - [anon_sym_BSLASHparencite] = ACTIONS(4841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHParencite] = ACTIONS(4841), - [anon_sym_BSLASHfootcite] = ACTIONS(4841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), - [anon_sym_BSLASHtextcite] = ACTIONS(4841), - [anon_sym_BSLASHTextcite] = ACTIONS(4841), - [anon_sym_BSLASHsmartcite] = ACTIONS(4841), - [anon_sym_BSLASHSmartcite] = ACTIONS(4841), - [anon_sym_BSLASHsupercite] = ACTIONS(4841), - [anon_sym_BSLASHautocite] = ACTIONS(4841), - [anon_sym_BSLASHAutocite] = ACTIONS(4841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHvolcite] = ACTIONS(4841), - [anon_sym_BSLASHVolcite] = ACTIONS(4841), - [anon_sym_BSLASHpvolcite] = ACTIONS(4841), - [anon_sym_BSLASHPvolcite] = ACTIONS(4841), - [anon_sym_BSLASHfvolcite] = ACTIONS(4841), - [anon_sym_BSLASHftvolcite] = ACTIONS(4841), - [anon_sym_BSLASHsvolcite] = ACTIONS(4841), - [anon_sym_BSLASHSvolcite] = ACTIONS(4841), - [anon_sym_BSLASHtvolcite] = ACTIONS(4841), - [anon_sym_BSLASHTvolcite] = ACTIONS(4841), - [anon_sym_BSLASHavolcite] = ACTIONS(4841), - [anon_sym_BSLASHAvolcite] = ACTIONS(4841), - [anon_sym_BSLASHnotecite] = ACTIONS(4841), - [anon_sym_BSLASHNotecite] = ACTIONS(4841), - [anon_sym_BSLASHpnotecite] = ACTIONS(4841), - [anon_sym_BSLASHPnotecite] = ACTIONS(4841), - [anon_sym_BSLASHfnotecite] = ACTIONS(4841), - [anon_sym_BSLASHlabel] = ACTIONS(4841), - [anon_sym_BSLASHref] = ACTIONS(4841), - [anon_sym_BSLASHeqref] = ACTIONS(4841), - [anon_sym_BSLASHvref] = ACTIONS(4841), - [anon_sym_BSLASHVref] = ACTIONS(4841), - [anon_sym_BSLASHautoref] = ACTIONS(4841), - [anon_sym_BSLASHpageref] = ACTIONS(4841), - [anon_sym_BSLASHcref] = ACTIONS(4841), - [anon_sym_BSLASHCref] = ACTIONS(4841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnameCref] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHlabelcref] = ACTIONS(4841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCrefrange] = ACTIONS(4841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnewlabel] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), - [anon_sym_BSLASHdef] = ACTIONS(4841), - [anon_sym_BSLASHlet] = ACTIONS(4841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), - [anon_sym_BSLASHgls] = ACTIONS(4841), - [anon_sym_BSLASHGls] = ACTIONS(4841), - [anon_sym_BSLASHGLS] = ACTIONS(4841), - [anon_sym_BSLASHglspl] = ACTIONS(4841), - [anon_sym_BSLASHGlspl] = ACTIONS(4841), - [anon_sym_BSLASHGLSpl] = ACTIONS(4841), - [anon_sym_BSLASHglsdisp] = ACTIONS(4841), - [anon_sym_BSLASHglslink] = ACTIONS(4841), - [anon_sym_BSLASHglstext] = ACTIONS(4841), - [anon_sym_BSLASHGlstext] = ACTIONS(4841), - [anon_sym_BSLASHGLStext] = ACTIONS(4841), - [anon_sym_BSLASHglsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), - [anon_sym_BSLASHglsplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSplural] = ACTIONS(4841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHglsname] = ACTIONS(4841), - [anon_sym_BSLASHGlsname] = ACTIONS(4841), - [anon_sym_BSLASHGLSname] = ACTIONS(4841), - [anon_sym_BSLASHglssymbol] = ACTIONS(4841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), - [anon_sym_BSLASHglsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), - [anon_sym_BSLASHglsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), - [anon_sym_BSLASHglsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), - [anon_sym_BSLASHglsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), - [anon_sym_BSLASHglsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), - [anon_sym_BSLASHnewacronym] = ACTIONS(4841), - [anon_sym_BSLASHacrshort] = ACTIONS(4841), - [anon_sym_BSLASHAcrshort] = ACTIONS(4841), - [anon_sym_BSLASHACRshort] = ACTIONS(4841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), - [anon_sym_BSLASHacrlong] = ACTIONS(4841), - [anon_sym_BSLASHAcrlong] = ACTIONS(4841), - [anon_sym_BSLASHACRlong] = ACTIONS(4841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), - [anon_sym_BSLASHacrfull] = ACTIONS(4841), - [anon_sym_BSLASHAcrfull] = ACTIONS(4841), - [anon_sym_BSLASHACRfull] = ACTIONS(4841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), - [anon_sym_BSLASHacs] = ACTIONS(4841), - [anon_sym_BSLASHAcs] = ACTIONS(4841), - [anon_sym_BSLASHacsp] = ACTIONS(4841), - [anon_sym_BSLASHAcsp] = ACTIONS(4841), - [anon_sym_BSLASHacl] = ACTIONS(4841), - [anon_sym_BSLASHAcl] = ACTIONS(4841), - [anon_sym_BSLASHaclp] = ACTIONS(4841), - [anon_sym_BSLASHAclp] = ACTIONS(4841), - [anon_sym_BSLASHacf] = ACTIONS(4841), - [anon_sym_BSLASHAcf] = ACTIONS(4841), - [anon_sym_BSLASHacfp] = ACTIONS(4841), - [anon_sym_BSLASHAcfp] = ACTIONS(4841), - [anon_sym_BSLASHac] = ACTIONS(4841), - [anon_sym_BSLASHAc] = ACTIONS(4841), - [anon_sym_BSLASHacp] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), - [anon_sym_BSLASHcolor] = ACTIONS(4841), - [anon_sym_BSLASHcolorbox] = ACTIONS(4841), - [anon_sym_BSLASHtextcolor] = ACTIONS(4841), - [anon_sym_BSLASHpagecolor] = ACTIONS(4841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), - [anon_sym_BSLASHtext] = ACTIONS(4841), - [anon_sym_BSLASHintertext] = ACTIONS(4841), - [anon_sym_shortintertext] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4918), + [sym_word] = ACTIONS(4920), + [sym_placeholder] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym__] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4918), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4918), + [anon_sym_BSLASHbegin] = ACTIONS(4920), + [anon_sym_BSLASHusepackage] = ACTIONS(4920), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4920), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4920), + [anon_sym_BSLASHinclude] = ACTIONS(4920), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4920), + [anon_sym_BSLASHinput] = ACTIONS(4920), + [anon_sym_BSLASHsubfile] = ACTIONS(4920), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4920), + [anon_sym_BSLASHbibliography] = ACTIONS(4920), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4920), + [anon_sym_BSLASHincludesvg] = ACTIONS(4920), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4920), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4920), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4920), + [anon_sym_BSLASHimport] = ACTIONS(4920), + [anon_sym_BSLASHsubimport] = ACTIONS(4920), + [anon_sym_BSLASHinputfrom] = ACTIONS(4920), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4920), + [anon_sym_BSLASHincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHcaption] = ACTIONS(4920), + [anon_sym_BSLASHcite] = ACTIONS(4920), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCite] = ACTIONS(4920), + [anon_sym_BSLASHnocite] = ACTIONS(4920), + [anon_sym_BSLASHcitet] = ACTIONS(4920), + [anon_sym_BSLASHcitep] = ACTIONS(4920), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteauthor] = ACTIONS(4920), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4920), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitetitle] = ACTIONS(4920), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteyear] = ACTIONS(4920), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitedate] = ACTIONS(4920), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteurl] = ACTIONS(4920), + [anon_sym_BSLASHfullcite] = ACTIONS(4920), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4920), + [anon_sym_BSLASHcitealt] = ACTIONS(4920), + [anon_sym_BSLASHcitealp] = ACTIONS(4920), + [anon_sym_BSLASHcitetext] = ACTIONS(4920), + [anon_sym_BSLASHparencite] = ACTIONS(4920), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHParencite] = ACTIONS(4920), + [anon_sym_BSLASHfootcite] = ACTIONS(4920), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4920), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4920), + [anon_sym_BSLASHtextcite] = ACTIONS(4920), + [anon_sym_BSLASHTextcite] = ACTIONS(4920), + [anon_sym_BSLASHsmartcite] = ACTIONS(4920), + [anon_sym_BSLASHSmartcite] = ACTIONS(4920), + [anon_sym_BSLASHsupercite] = ACTIONS(4920), + [anon_sym_BSLASHautocite] = ACTIONS(4920), + [anon_sym_BSLASHAutocite] = ACTIONS(4920), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHvolcite] = ACTIONS(4920), + [anon_sym_BSLASHVolcite] = ACTIONS(4920), + [anon_sym_BSLASHpvolcite] = ACTIONS(4920), + [anon_sym_BSLASHPvolcite] = ACTIONS(4920), + [anon_sym_BSLASHfvolcite] = ACTIONS(4920), + [anon_sym_BSLASHftvolcite] = ACTIONS(4920), + [anon_sym_BSLASHsvolcite] = ACTIONS(4920), + [anon_sym_BSLASHSvolcite] = ACTIONS(4920), + [anon_sym_BSLASHtvolcite] = ACTIONS(4920), + [anon_sym_BSLASHTvolcite] = ACTIONS(4920), + [anon_sym_BSLASHavolcite] = ACTIONS(4920), + [anon_sym_BSLASHAvolcite] = ACTIONS(4920), + [anon_sym_BSLASHnotecite] = ACTIONS(4920), + [anon_sym_BSLASHNotecite] = ACTIONS(4920), + [anon_sym_BSLASHpnotecite] = ACTIONS(4920), + [anon_sym_BSLASHPnotecite] = ACTIONS(4920), + [anon_sym_BSLASHfnotecite] = ACTIONS(4920), + [anon_sym_BSLASHlabel] = ACTIONS(4920), + [anon_sym_BSLASHref] = ACTIONS(4920), + [anon_sym_BSLASHeqref] = ACTIONS(4920), + [anon_sym_BSLASHvref] = ACTIONS(4920), + [anon_sym_BSLASHVref] = ACTIONS(4920), + [anon_sym_BSLASHautoref] = ACTIONS(4920), + [anon_sym_BSLASHpageref] = ACTIONS(4920), + [anon_sym_BSLASHcref] = ACTIONS(4920), + [anon_sym_BSLASHCref] = ACTIONS(4920), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnameCref] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHlabelcref] = ACTIONS(4920), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCrefrange] = ACTIONS(4920), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnewlabel] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4920), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4920), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4920), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdef] = ACTIONS(4920), + [anon_sym_BSLASHlet] = ACTIONS(4920), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4920), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4920), + [anon_sym_BSLASHgls] = ACTIONS(4920), + [anon_sym_BSLASHGls] = ACTIONS(4920), + [anon_sym_BSLASHGLS] = ACTIONS(4920), + [anon_sym_BSLASHglspl] = ACTIONS(4920), + [anon_sym_BSLASHGlspl] = ACTIONS(4920), + [anon_sym_BSLASHGLSpl] = ACTIONS(4920), + [anon_sym_BSLASHglsdisp] = ACTIONS(4920), + [anon_sym_BSLASHglslink] = ACTIONS(4920), + [anon_sym_BSLASHglstext] = ACTIONS(4920), + [anon_sym_BSLASHGlstext] = ACTIONS(4920), + [anon_sym_BSLASHGLStext] = ACTIONS(4920), + [anon_sym_BSLASHglsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4920), + [anon_sym_BSLASHglsplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSplural] = ACTIONS(4920), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHglsname] = ACTIONS(4920), + [anon_sym_BSLASHGlsname] = ACTIONS(4920), + [anon_sym_BSLASHGLSname] = ACTIONS(4920), + [anon_sym_BSLASHglssymbol] = ACTIONS(4920), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4920), + [anon_sym_BSLASHglsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4920), + [anon_sym_BSLASHglsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4920), + [anon_sym_BSLASHglsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4920), + [anon_sym_BSLASHglsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4920), + [anon_sym_BSLASHglsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4920), + [anon_sym_BSLASHnewacronym] = ACTIONS(4920), + [anon_sym_BSLASHacrshort] = ACTIONS(4920), + [anon_sym_BSLASHAcrshort] = ACTIONS(4920), + [anon_sym_BSLASHACRshort] = ACTIONS(4920), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4920), + [anon_sym_BSLASHacrlong] = ACTIONS(4920), + [anon_sym_BSLASHAcrlong] = ACTIONS(4920), + [anon_sym_BSLASHACRlong] = ACTIONS(4920), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4920), + [anon_sym_BSLASHacrfull] = ACTIONS(4920), + [anon_sym_BSLASHAcrfull] = ACTIONS(4920), + [anon_sym_BSLASHACRfull] = ACTIONS(4920), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4920), + [anon_sym_BSLASHacs] = ACTIONS(4920), + [anon_sym_BSLASHAcs] = ACTIONS(4920), + [anon_sym_BSLASHacsp] = ACTIONS(4920), + [anon_sym_BSLASHAcsp] = ACTIONS(4920), + [anon_sym_BSLASHacl] = ACTIONS(4920), + [anon_sym_BSLASHAcl] = ACTIONS(4920), + [anon_sym_BSLASHaclp] = ACTIONS(4920), + [anon_sym_BSLASHAclp] = ACTIONS(4920), + [anon_sym_BSLASHacf] = ACTIONS(4920), + [anon_sym_BSLASHAcf] = ACTIONS(4920), + [anon_sym_BSLASHacfp] = ACTIONS(4920), + [anon_sym_BSLASHAcfp] = ACTIONS(4920), + [anon_sym_BSLASHac] = ACTIONS(4920), + [anon_sym_BSLASHAc] = ACTIONS(4920), + [anon_sym_BSLASHacp] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4920), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4920), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4920), + [anon_sym_BSLASHcolor] = ACTIONS(4920), + [anon_sym_BSLASHcolorbox] = ACTIONS(4920), + [anon_sym_BSLASHtextcolor] = ACTIONS(4920), + [anon_sym_BSLASHpagecolor] = ACTIONS(4920), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4920), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4920), + [anon_sym_BSLASHtext] = ACTIONS(4920), + [anon_sym_BSLASHintertext] = ACTIONS(4920), + [anon_sym_shortintertext] = ACTIONS(4920), }, [654] = { [sym_curly_group] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(4843), - [sym_command_name] = ACTIONS(4845), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4843), - [anon_sym_BSLASHpart] = ACTIONS(4845), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddpart] = ACTIONS(4845), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHchapter] = ACTIONS(4845), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddchap] = ACTIONS(4845), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsection] = ACTIONS(4845), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddsec] = ACTIONS(4845), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHparagraph] = ACTIONS(4845), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHitem] = ACTIONS(4845), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), + [ts_builtin_sym_end] = ACTIONS(4922), + [sym_command_name] = ACTIONS(4924), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_BSLASHpart] = ACTIONS(4924), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddpart] = ACTIONS(4924), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHchapter] = ACTIONS(4924), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddchap] = ACTIONS(4924), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsection] = ACTIONS(4924), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddsec] = ACTIONS(4924), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHparagraph] = ACTIONS(4924), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4924), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHitem] = ACTIONS(4924), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4922), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4843), - [sym_word] = ACTIONS(4845), - [sym_placeholder] = ACTIONS(4843), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4845), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_CARET] = ACTIONS(4845), - [anon_sym__] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_SQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), - [anon_sym_BSLASHbegin] = ACTIONS(4845), - [anon_sym_BSLASHusepackage] = ACTIONS(4845), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), - [anon_sym_BSLASHinclude] = ACTIONS(4845), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), - [anon_sym_BSLASHinput] = ACTIONS(4845), - [anon_sym_BSLASHsubfile] = ACTIONS(4845), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), - [anon_sym_BSLASHbibliography] = ACTIONS(4845), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), - [anon_sym_BSLASHincludesvg] = ACTIONS(4845), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), - [anon_sym_BSLASHimport] = ACTIONS(4845), - [anon_sym_BSLASHsubimport] = ACTIONS(4845), - [anon_sym_BSLASHinputfrom] = ACTIONS(4845), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), - [anon_sym_BSLASHincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHcaption] = ACTIONS(4845), - [anon_sym_BSLASHcite] = ACTIONS(4845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCite] = ACTIONS(4845), - [anon_sym_BSLASHnocite] = ACTIONS(4845), - [anon_sym_BSLASHcitet] = ACTIONS(4845), - [anon_sym_BSLASHcitep] = ACTIONS(4845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteauthor] = ACTIONS(4845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitetitle] = ACTIONS(4845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteyear] = ACTIONS(4845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitedate] = ACTIONS(4845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteurl] = ACTIONS(4845), - [anon_sym_BSLASHfullcite] = ACTIONS(4845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), - [anon_sym_BSLASHcitealt] = ACTIONS(4845), - [anon_sym_BSLASHcitealp] = ACTIONS(4845), - [anon_sym_BSLASHcitetext] = ACTIONS(4845), - [anon_sym_BSLASHparencite] = ACTIONS(4845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHParencite] = ACTIONS(4845), - [anon_sym_BSLASHfootcite] = ACTIONS(4845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), - [anon_sym_BSLASHtextcite] = ACTIONS(4845), - [anon_sym_BSLASHTextcite] = ACTIONS(4845), - [anon_sym_BSLASHsmartcite] = ACTIONS(4845), - [anon_sym_BSLASHSmartcite] = ACTIONS(4845), - [anon_sym_BSLASHsupercite] = ACTIONS(4845), - [anon_sym_BSLASHautocite] = ACTIONS(4845), - [anon_sym_BSLASHAutocite] = ACTIONS(4845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHvolcite] = ACTIONS(4845), - [anon_sym_BSLASHVolcite] = ACTIONS(4845), - [anon_sym_BSLASHpvolcite] = ACTIONS(4845), - [anon_sym_BSLASHPvolcite] = ACTIONS(4845), - [anon_sym_BSLASHfvolcite] = ACTIONS(4845), - [anon_sym_BSLASHftvolcite] = ACTIONS(4845), - [anon_sym_BSLASHsvolcite] = ACTIONS(4845), - [anon_sym_BSLASHSvolcite] = ACTIONS(4845), - [anon_sym_BSLASHtvolcite] = ACTIONS(4845), - [anon_sym_BSLASHTvolcite] = ACTIONS(4845), - [anon_sym_BSLASHavolcite] = ACTIONS(4845), - [anon_sym_BSLASHAvolcite] = ACTIONS(4845), - [anon_sym_BSLASHnotecite] = ACTIONS(4845), - [anon_sym_BSLASHNotecite] = ACTIONS(4845), - [anon_sym_BSLASHpnotecite] = ACTIONS(4845), - [anon_sym_BSLASHPnotecite] = ACTIONS(4845), - [anon_sym_BSLASHfnotecite] = ACTIONS(4845), - [anon_sym_BSLASHlabel] = ACTIONS(4845), - [anon_sym_BSLASHref] = ACTIONS(4845), - [anon_sym_BSLASHeqref] = ACTIONS(4845), - [anon_sym_BSLASHvref] = ACTIONS(4845), - [anon_sym_BSLASHVref] = ACTIONS(4845), - [anon_sym_BSLASHautoref] = ACTIONS(4845), - [anon_sym_BSLASHpageref] = ACTIONS(4845), - [anon_sym_BSLASHcref] = ACTIONS(4845), - [anon_sym_BSLASHCref] = ACTIONS(4845), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnameCref] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHlabelcref] = ACTIONS(4845), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCrefrange] = ACTIONS(4845), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnewlabel] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), - [anon_sym_BSLASHdef] = ACTIONS(4845), - [anon_sym_BSLASHlet] = ACTIONS(4845), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), - [anon_sym_BSLASHgls] = ACTIONS(4845), - [anon_sym_BSLASHGls] = ACTIONS(4845), - [anon_sym_BSLASHGLS] = ACTIONS(4845), - [anon_sym_BSLASHglspl] = ACTIONS(4845), - [anon_sym_BSLASHGlspl] = ACTIONS(4845), - [anon_sym_BSLASHGLSpl] = ACTIONS(4845), - [anon_sym_BSLASHglsdisp] = ACTIONS(4845), - [anon_sym_BSLASHglslink] = ACTIONS(4845), - [anon_sym_BSLASHglstext] = ACTIONS(4845), - [anon_sym_BSLASHGlstext] = ACTIONS(4845), - [anon_sym_BSLASHGLStext] = ACTIONS(4845), - [anon_sym_BSLASHglsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), - [anon_sym_BSLASHglsplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSplural] = ACTIONS(4845), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHglsname] = ACTIONS(4845), - [anon_sym_BSLASHGlsname] = ACTIONS(4845), - [anon_sym_BSLASHGLSname] = ACTIONS(4845), - [anon_sym_BSLASHglssymbol] = ACTIONS(4845), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), - [anon_sym_BSLASHglsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), - [anon_sym_BSLASHglsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), - [anon_sym_BSLASHglsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), - [anon_sym_BSLASHglsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), - [anon_sym_BSLASHglsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), - [anon_sym_BSLASHnewacronym] = ACTIONS(4845), - [anon_sym_BSLASHacrshort] = ACTIONS(4845), - [anon_sym_BSLASHAcrshort] = ACTIONS(4845), - [anon_sym_BSLASHACRshort] = ACTIONS(4845), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), - [anon_sym_BSLASHacrlong] = ACTIONS(4845), - [anon_sym_BSLASHAcrlong] = ACTIONS(4845), - [anon_sym_BSLASHACRlong] = ACTIONS(4845), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), - [anon_sym_BSLASHacrfull] = ACTIONS(4845), - [anon_sym_BSLASHAcrfull] = ACTIONS(4845), - [anon_sym_BSLASHACRfull] = ACTIONS(4845), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), - [anon_sym_BSLASHacs] = ACTIONS(4845), - [anon_sym_BSLASHAcs] = ACTIONS(4845), - [anon_sym_BSLASHacsp] = ACTIONS(4845), - [anon_sym_BSLASHAcsp] = ACTIONS(4845), - [anon_sym_BSLASHacl] = ACTIONS(4845), - [anon_sym_BSLASHAcl] = ACTIONS(4845), - [anon_sym_BSLASHaclp] = ACTIONS(4845), - [anon_sym_BSLASHAclp] = ACTIONS(4845), - [anon_sym_BSLASHacf] = ACTIONS(4845), - [anon_sym_BSLASHAcf] = ACTIONS(4845), - [anon_sym_BSLASHacfp] = ACTIONS(4845), - [anon_sym_BSLASHAcfp] = ACTIONS(4845), - [anon_sym_BSLASHac] = ACTIONS(4845), - [anon_sym_BSLASHAc] = ACTIONS(4845), - [anon_sym_BSLASHacp] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), - [anon_sym_BSLASHcolor] = ACTIONS(4845), - [anon_sym_BSLASHcolorbox] = ACTIONS(4845), - [anon_sym_BSLASHtextcolor] = ACTIONS(4845), - [anon_sym_BSLASHpagecolor] = ACTIONS(4845), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), - [anon_sym_BSLASHtext] = ACTIONS(4845), - [anon_sym_BSLASHintertext] = ACTIONS(4845), - [anon_sym_shortintertext] = ACTIONS(4845), + [anon_sym_RBRACE] = ACTIONS(4922), + [sym_word] = ACTIONS(4924), + [sym_placeholder] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym__] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4922), + [anon_sym_BSLASHbegin] = ACTIONS(4924), + [anon_sym_BSLASHusepackage] = ACTIONS(4924), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4924), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4924), + [anon_sym_BSLASHinclude] = ACTIONS(4924), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4924), + [anon_sym_BSLASHinput] = ACTIONS(4924), + [anon_sym_BSLASHsubfile] = ACTIONS(4924), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4924), + [anon_sym_BSLASHbibliography] = ACTIONS(4924), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4924), + [anon_sym_BSLASHincludesvg] = ACTIONS(4924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4924), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4924), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4924), + [anon_sym_BSLASHimport] = ACTIONS(4924), + [anon_sym_BSLASHsubimport] = ACTIONS(4924), + [anon_sym_BSLASHinputfrom] = ACTIONS(4924), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4924), + [anon_sym_BSLASHincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHcaption] = ACTIONS(4924), + [anon_sym_BSLASHcite] = ACTIONS(4924), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCite] = ACTIONS(4924), + [anon_sym_BSLASHnocite] = ACTIONS(4924), + [anon_sym_BSLASHcitet] = ACTIONS(4924), + [anon_sym_BSLASHcitep] = ACTIONS(4924), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteauthor] = ACTIONS(4924), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4924), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitetitle] = ACTIONS(4924), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteyear] = ACTIONS(4924), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitedate] = ACTIONS(4924), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteurl] = ACTIONS(4924), + [anon_sym_BSLASHfullcite] = ACTIONS(4924), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4924), + [anon_sym_BSLASHcitealt] = ACTIONS(4924), + [anon_sym_BSLASHcitealp] = ACTIONS(4924), + [anon_sym_BSLASHcitetext] = ACTIONS(4924), + [anon_sym_BSLASHparencite] = ACTIONS(4924), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHParencite] = ACTIONS(4924), + [anon_sym_BSLASHfootcite] = ACTIONS(4924), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4924), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4924), + [anon_sym_BSLASHtextcite] = ACTIONS(4924), + [anon_sym_BSLASHTextcite] = ACTIONS(4924), + [anon_sym_BSLASHsmartcite] = ACTIONS(4924), + [anon_sym_BSLASHSmartcite] = ACTIONS(4924), + [anon_sym_BSLASHsupercite] = ACTIONS(4924), + [anon_sym_BSLASHautocite] = ACTIONS(4924), + [anon_sym_BSLASHAutocite] = ACTIONS(4924), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHvolcite] = ACTIONS(4924), + [anon_sym_BSLASHVolcite] = ACTIONS(4924), + [anon_sym_BSLASHpvolcite] = ACTIONS(4924), + [anon_sym_BSLASHPvolcite] = ACTIONS(4924), + [anon_sym_BSLASHfvolcite] = ACTIONS(4924), + [anon_sym_BSLASHftvolcite] = ACTIONS(4924), + [anon_sym_BSLASHsvolcite] = ACTIONS(4924), + [anon_sym_BSLASHSvolcite] = ACTIONS(4924), + [anon_sym_BSLASHtvolcite] = ACTIONS(4924), + [anon_sym_BSLASHTvolcite] = ACTIONS(4924), + [anon_sym_BSLASHavolcite] = ACTIONS(4924), + [anon_sym_BSLASHAvolcite] = ACTIONS(4924), + [anon_sym_BSLASHnotecite] = ACTIONS(4924), + [anon_sym_BSLASHNotecite] = ACTIONS(4924), + [anon_sym_BSLASHpnotecite] = ACTIONS(4924), + [anon_sym_BSLASHPnotecite] = ACTIONS(4924), + [anon_sym_BSLASHfnotecite] = ACTIONS(4924), + [anon_sym_BSLASHlabel] = ACTIONS(4924), + [anon_sym_BSLASHref] = ACTIONS(4924), + [anon_sym_BSLASHeqref] = ACTIONS(4924), + [anon_sym_BSLASHvref] = ACTIONS(4924), + [anon_sym_BSLASHVref] = ACTIONS(4924), + [anon_sym_BSLASHautoref] = ACTIONS(4924), + [anon_sym_BSLASHpageref] = ACTIONS(4924), + [anon_sym_BSLASHcref] = ACTIONS(4924), + [anon_sym_BSLASHCref] = ACTIONS(4924), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnameCref] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHlabelcref] = ACTIONS(4924), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCrefrange] = ACTIONS(4924), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnewlabel] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4924), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4924), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4924), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdef] = ACTIONS(4924), + [anon_sym_BSLASHlet] = ACTIONS(4924), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4924), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4924), + [anon_sym_BSLASHgls] = ACTIONS(4924), + [anon_sym_BSLASHGls] = ACTIONS(4924), + [anon_sym_BSLASHGLS] = ACTIONS(4924), + [anon_sym_BSLASHglspl] = ACTIONS(4924), + [anon_sym_BSLASHGlspl] = ACTIONS(4924), + [anon_sym_BSLASHGLSpl] = ACTIONS(4924), + [anon_sym_BSLASHglsdisp] = ACTIONS(4924), + [anon_sym_BSLASHglslink] = ACTIONS(4924), + [anon_sym_BSLASHglstext] = ACTIONS(4924), + [anon_sym_BSLASHGlstext] = ACTIONS(4924), + [anon_sym_BSLASHGLStext] = ACTIONS(4924), + [anon_sym_BSLASHglsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4924), + [anon_sym_BSLASHglsplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSplural] = ACTIONS(4924), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHglsname] = ACTIONS(4924), + [anon_sym_BSLASHGlsname] = ACTIONS(4924), + [anon_sym_BSLASHGLSname] = ACTIONS(4924), + [anon_sym_BSLASHglssymbol] = ACTIONS(4924), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4924), + [anon_sym_BSLASHglsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4924), + [anon_sym_BSLASHglsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4924), + [anon_sym_BSLASHglsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4924), + [anon_sym_BSLASHglsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4924), + [anon_sym_BSLASHglsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4924), + [anon_sym_BSLASHnewacronym] = ACTIONS(4924), + [anon_sym_BSLASHacrshort] = ACTIONS(4924), + [anon_sym_BSLASHAcrshort] = ACTIONS(4924), + [anon_sym_BSLASHACRshort] = ACTIONS(4924), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4924), + [anon_sym_BSLASHacrlong] = ACTIONS(4924), + [anon_sym_BSLASHAcrlong] = ACTIONS(4924), + [anon_sym_BSLASHACRlong] = ACTIONS(4924), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4924), + [anon_sym_BSLASHacrfull] = ACTIONS(4924), + [anon_sym_BSLASHAcrfull] = ACTIONS(4924), + [anon_sym_BSLASHACRfull] = ACTIONS(4924), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4924), + [anon_sym_BSLASHacs] = ACTIONS(4924), + [anon_sym_BSLASHAcs] = ACTIONS(4924), + [anon_sym_BSLASHacsp] = ACTIONS(4924), + [anon_sym_BSLASHAcsp] = ACTIONS(4924), + [anon_sym_BSLASHacl] = ACTIONS(4924), + [anon_sym_BSLASHAcl] = ACTIONS(4924), + [anon_sym_BSLASHaclp] = ACTIONS(4924), + [anon_sym_BSLASHAclp] = ACTIONS(4924), + [anon_sym_BSLASHacf] = ACTIONS(4924), + [anon_sym_BSLASHAcf] = ACTIONS(4924), + [anon_sym_BSLASHacfp] = ACTIONS(4924), + [anon_sym_BSLASHAcfp] = ACTIONS(4924), + [anon_sym_BSLASHac] = ACTIONS(4924), + [anon_sym_BSLASHAc] = ACTIONS(4924), + [anon_sym_BSLASHacp] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4924), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4924), + [anon_sym_BSLASHcolor] = ACTIONS(4924), + [anon_sym_BSLASHcolorbox] = ACTIONS(4924), + [anon_sym_BSLASHtextcolor] = ACTIONS(4924), + [anon_sym_BSLASHpagecolor] = ACTIONS(4924), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4924), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4924), + [anon_sym_BSLASHtext] = ACTIONS(4924), + [anon_sym_BSLASHintertext] = ACTIONS(4924), + [anon_sym_shortintertext] = ACTIONS(4924), }, [655] = { [sym_curly_group] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(4847), - [sym_command_name] = ACTIONS(4849), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_BSLASHpart] = ACTIONS(4849), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddpart] = ACTIONS(4849), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHchapter] = ACTIONS(4849), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddchap] = ACTIONS(4849), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsection] = ACTIONS(4849), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddsec] = ACTIONS(4849), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHparagraph] = ACTIONS(4849), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHitem] = ACTIONS(4849), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), + [ts_builtin_sym_end] = ACTIONS(4926), + [sym_command_name] = ACTIONS(4928), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_BSLASHpart] = ACTIONS(4928), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddpart] = ACTIONS(4928), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHchapter] = ACTIONS(4928), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddchap] = ACTIONS(4928), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsection] = ACTIONS(4928), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddsec] = ACTIONS(4928), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHparagraph] = ACTIONS(4928), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4928), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHitem] = ACTIONS(4928), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4926), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4847), - [sym_word] = ACTIONS(4849), - [sym_placeholder] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4849), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4849), - [anon_sym__] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4849), - [anon_sym_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), - [anon_sym_DOLLAR] = ACTIONS(4849), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), - [anon_sym_BSLASHbegin] = ACTIONS(4849), - [anon_sym_BSLASHusepackage] = ACTIONS(4849), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), - [anon_sym_BSLASHinclude] = ACTIONS(4849), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), - [anon_sym_BSLASHinput] = ACTIONS(4849), - [anon_sym_BSLASHsubfile] = ACTIONS(4849), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), - [anon_sym_BSLASHbibliography] = ACTIONS(4849), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4849), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), - [anon_sym_BSLASHimport] = ACTIONS(4849), - [anon_sym_BSLASHsubimport] = ACTIONS(4849), - [anon_sym_BSLASHinputfrom] = ACTIONS(4849), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), - [anon_sym_BSLASHincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHcaption] = ACTIONS(4849), - [anon_sym_BSLASHcite] = ACTIONS(4849), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCite] = ACTIONS(4849), - [anon_sym_BSLASHnocite] = ACTIONS(4849), - [anon_sym_BSLASHcitet] = ACTIONS(4849), - [anon_sym_BSLASHcitep] = ACTIONS(4849), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteauthor] = ACTIONS(4849), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitetitle] = ACTIONS(4849), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteyear] = ACTIONS(4849), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitedate] = ACTIONS(4849), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteurl] = ACTIONS(4849), - [anon_sym_BSLASHfullcite] = ACTIONS(4849), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), - [anon_sym_BSLASHcitealt] = ACTIONS(4849), - [anon_sym_BSLASHcitealp] = ACTIONS(4849), - [anon_sym_BSLASHcitetext] = ACTIONS(4849), - [anon_sym_BSLASHparencite] = ACTIONS(4849), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHParencite] = ACTIONS(4849), - [anon_sym_BSLASHfootcite] = ACTIONS(4849), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), - [anon_sym_BSLASHtextcite] = ACTIONS(4849), - [anon_sym_BSLASHTextcite] = ACTIONS(4849), - [anon_sym_BSLASHsmartcite] = ACTIONS(4849), - [anon_sym_BSLASHSmartcite] = ACTIONS(4849), - [anon_sym_BSLASHsupercite] = ACTIONS(4849), - [anon_sym_BSLASHautocite] = ACTIONS(4849), - [anon_sym_BSLASHAutocite] = ACTIONS(4849), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHvolcite] = ACTIONS(4849), - [anon_sym_BSLASHVolcite] = ACTIONS(4849), - [anon_sym_BSLASHpvolcite] = ACTIONS(4849), - [anon_sym_BSLASHPvolcite] = ACTIONS(4849), - [anon_sym_BSLASHfvolcite] = ACTIONS(4849), - [anon_sym_BSLASHftvolcite] = ACTIONS(4849), - [anon_sym_BSLASHsvolcite] = ACTIONS(4849), - [anon_sym_BSLASHSvolcite] = ACTIONS(4849), - [anon_sym_BSLASHtvolcite] = ACTIONS(4849), - [anon_sym_BSLASHTvolcite] = ACTIONS(4849), - [anon_sym_BSLASHavolcite] = ACTIONS(4849), - [anon_sym_BSLASHAvolcite] = ACTIONS(4849), - [anon_sym_BSLASHnotecite] = ACTIONS(4849), - [anon_sym_BSLASHNotecite] = ACTIONS(4849), - [anon_sym_BSLASHpnotecite] = ACTIONS(4849), - [anon_sym_BSLASHPnotecite] = ACTIONS(4849), - [anon_sym_BSLASHfnotecite] = ACTIONS(4849), - [anon_sym_BSLASHlabel] = ACTIONS(4849), - [anon_sym_BSLASHref] = ACTIONS(4849), - [anon_sym_BSLASHeqref] = ACTIONS(4849), - [anon_sym_BSLASHvref] = ACTIONS(4849), - [anon_sym_BSLASHVref] = ACTIONS(4849), - [anon_sym_BSLASHautoref] = ACTIONS(4849), - [anon_sym_BSLASHpageref] = ACTIONS(4849), - [anon_sym_BSLASHcref] = ACTIONS(4849), - [anon_sym_BSLASHCref] = ACTIONS(4849), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnameCref] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHlabelcref] = ACTIONS(4849), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCrefrange] = ACTIONS(4849), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnewlabel] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), - [anon_sym_BSLASHdef] = ACTIONS(4849), - [anon_sym_BSLASHlet] = ACTIONS(4849), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), - [anon_sym_BSLASHgls] = ACTIONS(4849), - [anon_sym_BSLASHGls] = ACTIONS(4849), - [anon_sym_BSLASHGLS] = ACTIONS(4849), - [anon_sym_BSLASHglspl] = ACTIONS(4849), - [anon_sym_BSLASHGlspl] = ACTIONS(4849), - [anon_sym_BSLASHGLSpl] = ACTIONS(4849), - [anon_sym_BSLASHglsdisp] = ACTIONS(4849), - [anon_sym_BSLASHglslink] = ACTIONS(4849), - [anon_sym_BSLASHglstext] = ACTIONS(4849), - [anon_sym_BSLASHGlstext] = ACTIONS(4849), - [anon_sym_BSLASHGLStext] = ACTIONS(4849), - [anon_sym_BSLASHglsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), - [anon_sym_BSLASHglsplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSplural] = ACTIONS(4849), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHglsname] = ACTIONS(4849), - [anon_sym_BSLASHGlsname] = ACTIONS(4849), - [anon_sym_BSLASHGLSname] = ACTIONS(4849), - [anon_sym_BSLASHglssymbol] = ACTIONS(4849), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), - [anon_sym_BSLASHglsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), - [anon_sym_BSLASHglsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), - [anon_sym_BSLASHglsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), - [anon_sym_BSLASHglsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), - [anon_sym_BSLASHglsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), - [anon_sym_BSLASHnewacronym] = ACTIONS(4849), - [anon_sym_BSLASHacrshort] = ACTIONS(4849), - [anon_sym_BSLASHAcrshort] = ACTIONS(4849), - [anon_sym_BSLASHACRshort] = ACTIONS(4849), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), - [anon_sym_BSLASHacrlong] = ACTIONS(4849), - [anon_sym_BSLASHAcrlong] = ACTIONS(4849), - [anon_sym_BSLASHACRlong] = ACTIONS(4849), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), - [anon_sym_BSLASHacrfull] = ACTIONS(4849), - [anon_sym_BSLASHAcrfull] = ACTIONS(4849), - [anon_sym_BSLASHACRfull] = ACTIONS(4849), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), - [anon_sym_BSLASHacs] = ACTIONS(4849), - [anon_sym_BSLASHAcs] = ACTIONS(4849), - [anon_sym_BSLASHacsp] = ACTIONS(4849), - [anon_sym_BSLASHAcsp] = ACTIONS(4849), - [anon_sym_BSLASHacl] = ACTIONS(4849), - [anon_sym_BSLASHAcl] = ACTIONS(4849), - [anon_sym_BSLASHaclp] = ACTIONS(4849), - [anon_sym_BSLASHAclp] = ACTIONS(4849), - [anon_sym_BSLASHacf] = ACTIONS(4849), - [anon_sym_BSLASHAcf] = ACTIONS(4849), - [anon_sym_BSLASHacfp] = ACTIONS(4849), - [anon_sym_BSLASHAcfp] = ACTIONS(4849), - [anon_sym_BSLASHac] = ACTIONS(4849), - [anon_sym_BSLASHAc] = ACTIONS(4849), - [anon_sym_BSLASHacp] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), - [anon_sym_BSLASHcolor] = ACTIONS(4849), - [anon_sym_BSLASHcolorbox] = ACTIONS(4849), - [anon_sym_BSLASHtextcolor] = ACTIONS(4849), - [anon_sym_BSLASHpagecolor] = ACTIONS(4849), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), - [anon_sym_BSLASHtext] = ACTIONS(4849), - [anon_sym_BSLASHintertext] = ACTIONS(4849), - [anon_sym_shortintertext] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4926), + [sym_word] = ACTIONS(4928), + [sym_placeholder] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym__] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4926), + [anon_sym_BSLASHbegin] = ACTIONS(4928), + [anon_sym_BSLASHusepackage] = ACTIONS(4928), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4928), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4928), + [anon_sym_BSLASHinclude] = ACTIONS(4928), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4928), + [anon_sym_BSLASHinput] = ACTIONS(4928), + [anon_sym_BSLASHsubfile] = ACTIONS(4928), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4928), + [anon_sym_BSLASHbibliography] = ACTIONS(4928), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4928), + [anon_sym_BSLASHincludesvg] = ACTIONS(4928), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4928), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4928), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4928), + [anon_sym_BSLASHimport] = ACTIONS(4928), + [anon_sym_BSLASHsubimport] = ACTIONS(4928), + [anon_sym_BSLASHinputfrom] = ACTIONS(4928), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4928), + [anon_sym_BSLASHincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHcaption] = ACTIONS(4928), + [anon_sym_BSLASHcite] = ACTIONS(4928), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCite] = ACTIONS(4928), + [anon_sym_BSLASHnocite] = ACTIONS(4928), + [anon_sym_BSLASHcitet] = ACTIONS(4928), + [anon_sym_BSLASHcitep] = ACTIONS(4928), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteauthor] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitetitle] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteyear] = ACTIONS(4928), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitedate] = ACTIONS(4928), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteurl] = ACTIONS(4928), + [anon_sym_BSLASHfullcite] = ACTIONS(4928), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4928), + [anon_sym_BSLASHcitealt] = ACTIONS(4928), + [anon_sym_BSLASHcitealp] = ACTIONS(4928), + [anon_sym_BSLASHcitetext] = ACTIONS(4928), + [anon_sym_BSLASHparencite] = ACTIONS(4928), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHParencite] = ACTIONS(4928), + [anon_sym_BSLASHfootcite] = ACTIONS(4928), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4928), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4928), + [anon_sym_BSLASHtextcite] = ACTIONS(4928), + [anon_sym_BSLASHTextcite] = ACTIONS(4928), + [anon_sym_BSLASHsmartcite] = ACTIONS(4928), + [anon_sym_BSLASHSmartcite] = ACTIONS(4928), + [anon_sym_BSLASHsupercite] = ACTIONS(4928), + [anon_sym_BSLASHautocite] = ACTIONS(4928), + [anon_sym_BSLASHAutocite] = ACTIONS(4928), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHvolcite] = ACTIONS(4928), + [anon_sym_BSLASHVolcite] = ACTIONS(4928), + [anon_sym_BSLASHpvolcite] = ACTIONS(4928), + [anon_sym_BSLASHPvolcite] = ACTIONS(4928), + [anon_sym_BSLASHfvolcite] = ACTIONS(4928), + [anon_sym_BSLASHftvolcite] = ACTIONS(4928), + [anon_sym_BSLASHsvolcite] = ACTIONS(4928), + [anon_sym_BSLASHSvolcite] = ACTIONS(4928), + [anon_sym_BSLASHtvolcite] = ACTIONS(4928), + [anon_sym_BSLASHTvolcite] = ACTIONS(4928), + [anon_sym_BSLASHavolcite] = ACTIONS(4928), + [anon_sym_BSLASHAvolcite] = ACTIONS(4928), + [anon_sym_BSLASHnotecite] = ACTIONS(4928), + [anon_sym_BSLASHNotecite] = ACTIONS(4928), + [anon_sym_BSLASHpnotecite] = ACTIONS(4928), + [anon_sym_BSLASHPnotecite] = ACTIONS(4928), + [anon_sym_BSLASHfnotecite] = ACTIONS(4928), + [anon_sym_BSLASHlabel] = ACTIONS(4928), + [anon_sym_BSLASHref] = ACTIONS(4928), + [anon_sym_BSLASHeqref] = ACTIONS(4928), + [anon_sym_BSLASHvref] = ACTIONS(4928), + [anon_sym_BSLASHVref] = ACTIONS(4928), + [anon_sym_BSLASHautoref] = ACTIONS(4928), + [anon_sym_BSLASHpageref] = ACTIONS(4928), + [anon_sym_BSLASHcref] = ACTIONS(4928), + [anon_sym_BSLASHCref] = ACTIONS(4928), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnameCref] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHlabelcref] = ACTIONS(4928), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCrefrange] = ACTIONS(4928), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnewlabel] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4928), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4928), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4928), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdef] = ACTIONS(4928), + [anon_sym_BSLASHlet] = ACTIONS(4928), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4928), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4928), + [anon_sym_BSLASHgls] = ACTIONS(4928), + [anon_sym_BSLASHGls] = ACTIONS(4928), + [anon_sym_BSLASHGLS] = ACTIONS(4928), + [anon_sym_BSLASHglspl] = ACTIONS(4928), + [anon_sym_BSLASHGlspl] = ACTIONS(4928), + [anon_sym_BSLASHGLSpl] = ACTIONS(4928), + [anon_sym_BSLASHglsdisp] = ACTIONS(4928), + [anon_sym_BSLASHglslink] = ACTIONS(4928), + [anon_sym_BSLASHglstext] = ACTIONS(4928), + [anon_sym_BSLASHGlstext] = ACTIONS(4928), + [anon_sym_BSLASHGLStext] = ACTIONS(4928), + [anon_sym_BSLASHglsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4928), + [anon_sym_BSLASHglsplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSplural] = ACTIONS(4928), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHglsname] = ACTIONS(4928), + [anon_sym_BSLASHGlsname] = ACTIONS(4928), + [anon_sym_BSLASHGLSname] = ACTIONS(4928), + [anon_sym_BSLASHglssymbol] = ACTIONS(4928), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4928), + [anon_sym_BSLASHglsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4928), + [anon_sym_BSLASHglsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4928), + [anon_sym_BSLASHglsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4928), + [anon_sym_BSLASHglsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4928), + [anon_sym_BSLASHglsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4928), + [anon_sym_BSLASHnewacronym] = ACTIONS(4928), + [anon_sym_BSLASHacrshort] = ACTIONS(4928), + [anon_sym_BSLASHAcrshort] = ACTIONS(4928), + [anon_sym_BSLASHACRshort] = ACTIONS(4928), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4928), + [anon_sym_BSLASHacrlong] = ACTIONS(4928), + [anon_sym_BSLASHAcrlong] = ACTIONS(4928), + [anon_sym_BSLASHACRlong] = ACTIONS(4928), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4928), + [anon_sym_BSLASHacrfull] = ACTIONS(4928), + [anon_sym_BSLASHAcrfull] = ACTIONS(4928), + [anon_sym_BSLASHACRfull] = ACTIONS(4928), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4928), + [anon_sym_BSLASHacs] = ACTIONS(4928), + [anon_sym_BSLASHAcs] = ACTIONS(4928), + [anon_sym_BSLASHacsp] = ACTIONS(4928), + [anon_sym_BSLASHAcsp] = ACTIONS(4928), + [anon_sym_BSLASHacl] = ACTIONS(4928), + [anon_sym_BSLASHAcl] = ACTIONS(4928), + [anon_sym_BSLASHaclp] = ACTIONS(4928), + [anon_sym_BSLASHAclp] = ACTIONS(4928), + [anon_sym_BSLASHacf] = ACTIONS(4928), + [anon_sym_BSLASHAcf] = ACTIONS(4928), + [anon_sym_BSLASHacfp] = ACTIONS(4928), + [anon_sym_BSLASHAcfp] = ACTIONS(4928), + [anon_sym_BSLASHac] = ACTIONS(4928), + [anon_sym_BSLASHAc] = ACTIONS(4928), + [anon_sym_BSLASHacp] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4928), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4928), + [anon_sym_BSLASHcolor] = ACTIONS(4928), + [anon_sym_BSLASHcolorbox] = ACTIONS(4928), + [anon_sym_BSLASHtextcolor] = ACTIONS(4928), + [anon_sym_BSLASHpagecolor] = ACTIONS(4928), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4928), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4928), + [anon_sym_BSLASHtext] = ACTIONS(4928), + [anon_sym_BSLASHintertext] = ACTIONS(4928), + [anon_sym_shortintertext] = ACTIONS(4928), }, [656] = { [sym_brack_group_text] = STATE(731), - [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(4693), - [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(4851), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4853), - [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), + [ts_builtin_sym_end] = ACTIONS(4930), + [sym_command_name] = ACTIONS(4932), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_BSLASHpart] = ACTIONS(4932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddpart] = ACTIONS(4932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHchapter] = ACTIONS(4932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddchap] = ACTIONS(4932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsection] = ACTIONS(4932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddsec] = ACTIONS(4932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHparagraph] = ACTIONS(4932), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4932), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHitem] = ACTIONS(4932), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [sym_word] = ACTIONS(4932), + [sym_placeholder] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym__] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4930), + [anon_sym_BSLASHbegin] = ACTIONS(4932), + [anon_sym_BSLASHusepackage] = ACTIONS(4932), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4932), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4932), + [anon_sym_BSLASHinclude] = ACTIONS(4932), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4932), + [anon_sym_BSLASHinput] = ACTIONS(4932), + [anon_sym_BSLASHsubfile] = ACTIONS(4932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4932), + [anon_sym_BSLASHbibliography] = ACTIONS(4932), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4932), + [anon_sym_BSLASHincludesvg] = ACTIONS(4932), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4932), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4932), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4932), + [anon_sym_BSLASHimport] = ACTIONS(4932), + [anon_sym_BSLASHsubimport] = ACTIONS(4932), + [anon_sym_BSLASHinputfrom] = ACTIONS(4932), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4932), + [anon_sym_BSLASHincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHcaption] = ACTIONS(4932), + [anon_sym_BSLASHcite] = ACTIONS(4932), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCite] = ACTIONS(4932), + [anon_sym_BSLASHnocite] = ACTIONS(4932), + [anon_sym_BSLASHcitet] = ACTIONS(4932), + [anon_sym_BSLASHcitep] = ACTIONS(4932), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteauthor] = ACTIONS(4932), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4932), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitetitle] = ACTIONS(4932), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteyear] = ACTIONS(4932), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitedate] = ACTIONS(4932), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteurl] = ACTIONS(4932), + [anon_sym_BSLASHfullcite] = ACTIONS(4932), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4932), + [anon_sym_BSLASHcitealt] = ACTIONS(4932), + [anon_sym_BSLASHcitealp] = ACTIONS(4932), + [anon_sym_BSLASHcitetext] = ACTIONS(4932), + [anon_sym_BSLASHparencite] = ACTIONS(4932), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHParencite] = ACTIONS(4932), + [anon_sym_BSLASHfootcite] = ACTIONS(4932), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4932), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4932), + [anon_sym_BSLASHtextcite] = ACTIONS(4932), + [anon_sym_BSLASHTextcite] = ACTIONS(4932), + [anon_sym_BSLASHsmartcite] = ACTIONS(4932), + [anon_sym_BSLASHSmartcite] = ACTIONS(4932), + [anon_sym_BSLASHsupercite] = ACTIONS(4932), + [anon_sym_BSLASHautocite] = ACTIONS(4932), + [anon_sym_BSLASHAutocite] = ACTIONS(4932), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHvolcite] = ACTIONS(4932), + [anon_sym_BSLASHVolcite] = ACTIONS(4932), + [anon_sym_BSLASHpvolcite] = ACTIONS(4932), + [anon_sym_BSLASHPvolcite] = ACTIONS(4932), + [anon_sym_BSLASHfvolcite] = ACTIONS(4932), + [anon_sym_BSLASHftvolcite] = ACTIONS(4932), + [anon_sym_BSLASHsvolcite] = ACTIONS(4932), + [anon_sym_BSLASHSvolcite] = ACTIONS(4932), + [anon_sym_BSLASHtvolcite] = ACTIONS(4932), + [anon_sym_BSLASHTvolcite] = ACTIONS(4932), + [anon_sym_BSLASHavolcite] = ACTIONS(4932), + [anon_sym_BSLASHAvolcite] = ACTIONS(4932), + [anon_sym_BSLASHnotecite] = ACTIONS(4932), + [anon_sym_BSLASHNotecite] = ACTIONS(4932), + [anon_sym_BSLASHpnotecite] = ACTIONS(4932), + [anon_sym_BSLASHPnotecite] = ACTIONS(4932), + [anon_sym_BSLASHfnotecite] = ACTIONS(4932), + [anon_sym_BSLASHlabel] = ACTIONS(4932), + [anon_sym_BSLASHref] = ACTIONS(4932), + [anon_sym_BSLASHeqref] = ACTIONS(4932), + [anon_sym_BSLASHvref] = ACTIONS(4932), + [anon_sym_BSLASHVref] = ACTIONS(4932), + [anon_sym_BSLASHautoref] = ACTIONS(4932), + [anon_sym_BSLASHpageref] = ACTIONS(4932), + [anon_sym_BSLASHcref] = ACTIONS(4932), + [anon_sym_BSLASHCref] = ACTIONS(4932), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnameCref] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHlabelcref] = ACTIONS(4932), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCrefrange] = ACTIONS(4932), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnewlabel] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4932), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4932), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4932), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdef] = ACTIONS(4932), + [anon_sym_BSLASHlet] = ACTIONS(4932), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4932), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4932), + [anon_sym_BSLASHgls] = ACTIONS(4932), + [anon_sym_BSLASHGls] = ACTIONS(4932), + [anon_sym_BSLASHGLS] = ACTIONS(4932), + [anon_sym_BSLASHglspl] = ACTIONS(4932), + [anon_sym_BSLASHGlspl] = ACTIONS(4932), + [anon_sym_BSLASHGLSpl] = ACTIONS(4932), + [anon_sym_BSLASHglsdisp] = ACTIONS(4932), + [anon_sym_BSLASHglslink] = ACTIONS(4932), + [anon_sym_BSLASHglstext] = ACTIONS(4932), + [anon_sym_BSLASHGlstext] = ACTIONS(4932), + [anon_sym_BSLASHGLStext] = ACTIONS(4932), + [anon_sym_BSLASHglsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4932), + [anon_sym_BSLASHglsplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSplural] = ACTIONS(4932), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHglsname] = ACTIONS(4932), + [anon_sym_BSLASHGlsname] = ACTIONS(4932), + [anon_sym_BSLASHGLSname] = ACTIONS(4932), + [anon_sym_BSLASHglssymbol] = ACTIONS(4932), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4932), + [anon_sym_BSLASHglsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4932), + [anon_sym_BSLASHglsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4932), + [anon_sym_BSLASHglsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4932), + [anon_sym_BSLASHglsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4932), + [anon_sym_BSLASHglsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4932), + [anon_sym_BSLASHnewacronym] = ACTIONS(4932), + [anon_sym_BSLASHacrshort] = ACTIONS(4932), + [anon_sym_BSLASHAcrshort] = ACTIONS(4932), + [anon_sym_BSLASHACRshort] = ACTIONS(4932), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4932), + [anon_sym_BSLASHacrlong] = ACTIONS(4932), + [anon_sym_BSLASHAcrlong] = ACTIONS(4932), + [anon_sym_BSLASHACRlong] = ACTIONS(4932), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4932), + [anon_sym_BSLASHacrfull] = ACTIONS(4932), + [anon_sym_BSLASHAcrfull] = ACTIONS(4932), + [anon_sym_BSLASHACRfull] = ACTIONS(4932), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4932), + [anon_sym_BSLASHacs] = ACTIONS(4932), + [anon_sym_BSLASHAcs] = ACTIONS(4932), + [anon_sym_BSLASHacsp] = ACTIONS(4932), + [anon_sym_BSLASHAcsp] = ACTIONS(4932), + [anon_sym_BSLASHacl] = ACTIONS(4932), + [anon_sym_BSLASHAcl] = ACTIONS(4932), + [anon_sym_BSLASHaclp] = ACTIONS(4932), + [anon_sym_BSLASHAclp] = ACTIONS(4932), + [anon_sym_BSLASHacf] = ACTIONS(4932), + [anon_sym_BSLASHAcf] = ACTIONS(4932), + [anon_sym_BSLASHacfp] = ACTIONS(4932), + [anon_sym_BSLASHAcfp] = ACTIONS(4932), + [anon_sym_BSLASHac] = ACTIONS(4932), + [anon_sym_BSLASHAc] = ACTIONS(4932), + [anon_sym_BSLASHacp] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4932), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4932), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4932), + [anon_sym_BSLASHcolor] = ACTIONS(4932), + [anon_sym_BSLASHcolorbox] = ACTIONS(4932), + [anon_sym_BSLASHtextcolor] = ACTIONS(4932), + [anon_sym_BSLASHpagecolor] = ACTIONS(4932), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4932), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4932), + [anon_sym_BSLASHtext] = ACTIONS(4932), + [anon_sym_BSLASHintertext] = ACTIONS(4932), + [anon_sym_shortintertext] = ACTIONS(4932), }, [657] = { [sym_brack_group_text] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(4855), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_BSLASHpart] = ACTIONS(4857), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddpart] = ACTIONS(4857), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHchapter] = ACTIONS(4857), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddchap] = ACTIONS(4857), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsection] = ACTIONS(4857), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddsec] = ACTIONS(4857), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHparagraph] = ACTIONS(4857), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHitem] = ACTIONS(4857), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [anon_sym_RBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASHbegin] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [ts_builtin_sym_end] = ACTIONS(4934), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BSLASHpart] = ACTIONS(4936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddpart] = ACTIONS(4936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHchapter] = ACTIONS(4936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddchap] = ACTIONS(4936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsection] = ACTIONS(4936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddsec] = ACTIONS(4936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHparagraph] = ACTIONS(4936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHitem] = ACTIONS(4936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASHbegin] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [658] = { [sym_curly_group] = STATE(742), [sym_brack_group_text] = STATE(1979), - [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(4693), - [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(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(223), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_BSLASHpart] = ACTIONS(4770), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddpart] = ACTIONS(4770), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHchapter] = ACTIONS(4770), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddchap] = ACTIONS(4770), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsection] = ACTIONS(4770), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddsec] = ACTIONS(4770), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHparagraph] = ACTIONS(4770), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4770), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHitem] = ACTIONS(4770), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASHbegin] = ACTIONS(4770), + [anon_sym_BSLASHend] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [659] = { [sym_curly_group] = STATE(817), [sym_brack_group_text] = STATE(1805), - [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(4693), - [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(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(559), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_BSLASHpart] = ACTIONS(4770), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddpart] = ACTIONS(4770), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHchapter] = ACTIONS(4770), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddchap] = ACTIONS(4770), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsection] = ACTIONS(4770), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddsec] = ACTIONS(4770), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHparagraph] = ACTIONS(4770), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4770), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHitem] = ACTIONS(4770), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASHbegin] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [660] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_BSLASHpart] = ACTIONS(4753), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddpart] = ACTIONS(4753), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHchapter] = ACTIONS(4753), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddchap] = ACTIONS(4753), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsection] = ACTIONS(4753), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddsec] = ACTIONS(4753), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHparagraph] = ACTIONS(4753), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHitem] = ACTIONS(4753), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASHbegin] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(4861), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_BSLASHpart] = ACTIONS(4832), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddpart] = ACTIONS(4832), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHchapter] = ACTIONS(4832), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddchap] = ACTIONS(4832), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsection] = ACTIONS(4832), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddsec] = ACTIONS(4832), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHparagraph] = ACTIONS(4832), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4832), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHitem] = ACTIONS(4832), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASHbegin] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(4940), }, [661] = { - [ts_builtin_sym_end] = ACTIONS(4863), - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_BSLASHpart] = ACTIONS(4865), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddpart] = ACTIONS(4865), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHchapter] = ACTIONS(4865), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddchap] = ACTIONS(4865), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsection] = ACTIONS(4865), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddsec] = ACTIONS(4865), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHparagraph] = ACTIONS(4865), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHitem] = ACTIONS(4865), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASHbegin] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [ts_builtin_sym_end] = ACTIONS(4942), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_BSLASHpart] = ACTIONS(4944), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddpart] = ACTIONS(4944), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHchapter] = ACTIONS(4944), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddchap] = ACTIONS(4944), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsection] = ACTIONS(4944), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddsec] = ACTIONS(4944), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHparagraph] = ACTIONS(4944), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4944), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHitem] = ACTIONS(4944), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASHbegin] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [662] = { [sym_curly_group] = STATE(674), [sym_brack_group_text] = STATE(1870), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_BSLASHpart] = ACTIONS(4817), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddpart] = ACTIONS(4817), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHchapter] = ACTIONS(4817), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddchap] = ACTIONS(4817), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsection] = ACTIONS(4817), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddsec] = ACTIONS(4817), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHparagraph] = ACTIONS(4817), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHitem] = ACTIONS(4817), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4815), - [anon_sym_BSLASHbegin] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_BSLASHpart] = ACTIONS(4896), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddpart] = ACTIONS(4896), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHchapter] = ACTIONS(4896), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddchap] = ACTIONS(4896), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsection] = ACTIONS(4896), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddsec] = ACTIONS(4896), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHparagraph] = ACTIONS(4896), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4896), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHitem] = ACTIONS(4896), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4894), + [anon_sym_BSLASHbegin] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [663] = { [sym_curly_group] = STATE(702), [sym_brack_group_text] = STATE(2118), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_BSLASHpart] = ACTIONS(4817), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddpart] = ACTIONS(4817), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHchapter] = ACTIONS(4817), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddchap] = ACTIONS(4817), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsection] = ACTIONS(4817), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddsec] = ACTIONS(4817), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHparagraph] = ACTIONS(4817), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHitem] = ACTIONS(4817), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASHbegin] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_BSLASHpart] = ACTIONS(4896), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddpart] = ACTIONS(4896), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHchapter] = ACTIONS(4896), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddchap] = ACTIONS(4896), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsection] = ACTIONS(4896), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddsec] = ACTIONS(4896), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHparagraph] = ACTIONS(4896), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4896), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHitem] = ACTIONS(4896), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASHbegin] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [664] = { [sym_curly_group] = STATE(685), [sym_brack_group_text] = STATE(2090), - [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(4693), - [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(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(789), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_BSLASHpart] = ACTIONS(4770), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddpart] = ACTIONS(4770), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHchapter] = ACTIONS(4770), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddchap] = ACTIONS(4770), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsection] = ACTIONS(4770), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddsec] = ACTIONS(4770), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHparagraph] = ACTIONS(4770), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4770), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHitem] = ACTIONS(4770), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASHbegin] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [665] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_BSLASHpart] = ACTIONS(4753), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddpart] = ACTIONS(4753), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHchapter] = ACTIONS(4753), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddchap] = ACTIONS(4753), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsection] = ACTIONS(4753), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddsec] = ACTIONS(4753), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHparagraph] = ACTIONS(4753), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHitem] = ACTIONS(4753), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASHbegin] = ACTIONS(4753), - [anon_sym_BSLASHend] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(4871), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_BSLASHpart] = ACTIONS(4832), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddpart] = ACTIONS(4832), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHchapter] = ACTIONS(4832), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddchap] = ACTIONS(4832), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsection] = ACTIONS(4832), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddsec] = ACTIONS(4832), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHparagraph] = ACTIONS(4832), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4832), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHitem] = ACTIONS(4832), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASHbegin] = ACTIONS(4832), + [anon_sym_BSLASHend] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(4950), }, [666] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_BSLASHpart] = ACTIONS(4753), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddpart] = ACTIONS(4753), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), - [anon_sym_BSLASHchapter] = ACTIONS(4753), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddchap] = ACTIONS(4753), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsection] = ACTIONS(4753), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHaddsec] = ACTIONS(4753), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), - [anon_sym_BSLASHparagraph] = ACTIONS(4753), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), - [anon_sym_BSLASHitem] = ACTIONS(4753), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASHbegin] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(4875), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_BSLASHpart] = ACTIONS(4832), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddpart] = ACTIONS(4832), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4830), + [anon_sym_BSLASHchapter] = ACTIONS(4832), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddchap] = ACTIONS(4832), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsection] = ACTIONS(4832), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHaddsec] = ACTIONS(4832), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4832), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4830), + [anon_sym_BSLASHparagraph] = ACTIONS(4832), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4832), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4830), + [anon_sym_BSLASHitem] = ACTIONS(4832), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASHbegin] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(4954), }, [667] = { [sym_brack_group_text] = STATE(794), - [ts_builtin_sym_end] = ACTIONS(4877), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_BSLASHpart] = ACTIONS(4879), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddpart] = ACTIONS(4879), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHchapter] = ACTIONS(4879), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddchap] = ACTIONS(4879), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsection] = ACTIONS(4879), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddsec] = ACTIONS(4879), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHparagraph] = ACTIONS(4879), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHitem] = ACTIONS(4879), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASHbegin] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [ts_builtin_sym_end] = ACTIONS(4956), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_BSLASHpart] = ACTIONS(4958), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddpart] = ACTIONS(4958), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHchapter] = ACTIONS(4958), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddchap] = ACTIONS(4958), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsection] = ACTIONS(4958), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddsec] = ACTIONS(4958), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHparagraph] = ACTIONS(4958), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4958), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHitem] = ACTIONS(4958), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASHbegin] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [668] = { [sym_curly_group] = STATE(687), [sym_brack_group_text] = STATE(1884), - [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(4693), - [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(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(683), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_BSLASHpart] = ACTIONS(4770), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddpart] = ACTIONS(4770), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4768), + [anon_sym_BSLASHchapter] = ACTIONS(4770), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddchap] = ACTIONS(4770), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsection] = ACTIONS(4770), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHaddsec] = ACTIONS(4770), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4770), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4768), + [anon_sym_BSLASHparagraph] = ACTIONS(4770), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4770), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4768), + [anon_sym_BSLASHitem] = ACTIONS(4770), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4768), + [anon_sym_BSLASHbegin] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [669] = { [sym_curly_group] = STATE(773), [sym_brack_group_text] = STATE(1845), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_BSLASHpart] = ACTIONS(4817), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddpart] = ACTIONS(4817), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), - [anon_sym_BSLASHchapter] = ACTIONS(4817), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddchap] = ACTIONS(4817), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsection] = ACTIONS(4817), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHaddsec] = ACTIONS(4817), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), - [anon_sym_BSLASHparagraph] = ACTIONS(4817), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), - [anon_sym_BSLASHitem] = ACTIONS(4817), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASHbegin] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_BSLASHpart] = ACTIONS(4896), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddpart] = ACTIONS(4896), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4894), + [anon_sym_BSLASHchapter] = ACTIONS(4896), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddchap] = ACTIONS(4896), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsection] = ACTIONS(4896), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHaddsec] = ACTIONS(4896), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4896), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4894), + [anon_sym_BSLASHparagraph] = ACTIONS(4896), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4896), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4894), + [anon_sym_BSLASHitem] = ACTIONS(4896), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASHbegin] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [670] = { - [ts_builtin_sym_end] = ACTIONS(4881), - [sym_command_name] = ACTIONS(4883), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_RBRACK] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_BSLASHpart] = ACTIONS(4883), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddpart] = ACTIONS(4883), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHchapter] = ACTIONS(4883), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddchap] = ACTIONS(4883), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsection] = ACTIONS(4883), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddsec] = ACTIONS(4883), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHparagraph] = ACTIONS(4883), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHitem] = ACTIONS(4883), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4881), - [sym_word] = ACTIONS(4883), - [sym_placeholder] = ACTIONS(4881), - [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(4881), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), - [anon_sym_BSLASHbegin] = ACTIONS(4883), - [anon_sym_BSLASHusepackage] = ACTIONS(4883), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), - [anon_sym_BSLASHinclude] = ACTIONS(4883), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), - [anon_sym_BSLASHinput] = ACTIONS(4883), - [anon_sym_BSLASHsubfile] = ACTIONS(4883), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), - [anon_sym_BSLASHbibliography] = ACTIONS(4883), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), - [anon_sym_BSLASHincludesvg] = ACTIONS(4883), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), - [anon_sym_BSLASHimport] = ACTIONS(4883), - [anon_sym_BSLASHsubimport] = ACTIONS(4883), - [anon_sym_BSLASHinputfrom] = ACTIONS(4883), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), - [anon_sym_BSLASHincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHcaption] = ACTIONS(4883), - [anon_sym_BSLASHcite] = ACTIONS(4883), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCite] = ACTIONS(4883), - [anon_sym_BSLASHnocite] = ACTIONS(4883), - [anon_sym_BSLASHcitet] = ACTIONS(4883), - [anon_sym_BSLASHcitep] = ACTIONS(4883), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteauthor] = ACTIONS(4883), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitetitle] = ACTIONS(4883), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteyear] = ACTIONS(4883), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitedate] = ACTIONS(4883), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteurl] = ACTIONS(4883), - [anon_sym_BSLASHfullcite] = ACTIONS(4883), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), - [anon_sym_BSLASHcitealt] = ACTIONS(4883), - [anon_sym_BSLASHcitealp] = ACTIONS(4883), - [anon_sym_BSLASHcitetext] = ACTIONS(4883), - [anon_sym_BSLASHparencite] = ACTIONS(4883), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHParencite] = ACTIONS(4883), - [anon_sym_BSLASHfootcite] = ACTIONS(4883), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), - [anon_sym_BSLASHtextcite] = ACTIONS(4883), - [anon_sym_BSLASHTextcite] = ACTIONS(4883), - [anon_sym_BSLASHsmartcite] = ACTIONS(4883), - [anon_sym_BSLASHSmartcite] = ACTIONS(4883), - [anon_sym_BSLASHsupercite] = ACTIONS(4883), - [anon_sym_BSLASHautocite] = ACTIONS(4883), - [anon_sym_BSLASHAutocite] = ACTIONS(4883), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHvolcite] = ACTIONS(4883), - [anon_sym_BSLASHVolcite] = ACTIONS(4883), - [anon_sym_BSLASHpvolcite] = ACTIONS(4883), - [anon_sym_BSLASHPvolcite] = ACTIONS(4883), - [anon_sym_BSLASHfvolcite] = ACTIONS(4883), - [anon_sym_BSLASHftvolcite] = ACTIONS(4883), - [anon_sym_BSLASHsvolcite] = ACTIONS(4883), - [anon_sym_BSLASHSvolcite] = ACTIONS(4883), - [anon_sym_BSLASHtvolcite] = ACTIONS(4883), - [anon_sym_BSLASHTvolcite] = ACTIONS(4883), - [anon_sym_BSLASHavolcite] = ACTIONS(4883), - [anon_sym_BSLASHAvolcite] = ACTIONS(4883), - [anon_sym_BSLASHnotecite] = ACTIONS(4883), - [anon_sym_BSLASHNotecite] = ACTIONS(4883), - [anon_sym_BSLASHpnotecite] = ACTIONS(4883), - [anon_sym_BSLASHPnotecite] = ACTIONS(4883), - [anon_sym_BSLASHfnotecite] = ACTIONS(4883), - [anon_sym_BSLASHlabel] = ACTIONS(4883), - [anon_sym_BSLASHref] = ACTIONS(4883), - [anon_sym_BSLASHeqref] = ACTIONS(4883), - [anon_sym_BSLASHvref] = ACTIONS(4883), - [anon_sym_BSLASHVref] = ACTIONS(4883), - [anon_sym_BSLASHautoref] = ACTIONS(4883), - [anon_sym_BSLASHpageref] = ACTIONS(4883), - [anon_sym_BSLASHcref] = ACTIONS(4883), - [anon_sym_BSLASHCref] = ACTIONS(4883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnameCref] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHlabelcref] = ACTIONS(4883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCrefrange] = ACTIONS(4883), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnewlabel] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), - [anon_sym_BSLASHdef] = ACTIONS(4883), - [anon_sym_BSLASHlet] = ACTIONS(4883), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), - [anon_sym_BSLASHgls] = ACTIONS(4883), - [anon_sym_BSLASHGls] = ACTIONS(4883), - [anon_sym_BSLASHGLS] = ACTIONS(4883), - [anon_sym_BSLASHglspl] = ACTIONS(4883), - [anon_sym_BSLASHGlspl] = ACTIONS(4883), - [anon_sym_BSLASHGLSpl] = ACTIONS(4883), - [anon_sym_BSLASHglsdisp] = ACTIONS(4883), - [anon_sym_BSLASHglslink] = ACTIONS(4883), - [anon_sym_BSLASHglstext] = ACTIONS(4883), - [anon_sym_BSLASHGlstext] = ACTIONS(4883), - [anon_sym_BSLASHGLStext] = ACTIONS(4883), - [anon_sym_BSLASHglsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), - [anon_sym_BSLASHglsplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSplural] = ACTIONS(4883), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHglsname] = ACTIONS(4883), - [anon_sym_BSLASHGlsname] = ACTIONS(4883), - [anon_sym_BSLASHGLSname] = ACTIONS(4883), - [anon_sym_BSLASHglssymbol] = ACTIONS(4883), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), - [anon_sym_BSLASHglsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), - [anon_sym_BSLASHglsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), - [anon_sym_BSLASHglsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), - [anon_sym_BSLASHglsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), - [anon_sym_BSLASHglsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), - [anon_sym_BSLASHnewacronym] = ACTIONS(4883), - [anon_sym_BSLASHacrshort] = ACTIONS(4883), - [anon_sym_BSLASHAcrshort] = ACTIONS(4883), - [anon_sym_BSLASHACRshort] = ACTIONS(4883), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), - [anon_sym_BSLASHacrlong] = ACTIONS(4883), - [anon_sym_BSLASHAcrlong] = ACTIONS(4883), - [anon_sym_BSLASHACRlong] = ACTIONS(4883), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), - [anon_sym_BSLASHacrfull] = ACTIONS(4883), - [anon_sym_BSLASHAcrfull] = ACTIONS(4883), - [anon_sym_BSLASHACRfull] = ACTIONS(4883), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), - [anon_sym_BSLASHacs] = ACTIONS(4883), - [anon_sym_BSLASHAcs] = ACTIONS(4883), - [anon_sym_BSLASHacsp] = ACTIONS(4883), - [anon_sym_BSLASHAcsp] = ACTIONS(4883), - [anon_sym_BSLASHacl] = ACTIONS(4883), - [anon_sym_BSLASHAcl] = ACTIONS(4883), - [anon_sym_BSLASHaclp] = ACTIONS(4883), - [anon_sym_BSLASHAclp] = ACTIONS(4883), - [anon_sym_BSLASHacf] = ACTIONS(4883), - [anon_sym_BSLASHAcf] = ACTIONS(4883), - [anon_sym_BSLASHacfp] = ACTIONS(4883), - [anon_sym_BSLASHAcfp] = ACTIONS(4883), - [anon_sym_BSLASHac] = ACTIONS(4883), - [anon_sym_BSLASHAc] = ACTIONS(4883), - [anon_sym_BSLASHacp] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), - [anon_sym_BSLASHcolor] = ACTIONS(4883), - [anon_sym_BSLASHcolorbox] = ACTIONS(4883), - [anon_sym_BSLASHtextcolor] = ACTIONS(4883), - [anon_sym_BSLASHpagecolor] = ACTIONS(4883), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), - [anon_sym_BSLASHtext] = ACTIONS(4883), - [anon_sym_BSLASHintertext] = ACTIONS(4883), - [anon_sym_shortintertext] = ACTIONS(4883), + [ts_builtin_sym_end] = ACTIONS(4960), + [sym_command_name] = ACTIONS(4962), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_BSLASHpart] = ACTIONS(4962), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddpart] = ACTIONS(4962), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHchapter] = ACTIONS(4962), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddchap] = ACTIONS(4962), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsection] = ACTIONS(4962), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddsec] = ACTIONS(4962), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHparagraph] = ACTIONS(4962), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4962), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHitem] = ACTIONS(4962), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [sym_word] = ACTIONS(4962), + [sym_placeholder] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4960), + [anon_sym_BSLASHbegin] = ACTIONS(4962), + [anon_sym_BSLASHusepackage] = ACTIONS(4962), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4962), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4962), + [anon_sym_BSLASHinclude] = ACTIONS(4962), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4962), + [anon_sym_BSLASHinput] = ACTIONS(4962), + [anon_sym_BSLASHsubfile] = ACTIONS(4962), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4962), + [anon_sym_BSLASHbibliography] = ACTIONS(4962), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4962), + [anon_sym_BSLASHincludesvg] = ACTIONS(4962), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4962), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4962), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4962), + [anon_sym_BSLASHimport] = ACTIONS(4962), + [anon_sym_BSLASHsubimport] = ACTIONS(4962), + [anon_sym_BSLASHinputfrom] = ACTIONS(4962), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4962), + [anon_sym_BSLASHincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHcaption] = ACTIONS(4962), + [anon_sym_BSLASHcite] = ACTIONS(4962), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCite] = ACTIONS(4962), + [anon_sym_BSLASHnocite] = ACTIONS(4962), + [anon_sym_BSLASHcitet] = ACTIONS(4962), + [anon_sym_BSLASHcitep] = ACTIONS(4962), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteauthor] = ACTIONS(4962), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4962), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitetitle] = ACTIONS(4962), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteyear] = ACTIONS(4962), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitedate] = ACTIONS(4962), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteurl] = ACTIONS(4962), + [anon_sym_BSLASHfullcite] = ACTIONS(4962), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4962), + [anon_sym_BSLASHcitealt] = ACTIONS(4962), + [anon_sym_BSLASHcitealp] = ACTIONS(4962), + [anon_sym_BSLASHcitetext] = ACTIONS(4962), + [anon_sym_BSLASHparencite] = ACTIONS(4962), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHParencite] = ACTIONS(4962), + [anon_sym_BSLASHfootcite] = ACTIONS(4962), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4962), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4962), + [anon_sym_BSLASHtextcite] = ACTIONS(4962), + [anon_sym_BSLASHTextcite] = ACTIONS(4962), + [anon_sym_BSLASHsmartcite] = ACTIONS(4962), + [anon_sym_BSLASHSmartcite] = ACTIONS(4962), + [anon_sym_BSLASHsupercite] = ACTIONS(4962), + [anon_sym_BSLASHautocite] = ACTIONS(4962), + [anon_sym_BSLASHAutocite] = ACTIONS(4962), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHvolcite] = ACTIONS(4962), + [anon_sym_BSLASHVolcite] = ACTIONS(4962), + [anon_sym_BSLASHpvolcite] = ACTIONS(4962), + [anon_sym_BSLASHPvolcite] = ACTIONS(4962), + [anon_sym_BSLASHfvolcite] = ACTIONS(4962), + [anon_sym_BSLASHftvolcite] = ACTIONS(4962), + [anon_sym_BSLASHsvolcite] = ACTIONS(4962), + [anon_sym_BSLASHSvolcite] = ACTIONS(4962), + [anon_sym_BSLASHtvolcite] = ACTIONS(4962), + [anon_sym_BSLASHTvolcite] = ACTIONS(4962), + [anon_sym_BSLASHavolcite] = ACTIONS(4962), + [anon_sym_BSLASHAvolcite] = ACTIONS(4962), + [anon_sym_BSLASHnotecite] = ACTIONS(4962), + [anon_sym_BSLASHNotecite] = ACTIONS(4962), + [anon_sym_BSLASHpnotecite] = ACTIONS(4962), + [anon_sym_BSLASHPnotecite] = ACTIONS(4962), + [anon_sym_BSLASHfnotecite] = ACTIONS(4962), + [anon_sym_BSLASHlabel] = ACTIONS(4962), + [anon_sym_BSLASHref] = ACTIONS(4962), + [anon_sym_BSLASHeqref] = ACTIONS(4962), + [anon_sym_BSLASHvref] = ACTIONS(4962), + [anon_sym_BSLASHVref] = ACTIONS(4962), + [anon_sym_BSLASHautoref] = ACTIONS(4962), + [anon_sym_BSLASHpageref] = ACTIONS(4962), + [anon_sym_BSLASHcref] = ACTIONS(4962), + [anon_sym_BSLASHCref] = ACTIONS(4962), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnameCref] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHlabelcref] = ACTIONS(4962), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCrefrange] = ACTIONS(4962), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnewlabel] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4962), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4962), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4962), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdef] = ACTIONS(4962), + [anon_sym_BSLASHlet] = ACTIONS(4962), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4962), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4962), + [anon_sym_BSLASHgls] = ACTIONS(4962), + [anon_sym_BSLASHGls] = ACTIONS(4962), + [anon_sym_BSLASHGLS] = ACTIONS(4962), + [anon_sym_BSLASHglspl] = ACTIONS(4962), + [anon_sym_BSLASHGlspl] = ACTIONS(4962), + [anon_sym_BSLASHGLSpl] = ACTIONS(4962), + [anon_sym_BSLASHglsdisp] = ACTIONS(4962), + [anon_sym_BSLASHglslink] = ACTIONS(4962), + [anon_sym_BSLASHglstext] = ACTIONS(4962), + [anon_sym_BSLASHGlstext] = ACTIONS(4962), + [anon_sym_BSLASHGLStext] = ACTIONS(4962), + [anon_sym_BSLASHglsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4962), + [anon_sym_BSLASHglsplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSplural] = ACTIONS(4962), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHglsname] = ACTIONS(4962), + [anon_sym_BSLASHGlsname] = ACTIONS(4962), + [anon_sym_BSLASHGLSname] = ACTIONS(4962), + [anon_sym_BSLASHglssymbol] = ACTIONS(4962), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4962), + [anon_sym_BSLASHglsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4962), + [anon_sym_BSLASHglsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4962), + [anon_sym_BSLASHglsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4962), + [anon_sym_BSLASHglsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4962), + [anon_sym_BSLASHglsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4962), + [anon_sym_BSLASHnewacronym] = ACTIONS(4962), + [anon_sym_BSLASHacrshort] = ACTIONS(4962), + [anon_sym_BSLASHAcrshort] = ACTIONS(4962), + [anon_sym_BSLASHACRshort] = ACTIONS(4962), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4962), + [anon_sym_BSLASHacrlong] = ACTIONS(4962), + [anon_sym_BSLASHAcrlong] = ACTIONS(4962), + [anon_sym_BSLASHACRlong] = ACTIONS(4962), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4962), + [anon_sym_BSLASHacrfull] = ACTIONS(4962), + [anon_sym_BSLASHAcrfull] = ACTIONS(4962), + [anon_sym_BSLASHACRfull] = ACTIONS(4962), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4962), + [anon_sym_BSLASHacs] = ACTIONS(4962), + [anon_sym_BSLASHAcs] = ACTIONS(4962), + [anon_sym_BSLASHacsp] = ACTIONS(4962), + [anon_sym_BSLASHAcsp] = ACTIONS(4962), + [anon_sym_BSLASHacl] = ACTIONS(4962), + [anon_sym_BSLASHAcl] = ACTIONS(4962), + [anon_sym_BSLASHaclp] = ACTIONS(4962), + [anon_sym_BSLASHAclp] = ACTIONS(4962), + [anon_sym_BSLASHacf] = ACTIONS(4962), + [anon_sym_BSLASHAcf] = ACTIONS(4962), + [anon_sym_BSLASHacfp] = ACTIONS(4962), + [anon_sym_BSLASHAcfp] = ACTIONS(4962), + [anon_sym_BSLASHac] = ACTIONS(4962), + [anon_sym_BSLASHAc] = ACTIONS(4962), + [anon_sym_BSLASHacp] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4962), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4962), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4962), + [anon_sym_BSLASHcolor] = ACTIONS(4962), + [anon_sym_BSLASHcolorbox] = ACTIONS(4962), + [anon_sym_BSLASHtextcolor] = ACTIONS(4962), + [anon_sym_BSLASHpagecolor] = ACTIONS(4962), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4962), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4962), + [anon_sym_BSLASHtext] = ACTIONS(4962), + [anon_sym_BSLASHintertext] = ACTIONS(4962), + [anon_sym_shortintertext] = ACTIONS(4962), }, [671] = { - [ts_builtin_sym_end] = ACTIONS(4885), - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_BSLASHpart] = ACTIONS(4887), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddpart] = ACTIONS(4887), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHchapter] = ACTIONS(4887), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddchap] = ACTIONS(4887), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsection] = ACTIONS(4887), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddsec] = ACTIONS(4887), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHparagraph] = ACTIONS(4887), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHitem] = ACTIONS(4887), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASHbegin] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [ts_builtin_sym_end] = ACTIONS(4964), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BSLASHpart] = ACTIONS(4966), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddpart] = ACTIONS(4966), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHchapter] = ACTIONS(4966), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddchap] = ACTIONS(4966), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsection] = ACTIONS(4966), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddsec] = ACTIONS(4966), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHparagraph] = ACTIONS(4966), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4966), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHitem] = ACTIONS(4966), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASHbegin] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [672] = { [sym_curly_group] = STATE(965), - [sym_command_name] = ACTIONS(4825), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_BSLASHpart] = ACTIONS(4825), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddpart] = ACTIONS(4825), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHchapter] = ACTIONS(4825), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddchap] = ACTIONS(4825), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsection] = ACTIONS(4825), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddsec] = ACTIONS(4825), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHparagraph] = ACTIONS(4825), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHitem] = ACTIONS(4825), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4825), - [sym_placeholder] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym__] = ACTIONS(4825), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4825), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), - [anon_sym_BSLASHbegin] = ACTIONS(4825), - [anon_sym_BSLASHusepackage] = ACTIONS(4825), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), - [anon_sym_BSLASHinclude] = ACTIONS(4825), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), - [anon_sym_BSLASHinput] = ACTIONS(4825), - [anon_sym_BSLASHsubfile] = ACTIONS(4825), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), - [anon_sym_BSLASHbibliography] = ACTIONS(4825), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), - [anon_sym_BSLASHincludesvg] = ACTIONS(4825), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), - [anon_sym_BSLASHimport] = ACTIONS(4825), - [anon_sym_BSLASHsubimport] = ACTIONS(4825), - [anon_sym_BSLASHinputfrom] = ACTIONS(4825), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), - [anon_sym_BSLASHincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHcaption] = ACTIONS(4825), - [anon_sym_BSLASHcite] = ACTIONS(4825), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCite] = ACTIONS(4825), - [anon_sym_BSLASHnocite] = ACTIONS(4825), - [anon_sym_BSLASHcitet] = ACTIONS(4825), - [anon_sym_BSLASHcitep] = ACTIONS(4825), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteauthor] = ACTIONS(4825), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitetitle] = ACTIONS(4825), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteyear] = ACTIONS(4825), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitedate] = ACTIONS(4825), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteurl] = ACTIONS(4825), - [anon_sym_BSLASHfullcite] = ACTIONS(4825), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), - [anon_sym_BSLASHcitealt] = ACTIONS(4825), - [anon_sym_BSLASHcitealp] = ACTIONS(4825), - [anon_sym_BSLASHcitetext] = ACTIONS(4825), - [anon_sym_BSLASHparencite] = ACTIONS(4825), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHParencite] = ACTIONS(4825), - [anon_sym_BSLASHfootcite] = ACTIONS(4825), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), - [anon_sym_BSLASHtextcite] = ACTIONS(4825), - [anon_sym_BSLASHTextcite] = ACTIONS(4825), - [anon_sym_BSLASHsmartcite] = ACTIONS(4825), - [anon_sym_BSLASHSmartcite] = ACTIONS(4825), - [anon_sym_BSLASHsupercite] = ACTIONS(4825), - [anon_sym_BSLASHautocite] = ACTIONS(4825), - [anon_sym_BSLASHAutocite] = ACTIONS(4825), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHvolcite] = ACTIONS(4825), - [anon_sym_BSLASHVolcite] = ACTIONS(4825), - [anon_sym_BSLASHpvolcite] = ACTIONS(4825), - [anon_sym_BSLASHPvolcite] = ACTIONS(4825), - [anon_sym_BSLASHfvolcite] = ACTIONS(4825), - [anon_sym_BSLASHftvolcite] = ACTIONS(4825), - [anon_sym_BSLASHsvolcite] = ACTIONS(4825), - [anon_sym_BSLASHSvolcite] = ACTIONS(4825), - [anon_sym_BSLASHtvolcite] = ACTIONS(4825), - [anon_sym_BSLASHTvolcite] = ACTIONS(4825), - [anon_sym_BSLASHavolcite] = ACTIONS(4825), - [anon_sym_BSLASHAvolcite] = ACTIONS(4825), - [anon_sym_BSLASHnotecite] = ACTIONS(4825), - [anon_sym_BSLASHNotecite] = ACTIONS(4825), - [anon_sym_BSLASHpnotecite] = ACTIONS(4825), - [anon_sym_BSLASHPnotecite] = ACTIONS(4825), - [anon_sym_BSLASHfnotecite] = ACTIONS(4825), - [anon_sym_BSLASHlabel] = ACTIONS(4825), - [anon_sym_BSLASHref] = ACTIONS(4825), - [anon_sym_BSLASHeqref] = ACTIONS(4825), - [anon_sym_BSLASHvref] = ACTIONS(4825), - [anon_sym_BSLASHVref] = ACTIONS(4825), - [anon_sym_BSLASHautoref] = ACTIONS(4825), - [anon_sym_BSLASHpageref] = ACTIONS(4825), - [anon_sym_BSLASHcref] = ACTIONS(4825), - [anon_sym_BSLASHCref] = ACTIONS(4825), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnameCref] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHlabelcref] = ACTIONS(4825), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCrefrange] = ACTIONS(4825), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnewlabel] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), - [anon_sym_BSLASHdef] = ACTIONS(4825), - [anon_sym_BSLASHlet] = ACTIONS(4825), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), - [anon_sym_BSLASHgls] = ACTIONS(4825), - [anon_sym_BSLASHGls] = ACTIONS(4825), - [anon_sym_BSLASHGLS] = ACTIONS(4825), - [anon_sym_BSLASHglspl] = ACTIONS(4825), - [anon_sym_BSLASHGlspl] = ACTIONS(4825), - [anon_sym_BSLASHGLSpl] = ACTIONS(4825), - [anon_sym_BSLASHglsdisp] = ACTIONS(4825), - [anon_sym_BSLASHglslink] = ACTIONS(4825), - [anon_sym_BSLASHglstext] = ACTIONS(4825), - [anon_sym_BSLASHGlstext] = ACTIONS(4825), - [anon_sym_BSLASHGLStext] = ACTIONS(4825), - [anon_sym_BSLASHglsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), - [anon_sym_BSLASHglsplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSplural] = ACTIONS(4825), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHglsname] = ACTIONS(4825), - [anon_sym_BSLASHGlsname] = ACTIONS(4825), - [anon_sym_BSLASHGLSname] = ACTIONS(4825), - [anon_sym_BSLASHglssymbol] = ACTIONS(4825), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), - [anon_sym_BSLASHglsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), - [anon_sym_BSLASHglsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), - [anon_sym_BSLASHglsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), - [anon_sym_BSLASHglsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), - [anon_sym_BSLASHglsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), - [anon_sym_BSLASHnewacronym] = ACTIONS(4825), - [anon_sym_BSLASHacrshort] = ACTIONS(4825), - [anon_sym_BSLASHAcrshort] = ACTIONS(4825), - [anon_sym_BSLASHACRshort] = ACTIONS(4825), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), - [anon_sym_BSLASHacrlong] = ACTIONS(4825), - [anon_sym_BSLASHAcrlong] = ACTIONS(4825), - [anon_sym_BSLASHACRlong] = ACTIONS(4825), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), - [anon_sym_BSLASHacrfull] = ACTIONS(4825), - [anon_sym_BSLASHAcrfull] = ACTIONS(4825), - [anon_sym_BSLASHACRfull] = ACTIONS(4825), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), - [anon_sym_BSLASHacs] = ACTIONS(4825), - [anon_sym_BSLASHAcs] = ACTIONS(4825), - [anon_sym_BSLASHacsp] = ACTIONS(4825), - [anon_sym_BSLASHAcsp] = ACTIONS(4825), - [anon_sym_BSLASHacl] = ACTIONS(4825), - [anon_sym_BSLASHAcl] = ACTIONS(4825), - [anon_sym_BSLASHaclp] = ACTIONS(4825), - [anon_sym_BSLASHAclp] = ACTIONS(4825), - [anon_sym_BSLASHacf] = ACTIONS(4825), - [anon_sym_BSLASHAcf] = ACTIONS(4825), - [anon_sym_BSLASHacfp] = ACTIONS(4825), - [anon_sym_BSLASHAcfp] = ACTIONS(4825), - [anon_sym_BSLASHac] = ACTIONS(4825), - [anon_sym_BSLASHAc] = ACTIONS(4825), - [anon_sym_BSLASHacp] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), - [anon_sym_BSLASHcolor] = ACTIONS(4825), - [anon_sym_BSLASHcolorbox] = ACTIONS(4825), - [anon_sym_BSLASHtextcolor] = ACTIONS(4825), - [anon_sym_BSLASHpagecolor] = ACTIONS(4825), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), - [anon_sym_BSLASHtext] = ACTIONS(4825), - [anon_sym_BSLASHintertext] = ACTIONS(4825), - [anon_sym_shortintertext] = ACTIONS(4825), + [sym_command_name] = ACTIONS(4904), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_BSLASHpart] = ACTIONS(4904), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddpart] = ACTIONS(4904), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHchapter] = ACTIONS(4904), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddchap] = ACTIONS(4904), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsection] = ACTIONS(4904), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddsec] = ACTIONS(4904), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHparagraph] = ACTIONS(4904), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4904), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHitem] = ACTIONS(4904), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4904), + [sym_placeholder] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym__] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4902), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4902), + [anon_sym_BSLASHbegin] = ACTIONS(4904), + [anon_sym_BSLASHusepackage] = ACTIONS(4904), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4904), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4904), + [anon_sym_BSLASHinclude] = ACTIONS(4904), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4904), + [anon_sym_BSLASHinput] = ACTIONS(4904), + [anon_sym_BSLASHsubfile] = ACTIONS(4904), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4904), + [anon_sym_BSLASHbibliography] = ACTIONS(4904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4904), + [anon_sym_BSLASHincludesvg] = ACTIONS(4904), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4904), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4904), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4904), + [anon_sym_BSLASHimport] = ACTIONS(4904), + [anon_sym_BSLASHsubimport] = ACTIONS(4904), + [anon_sym_BSLASHinputfrom] = ACTIONS(4904), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4904), + [anon_sym_BSLASHincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHcaption] = ACTIONS(4904), + [anon_sym_BSLASHcite] = ACTIONS(4904), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCite] = ACTIONS(4904), + [anon_sym_BSLASHnocite] = ACTIONS(4904), + [anon_sym_BSLASHcitet] = ACTIONS(4904), + [anon_sym_BSLASHcitep] = ACTIONS(4904), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteauthor] = ACTIONS(4904), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4904), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitetitle] = ACTIONS(4904), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteyear] = ACTIONS(4904), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitedate] = ACTIONS(4904), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteurl] = ACTIONS(4904), + [anon_sym_BSLASHfullcite] = ACTIONS(4904), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4904), + [anon_sym_BSLASHcitealt] = ACTIONS(4904), + [anon_sym_BSLASHcitealp] = ACTIONS(4904), + [anon_sym_BSLASHcitetext] = ACTIONS(4904), + [anon_sym_BSLASHparencite] = ACTIONS(4904), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHParencite] = ACTIONS(4904), + [anon_sym_BSLASHfootcite] = ACTIONS(4904), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4904), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4904), + [anon_sym_BSLASHtextcite] = ACTIONS(4904), + [anon_sym_BSLASHTextcite] = ACTIONS(4904), + [anon_sym_BSLASHsmartcite] = ACTIONS(4904), + [anon_sym_BSLASHSmartcite] = ACTIONS(4904), + [anon_sym_BSLASHsupercite] = ACTIONS(4904), + [anon_sym_BSLASHautocite] = ACTIONS(4904), + [anon_sym_BSLASHAutocite] = ACTIONS(4904), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHvolcite] = ACTIONS(4904), + [anon_sym_BSLASHVolcite] = ACTIONS(4904), + [anon_sym_BSLASHpvolcite] = ACTIONS(4904), + [anon_sym_BSLASHPvolcite] = ACTIONS(4904), + [anon_sym_BSLASHfvolcite] = ACTIONS(4904), + [anon_sym_BSLASHftvolcite] = ACTIONS(4904), + [anon_sym_BSLASHsvolcite] = ACTIONS(4904), + [anon_sym_BSLASHSvolcite] = ACTIONS(4904), + [anon_sym_BSLASHtvolcite] = ACTIONS(4904), + [anon_sym_BSLASHTvolcite] = ACTIONS(4904), + [anon_sym_BSLASHavolcite] = ACTIONS(4904), + [anon_sym_BSLASHAvolcite] = ACTIONS(4904), + [anon_sym_BSLASHnotecite] = ACTIONS(4904), + [anon_sym_BSLASHNotecite] = ACTIONS(4904), + [anon_sym_BSLASHpnotecite] = ACTIONS(4904), + [anon_sym_BSLASHPnotecite] = ACTIONS(4904), + [anon_sym_BSLASHfnotecite] = ACTIONS(4904), + [anon_sym_BSLASHlabel] = ACTIONS(4904), + [anon_sym_BSLASHref] = ACTIONS(4904), + [anon_sym_BSLASHeqref] = ACTIONS(4904), + [anon_sym_BSLASHvref] = ACTIONS(4904), + [anon_sym_BSLASHVref] = ACTIONS(4904), + [anon_sym_BSLASHautoref] = ACTIONS(4904), + [anon_sym_BSLASHpageref] = ACTIONS(4904), + [anon_sym_BSLASHcref] = ACTIONS(4904), + [anon_sym_BSLASHCref] = ACTIONS(4904), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnameCref] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHlabelcref] = ACTIONS(4904), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCrefrange] = ACTIONS(4904), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnewlabel] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4904), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4904), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4904), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdef] = ACTIONS(4904), + [anon_sym_BSLASHlet] = ACTIONS(4904), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4904), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4904), + [anon_sym_BSLASHgls] = ACTIONS(4904), + [anon_sym_BSLASHGls] = ACTIONS(4904), + [anon_sym_BSLASHGLS] = ACTIONS(4904), + [anon_sym_BSLASHglspl] = ACTIONS(4904), + [anon_sym_BSLASHGlspl] = ACTIONS(4904), + [anon_sym_BSLASHGLSpl] = ACTIONS(4904), + [anon_sym_BSLASHglsdisp] = ACTIONS(4904), + [anon_sym_BSLASHglslink] = ACTIONS(4904), + [anon_sym_BSLASHglstext] = ACTIONS(4904), + [anon_sym_BSLASHGlstext] = ACTIONS(4904), + [anon_sym_BSLASHGLStext] = ACTIONS(4904), + [anon_sym_BSLASHglsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4904), + [anon_sym_BSLASHglsplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSplural] = ACTIONS(4904), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHglsname] = ACTIONS(4904), + [anon_sym_BSLASHGlsname] = ACTIONS(4904), + [anon_sym_BSLASHGLSname] = ACTIONS(4904), + [anon_sym_BSLASHglssymbol] = ACTIONS(4904), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4904), + [anon_sym_BSLASHglsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4904), + [anon_sym_BSLASHglsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4904), + [anon_sym_BSLASHglsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4904), + [anon_sym_BSLASHglsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4904), + [anon_sym_BSLASHglsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4904), + [anon_sym_BSLASHnewacronym] = ACTIONS(4904), + [anon_sym_BSLASHacrshort] = ACTIONS(4904), + [anon_sym_BSLASHAcrshort] = ACTIONS(4904), + [anon_sym_BSLASHACRshort] = ACTIONS(4904), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4904), + [anon_sym_BSLASHacrlong] = ACTIONS(4904), + [anon_sym_BSLASHAcrlong] = ACTIONS(4904), + [anon_sym_BSLASHACRlong] = ACTIONS(4904), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4904), + [anon_sym_BSLASHacrfull] = ACTIONS(4904), + [anon_sym_BSLASHAcrfull] = ACTIONS(4904), + [anon_sym_BSLASHACRfull] = ACTIONS(4904), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4904), + [anon_sym_BSLASHacs] = ACTIONS(4904), + [anon_sym_BSLASHAcs] = ACTIONS(4904), + [anon_sym_BSLASHacsp] = ACTIONS(4904), + [anon_sym_BSLASHAcsp] = ACTIONS(4904), + [anon_sym_BSLASHacl] = ACTIONS(4904), + [anon_sym_BSLASHAcl] = ACTIONS(4904), + [anon_sym_BSLASHaclp] = ACTIONS(4904), + [anon_sym_BSLASHAclp] = ACTIONS(4904), + [anon_sym_BSLASHacf] = ACTIONS(4904), + [anon_sym_BSLASHAcf] = ACTIONS(4904), + [anon_sym_BSLASHacfp] = ACTIONS(4904), + [anon_sym_BSLASHAcfp] = ACTIONS(4904), + [anon_sym_BSLASHac] = ACTIONS(4904), + [anon_sym_BSLASHAc] = ACTIONS(4904), + [anon_sym_BSLASHacp] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4904), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4904), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4904), + [anon_sym_BSLASHcolor] = ACTIONS(4904), + [anon_sym_BSLASHcolorbox] = ACTIONS(4904), + [anon_sym_BSLASHtextcolor] = ACTIONS(4904), + [anon_sym_BSLASHpagecolor] = ACTIONS(4904), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4904), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4904), + [anon_sym_BSLASHtext] = ACTIONS(4904), + [anon_sym_BSLASHintertext] = ACTIONS(4904), + [anon_sym_shortintertext] = ACTIONS(4904), }, [673] = { - [ts_builtin_sym_end] = ACTIONS(4889), - [sym_command_name] = ACTIONS(4891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_BSLASHpart] = ACTIONS(4891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddpart] = ACTIONS(4891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHchapter] = ACTIONS(4891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddchap] = ACTIONS(4891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsection] = ACTIONS(4891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddsec] = ACTIONS(4891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHparagraph] = ACTIONS(4891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHitem] = ACTIONS(4891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [sym_word] = ACTIONS(4891), - [sym_placeholder] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym__] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_COLON] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), - [anon_sym_BSLASHbegin] = ACTIONS(4891), - [anon_sym_BSLASHusepackage] = ACTIONS(4891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), - [anon_sym_BSLASHinclude] = ACTIONS(4891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), - [anon_sym_BSLASHinput] = ACTIONS(4891), - [anon_sym_BSLASHsubfile] = ACTIONS(4891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), - [anon_sym_BSLASHbibliography] = ACTIONS(4891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), - [anon_sym_BSLASHincludesvg] = ACTIONS(4891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), - [anon_sym_BSLASHimport] = ACTIONS(4891), - [anon_sym_BSLASHsubimport] = ACTIONS(4891), - [anon_sym_BSLASHinputfrom] = ACTIONS(4891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), - [anon_sym_BSLASHincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHcaption] = ACTIONS(4891), - [anon_sym_BSLASHcite] = ACTIONS(4891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCite] = ACTIONS(4891), - [anon_sym_BSLASHnocite] = ACTIONS(4891), - [anon_sym_BSLASHcitet] = ACTIONS(4891), - [anon_sym_BSLASHcitep] = ACTIONS(4891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteauthor] = ACTIONS(4891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitetitle] = ACTIONS(4891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteyear] = ACTIONS(4891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitedate] = ACTIONS(4891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteurl] = ACTIONS(4891), - [anon_sym_BSLASHfullcite] = ACTIONS(4891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), - [anon_sym_BSLASHcitealt] = ACTIONS(4891), - [anon_sym_BSLASHcitealp] = ACTIONS(4891), - [anon_sym_BSLASHcitetext] = ACTIONS(4891), - [anon_sym_BSLASHparencite] = ACTIONS(4891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHParencite] = ACTIONS(4891), - [anon_sym_BSLASHfootcite] = ACTIONS(4891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), - [anon_sym_BSLASHtextcite] = ACTIONS(4891), - [anon_sym_BSLASHTextcite] = ACTIONS(4891), - [anon_sym_BSLASHsmartcite] = ACTIONS(4891), - [anon_sym_BSLASHSmartcite] = ACTIONS(4891), - [anon_sym_BSLASHsupercite] = ACTIONS(4891), - [anon_sym_BSLASHautocite] = ACTIONS(4891), - [anon_sym_BSLASHAutocite] = ACTIONS(4891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHvolcite] = ACTIONS(4891), - [anon_sym_BSLASHVolcite] = ACTIONS(4891), - [anon_sym_BSLASHpvolcite] = ACTIONS(4891), - [anon_sym_BSLASHPvolcite] = ACTIONS(4891), - [anon_sym_BSLASHfvolcite] = ACTIONS(4891), - [anon_sym_BSLASHftvolcite] = ACTIONS(4891), - [anon_sym_BSLASHsvolcite] = ACTIONS(4891), - [anon_sym_BSLASHSvolcite] = ACTIONS(4891), - [anon_sym_BSLASHtvolcite] = ACTIONS(4891), - [anon_sym_BSLASHTvolcite] = ACTIONS(4891), - [anon_sym_BSLASHavolcite] = ACTIONS(4891), - [anon_sym_BSLASHAvolcite] = ACTIONS(4891), - [anon_sym_BSLASHnotecite] = ACTIONS(4891), - [anon_sym_BSLASHNotecite] = ACTIONS(4891), - [anon_sym_BSLASHpnotecite] = ACTIONS(4891), - [anon_sym_BSLASHPnotecite] = ACTIONS(4891), - [anon_sym_BSLASHfnotecite] = ACTIONS(4891), - [anon_sym_BSLASHlabel] = ACTIONS(4891), - [anon_sym_BSLASHref] = ACTIONS(4891), - [anon_sym_BSLASHeqref] = ACTIONS(4891), - [anon_sym_BSLASHvref] = ACTIONS(4891), - [anon_sym_BSLASHVref] = ACTIONS(4891), - [anon_sym_BSLASHautoref] = ACTIONS(4891), - [anon_sym_BSLASHpageref] = ACTIONS(4891), - [anon_sym_BSLASHcref] = ACTIONS(4891), - [anon_sym_BSLASHCref] = ACTIONS(4891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnameCref] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHlabelcref] = ACTIONS(4891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCrefrange] = ACTIONS(4891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnewlabel] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), - [anon_sym_BSLASHdef] = ACTIONS(4891), - [anon_sym_BSLASHlet] = ACTIONS(4891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), - [anon_sym_BSLASHgls] = ACTIONS(4891), - [anon_sym_BSLASHGls] = ACTIONS(4891), - [anon_sym_BSLASHGLS] = ACTIONS(4891), - [anon_sym_BSLASHglspl] = ACTIONS(4891), - [anon_sym_BSLASHGlspl] = ACTIONS(4891), - [anon_sym_BSLASHGLSpl] = ACTIONS(4891), - [anon_sym_BSLASHglsdisp] = ACTIONS(4891), - [anon_sym_BSLASHglslink] = ACTIONS(4891), - [anon_sym_BSLASHglstext] = ACTIONS(4891), - [anon_sym_BSLASHGlstext] = ACTIONS(4891), - [anon_sym_BSLASHGLStext] = ACTIONS(4891), - [anon_sym_BSLASHglsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), - [anon_sym_BSLASHglsplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSplural] = ACTIONS(4891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHglsname] = ACTIONS(4891), - [anon_sym_BSLASHGlsname] = ACTIONS(4891), - [anon_sym_BSLASHGLSname] = ACTIONS(4891), - [anon_sym_BSLASHglssymbol] = ACTIONS(4891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), - [anon_sym_BSLASHglsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), - [anon_sym_BSLASHglsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), - [anon_sym_BSLASHglsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), - [anon_sym_BSLASHglsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), - [anon_sym_BSLASHglsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), - [anon_sym_BSLASHnewacronym] = ACTIONS(4891), - [anon_sym_BSLASHacrshort] = ACTIONS(4891), - [anon_sym_BSLASHAcrshort] = ACTIONS(4891), - [anon_sym_BSLASHACRshort] = ACTIONS(4891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), - [anon_sym_BSLASHacrlong] = ACTIONS(4891), - [anon_sym_BSLASHAcrlong] = ACTIONS(4891), - [anon_sym_BSLASHACRlong] = ACTIONS(4891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), - [anon_sym_BSLASHacrfull] = ACTIONS(4891), - [anon_sym_BSLASHAcrfull] = ACTIONS(4891), - [anon_sym_BSLASHACRfull] = ACTIONS(4891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), - [anon_sym_BSLASHacs] = ACTIONS(4891), - [anon_sym_BSLASHAcs] = ACTIONS(4891), - [anon_sym_BSLASHacsp] = ACTIONS(4891), - [anon_sym_BSLASHAcsp] = ACTIONS(4891), - [anon_sym_BSLASHacl] = ACTIONS(4891), - [anon_sym_BSLASHAcl] = ACTIONS(4891), - [anon_sym_BSLASHaclp] = ACTIONS(4891), - [anon_sym_BSLASHAclp] = ACTIONS(4891), - [anon_sym_BSLASHacf] = ACTIONS(4891), - [anon_sym_BSLASHAcf] = ACTIONS(4891), - [anon_sym_BSLASHacfp] = ACTIONS(4891), - [anon_sym_BSLASHAcfp] = ACTIONS(4891), - [anon_sym_BSLASHac] = ACTIONS(4891), - [anon_sym_BSLASHAc] = ACTIONS(4891), - [anon_sym_BSLASHacp] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), - [anon_sym_BSLASHcolor] = ACTIONS(4891), - [anon_sym_BSLASHcolorbox] = ACTIONS(4891), - [anon_sym_BSLASHtextcolor] = ACTIONS(4891), - [anon_sym_BSLASHpagecolor] = ACTIONS(4891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), - [anon_sym_BSLASHtext] = ACTIONS(4891), - [anon_sym_BSLASHintertext] = ACTIONS(4891), - [anon_sym_shortintertext] = ACTIONS(4891), + [ts_builtin_sym_end] = ACTIONS(4968), + [sym_command_name] = ACTIONS(4970), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_BSLASHpart] = ACTIONS(4970), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddpart] = ACTIONS(4970), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHchapter] = ACTIONS(4970), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddchap] = ACTIONS(4970), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsection] = ACTIONS(4970), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddsec] = ACTIONS(4970), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHparagraph] = ACTIONS(4970), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4970), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHitem] = ACTIONS(4970), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [sym_word] = ACTIONS(4970), + [sym_placeholder] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4968), + [anon_sym_BSLASHbegin] = ACTIONS(4970), + [anon_sym_BSLASHusepackage] = ACTIONS(4970), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4970), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4970), + [anon_sym_BSLASHinclude] = ACTIONS(4970), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4970), + [anon_sym_BSLASHinput] = ACTIONS(4970), + [anon_sym_BSLASHsubfile] = ACTIONS(4970), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4970), + [anon_sym_BSLASHbibliography] = ACTIONS(4970), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4970), + [anon_sym_BSLASHincludesvg] = ACTIONS(4970), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4970), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4970), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4970), + [anon_sym_BSLASHimport] = ACTIONS(4970), + [anon_sym_BSLASHsubimport] = ACTIONS(4970), + [anon_sym_BSLASHinputfrom] = ACTIONS(4970), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4970), + [anon_sym_BSLASHincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHcaption] = ACTIONS(4970), + [anon_sym_BSLASHcite] = ACTIONS(4970), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCite] = ACTIONS(4970), + [anon_sym_BSLASHnocite] = ACTIONS(4970), + [anon_sym_BSLASHcitet] = ACTIONS(4970), + [anon_sym_BSLASHcitep] = ACTIONS(4970), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteauthor] = ACTIONS(4970), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4970), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitetitle] = ACTIONS(4970), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteyear] = ACTIONS(4970), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitedate] = ACTIONS(4970), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteurl] = ACTIONS(4970), + [anon_sym_BSLASHfullcite] = ACTIONS(4970), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4970), + [anon_sym_BSLASHcitealt] = ACTIONS(4970), + [anon_sym_BSLASHcitealp] = ACTIONS(4970), + [anon_sym_BSLASHcitetext] = ACTIONS(4970), + [anon_sym_BSLASHparencite] = ACTIONS(4970), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHParencite] = ACTIONS(4970), + [anon_sym_BSLASHfootcite] = ACTIONS(4970), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4970), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4970), + [anon_sym_BSLASHtextcite] = ACTIONS(4970), + [anon_sym_BSLASHTextcite] = ACTIONS(4970), + [anon_sym_BSLASHsmartcite] = ACTIONS(4970), + [anon_sym_BSLASHSmartcite] = ACTIONS(4970), + [anon_sym_BSLASHsupercite] = ACTIONS(4970), + [anon_sym_BSLASHautocite] = ACTIONS(4970), + [anon_sym_BSLASHAutocite] = ACTIONS(4970), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHvolcite] = ACTIONS(4970), + [anon_sym_BSLASHVolcite] = ACTIONS(4970), + [anon_sym_BSLASHpvolcite] = ACTIONS(4970), + [anon_sym_BSLASHPvolcite] = ACTIONS(4970), + [anon_sym_BSLASHfvolcite] = ACTIONS(4970), + [anon_sym_BSLASHftvolcite] = ACTIONS(4970), + [anon_sym_BSLASHsvolcite] = ACTIONS(4970), + [anon_sym_BSLASHSvolcite] = ACTIONS(4970), + [anon_sym_BSLASHtvolcite] = ACTIONS(4970), + [anon_sym_BSLASHTvolcite] = ACTIONS(4970), + [anon_sym_BSLASHavolcite] = ACTIONS(4970), + [anon_sym_BSLASHAvolcite] = ACTIONS(4970), + [anon_sym_BSLASHnotecite] = ACTIONS(4970), + [anon_sym_BSLASHNotecite] = ACTIONS(4970), + [anon_sym_BSLASHpnotecite] = ACTIONS(4970), + [anon_sym_BSLASHPnotecite] = ACTIONS(4970), + [anon_sym_BSLASHfnotecite] = ACTIONS(4970), + [anon_sym_BSLASHlabel] = ACTIONS(4970), + [anon_sym_BSLASHref] = ACTIONS(4970), + [anon_sym_BSLASHeqref] = ACTIONS(4970), + [anon_sym_BSLASHvref] = ACTIONS(4970), + [anon_sym_BSLASHVref] = ACTIONS(4970), + [anon_sym_BSLASHautoref] = ACTIONS(4970), + [anon_sym_BSLASHpageref] = ACTIONS(4970), + [anon_sym_BSLASHcref] = ACTIONS(4970), + [anon_sym_BSLASHCref] = ACTIONS(4970), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnameCref] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHlabelcref] = ACTIONS(4970), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCrefrange] = ACTIONS(4970), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnewlabel] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4970), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4970), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4970), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdef] = ACTIONS(4970), + [anon_sym_BSLASHlet] = ACTIONS(4970), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4970), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4970), + [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(4970), + [anon_sym_BSLASHacrshort] = ACTIONS(4970), + [anon_sym_BSLASHAcrshort] = ACTIONS(4970), + [anon_sym_BSLASHACRshort] = ACTIONS(4970), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4970), + [anon_sym_BSLASHacrlong] = ACTIONS(4970), + [anon_sym_BSLASHAcrlong] = ACTIONS(4970), + [anon_sym_BSLASHACRlong] = ACTIONS(4970), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4970), + [anon_sym_BSLASHacrfull] = ACTIONS(4970), + [anon_sym_BSLASHAcrfull] = ACTIONS(4970), + [anon_sym_BSLASHACRfull] = ACTIONS(4970), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4970), + [anon_sym_BSLASHacs] = ACTIONS(4970), + [anon_sym_BSLASHAcs] = ACTIONS(4970), + [anon_sym_BSLASHacsp] = ACTIONS(4970), + [anon_sym_BSLASHAcsp] = ACTIONS(4970), + [anon_sym_BSLASHacl] = ACTIONS(4970), + [anon_sym_BSLASHAcl] = ACTIONS(4970), + [anon_sym_BSLASHaclp] = ACTIONS(4970), + [anon_sym_BSLASHAclp] = ACTIONS(4970), + [anon_sym_BSLASHacf] = ACTIONS(4970), + [anon_sym_BSLASHAcf] = ACTIONS(4970), + [anon_sym_BSLASHacfp] = ACTIONS(4970), + [anon_sym_BSLASHAcfp] = ACTIONS(4970), + [anon_sym_BSLASHac] = ACTIONS(4970), + [anon_sym_BSLASHAc] = ACTIONS(4970), + [anon_sym_BSLASHacp] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4970), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4970), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4970), + [anon_sym_BSLASHcolor] = ACTIONS(4970), + [anon_sym_BSLASHcolorbox] = ACTIONS(4970), + [anon_sym_BSLASHtextcolor] = ACTIONS(4970), + [anon_sym_BSLASHpagecolor] = ACTIONS(4970), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4970), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4970), + [anon_sym_BSLASHtext] = ACTIONS(4970), + [anon_sym_BSLASHintertext] = ACTIONS(4970), + [anon_sym_shortintertext] = ACTIONS(4970), }, [674] = { [sym_brack_group_text] = STATE(1051), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_BSLASHpart] = ACTIONS(4879), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddpart] = ACTIONS(4879), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHchapter] = ACTIONS(4879), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddchap] = ACTIONS(4879), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsection] = ACTIONS(4879), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddsec] = ACTIONS(4879), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHparagraph] = ACTIONS(4879), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHitem] = ACTIONS(4879), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4877), - [anon_sym_BSLASHbegin] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_BSLASHpart] = ACTIONS(4958), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddpart] = ACTIONS(4958), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHchapter] = ACTIONS(4958), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddchap] = ACTIONS(4958), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsection] = ACTIONS(4958), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddsec] = ACTIONS(4958), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHparagraph] = ACTIONS(4958), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4958), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHitem] = ACTIONS(4958), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4956), + [anon_sym_BSLASHbegin] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [675] = { - [ts_builtin_sym_end] = ACTIONS(4895), - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_BSLASHpart] = ACTIONS(4897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddpart] = ACTIONS(4897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHchapter] = ACTIONS(4897), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddchap] = ACTIONS(4897), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsection] = ACTIONS(4897), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddsec] = ACTIONS(4897), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHparagraph] = ACTIONS(4897), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHitem] = ACTIONS(4897), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASHbegin] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [ts_builtin_sym_end] = ACTIONS(4974), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_BSLASHpart] = ACTIONS(4976), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddpart] = ACTIONS(4976), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHchapter] = ACTIONS(4976), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddchap] = ACTIONS(4976), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsection] = ACTIONS(4976), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddsec] = ACTIONS(4976), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHparagraph] = ACTIONS(4976), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4976), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHitem] = ACTIONS(4976), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASHbegin] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [676] = { - [ts_builtin_sym_end] = ACTIONS(4899), - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_BSLASHpart] = ACTIONS(4901), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddpart] = ACTIONS(4901), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHchapter] = ACTIONS(4901), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddchap] = ACTIONS(4901), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsection] = ACTIONS(4901), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddsec] = ACTIONS(4901), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHparagraph] = ACTIONS(4901), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHitem] = ACTIONS(4901), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASHbegin] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [ts_builtin_sym_end] = ACTIONS(4978), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_BSLASHpart] = ACTIONS(4980), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddpart] = ACTIONS(4980), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHchapter] = ACTIONS(4980), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddchap] = ACTIONS(4980), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsection] = ACTIONS(4980), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddsec] = ACTIONS(4980), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHparagraph] = ACTIONS(4980), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4980), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHitem] = ACTIONS(4980), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASHbegin] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(4903), - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_BSLASHpart] = ACTIONS(4905), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddpart] = ACTIONS(4905), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHchapter] = ACTIONS(4905), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddchap] = ACTIONS(4905), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsection] = ACTIONS(4905), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddsec] = ACTIONS(4905), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHparagraph] = ACTIONS(4905), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHitem] = ACTIONS(4905), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASHbegin] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [ts_builtin_sym_end] = ACTIONS(4982), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_BSLASHpart] = ACTIONS(4984), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddpart] = ACTIONS(4984), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHchapter] = ACTIONS(4984), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddchap] = ACTIONS(4984), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsection] = ACTIONS(4984), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddsec] = ACTIONS(4984), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHparagraph] = ACTIONS(4984), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4984), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHitem] = ACTIONS(4984), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASHbegin] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [678] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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), + [ts_builtin_sym_end] = ACTIONS(4986), + [sym_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_BSLASHpart] = ACTIONS(4988), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddpart] = ACTIONS(4988), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHchapter] = ACTIONS(4988), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddchap] = ACTIONS(4988), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsection] = ACTIONS(4988), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddsec] = ACTIONS(4988), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHparagraph] = ACTIONS(4988), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4988), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHitem] = ACTIONS(4988), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASHbegin] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(4911), - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_BSLASHpart] = ACTIONS(4913), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddpart] = ACTIONS(4913), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHchapter] = ACTIONS(4913), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddchap] = ACTIONS(4913), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsection] = ACTIONS(4913), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddsec] = ACTIONS(4913), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHparagraph] = ACTIONS(4913), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHitem] = ACTIONS(4913), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [anon_sym_RBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASHbegin] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [ts_builtin_sym_end] = ACTIONS(4990), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_BSLASHpart] = ACTIONS(4992), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddpart] = ACTIONS(4992), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHchapter] = ACTIONS(4992), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddchap] = ACTIONS(4992), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsection] = ACTIONS(4992), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddsec] = ACTIONS(4992), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHparagraph] = ACTIONS(4992), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4992), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHitem] = ACTIONS(4992), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASHbegin] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [680] = { - [ts_builtin_sym_end] = ACTIONS(4915), - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_BSLASHpart] = ACTIONS(4917), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddpart] = ACTIONS(4917), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHchapter] = ACTIONS(4917), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddchap] = ACTIONS(4917), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsection] = ACTIONS(4917), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddsec] = ACTIONS(4917), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHparagraph] = ACTIONS(4917), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHitem] = ACTIONS(4917), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_RBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASHbegin] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [ts_builtin_sym_end] = ACTIONS(4994), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_BSLASHpart] = ACTIONS(4996), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddpart] = ACTIONS(4996), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHchapter] = ACTIONS(4996), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddchap] = ACTIONS(4996), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsection] = ACTIONS(4996), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddsec] = ACTIONS(4996), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHparagraph] = ACTIONS(4996), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4996), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHitem] = ACTIONS(4996), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASHbegin] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(4919), - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_BSLASHpart] = ACTIONS(4921), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddpart] = ACTIONS(4921), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHchapter] = ACTIONS(4921), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddchap] = ACTIONS(4921), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsection] = ACTIONS(4921), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddsec] = ACTIONS(4921), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHparagraph] = ACTIONS(4921), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHitem] = ACTIONS(4921), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [anon_sym_RBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASHbegin] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [ts_builtin_sym_end] = ACTIONS(4998), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_BSLASHpart] = ACTIONS(5000), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddpart] = ACTIONS(5000), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHchapter] = ACTIONS(5000), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddchap] = ACTIONS(5000), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsection] = ACTIONS(5000), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddsec] = ACTIONS(5000), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHparagraph] = ACTIONS(5000), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5000), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHitem] = ACTIONS(5000), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(4923), - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_BSLASHpart] = ACTIONS(4925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddpart] = ACTIONS(4925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHchapter] = ACTIONS(4925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddchap] = ACTIONS(4925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsection] = ACTIONS(4925), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddsec] = ACTIONS(4925), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHparagraph] = ACTIONS(4925), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHitem] = ACTIONS(4925), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASHbegin] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [ts_builtin_sym_end] = ACTIONS(5002), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_BSLASHpart] = ACTIONS(5004), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddpart] = ACTIONS(5004), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHchapter] = ACTIONS(5004), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddchap] = ACTIONS(5004), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsection] = ACTIONS(5004), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddsec] = ACTIONS(5004), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHparagraph] = ACTIONS(5004), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5004), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHitem] = ACTIONS(5004), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASHbegin] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [683] = { [sym_curly_group] = STATE(889), - [sym_command_name] = ACTIONS(4845), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4843), - [anon_sym_BSLASHpart] = ACTIONS(4845), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddpart] = ACTIONS(4845), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHchapter] = ACTIONS(4845), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddchap] = ACTIONS(4845), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsection] = ACTIONS(4845), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddsec] = ACTIONS(4845), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHparagraph] = ACTIONS(4845), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHitem] = ACTIONS(4845), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4845), - [sym_placeholder] = ACTIONS(4843), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4845), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_CARET] = ACTIONS(4845), - [anon_sym__] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_SQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4843), - [anon_sym_BSLASHbegin] = ACTIONS(4845), - [anon_sym_BSLASHusepackage] = ACTIONS(4845), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), - [anon_sym_BSLASHinclude] = ACTIONS(4845), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), - [anon_sym_BSLASHinput] = ACTIONS(4845), - [anon_sym_BSLASHsubfile] = ACTIONS(4845), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), - [anon_sym_BSLASHbibliography] = ACTIONS(4845), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), - [anon_sym_BSLASHincludesvg] = ACTIONS(4845), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), - [anon_sym_BSLASHimport] = ACTIONS(4845), - [anon_sym_BSLASHsubimport] = ACTIONS(4845), - [anon_sym_BSLASHinputfrom] = ACTIONS(4845), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), - [anon_sym_BSLASHincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHcaption] = ACTIONS(4845), - [anon_sym_BSLASHcite] = ACTIONS(4845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCite] = ACTIONS(4845), - [anon_sym_BSLASHnocite] = ACTIONS(4845), - [anon_sym_BSLASHcitet] = ACTIONS(4845), - [anon_sym_BSLASHcitep] = ACTIONS(4845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteauthor] = ACTIONS(4845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitetitle] = ACTIONS(4845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteyear] = ACTIONS(4845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitedate] = ACTIONS(4845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteurl] = ACTIONS(4845), - [anon_sym_BSLASHfullcite] = ACTIONS(4845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), - [anon_sym_BSLASHcitealt] = ACTIONS(4845), - [anon_sym_BSLASHcitealp] = ACTIONS(4845), - [anon_sym_BSLASHcitetext] = ACTIONS(4845), - [anon_sym_BSLASHparencite] = ACTIONS(4845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHParencite] = ACTIONS(4845), - [anon_sym_BSLASHfootcite] = ACTIONS(4845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), - [anon_sym_BSLASHtextcite] = ACTIONS(4845), - [anon_sym_BSLASHTextcite] = ACTIONS(4845), - [anon_sym_BSLASHsmartcite] = ACTIONS(4845), - [anon_sym_BSLASHSmartcite] = ACTIONS(4845), - [anon_sym_BSLASHsupercite] = ACTIONS(4845), - [anon_sym_BSLASHautocite] = ACTIONS(4845), - [anon_sym_BSLASHAutocite] = ACTIONS(4845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHvolcite] = ACTIONS(4845), - [anon_sym_BSLASHVolcite] = ACTIONS(4845), - [anon_sym_BSLASHpvolcite] = ACTIONS(4845), - [anon_sym_BSLASHPvolcite] = ACTIONS(4845), - [anon_sym_BSLASHfvolcite] = ACTIONS(4845), - [anon_sym_BSLASHftvolcite] = ACTIONS(4845), - [anon_sym_BSLASHsvolcite] = ACTIONS(4845), - [anon_sym_BSLASHSvolcite] = ACTIONS(4845), - [anon_sym_BSLASHtvolcite] = ACTIONS(4845), - [anon_sym_BSLASHTvolcite] = ACTIONS(4845), - [anon_sym_BSLASHavolcite] = ACTIONS(4845), - [anon_sym_BSLASHAvolcite] = ACTIONS(4845), - [anon_sym_BSLASHnotecite] = ACTIONS(4845), - [anon_sym_BSLASHNotecite] = ACTIONS(4845), - [anon_sym_BSLASHpnotecite] = ACTIONS(4845), - [anon_sym_BSLASHPnotecite] = ACTIONS(4845), - [anon_sym_BSLASHfnotecite] = ACTIONS(4845), - [anon_sym_BSLASHlabel] = ACTIONS(4845), - [anon_sym_BSLASHref] = ACTIONS(4845), - [anon_sym_BSLASHeqref] = ACTIONS(4845), - [anon_sym_BSLASHvref] = ACTIONS(4845), - [anon_sym_BSLASHVref] = ACTIONS(4845), - [anon_sym_BSLASHautoref] = ACTIONS(4845), - [anon_sym_BSLASHpageref] = ACTIONS(4845), - [anon_sym_BSLASHcref] = ACTIONS(4845), - [anon_sym_BSLASHCref] = ACTIONS(4845), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnameCref] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHlabelcref] = ACTIONS(4845), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCrefrange] = ACTIONS(4845), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnewlabel] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), - [anon_sym_BSLASHdef] = ACTIONS(4845), - [anon_sym_BSLASHlet] = ACTIONS(4845), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), - [anon_sym_BSLASHgls] = ACTIONS(4845), - [anon_sym_BSLASHGls] = ACTIONS(4845), - [anon_sym_BSLASHGLS] = ACTIONS(4845), - [anon_sym_BSLASHglspl] = ACTIONS(4845), - [anon_sym_BSLASHGlspl] = ACTIONS(4845), - [anon_sym_BSLASHGLSpl] = ACTIONS(4845), - [anon_sym_BSLASHglsdisp] = ACTIONS(4845), - [anon_sym_BSLASHglslink] = ACTIONS(4845), - [anon_sym_BSLASHglstext] = ACTIONS(4845), - [anon_sym_BSLASHGlstext] = ACTIONS(4845), - [anon_sym_BSLASHGLStext] = ACTIONS(4845), - [anon_sym_BSLASHglsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), - [anon_sym_BSLASHglsplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSplural] = ACTIONS(4845), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHglsname] = ACTIONS(4845), - [anon_sym_BSLASHGlsname] = ACTIONS(4845), - [anon_sym_BSLASHGLSname] = ACTIONS(4845), - [anon_sym_BSLASHglssymbol] = ACTIONS(4845), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), - [anon_sym_BSLASHglsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), - [anon_sym_BSLASHglsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), - [anon_sym_BSLASHglsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), - [anon_sym_BSLASHglsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), - [anon_sym_BSLASHglsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), - [anon_sym_BSLASHnewacronym] = ACTIONS(4845), - [anon_sym_BSLASHacrshort] = ACTIONS(4845), - [anon_sym_BSLASHAcrshort] = ACTIONS(4845), - [anon_sym_BSLASHACRshort] = ACTIONS(4845), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), - [anon_sym_BSLASHacrlong] = ACTIONS(4845), - [anon_sym_BSLASHAcrlong] = ACTIONS(4845), - [anon_sym_BSLASHACRlong] = ACTIONS(4845), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), - [anon_sym_BSLASHacrfull] = ACTIONS(4845), - [anon_sym_BSLASHAcrfull] = ACTIONS(4845), - [anon_sym_BSLASHACRfull] = ACTIONS(4845), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), - [anon_sym_BSLASHacs] = ACTIONS(4845), - [anon_sym_BSLASHAcs] = ACTIONS(4845), - [anon_sym_BSLASHacsp] = ACTIONS(4845), - [anon_sym_BSLASHAcsp] = ACTIONS(4845), - [anon_sym_BSLASHacl] = ACTIONS(4845), - [anon_sym_BSLASHAcl] = ACTIONS(4845), - [anon_sym_BSLASHaclp] = ACTIONS(4845), - [anon_sym_BSLASHAclp] = ACTIONS(4845), - [anon_sym_BSLASHacf] = ACTIONS(4845), - [anon_sym_BSLASHAcf] = ACTIONS(4845), - [anon_sym_BSLASHacfp] = ACTIONS(4845), - [anon_sym_BSLASHAcfp] = ACTIONS(4845), - [anon_sym_BSLASHac] = ACTIONS(4845), - [anon_sym_BSLASHAc] = ACTIONS(4845), - [anon_sym_BSLASHacp] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), - [anon_sym_BSLASHcolor] = ACTIONS(4845), - [anon_sym_BSLASHcolorbox] = ACTIONS(4845), - [anon_sym_BSLASHtextcolor] = ACTIONS(4845), - [anon_sym_BSLASHpagecolor] = ACTIONS(4845), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), - [anon_sym_BSLASHtext] = ACTIONS(4845), - [anon_sym_BSLASHintertext] = ACTIONS(4845), - [anon_sym_shortintertext] = ACTIONS(4845), + [sym_command_name] = ACTIONS(4924), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_BSLASHpart] = ACTIONS(4924), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddpart] = ACTIONS(4924), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHchapter] = ACTIONS(4924), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddchap] = ACTIONS(4924), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsection] = ACTIONS(4924), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddsec] = ACTIONS(4924), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHparagraph] = ACTIONS(4924), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4924), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHitem] = ACTIONS(4924), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4924), + [sym_placeholder] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym__] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4922), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4922), + [anon_sym_BSLASHbegin] = ACTIONS(4924), + [anon_sym_BSLASHusepackage] = ACTIONS(4924), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4924), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4924), + [anon_sym_BSLASHinclude] = ACTIONS(4924), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4924), + [anon_sym_BSLASHinput] = ACTIONS(4924), + [anon_sym_BSLASHsubfile] = ACTIONS(4924), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4924), + [anon_sym_BSLASHbibliography] = ACTIONS(4924), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4924), + [anon_sym_BSLASHincludesvg] = ACTIONS(4924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4924), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4924), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4924), + [anon_sym_BSLASHimport] = ACTIONS(4924), + [anon_sym_BSLASHsubimport] = ACTIONS(4924), + [anon_sym_BSLASHinputfrom] = ACTIONS(4924), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4924), + [anon_sym_BSLASHincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHcaption] = ACTIONS(4924), + [anon_sym_BSLASHcite] = ACTIONS(4924), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCite] = ACTIONS(4924), + [anon_sym_BSLASHnocite] = ACTIONS(4924), + [anon_sym_BSLASHcitet] = ACTIONS(4924), + [anon_sym_BSLASHcitep] = ACTIONS(4924), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteauthor] = ACTIONS(4924), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4924), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitetitle] = ACTIONS(4924), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteyear] = ACTIONS(4924), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitedate] = ACTIONS(4924), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteurl] = ACTIONS(4924), + [anon_sym_BSLASHfullcite] = ACTIONS(4924), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4924), + [anon_sym_BSLASHcitealt] = ACTIONS(4924), + [anon_sym_BSLASHcitealp] = ACTIONS(4924), + [anon_sym_BSLASHcitetext] = ACTIONS(4924), + [anon_sym_BSLASHparencite] = ACTIONS(4924), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHParencite] = ACTIONS(4924), + [anon_sym_BSLASHfootcite] = ACTIONS(4924), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4924), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4924), + [anon_sym_BSLASHtextcite] = ACTIONS(4924), + [anon_sym_BSLASHTextcite] = ACTIONS(4924), + [anon_sym_BSLASHsmartcite] = ACTIONS(4924), + [anon_sym_BSLASHSmartcite] = ACTIONS(4924), + [anon_sym_BSLASHsupercite] = ACTIONS(4924), + [anon_sym_BSLASHautocite] = ACTIONS(4924), + [anon_sym_BSLASHAutocite] = ACTIONS(4924), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHvolcite] = ACTIONS(4924), + [anon_sym_BSLASHVolcite] = ACTIONS(4924), + [anon_sym_BSLASHpvolcite] = ACTIONS(4924), + [anon_sym_BSLASHPvolcite] = ACTIONS(4924), + [anon_sym_BSLASHfvolcite] = ACTIONS(4924), + [anon_sym_BSLASHftvolcite] = ACTIONS(4924), + [anon_sym_BSLASHsvolcite] = ACTIONS(4924), + [anon_sym_BSLASHSvolcite] = ACTIONS(4924), + [anon_sym_BSLASHtvolcite] = ACTIONS(4924), + [anon_sym_BSLASHTvolcite] = ACTIONS(4924), + [anon_sym_BSLASHavolcite] = ACTIONS(4924), + [anon_sym_BSLASHAvolcite] = ACTIONS(4924), + [anon_sym_BSLASHnotecite] = ACTIONS(4924), + [anon_sym_BSLASHNotecite] = ACTIONS(4924), + [anon_sym_BSLASHpnotecite] = ACTIONS(4924), + [anon_sym_BSLASHPnotecite] = ACTIONS(4924), + [anon_sym_BSLASHfnotecite] = ACTIONS(4924), + [anon_sym_BSLASHlabel] = ACTIONS(4924), + [anon_sym_BSLASHref] = ACTIONS(4924), + [anon_sym_BSLASHeqref] = ACTIONS(4924), + [anon_sym_BSLASHvref] = ACTIONS(4924), + [anon_sym_BSLASHVref] = ACTIONS(4924), + [anon_sym_BSLASHautoref] = ACTIONS(4924), + [anon_sym_BSLASHpageref] = ACTIONS(4924), + [anon_sym_BSLASHcref] = ACTIONS(4924), + [anon_sym_BSLASHCref] = ACTIONS(4924), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnameCref] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHlabelcref] = ACTIONS(4924), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCrefrange] = ACTIONS(4924), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnewlabel] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4924), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4924), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4924), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdef] = ACTIONS(4924), + [anon_sym_BSLASHlet] = ACTIONS(4924), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4924), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4924), + [anon_sym_BSLASHgls] = ACTIONS(4924), + [anon_sym_BSLASHGls] = ACTIONS(4924), + [anon_sym_BSLASHGLS] = ACTIONS(4924), + [anon_sym_BSLASHglspl] = ACTIONS(4924), + [anon_sym_BSLASHGlspl] = ACTIONS(4924), + [anon_sym_BSLASHGLSpl] = ACTIONS(4924), + [anon_sym_BSLASHglsdisp] = ACTIONS(4924), + [anon_sym_BSLASHglslink] = ACTIONS(4924), + [anon_sym_BSLASHglstext] = ACTIONS(4924), + [anon_sym_BSLASHGlstext] = ACTIONS(4924), + [anon_sym_BSLASHGLStext] = ACTIONS(4924), + [anon_sym_BSLASHglsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4924), + [anon_sym_BSLASHglsplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSplural] = ACTIONS(4924), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHglsname] = ACTIONS(4924), + [anon_sym_BSLASHGlsname] = ACTIONS(4924), + [anon_sym_BSLASHGLSname] = ACTIONS(4924), + [anon_sym_BSLASHglssymbol] = ACTIONS(4924), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4924), + [anon_sym_BSLASHglsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4924), + [anon_sym_BSLASHglsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4924), + [anon_sym_BSLASHglsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4924), + [anon_sym_BSLASHglsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4924), + [anon_sym_BSLASHglsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4924), + [anon_sym_BSLASHnewacronym] = ACTIONS(4924), + [anon_sym_BSLASHacrshort] = ACTIONS(4924), + [anon_sym_BSLASHAcrshort] = ACTIONS(4924), + [anon_sym_BSLASHACRshort] = ACTIONS(4924), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4924), + [anon_sym_BSLASHacrlong] = ACTIONS(4924), + [anon_sym_BSLASHAcrlong] = ACTIONS(4924), + [anon_sym_BSLASHACRlong] = ACTIONS(4924), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4924), + [anon_sym_BSLASHacrfull] = ACTIONS(4924), + [anon_sym_BSLASHAcrfull] = ACTIONS(4924), + [anon_sym_BSLASHACRfull] = ACTIONS(4924), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4924), + [anon_sym_BSLASHacs] = ACTIONS(4924), + [anon_sym_BSLASHAcs] = ACTIONS(4924), + [anon_sym_BSLASHacsp] = ACTIONS(4924), + [anon_sym_BSLASHAcsp] = ACTIONS(4924), + [anon_sym_BSLASHacl] = ACTIONS(4924), + [anon_sym_BSLASHAcl] = ACTIONS(4924), + [anon_sym_BSLASHaclp] = ACTIONS(4924), + [anon_sym_BSLASHAclp] = ACTIONS(4924), + [anon_sym_BSLASHacf] = ACTIONS(4924), + [anon_sym_BSLASHAcf] = ACTIONS(4924), + [anon_sym_BSLASHacfp] = ACTIONS(4924), + [anon_sym_BSLASHAcfp] = ACTIONS(4924), + [anon_sym_BSLASHac] = ACTIONS(4924), + [anon_sym_BSLASHAc] = ACTIONS(4924), + [anon_sym_BSLASHacp] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4924), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4924), + [anon_sym_BSLASHcolor] = ACTIONS(4924), + [anon_sym_BSLASHcolorbox] = ACTIONS(4924), + [anon_sym_BSLASHtextcolor] = ACTIONS(4924), + [anon_sym_BSLASHpagecolor] = ACTIONS(4924), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4924), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4924), + [anon_sym_BSLASHtext] = ACTIONS(4924), + [anon_sym_BSLASHintertext] = ACTIONS(4924), + [anon_sym_shortintertext] = ACTIONS(4924), }, [684] = { - [ts_builtin_sym_end] = ACTIONS(4927), - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [ts_builtin_sym_end] = ACTIONS(5006), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_BSLASHpart] = ACTIONS(5008), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddpart] = ACTIONS(5008), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHchapter] = ACTIONS(5008), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddchap] = ACTIONS(5008), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsection] = ACTIONS(5008), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddsec] = ACTIONS(5008), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHparagraph] = ACTIONS(5008), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5008), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHitem] = ACTIONS(5008), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASHbegin] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [685] = { [sym_brack_group_text] = STATE(998), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_BSLASHpart] = ACTIONS(4857), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddpart] = ACTIONS(4857), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHchapter] = ACTIONS(4857), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddchap] = ACTIONS(4857), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsection] = ACTIONS(4857), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddsec] = ACTIONS(4857), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHparagraph] = ACTIONS(4857), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHitem] = ACTIONS(4857), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASHbegin] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BSLASHpart] = ACTIONS(4936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddpart] = ACTIONS(4936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHchapter] = ACTIONS(4936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddchap] = ACTIONS(4936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsection] = ACTIONS(4936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddsec] = ACTIONS(4936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHparagraph] = ACTIONS(4936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHitem] = ACTIONS(4936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASHbegin] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [686] = { - [ts_builtin_sym_end] = ACTIONS(4933), - [sym_command_name] = ACTIONS(4935), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4933), - [anon_sym_BSLASHpart] = ACTIONS(4935), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddpart] = ACTIONS(4935), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHchapter] = ACTIONS(4935), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddchap] = ACTIONS(4935), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsection] = ACTIONS(4935), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddsec] = ACTIONS(4935), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHparagraph] = ACTIONS(4935), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHitem] = ACTIONS(4935), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [sym_word] = ACTIONS(4935), - [sym_placeholder] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_CARET] = ACTIONS(4935), - [anon_sym__] = ACTIONS(4935), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4935), - [anon_sym_COLON] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), - [anon_sym_DOLLAR] = ACTIONS(4935), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), - [anon_sym_BSLASHbegin] = ACTIONS(4935), - [anon_sym_BSLASHusepackage] = ACTIONS(4935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), - [anon_sym_BSLASHinclude] = ACTIONS(4935), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), - [anon_sym_BSLASHinput] = ACTIONS(4935), - [anon_sym_BSLASHsubfile] = ACTIONS(4935), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), - [anon_sym_BSLASHbibliography] = ACTIONS(4935), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), - [anon_sym_BSLASHincludesvg] = ACTIONS(4935), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), - [anon_sym_BSLASHimport] = ACTIONS(4935), - [anon_sym_BSLASHsubimport] = ACTIONS(4935), - [anon_sym_BSLASHinputfrom] = ACTIONS(4935), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), - [anon_sym_BSLASHincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHcaption] = ACTIONS(4935), - [anon_sym_BSLASHcite] = ACTIONS(4935), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCite] = ACTIONS(4935), - [anon_sym_BSLASHnocite] = ACTIONS(4935), - [anon_sym_BSLASHcitet] = ACTIONS(4935), - [anon_sym_BSLASHcitep] = ACTIONS(4935), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteauthor] = ACTIONS(4935), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitetitle] = ACTIONS(4935), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteyear] = ACTIONS(4935), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitedate] = ACTIONS(4935), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteurl] = ACTIONS(4935), - [anon_sym_BSLASHfullcite] = ACTIONS(4935), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), - [anon_sym_BSLASHcitealt] = ACTIONS(4935), - [anon_sym_BSLASHcitealp] = ACTIONS(4935), - [anon_sym_BSLASHcitetext] = ACTIONS(4935), - [anon_sym_BSLASHparencite] = ACTIONS(4935), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHParencite] = ACTIONS(4935), - [anon_sym_BSLASHfootcite] = ACTIONS(4935), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), - [anon_sym_BSLASHtextcite] = ACTIONS(4935), - [anon_sym_BSLASHTextcite] = ACTIONS(4935), - [anon_sym_BSLASHsmartcite] = ACTIONS(4935), - [anon_sym_BSLASHSmartcite] = ACTIONS(4935), - [anon_sym_BSLASHsupercite] = ACTIONS(4935), - [anon_sym_BSLASHautocite] = ACTIONS(4935), - [anon_sym_BSLASHAutocite] = ACTIONS(4935), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHvolcite] = ACTIONS(4935), - [anon_sym_BSLASHVolcite] = ACTIONS(4935), - [anon_sym_BSLASHpvolcite] = ACTIONS(4935), - [anon_sym_BSLASHPvolcite] = ACTIONS(4935), - [anon_sym_BSLASHfvolcite] = ACTIONS(4935), - [anon_sym_BSLASHftvolcite] = ACTIONS(4935), - [anon_sym_BSLASHsvolcite] = ACTIONS(4935), - [anon_sym_BSLASHSvolcite] = ACTIONS(4935), - [anon_sym_BSLASHtvolcite] = ACTIONS(4935), - [anon_sym_BSLASHTvolcite] = ACTIONS(4935), - [anon_sym_BSLASHavolcite] = ACTIONS(4935), - [anon_sym_BSLASHAvolcite] = ACTIONS(4935), - [anon_sym_BSLASHnotecite] = ACTIONS(4935), - [anon_sym_BSLASHNotecite] = ACTIONS(4935), - [anon_sym_BSLASHpnotecite] = ACTIONS(4935), - [anon_sym_BSLASHPnotecite] = ACTIONS(4935), - [anon_sym_BSLASHfnotecite] = ACTIONS(4935), - [anon_sym_BSLASHlabel] = ACTIONS(4935), - [anon_sym_BSLASHref] = ACTIONS(4935), - [anon_sym_BSLASHeqref] = ACTIONS(4935), - [anon_sym_BSLASHvref] = ACTIONS(4935), - [anon_sym_BSLASHVref] = ACTIONS(4935), - [anon_sym_BSLASHautoref] = ACTIONS(4935), - [anon_sym_BSLASHpageref] = ACTIONS(4935), - [anon_sym_BSLASHcref] = ACTIONS(4935), - [anon_sym_BSLASHCref] = ACTIONS(4935), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnameCref] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHlabelcref] = ACTIONS(4935), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCrefrange] = ACTIONS(4935), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnewlabel] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), - [anon_sym_BSLASHdef] = ACTIONS(4935), - [anon_sym_BSLASHlet] = ACTIONS(4935), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), - [anon_sym_BSLASHgls] = ACTIONS(4935), - [anon_sym_BSLASHGls] = ACTIONS(4935), - [anon_sym_BSLASHGLS] = ACTIONS(4935), - [anon_sym_BSLASHglspl] = ACTIONS(4935), - [anon_sym_BSLASHGlspl] = ACTIONS(4935), - [anon_sym_BSLASHGLSpl] = ACTIONS(4935), - [anon_sym_BSLASHglsdisp] = ACTIONS(4935), - [anon_sym_BSLASHglslink] = ACTIONS(4935), - [anon_sym_BSLASHglstext] = ACTIONS(4935), - [anon_sym_BSLASHGlstext] = ACTIONS(4935), - [anon_sym_BSLASHGLStext] = ACTIONS(4935), - [anon_sym_BSLASHglsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), - [anon_sym_BSLASHglsplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSplural] = ACTIONS(4935), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHglsname] = ACTIONS(4935), - [anon_sym_BSLASHGlsname] = ACTIONS(4935), - [anon_sym_BSLASHGLSname] = ACTIONS(4935), - [anon_sym_BSLASHglssymbol] = ACTIONS(4935), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), - [anon_sym_BSLASHglsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), - [anon_sym_BSLASHglsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), - [anon_sym_BSLASHglsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), - [anon_sym_BSLASHglsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), - [anon_sym_BSLASHglsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), - [anon_sym_BSLASHnewacronym] = ACTIONS(4935), - [anon_sym_BSLASHacrshort] = ACTIONS(4935), - [anon_sym_BSLASHAcrshort] = ACTIONS(4935), - [anon_sym_BSLASHACRshort] = ACTIONS(4935), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), - [anon_sym_BSLASHacrlong] = ACTIONS(4935), - [anon_sym_BSLASHAcrlong] = ACTIONS(4935), - [anon_sym_BSLASHACRlong] = ACTIONS(4935), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), - [anon_sym_BSLASHacrfull] = ACTIONS(4935), - [anon_sym_BSLASHAcrfull] = ACTIONS(4935), - [anon_sym_BSLASHACRfull] = ACTIONS(4935), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), - [anon_sym_BSLASHacs] = ACTIONS(4935), - [anon_sym_BSLASHAcs] = ACTIONS(4935), - [anon_sym_BSLASHacsp] = ACTIONS(4935), - [anon_sym_BSLASHAcsp] = ACTIONS(4935), - [anon_sym_BSLASHacl] = ACTIONS(4935), - [anon_sym_BSLASHAcl] = ACTIONS(4935), - [anon_sym_BSLASHaclp] = ACTIONS(4935), - [anon_sym_BSLASHAclp] = ACTIONS(4935), - [anon_sym_BSLASHacf] = ACTIONS(4935), - [anon_sym_BSLASHAcf] = ACTIONS(4935), - [anon_sym_BSLASHacfp] = ACTIONS(4935), - [anon_sym_BSLASHAcfp] = ACTIONS(4935), - [anon_sym_BSLASHac] = ACTIONS(4935), - [anon_sym_BSLASHAc] = ACTIONS(4935), - [anon_sym_BSLASHacp] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), - [anon_sym_BSLASHcolor] = ACTIONS(4935), - [anon_sym_BSLASHcolorbox] = ACTIONS(4935), - [anon_sym_BSLASHtextcolor] = ACTIONS(4935), - [anon_sym_BSLASHpagecolor] = ACTIONS(4935), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - [anon_sym_BSLASHtext] = ACTIONS(4935), - [anon_sym_BSLASHintertext] = ACTIONS(4935), - [anon_sym_shortintertext] = ACTIONS(4935), + [ts_builtin_sym_end] = ACTIONS(5012), + [sym_command_name] = ACTIONS(5014), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_BSLASHpart] = ACTIONS(5014), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddpart] = ACTIONS(5014), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHchapter] = ACTIONS(5014), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddchap] = ACTIONS(5014), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsection] = ACTIONS(5014), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddsec] = ACTIONS(5014), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHparagraph] = ACTIONS(5014), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5014), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHitem] = ACTIONS(5014), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [sym_word] = ACTIONS(5014), + [sym_placeholder] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5012), + [anon_sym_BSLASHbegin] = ACTIONS(5014), + [anon_sym_BSLASHusepackage] = ACTIONS(5014), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5014), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5014), + [anon_sym_BSLASHinclude] = ACTIONS(5014), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5014), + [anon_sym_BSLASHinput] = ACTIONS(5014), + [anon_sym_BSLASHsubfile] = ACTIONS(5014), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5014), + [anon_sym_BSLASHbibliography] = ACTIONS(5014), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5014), + [anon_sym_BSLASHincludesvg] = ACTIONS(5014), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5014), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5014), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5014), + [anon_sym_BSLASHimport] = ACTIONS(5014), + [anon_sym_BSLASHsubimport] = ACTIONS(5014), + [anon_sym_BSLASHinputfrom] = ACTIONS(5014), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5014), + [anon_sym_BSLASHincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHcaption] = ACTIONS(5014), + [anon_sym_BSLASHcite] = ACTIONS(5014), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCite] = ACTIONS(5014), + [anon_sym_BSLASHnocite] = ACTIONS(5014), + [anon_sym_BSLASHcitet] = ACTIONS(5014), + [anon_sym_BSLASHcitep] = ACTIONS(5014), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteauthor] = ACTIONS(5014), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5014), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitetitle] = ACTIONS(5014), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteyear] = ACTIONS(5014), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitedate] = ACTIONS(5014), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteurl] = ACTIONS(5014), + [anon_sym_BSLASHfullcite] = ACTIONS(5014), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5014), + [anon_sym_BSLASHcitealt] = ACTIONS(5014), + [anon_sym_BSLASHcitealp] = ACTIONS(5014), + [anon_sym_BSLASHcitetext] = ACTIONS(5014), + [anon_sym_BSLASHparencite] = ACTIONS(5014), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHParencite] = ACTIONS(5014), + [anon_sym_BSLASHfootcite] = ACTIONS(5014), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5014), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5014), + [anon_sym_BSLASHtextcite] = ACTIONS(5014), + [anon_sym_BSLASHTextcite] = ACTIONS(5014), + [anon_sym_BSLASHsmartcite] = ACTIONS(5014), + [anon_sym_BSLASHSmartcite] = ACTIONS(5014), + [anon_sym_BSLASHsupercite] = ACTIONS(5014), + [anon_sym_BSLASHautocite] = ACTIONS(5014), + [anon_sym_BSLASHAutocite] = ACTIONS(5014), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHvolcite] = ACTIONS(5014), + [anon_sym_BSLASHVolcite] = ACTIONS(5014), + [anon_sym_BSLASHpvolcite] = ACTIONS(5014), + [anon_sym_BSLASHPvolcite] = ACTIONS(5014), + [anon_sym_BSLASHfvolcite] = ACTIONS(5014), + [anon_sym_BSLASHftvolcite] = ACTIONS(5014), + [anon_sym_BSLASHsvolcite] = ACTIONS(5014), + [anon_sym_BSLASHSvolcite] = ACTIONS(5014), + [anon_sym_BSLASHtvolcite] = ACTIONS(5014), + [anon_sym_BSLASHTvolcite] = ACTIONS(5014), + [anon_sym_BSLASHavolcite] = ACTIONS(5014), + [anon_sym_BSLASHAvolcite] = ACTIONS(5014), + [anon_sym_BSLASHnotecite] = ACTIONS(5014), + [anon_sym_BSLASHNotecite] = ACTIONS(5014), + [anon_sym_BSLASHpnotecite] = ACTIONS(5014), + [anon_sym_BSLASHPnotecite] = ACTIONS(5014), + [anon_sym_BSLASHfnotecite] = ACTIONS(5014), + [anon_sym_BSLASHlabel] = ACTIONS(5014), + [anon_sym_BSLASHref] = ACTIONS(5014), + [anon_sym_BSLASHeqref] = ACTIONS(5014), + [anon_sym_BSLASHvref] = ACTIONS(5014), + [anon_sym_BSLASHVref] = ACTIONS(5014), + [anon_sym_BSLASHautoref] = ACTIONS(5014), + [anon_sym_BSLASHpageref] = ACTIONS(5014), + [anon_sym_BSLASHcref] = ACTIONS(5014), + [anon_sym_BSLASHCref] = ACTIONS(5014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnameCref] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHlabelcref] = ACTIONS(5014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCrefrange] = ACTIONS(5014), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnewlabel] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5014), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5014), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5014), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdef] = ACTIONS(5014), + [anon_sym_BSLASHlet] = ACTIONS(5014), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5014), + [anon_sym_BSLASHgls] = ACTIONS(5014), + [anon_sym_BSLASHGls] = ACTIONS(5014), + [anon_sym_BSLASHGLS] = ACTIONS(5014), + [anon_sym_BSLASHglspl] = ACTIONS(5014), + [anon_sym_BSLASHGlspl] = ACTIONS(5014), + [anon_sym_BSLASHGLSpl] = ACTIONS(5014), + [anon_sym_BSLASHglsdisp] = ACTIONS(5014), + [anon_sym_BSLASHglslink] = ACTIONS(5014), + [anon_sym_BSLASHglstext] = ACTIONS(5014), + [anon_sym_BSLASHGlstext] = ACTIONS(5014), + [anon_sym_BSLASHGLStext] = ACTIONS(5014), + [anon_sym_BSLASHglsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5014), + [anon_sym_BSLASHglsplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSplural] = ACTIONS(5014), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHglsname] = ACTIONS(5014), + [anon_sym_BSLASHGlsname] = ACTIONS(5014), + [anon_sym_BSLASHGLSname] = ACTIONS(5014), + [anon_sym_BSLASHglssymbol] = ACTIONS(5014), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5014), + [anon_sym_BSLASHglsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5014), + [anon_sym_BSLASHglsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5014), + [anon_sym_BSLASHglsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5014), + [anon_sym_BSLASHglsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5014), + [anon_sym_BSLASHglsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5014), + [anon_sym_BSLASHnewacronym] = ACTIONS(5014), + [anon_sym_BSLASHacrshort] = ACTIONS(5014), + [anon_sym_BSLASHAcrshort] = ACTIONS(5014), + [anon_sym_BSLASHACRshort] = ACTIONS(5014), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5014), + [anon_sym_BSLASHacrlong] = ACTIONS(5014), + [anon_sym_BSLASHAcrlong] = ACTIONS(5014), + [anon_sym_BSLASHACRlong] = ACTIONS(5014), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5014), + [anon_sym_BSLASHacrfull] = ACTIONS(5014), + [anon_sym_BSLASHAcrfull] = ACTIONS(5014), + [anon_sym_BSLASHACRfull] = ACTIONS(5014), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5014), + [anon_sym_BSLASHacs] = ACTIONS(5014), + [anon_sym_BSLASHAcs] = ACTIONS(5014), + [anon_sym_BSLASHacsp] = ACTIONS(5014), + [anon_sym_BSLASHAcsp] = ACTIONS(5014), + [anon_sym_BSLASHacl] = ACTIONS(5014), + [anon_sym_BSLASHAcl] = ACTIONS(5014), + [anon_sym_BSLASHaclp] = ACTIONS(5014), + [anon_sym_BSLASHAclp] = ACTIONS(5014), + [anon_sym_BSLASHacf] = ACTIONS(5014), + [anon_sym_BSLASHAcf] = ACTIONS(5014), + [anon_sym_BSLASHacfp] = ACTIONS(5014), + [anon_sym_BSLASHAcfp] = ACTIONS(5014), + [anon_sym_BSLASHac] = ACTIONS(5014), + [anon_sym_BSLASHAc] = ACTIONS(5014), + [anon_sym_BSLASHacp] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5014), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5014), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5014), + [anon_sym_BSLASHcolor] = ACTIONS(5014), + [anon_sym_BSLASHcolorbox] = ACTIONS(5014), + [anon_sym_BSLASHtextcolor] = ACTIONS(5014), + [anon_sym_BSLASHpagecolor] = ACTIONS(5014), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5014), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5014), + [anon_sym_BSLASHtext] = ACTIONS(5014), + [anon_sym_BSLASHintertext] = ACTIONS(5014), + [anon_sym_shortintertext] = ACTIONS(5014), }, [687] = { [sym_brack_group_text] = STATE(1067), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_BSLASHpart] = ACTIONS(4857), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddpart] = ACTIONS(4857), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHchapter] = ACTIONS(4857), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddchap] = ACTIONS(4857), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsection] = ACTIONS(4857), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddsec] = ACTIONS(4857), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHparagraph] = ACTIONS(4857), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHitem] = ACTIONS(4857), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4855), - [anon_sym_BSLASHbegin] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BSLASHpart] = ACTIONS(4936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddpart] = ACTIONS(4936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHchapter] = ACTIONS(4936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddchap] = ACTIONS(4936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsection] = ACTIONS(4936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddsec] = ACTIONS(4936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHparagraph] = ACTIONS(4936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHitem] = ACTIONS(4936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4934), + [anon_sym_BSLASHbegin] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(4937), - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_BSLASHpart] = ACTIONS(4939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddpart] = ACTIONS(4939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHchapter] = ACTIONS(4939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddchap] = ACTIONS(4939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsection] = ACTIONS(4939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddsec] = ACTIONS(4939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHparagraph] = ACTIONS(4939), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHitem] = ACTIONS(4939), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASHbegin] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [ts_builtin_sym_end] = ACTIONS(5016), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_BSLASHpart] = ACTIONS(5018), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddpart] = ACTIONS(5018), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHchapter] = ACTIONS(5018), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddchap] = ACTIONS(5018), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsection] = ACTIONS(5018), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddsec] = ACTIONS(5018), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHparagraph] = ACTIONS(5018), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5018), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHitem] = ACTIONS(5018), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASHbegin] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [689] = { - [ts_builtin_sym_end] = ACTIONS(4941), - [sym_command_name] = ACTIONS(4943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_BSLASHpart] = ACTIONS(4943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddpart] = ACTIONS(4943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHchapter] = ACTIONS(4943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddchap] = ACTIONS(4943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsection] = ACTIONS(4943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddsec] = ACTIONS(4943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHparagraph] = ACTIONS(4943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHitem] = ACTIONS(4943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [sym_word] = ACTIONS(4943), - [sym_placeholder] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4943), - [anon_sym__] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), - [anon_sym_BSLASHbegin] = ACTIONS(4943), - [anon_sym_BSLASHusepackage] = ACTIONS(4943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), - [anon_sym_BSLASHinclude] = ACTIONS(4943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), - [anon_sym_BSLASHinput] = ACTIONS(4943), - [anon_sym_BSLASHsubfile] = ACTIONS(4943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), - [anon_sym_BSLASHbibliography] = ACTIONS(4943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), - [anon_sym_BSLASHincludesvg] = ACTIONS(4943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), - [anon_sym_BSLASHimport] = ACTIONS(4943), - [anon_sym_BSLASHsubimport] = ACTIONS(4943), - [anon_sym_BSLASHinputfrom] = ACTIONS(4943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), - [anon_sym_BSLASHincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHcaption] = ACTIONS(4943), - [anon_sym_BSLASHcite] = ACTIONS(4943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCite] = ACTIONS(4943), - [anon_sym_BSLASHnocite] = ACTIONS(4943), - [anon_sym_BSLASHcitet] = ACTIONS(4943), - [anon_sym_BSLASHcitep] = ACTIONS(4943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteyear] = ACTIONS(4943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitedate] = ACTIONS(4943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteurl] = ACTIONS(4943), - [anon_sym_BSLASHfullcite] = ACTIONS(4943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), - [anon_sym_BSLASHcitealt] = ACTIONS(4943), - [anon_sym_BSLASHcitealp] = ACTIONS(4943), - [anon_sym_BSLASHcitetext] = ACTIONS(4943), - [anon_sym_BSLASHparencite] = ACTIONS(4943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHParencite] = ACTIONS(4943), - [anon_sym_BSLASHfootcite] = ACTIONS(4943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), - [anon_sym_BSLASHtextcite] = ACTIONS(4943), - [anon_sym_BSLASHTextcite] = ACTIONS(4943), - [anon_sym_BSLASHsmartcite] = ACTIONS(4943), - [anon_sym_BSLASHSmartcite] = ACTIONS(4943), - [anon_sym_BSLASHsupercite] = ACTIONS(4943), - [anon_sym_BSLASHautocite] = ACTIONS(4943), - [anon_sym_BSLASHAutocite] = ACTIONS(4943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHvolcite] = ACTIONS(4943), - [anon_sym_BSLASHVolcite] = ACTIONS(4943), - [anon_sym_BSLASHpvolcite] = ACTIONS(4943), - [anon_sym_BSLASHPvolcite] = ACTIONS(4943), - [anon_sym_BSLASHfvolcite] = ACTIONS(4943), - [anon_sym_BSLASHftvolcite] = ACTIONS(4943), - [anon_sym_BSLASHsvolcite] = ACTIONS(4943), - [anon_sym_BSLASHSvolcite] = ACTIONS(4943), - [anon_sym_BSLASHtvolcite] = ACTIONS(4943), - [anon_sym_BSLASHTvolcite] = ACTIONS(4943), - [anon_sym_BSLASHavolcite] = ACTIONS(4943), - [anon_sym_BSLASHAvolcite] = ACTIONS(4943), - [anon_sym_BSLASHnotecite] = ACTIONS(4943), - [anon_sym_BSLASHNotecite] = ACTIONS(4943), - [anon_sym_BSLASHpnotecite] = ACTIONS(4943), - [anon_sym_BSLASHPnotecite] = ACTIONS(4943), - [anon_sym_BSLASHfnotecite] = ACTIONS(4943), - [anon_sym_BSLASHlabel] = ACTIONS(4943), - [anon_sym_BSLASHref] = ACTIONS(4943), - [anon_sym_BSLASHeqref] = ACTIONS(4943), - [anon_sym_BSLASHvref] = ACTIONS(4943), - [anon_sym_BSLASHVref] = ACTIONS(4943), - [anon_sym_BSLASHautoref] = ACTIONS(4943), - [anon_sym_BSLASHpageref] = ACTIONS(4943), - [anon_sym_BSLASHcref] = ACTIONS(4943), - [anon_sym_BSLASHCref] = ACTIONS(4943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnameCref] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHlabelcref] = ACTIONS(4943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnewlabel] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), - [anon_sym_BSLASHdef] = ACTIONS(4943), - [anon_sym_BSLASHlet] = ACTIONS(4943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), - [anon_sym_BSLASHgls] = ACTIONS(4943), - [anon_sym_BSLASHGls] = ACTIONS(4943), - [anon_sym_BSLASHGLS] = ACTIONS(4943), - [anon_sym_BSLASHglspl] = ACTIONS(4943), - [anon_sym_BSLASHGlspl] = ACTIONS(4943), - [anon_sym_BSLASHGLSpl] = ACTIONS(4943), - [anon_sym_BSLASHglsdisp] = ACTIONS(4943), - [anon_sym_BSLASHglslink] = ACTIONS(4943), - [anon_sym_BSLASHglstext] = ACTIONS(4943), - [anon_sym_BSLASHGlstext] = ACTIONS(4943), - [anon_sym_BSLASHGLStext] = ACTIONS(4943), - [anon_sym_BSLASHglsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), - [anon_sym_BSLASHglsplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSplural] = ACTIONS(4943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHglsname] = ACTIONS(4943), - [anon_sym_BSLASHGlsname] = ACTIONS(4943), - [anon_sym_BSLASHGLSname] = ACTIONS(4943), - [anon_sym_BSLASHglssymbol] = ACTIONS(4943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), - [anon_sym_BSLASHglsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), - [anon_sym_BSLASHglsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), - [anon_sym_BSLASHglsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), - [anon_sym_BSLASHglsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), - [anon_sym_BSLASHglsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), - [anon_sym_BSLASHnewacronym] = ACTIONS(4943), - [anon_sym_BSLASHacrshort] = ACTIONS(4943), - [anon_sym_BSLASHAcrshort] = ACTIONS(4943), - [anon_sym_BSLASHACRshort] = ACTIONS(4943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), - [anon_sym_BSLASHacrlong] = ACTIONS(4943), - [anon_sym_BSLASHAcrlong] = ACTIONS(4943), - [anon_sym_BSLASHACRlong] = ACTIONS(4943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), - [anon_sym_BSLASHacrfull] = ACTIONS(4943), - [anon_sym_BSLASHAcrfull] = ACTIONS(4943), - [anon_sym_BSLASHACRfull] = ACTIONS(4943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), - [anon_sym_BSLASHacs] = ACTIONS(4943), - [anon_sym_BSLASHAcs] = ACTIONS(4943), - [anon_sym_BSLASHacsp] = ACTIONS(4943), - [anon_sym_BSLASHAcsp] = ACTIONS(4943), - [anon_sym_BSLASHacl] = ACTIONS(4943), - [anon_sym_BSLASHAcl] = ACTIONS(4943), - [anon_sym_BSLASHaclp] = ACTIONS(4943), - [anon_sym_BSLASHAclp] = ACTIONS(4943), - [anon_sym_BSLASHacf] = ACTIONS(4943), - [anon_sym_BSLASHAcf] = ACTIONS(4943), - [anon_sym_BSLASHacfp] = ACTIONS(4943), - [anon_sym_BSLASHAcfp] = ACTIONS(4943), - [anon_sym_BSLASHac] = ACTIONS(4943), - [anon_sym_BSLASHAc] = ACTIONS(4943), - [anon_sym_BSLASHacp] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), - [anon_sym_BSLASHcolor] = ACTIONS(4943), - [anon_sym_BSLASHcolorbox] = ACTIONS(4943), - [anon_sym_BSLASHtextcolor] = ACTIONS(4943), - [anon_sym_BSLASHpagecolor] = ACTIONS(4943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), - [anon_sym_BSLASHtext] = ACTIONS(4943), - [anon_sym_BSLASHintertext] = ACTIONS(4943), - [anon_sym_shortintertext] = ACTIONS(4943), + [ts_builtin_sym_end] = ACTIONS(5020), + [sym_command_name] = ACTIONS(5022), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_BSLASHpart] = ACTIONS(5022), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddpart] = ACTIONS(5022), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHchapter] = ACTIONS(5022), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddchap] = ACTIONS(5022), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsection] = ACTIONS(5022), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddsec] = ACTIONS(5022), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHparagraph] = ACTIONS(5022), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5022), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHitem] = ACTIONS(5022), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [sym_word] = ACTIONS(5022), + [sym_placeholder] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5020), + [anon_sym_BSLASHbegin] = ACTIONS(5022), + [anon_sym_BSLASHusepackage] = ACTIONS(5022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5022), + [anon_sym_BSLASHinclude] = ACTIONS(5022), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5022), + [anon_sym_BSLASHinput] = ACTIONS(5022), + [anon_sym_BSLASHsubfile] = ACTIONS(5022), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5022), + [anon_sym_BSLASHbibliography] = ACTIONS(5022), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5022), + [anon_sym_BSLASHincludesvg] = ACTIONS(5022), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5022), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), + [anon_sym_BSLASHimport] = ACTIONS(5022), + [anon_sym_BSLASHsubimport] = ACTIONS(5022), + [anon_sym_BSLASHinputfrom] = ACTIONS(5022), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5022), + [anon_sym_BSLASHincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHcaption] = ACTIONS(5022), + [anon_sym_BSLASHcite] = ACTIONS(5022), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCite] = ACTIONS(5022), + [anon_sym_BSLASHnocite] = ACTIONS(5022), + [anon_sym_BSLASHcitet] = ACTIONS(5022), + [anon_sym_BSLASHcitep] = ACTIONS(5022), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteauthor] = ACTIONS(5022), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5022), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitetitle] = ACTIONS(5022), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteyear] = ACTIONS(5022), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitedate] = ACTIONS(5022), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteurl] = ACTIONS(5022), + [anon_sym_BSLASHfullcite] = ACTIONS(5022), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5022), + [anon_sym_BSLASHcitealt] = ACTIONS(5022), + [anon_sym_BSLASHcitealp] = ACTIONS(5022), + [anon_sym_BSLASHcitetext] = ACTIONS(5022), + [anon_sym_BSLASHparencite] = ACTIONS(5022), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHParencite] = ACTIONS(5022), + [anon_sym_BSLASHfootcite] = ACTIONS(5022), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5022), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5022), + [anon_sym_BSLASHtextcite] = ACTIONS(5022), + [anon_sym_BSLASHTextcite] = ACTIONS(5022), + [anon_sym_BSLASHsmartcite] = ACTIONS(5022), + [anon_sym_BSLASHSmartcite] = ACTIONS(5022), + [anon_sym_BSLASHsupercite] = ACTIONS(5022), + [anon_sym_BSLASHautocite] = ACTIONS(5022), + [anon_sym_BSLASHAutocite] = ACTIONS(5022), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHvolcite] = ACTIONS(5022), + [anon_sym_BSLASHVolcite] = ACTIONS(5022), + [anon_sym_BSLASHpvolcite] = ACTIONS(5022), + [anon_sym_BSLASHPvolcite] = ACTIONS(5022), + [anon_sym_BSLASHfvolcite] = ACTIONS(5022), + [anon_sym_BSLASHftvolcite] = ACTIONS(5022), + [anon_sym_BSLASHsvolcite] = ACTIONS(5022), + [anon_sym_BSLASHSvolcite] = ACTIONS(5022), + [anon_sym_BSLASHtvolcite] = ACTIONS(5022), + [anon_sym_BSLASHTvolcite] = ACTIONS(5022), + [anon_sym_BSLASHavolcite] = ACTIONS(5022), + [anon_sym_BSLASHAvolcite] = ACTIONS(5022), + [anon_sym_BSLASHnotecite] = ACTIONS(5022), + [anon_sym_BSLASHNotecite] = ACTIONS(5022), + [anon_sym_BSLASHpnotecite] = ACTIONS(5022), + [anon_sym_BSLASHPnotecite] = ACTIONS(5022), + [anon_sym_BSLASHfnotecite] = ACTIONS(5022), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [anon_sym_BSLASHref] = ACTIONS(5022), + [anon_sym_BSLASHeqref] = ACTIONS(5022), + [anon_sym_BSLASHvref] = ACTIONS(5022), + [anon_sym_BSLASHVref] = ACTIONS(5022), + [anon_sym_BSLASHautoref] = ACTIONS(5022), + [anon_sym_BSLASHpageref] = ACTIONS(5022), + [anon_sym_BSLASHcref] = ACTIONS(5022), + [anon_sym_BSLASHCref] = ACTIONS(5022), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnameCref] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHlabelcref] = ACTIONS(5022), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCrefrange] = ACTIONS(5022), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnewlabel] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5022), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5022), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5022), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdef] = ACTIONS(5022), + [anon_sym_BSLASHlet] = ACTIONS(5022), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5022), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5022), + [anon_sym_BSLASHgls] = ACTIONS(5022), + [anon_sym_BSLASHGls] = ACTIONS(5022), + [anon_sym_BSLASHGLS] = ACTIONS(5022), + [anon_sym_BSLASHglspl] = ACTIONS(5022), + [anon_sym_BSLASHGlspl] = ACTIONS(5022), + [anon_sym_BSLASHGLSpl] = ACTIONS(5022), + [anon_sym_BSLASHglsdisp] = ACTIONS(5022), + [anon_sym_BSLASHglslink] = ACTIONS(5022), + [anon_sym_BSLASHglstext] = ACTIONS(5022), + [anon_sym_BSLASHGlstext] = ACTIONS(5022), + [anon_sym_BSLASHGLStext] = ACTIONS(5022), + [anon_sym_BSLASHglsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5022), + [anon_sym_BSLASHglsplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSplural] = ACTIONS(5022), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHglsname] = ACTIONS(5022), + [anon_sym_BSLASHGlsname] = ACTIONS(5022), + [anon_sym_BSLASHGLSname] = ACTIONS(5022), + [anon_sym_BSLASHglssymbol] = ACTIONS(5022), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5022), + [anon_sym_BSLASHglsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5022), + [anon_sym_BSLASHglsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5022), + [anon_sym_BSLASHglsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5022), + [anon_sym_BSLASHglsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5022), + [anon_sym_BSLASHglsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5022), + [anon_sym_BSLASHnewacronym] = ACTIONS(5022), + [anon_sym_BSLASHacrshort] = ACTIONS(5022), + [anon_sym_BSLASHAcrshort] = ACTIONS(5022), + [anon_sym_BSLASHACRshort] = ACTIONS(5022), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5022), + [anon_sym_BSLASHacrlong] = ACTIONS(5022), + [anon_sym_BSLASHAcrlong] = ACTIONS(5022), + [anon_sym_BSLASHACRlong] = ACTIONS(5022), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5022), + [anon_sym_BSLASHacrfull] = ACTIONS(5022), + [anon_sym_BSLASHAcrfull] = ACTIONS(5022), + [anon_sym_BSLASHACRfull] = ACTIONS(5022), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5022), + [anon_sym_BSLASHacs] = ACTIONS(5022), + [anon_sym_BSLASHAcs] = ACTIONS(5022), + [anon_sym_BSLASHacsp] = ACTIONS(5022), + [anon_sym_BSLASHAcsp] = ACTIONS(5022), + [anon_sym_BSLASHacl] = ACTIONS(5022), + [anon_sym_BSLASHAcl] = ACTIONS(5022), + [anon_sym_BSLASHaclp] = ACTIONS(5022), + [anon_sym_BSLASHAclp] = ACTIONS(5022), + [anon_sym_BSLASHacf] = ACTIONS(5022), + [anon_sym_BSLASHAcf] = ACTIONS(5022), + [anon_sym_BSLASHacfp] = ACTIONS(5022), + [anon_sym_BSLASHAcfp] = ACTIONS(5022), + [anon_sym_BSLASHac] = ACTIONS(5022), + [anon_sym_BSLASHAc] = ACTIONS(5022), + [anon_sym_BSLASHacp] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5022), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5022), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5022), + [anon_sym_BSLASHcolor] = ACTIONS(5022), + [anon_sym_BSLASHcolorbox] = ACTIONS(5022), + [anon_sym_BSLASHtextcolor] = ACTIONS(5022), + [anon_sym_BSLASHpagecolor] = ACTIONS(5022), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5022), + [anon_sym_BSLASHtext] = ACTIONS(5022), + [anon_sym_BSLASHintertext] = ACTIONS(5022), + [anon_sym_shortintertext] = ACTIONS(5022), }, [690] = { - [ts_builtin_sym_end] = ACTIONS(4945), - [sym_command_name] = ACTIONS(4947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_BSLASHpart] = ACTIONS(4947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddpart] = ACTIONS(4947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHchapter] = ACTIONS(4947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddchap] = ACTIONS(4947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsection] = ACTIONS(4947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddsec] = ACTIONS(4947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHparagraph] = ACTIONS(4947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHitem] = ACTIONS(4947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [sym_word] = ACTIONS(4947), - [sym_placeholder] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4947), - [anon_sym__] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), - [anon_sym_BSLASHbegin] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), - [anon_sym_BSLASHinclude] = ACTIONS(4947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), - [anon_sym_BSLASHinput] = ACTIONS(4947), - [anon_sym_BSLASHsubfile] = ACTIONS(4947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), - [anon_sym_BSLASHbibliography] = ACTIONS(4947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), - [anon_sym_BSLASHincludesvg] = ACTIONS(4947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), - [anon_sym_BSLASHimport] = ACTIONS(4947), - [anon_sym_BSLASHsubimport] = ACTIONS(4947), - [anon_sym_BSLASHinputfrom] = ACTIONS(4947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), - [anon_sym_BSLASHincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHcaption] = ACTIONS(4947), - [anon_sym_BSLASHcite] = ACTIONS(4947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCite] = ACTIONS(4947), - [anon_sym_BSLASHnocite] = ACTIONS(4947), - [anon_sym_BSLASHcitet] = ACTIONS(4947), - [anon_sym_BSLASHcitep] = ACTIONS(4947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteyear] = ACTIONS(4947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitedate] = ACTIONS(4947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteurl] = ACTIONS(4947), - [anon_sym_BSLASHfullcite] = ACTIONS(4947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), - [anon_sym_BSLASHcitealt] = ACTIONS(4947), - [anon_sym_BSLASHcitealp] = ACTIONS(4947), - [anon_sym_BSLASHcitetext] = ACTIONS(4947), - [anon_sym_BSLASHparencite] = ACTIONS(4947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHParencite] = ACTIONS(4947), - [anon_sym_BSLASHfootcite] = ACTIONS(4947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), - [anon_sym_BSLASHtextcite] = ACTIONS(4947), - [anon_sym_BSLASHTextcite] = ACTIONS(4947), - [anon_sym_BSLASHsmartcite] = ACTIONS(4947), - [anon_sym_BSLASHSmartcite] = ACTIONS(4947), - [anon_sym_BSLASHsupercite] = ACTIONS(4947), - [anon_sym_BSLASHautocite] = ACTIONS(4947), - [anon_sym_BSLASHAutocite] = ACTIONS(4947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHvolcite] = ACTIONS(4947), - [anon_sym_BSLASHVolcite] = ACTIONS(4947), - [anon_sym_BSLASHpvolcite] = ACTIONS(4947), - [anon_sym_BSLASHPvolcite] = ACTIONS(4947), - [anon_sym_BSLASHfvolcite] = ACTIONS(4947), - [anon_sym_BSLASHftvolcite] = ACTIONS(4947), - [anon_sym_BSLASHsvolcite] = ACTIONS(4947), - [anon_sym_BSLASHSvolcite] = ACTIONS(4947), - [anon_sym_BSLASHtvolcite] = ACTIONS(4947), - [anon_sym_BSLASHTvolcite] = ACTIONS(4947), - [anon_sym_BSLASHavolcite] = ACTIONS(4947), - [anon_sym_BSLASHAvolcite] = ACTIONS(4947), - [anon_sym_BSLASHnotecite] = ACTIONS(4947), - [anon_sym_BSLASHNotecite] = ACTIONS(4947), - [anon_sym_BSLASHpnotecite] = ACTIONS(4947), - [anon_sym_BSLASHPnotecite] = ACTIONS(4947), - [anon_sym_BSLASHfnotecite] = ACTIONS(4947), - [anon_sym_BSLASHlabel] = ACTIONS(4947), - [anon_sym_BSLASHref] = ACTIONS(4947), - [anon_sym_BSLASHeqref] = ACTIONS(4947), - [anon_sym_BSLASHvref] = ACTIONS(4947), - [anon_sym_BSLASHVref] = ACTIONS(4947), - [anon_sym_BSLASHautoref] = ACTIONS(4947), - [anon_sym_BSLASHpageref] = ACTIONS(4947), - [anon_sym_BSLASHcref] = ACTIONS(4947), - [anon_sym_BSLASHCref] = ACTIONS(4947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnameCref] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHlabelcref] = ACTIONS(4947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnewlabel] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), - [anon_sym_BSLASHdef] = ACTIONS(4947), - [anon_sym_BSLASHlet] = ACTIONS(4947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), - [anon_sym_BSLASHgls] = ACTIONS(4947), - [anon_sym_BSLASHGls] = ACTIONS(4947), - [anon_sym_BSLASHGLS] = ACTIONS(4947), - [anon_sym_BSLASHglspl] = ACTIONS(4947), - [anon_sym_BSLASHGlspl] = ACTIONS(4947), - [anon_sym_BSLASHGLSpl] = ACTIONS(4947), - [anon_sym_BSLASHglsdisp] = ACTIONS(4947), - [anon_sym_BSLASHglslink] = ACTIONS(4947), - [anon_sym_BSLASHglstext] = ACTIONS(4947), - [anon_sym_BSLASHGlstext] = ACTIONS(4947), - [anon_sym_BSLASHGLStext] = ACTIONS(4947), - [anon_sym_BSLASHglsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), - [anon_sym_BSLASHglsplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSplural] = ACTIONS(4947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHglsname] = ACTIONS(4947), - [anon_sym_BSLASHGlsname] = ACTIONS(4947), - [anon_sym_BSLASHGLSname] = ACTIONS(4947), - [anon_sym_BSLASHglssymbol] = ACTIONS(4947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), - [anon_sym_BSLASHglsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), - [anon_sym_BSLASHglsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), - [anon_sym_BSLASHglsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), - [anon_sym_BSLASHglsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), - [anon_sym_BSLASHglsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), - [anon_sym_BSLASHnewacronym] = ACTIONS(4947), - [anon_sym_BSLASHacrshort] = ACTIONS(4947), - [anon_sym_BSLASHAcrshort] = ACTIONS(4947), - [anon_sym_BSLASHACRshort] = ACTIONS(4947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), - [anon_sym_BSLASHacrlong] = ACTIONS(4947), - [anon_sym_BSLASHAcrlong] = ACTIONS(4947), - [anon_sym_BSLASHACRlong] = ACTIONS(4947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), - [anon_sym_BSLASHacrfull] = ACTIONS(4947), - [anon_sym_BSLASHAcrfull] = ACTIONS(4947), - [anon_sym_BSLASHACRfull] = ACTIONS(4947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), - [anon_sym_BSLASHacs] = ACTIONS(4947), - [anon_sym_BSLASHAcs] = ACTIONS(4947), - [anon_sym_BSLASHacsp] = ACTIONS(4947), - [anon_sym_BSLASHAcsp] = ACTIONS(4947), - [anon_sym_BSLASHacl] = ACTIONS(4947), - [anon_sym_BSLASHAcl] = ACTIONS(4947), - [anon_sym_BSLASHaclp] = ACTIONS(4947), - [anon_sym_BSLASHAclp] = ACTIONS(4947), - [anon_sym_BSLASHacf] = ACTIONS(4947), - [anon_sym_BSLASHAcf] = ACTIONS(4947), - [anon_sym_BSLASHacfp] = ACTIONS(4947), - [anon_sym_BSLASHAcfp] = ACTIONS(4947), - [anon_sym_BSLASHac] = ACTIONS(4947), - [anon_sym_BSLASHAc] = ACTIONS(4947), - [anon_sym_BSLASHacp] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), - [anon_sym_BSLASHcolor] = ACTIONS(4947), - [anon_sym_BSLASHcolorbox] = ACTIONS(4947), - [anon_sym_BSLASHtextcolor] = ACTIONS(4947), - [anon_sym_BSLASHpagecolor] = ACTIONS(4947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), - [anon_sym_BSLASHtext] = ACTIONS(4947), - [anon_sym_BSLASHintertext] = ACTIONS(4947), - [anon_sym_shortintertext] = ACTIONS(4947), + [ts_builtin_sym_end] = ACTIONS(5024), + [sym_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_BSLASHpart] = ACTIONS(5026), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddpart] = ACTIONS(5026), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHchapter] = ACTIONS(5026), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddchap] = ACTIONS(5026), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsection] = ACTIONS(5026), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddsec] = ACTIONS(5026), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHparagraph] = ACTIONS(5026), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5026), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHitem] = ACTIONS(5026), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [sym_word] = ACTIONS(5026), + [sym_placeholder] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5024), + [anon_sym_BSLASHbegin] = ACTIONS(5026), + [anon_sym_BSLASHusepackage] = ACTIONS(5026), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5026), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5026), + [anon_sym_BSLASHinclude] = ACTIONS(5026), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5026), + [anon_sym_BSLASHinput] = ACTIONS(5026), + [anon_sym_BSLASHsubfile] = ACTIONS(5026), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5026), + [anon_sym_BSLASHbibliography] = ACTIONS(5026), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5026), + [anon_sym_BSLASHincludesvg] = ACTIONS(5026), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5026), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5026), + [anon_sym_BSLASHimport] = ACTIONS(5026), + [anon_sym_BSLASHsubimport] = ACTIONS(5026), + [anon_sym_BSLASHinputfrom] = ACTIONS(5026), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5026), + [anon_sym_BSLASHincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHcaption] = ACTIONS(5026), + [anon_sym_BSLASHcite] = ACTIONS(5026), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCite] = ACTIONS(5026), + [anon_sym_BSLASHnocite] = ACTIONS(5026), + [anon_sym_BSLASHcitet] = ACTIONS(5026), + [anon_sym_BSLASHcitep] = ACTIONS(5026), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteauthor] = ACTIONS(5026), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5026), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitetitle] = ACTIONS(5026), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteyear] = ACTIONS(5026), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitedate] = ACTIONS(5026), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteurl] = ACTIONS(5026), + [anon_sym_BSLASHfullcite] = ACTIONS(5026), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5026), + [anon_sym_BSLASHcitealt] = ACTIONS(5026), + [anon_sym_BSLASHcitealp] = ACTIONS(5026), + [anon_sym_BSLASHcitetext] = ACTIONS(5026), + [anon_sym_BSLASHparencite] = ACTIONS(5026), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHParencite] = ACTIONS(5026), + [anon_sym_BSLASHfootcite] = ACTIONS(5026), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5026), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5026), + [anon_sym_BSLASHtextcite] = ACTIONS(5026), + [anon_sym_BSLASHTextcite] = ACTIONS(5026), + [anon_sym_BSLASHsmartcite] = ACTIONS(5026), + [anon_sym_BSLASHSmartcite] = ACTIONS(5026), + [anon_sym_BSLASHsupercite] = ACTIONS(5026), + [anon_sym_BSLASHautocite] = ACTIONS(5026), + [anon_sym_BSLASHAutocite] = ACTIONS(5026), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHvolcite] = ACTIONS(5026), + [anon_sym_BSLASHVolcite] = ACTIONS(5026), + [anon_sym_BSLASHpvolcite] = ACTIONS(5026), + [anon_sym_BSLASHPvolcite] = ACTIONS(5026), + [anon_sym_BSLASHfvolcite] = ACTIONS(5026), + [anon_sym_BSLASHftvolcite] = ACTIONS(5026), + [anon_sym_BSLASHsvolcite] = ACTIONS(5026), + [anon_sym_BSLASHSvolcite] = ACTIONS(5026), + [anon_sym_BSLASHtvolcite] = ACTIONS(5026), + [anon_sym_BSLASHTvolcite] = ACTIONS(5026), + [anon_sym_BSLASHavolcite] = ACTIONS(5026), + [anon_sym_BSLASHAvolcite] = ACTIONS(5026), + [anon_sym_BSLASHnotecite] = ACTIONS(5026), + [anon_sym_BSLASHNotecite] = ACTIONS(5026), + [anon_sym_BSLASHpnotecite] = ACTIONS(5026), + [anon_sym_BSLASHPnotecite] = ACTIONS(5026), + [anon_sym_BSLASHfnotecite] = ACTIONS(5026), + [anon_sym_BSLASHlabel] = ACTIONS(5026), + [anon_sym_BSLASHref] = ACTIONS(5026), + [anon_sym_BSLASHeqref] = ACTIONS(5026), + [anon_sym_BSLASHvref] = ACTIONS(5026), + [anon_sym_BSLASHVref] = ACTIONS(5026), + [anon_sym_BSLASHautoref] = ACTIONS(5026), + [anon_sym_BSLASHpageref] = ACTIONS(5026), + [anon_sym_BSLASHcref] = ACTIONS(5026), + [anon_sym_BSLASHCref] = ACTIONS(5026), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnameCref] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHlabelcref] = ACTIONS(5026), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCrefrange] = ACTIONS(5026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnewlabel] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5026), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5026), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5026), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdef] = ACTIONS(5026), + [anon_sym_BSLASHlet] = ACTIONS(5026), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5026), + [anon_sym_BSLASHgls] = ACTIONS(5026), + [anon_sym_BSLASHGls] = ACTIONS(5026), + [anon_sym_BSLASHGLS] = ACTIONS(5026), + [anon_sym_BSLASHglspl] = ACTIONS(5026), + [anon_sym_BSLASHGlspl] = ACTIONS(5026), + [anon_sym_BSLASHGLSpl] = ACTIONS(5026), + [anon_sym_BSLASHglsdisp] = ACTIONS(5026), + [anon_sym_BSLASHglslink] = ACTIONS(5026), + [anon_sym_BSLASHglstext] = ACTIONS(5026), + [anon_sym_BSLASHGlstext] = ACTIONS(5026), + [anon_sym_BSLASHGLStext] = ACTIONS(5026), + [anon_sym_BSLASHglsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5026), + [anon_sym_BSLASHglsplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSplural] = ACTIONS(5026), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHglsname] = ACTIONS(5026), + [anon_sym_BSLASHGlsname] = ACTIONS(5026), + [anon_sym_BSLASHGLSname] = ACTIONS(5026), + [anon_sym_BSLASHglssymbol] = ACTIONS(5026), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5026), + [anon_sym_BSLASHglsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5026), + [anon_sym_BSLASHglsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5026), + [anon_sym_BSLASHglsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5026), + [anon_sym_BSLASHglsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5026), + [anon_sym_BSLASHglsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5026), + [anon_sym_BSLASHnewacronym] = ACTIONS(5026), + [anon_sym_BSLASHacrshort] = ACTIONS(5026), + [anon_sym_BSLASHAcrshort] = ACTIONS(5026), + [anon_sym_BSLASHACRshort] = ACTIONS(5026), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5026), + [anon_sym_BSLASHacrlong] = ACTIONS(5026), + [anon_sym_BSLASHAcrlong] = ACTIONS(5026), + [anon_sym_BSLASHACRlong] = ACTIONS(5026), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5026), + [anon_sym_BSLASHacrfull] = ACTIONS(5026), + [anon_sym_BSLASHAcrfull] = ACTIONS(5026), + [anon_sym_BSLASHACRfull] = ACTIONS(5026), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5026), + [anon_sym_BSLASHacs] = ACTIONS(5026), + [anon_sym_BSLASHAcs] = ACTIONS(5026), + [anon_sym_BSLASHacsp] = ACTIONS(5026), + [anon_sym_BSLASHAcsp] = ACTIONS(5026), + [anon_sym_BSLASHacl] = ACTIONS(5026), + [anon_sym_BSLASHAcl] = ACTIONS(5026), + [anon_sym_BSLASHaclp] = ACTIONS(5026), + [anon_sym_BSLASHAclp] = ACTIONS(5026), + [anon_sym_BSLASHacf] = ACTIONS(5026), + [anon_sym_BSLASHAcf] = ACTIONS(5026), + [anon_sym_BSLASHacfp] = ACTIONS(5026), + [anon_sym_BSLASHAcfp] = ACTIONS(5026), + [anon_sym_BSLASHac] = ACTIONS(5026), + [anon_sym_BSLASHAc] = ACTIONS(5026), + [anon_sym_BSLASHacp] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5026), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5026), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5026), + [anon_sym_BSLASHcolor] = ACTIONS(5026), + [anon_sym_BSLASHcolorbox] = ACTIONS(5026), + [anon_sym_BSLASHtextcolor] = ACTIONS(5026), + [anon_sym_BSLASHpagecolor] = ACTIONS(5026), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5026), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5026), + [anon_sym_BSLASHtext] = ACTIONS(5026), + [anon_sym_BSLASHintertext] = ACTIONS(5026), + [anon_sym_shortintertext] = ACTIONS(5026), }, [691] = { - [ts_builtin_sym_end] = ACTIONS(4949), - [sym_command_name] = ACTIONS(4951), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_BSLASHpart] = ACTIONS(4951), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddpart] = ACTIONS(4951), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHchapter] = ACTIONS(4951), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddchap] = ACTIONS(4951), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsection] = ACTIONS(4951), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddsec] = ACTIONS(4951), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHparagraph] = ACTIONS(4951), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHitem] = ACTIONS(4951), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [sym_word] = ACTIONS(4951), - [sym_placeholder] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), - [anon_sym_BSLASHbegin] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4951), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), - [anon_sym_BSLASHinclude] = ACTIONS(4951), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), - [anon_sym_BSLASHinput] = ACTIONS(4951), - [anon_sym_BSLASHsubfile] = ACTIONS(4951), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), - [anon_sym_BSLASHbibliography] = ACTIONS(4951), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), - [anon_sym_BSLASHincludesvg] = ACTIONS(4951), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), - [anon_sym_BSLASHimport] = ACTIONS(4951), - [anon_sym_BSLASHsubimport] = ACTIONS(4951), - [anon_sym_BSLASHinputfrom] = ACTIONS(4951), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), - [anon_sym_BSLASHincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHcaption] = ACTIONS(4951), - [anon_sym_BSLASHcite] = ACTIONS(4951), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCite] = ACTIONS(4951), - [anon_sym_BSLASHnocite] = ACTIONS(4951), - [anon_sym_BSLASHcitet] = ACTIONS(4951), - [anon_sym_BSLASHcitep] = ACTIONS(4951), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteyear] = ACTIONS(4951), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitedate] = ACTIONS(4951), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteurl] = ACTIONS(4951), - [anon_sym_BSLASHfullcite] = ACTIONS(4951), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), - [anon_sym_BSLASHcitealt] = ACTIONS(4951), - [anon_sym_BSLASHcitealp] = ACTIONS(4951), - [anon_sym_BSLASHcitetext] = ACTIONS(4951), - [anon_sym_BSLASHparencite] = ACTIONS(4951), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHParencite] = ACTIONS(4951), - [anon_sym_BSLASHfootcite] = ACTIONS(4951), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), - [anon_sym_BSLASHtextcite] = ACTIONS(4951), - [anon_sym_BSLASHTextcite] = ACTIONS(4951), - [anon_sym_BSLASHsmartcite] = ACTIONS(4951), - [anon_sym_BSLASHSmartcite] = ACTIONS(4951), - [anon_sym_BSLASHsupercite] = ACTIONS(4951), - [anon_sym_BSLASHautocite] = ACTIONS(4951), - [anon_sym_BSLASHAutocite] = ACTIONS(4951), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHvolcite] = ACTIONS(4951), - [anon_sym_BSLASHVolcite] = ACTIONS(4951), - [anon_sym_BSLASHpvolcite] = ACTIONS(4951), - [anon_sym_BSLASHPvolcite] = ACTIONS(4951), - [anon_sym_BSLASHfvolcite] = ACTIONS(4951), - [anon_sym_BSLASHftvolcite] = ACTIONS(4951), - [anon_sym_BSLASHsvolcite] = ACTIONS(4951), - [anon_sym_BSLASHSvolcite] = ACTIONS(4951), - [anon_sym_BSLASHtvolcite] = ACTIONS(4951), - [anon_sym_BSLASHTvolcite] = ACTIONS(4951), - [anon_sym_BSLASHavolcite] = ACTIONS(4951), - [anon_sym_BSLASHAvolcite] = ACTIONS(4951), - [anon_sym_BSLASHnotecite] = ACTIONS(4951), - [anon_sym_BSLASHNotecite] = ACTIONS(4951), - [anon_sym_BSLASHpnotecite] = ACTIONS(4951), - [anon_sym_BSLASHPnotecite] = ACTIONS(4951), - [anon_sym_BSLASHfnotecite] = ACTIONS(4951), - [anon_sym_BSLASHlabel] = ACTIONS(4951), - [anon_sym_BSLASHref] = ACTIONS(4951), - [anon_sym_BSLASHeqref] = ACTIONS(4951), - [anon_sym_BSLASHvref] = ACTIONS(4951), - [anon_sym_BSLASHVref] = ACTIONS(4951), - [anon_sym_BSLASHautoref] = ACTIONS(4951), - [anon_sym_BSLASHpageref] = ACTIONS(4951), - [anon_sym_BSLASHcref] = ACTIONS(4951), - [anon_sym_BSLASHCref] = ACTIONS(4951), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnameCref] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHlabelcref] = ACTIONS(4951), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnewlabel] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), - [anon_sym_BSLASHdef] = ACTIONS(4951), - [anon_sym_BSLASHlet] = ACTIONS(4951), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), - [anon_sym_BSLASHgls] = ACTIONS(4951), - [anon_sym_BSLASHGls] = ACTIONS(4951), - [anon_sym_BSLASHGLS] = ACTIONS(4951), - [anon_sym_BSLASHglspl] = ACTIONS(4951), - [anon_sym_BSLASHGlspl] = ACTIONS(4951), - [anon_sym_BSLASHGLSpl] = ACTIONS(4951), - [anon_sym_BSLASHglsdisp] = ACTIONS(4951), - [anon_sym_BSLASHglslink] = ACTIONS(4951), - [anon_sym_BSLASHglstext] = ACTIONS(4951), - [anon_sym_BSLASHGlstext] = ACTIONS(4951), - [anon_sym_BSLASHGLStext] = ACTIONS(4951), - [anon_sym_BSLASHglsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), - [anon_sym_BSLASHglsplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSplural] = ACTIONS(4951), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHglsname] = ACTIONS(4951), - [anon_sym_BSLASHGlsname] = ACTIONS(4951), - [anon_sym_BSLASHGLSname] = ACTIONS(4951), - [anon_sym_BSLASHglssymbol] = ACTIONS(4951), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), - [anon_sym_BSLASHglsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), - [anon_sym_BSLASHglsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), - [anon_sym_BSLASHglsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), - [anon_sym_BSLASHglsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), - [anon_sym_BSLASHglsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), - [anon_sym_BSLASHnewacronym] = ACTIONS(4951), - [anon_sym_BSLASHacrshort] = ACTIONS(4951), - [anon_sym_BSLASHAcrshort] = ACTIONS(4951), - [anon_sym_BSLASHACRshort] = ACTIONS(4951), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), - [anon_sym_BSLASHacrlong] = ACTIONS(4951), - [anon_sym_BSLASHAcrlong] = ACTIONS(4951), - [anon_sym_BSLASHACRlong] = ACTIONS(4951), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), - [anon_sym_BSLASHacrfull] = ACTIONS(4951), - [anon_sym_BSLASHAcrfull] = ACTIONS(4951), - [anon_sym_BSLASHACRfull] = ACTIONS(4951), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), - [anon_sym_BSLASHacs] = ACTIONS(4951), - [anon_sym_BSLASHAcs] = ACTIONS(4951), - [anon_sym_BSLASHacsp] = ACTIONS(4951), - [anon_sym_BSLASHAcsp] = ACTIONS(4951), - [anon_sym_BSLASHacl] = ACTIONS(4951), - [anon_sym_BSLASHAcl] = ACTIONS(4951), - [anon_sym_BSLASHaclp] = ACTIONS(4951), - [anon_sym_BSLASHAclp] = ACTIONS(4951), - [anon_sym_BSLASHacf] = ACTIONS(4951), - [anon_sym_BSLASHAcf] = ACTIONS(4951), - [anon_sym_BSLASHacfp] = ACTIONS(4951), - [anon_sym_BSLASHAcfp] = ACTIONS(4951), - [anon_sym_BSLASHac] = ACTIONS(4951), - [anon_sym_BSLASHAc] = ACTIONS(4951), - [anon_sym_BSLASHacp] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), - [anon_sym_BSLASHcolor] = ACTIONS(4951), - [anon_sym_BSLASHcolorbox] = ACTIONS(4951), - [anon_sym_BSLASHtextcolor] = ACTIONS(4951), - [anon_sym_BSLASHpagecolor] = ACTIONS(4951), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), - [anon_sym_BSLASHtext] = ACTIONS(4951), - [anon_sym_BSLASHintertext] = ACTIONS(4951), - [anon_sym_shortintertext] = ACTIONS(4951), + [ts_builtin_sym_end] = ACTIONS(5028), + [sym_command_name] = ACTIONS(5030), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_BSLASHpart] = ACTIONS(5030), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddpart] = ACTIONS(5030), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHchapter] = ACTIONS(5030), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddchap] = ACTIONS(5030), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsection] = ACTIONS(5030), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddsec] = ACTIONS(5030), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHparagraph] = ACTIONS(5030), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5030), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHitem] = ACTIONS(5030), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [sym_word] = ACTIONS(5030), + [sym_placeholder] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5028), + [anon_sym_BSLASHbegin] = ACTIONS(5030), + [anon_sym_BSLASHusepackage] = ACTIONS(5030), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5030), + [anon_sym_BSLASHinclude] = ACTIONS(5030), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5030), + [anon_sym_BSLASHinput] = ACTIONS(5030), + [anon_sym_BSLASHsubfile] = ACTIONS(5030), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5030), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5030), + [anon_sym_BSLASHincludesvg] = ACTIONS(5030), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5030), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5030), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5030), + [anon_sym_BSLASHimport] = ACTIONS(5030), + [anon_sym_BSLASHsubimport] = ACTIONS(5030), + [anon_sym_BSLASHinputfrom] = ACTIONS(5030), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5030), + [anon_sym_BSLASHincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHcaption] = ACTIONS(5030), + [anon_sym_BSLASHcite] = ACTIONS(5030), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCite] = ACTIONS(5030), + [anon_sym_BSLASHnocite] = ACTIONS(5030), + [anon_sym_BSLASHcitet] = ACTIONS(5030), + [anon_sym_BSLASHcitep] = ACTIONS(5030), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteauthor] = ACTIONS(5030), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5030), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitetitle] = ACTIONS(5030), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteyear] = ACTIONS(5030), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitedate] = ACTIONS(5030), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteurl] = ACTIONS(5030), + [anon_sym_BSLASHfullcite] = ACTIONS(5030), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5030), + [anon_sym_BSLASHcitealt] = ACTIONS(5030), + [anon_sym_BSLASHcitealp] = ACTIONS(5030), + [anon_sym_BSLASHcitetext] = ACTIONS(5030), + [anon_sym_BSLASHparencite] = ACTIONS(5030), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHParencite] = ACTIONS(5030), + [anon_sym_BSLASHfootcite] = ACTIONS(5030), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5030), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5030), + [anon_sym_BSLASHtextcite] = ACTIONS(5030), + [anon_sym_BSLASHTextcite] = ACTIONS(5030), + [anon_sym_BSLASHsmartcite] = ACTIONS(5030), + [anon_sym_BSLASHSmartcite] = ACTIONS(5030), + [anon_sym_BSLASHsupercite] = ACTIONS(5030), + [anon_sym_BSLASHautocite] = ACTIONS(5030), + [anon_sym_BSLASHAutocite] = ACTIONS(5030), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHvolcite] = ACTIONS(5030), + [anon_sym_BSLASHVolcite] = ACTIONS(5030), + [anon_sym_BSLASHpvolcite] = ACTIONS(5030), + [anon_sym_BSLASHPvolcite] = ACTIONS(5030), + [anon_sym_BSLASHfvolcite] = ACTIONS(5030), + [anon_sym_BSLASHftvolcite] = ACTIONS(5030), + [anon_sym_BSLASHsvolcite] = ACTIONS(5030), + [anon_sym_BSLASHSvolcite] = ACTIONS(5030), + [anon_sym_BSLASHtvolcite] = ACTIONS(5030), + [anon_sym_BSLASHTvolcite] = ACTIONS(5030), + [anon_sym_BSLASHavolcite] = ACTIONS(5030), + [anon_sym_BSLASHAvolcite] = ACTIONS(5030), + [anon_sym_BSLASHnotecite] = ACTIONS(5030), + [anon_sym_BSLASHNotecite] = ACTIONS(5030), + [anon_sym_BSLASHpnotecite] = ACTIONS(5030), + [anon_sym_BSLASHPnotecite] = ACTIONS(5030), + [anon_sym_BSLASHfnotecite] = ACTIONS(5030), + [anon_sym_BSLASHlabel] = ACTIONS(5030), + [anon_sym_BSLASHref] = ACTIONS(5030), + [anon_sym_BSLASHeqref] = ACTIONS(5030), + [anon_sym_BSLASHvref] = ACTIONS(5030), + [anon_sym_BSLASHVref] = ACTIONS(5030), + [anon_sym_BSLASHautoref] = ACTIONS(5030), + [anon_sym_BSLASHpageref] = ACTIONS(5030), + [anon_sym_BSLASHcref] = ACTIONS(5030), + [anon_sym_BSLASHCref] = ACTIONS(5030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnameCref] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHlabelcref] = ACTIONS(5030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCrefrange] = ACTIONS(5030), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5030), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5030), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5030), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdef] = ACTIONS(5030), + [anon_sym_BSLASHlet] = ACTIONS(5030), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5030), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5030), + [anon_sym_BSLASHgls] = ACTIONS(5030), + [anon_sym_BSLASHGls] = ACTIONS(5030), + [anon_sym_BSLASHGLS] = ACTIONS(5030), + [anon_sym_BSLASHglspl] = ACTIONS(5030), + [anon_sym_BSLASHGlspl] = ACTIONS(5030), + [anon_sym_BSLASHGLSpl] = ACTIONS(5030), + [anon_sym_BSLASHglsdisp] = ACTIONS(5030), + [anon_sym_BSLASHglslink] = ACTIONS(5030), + [anon_sym_BSLASHglstext] = ACTIONS(5030), + [anon_sym_BSLASHGlstext] = ACTIONS(5030), + [anon_sym_BSLASHGLStext] = ACTIONS(5030), + [anon_sym_BSLASHglsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5030), + [anon_sym_BSLASHglsplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSplural] = ACTIONS(5030), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHglsname] = ACTIONS(5030), + [anon_sym_BSLASHGlsname] = ACTIONS(5030), + [anon_sym_BSLASHGLSname] = ACTIONS(5030), + [anon_sym_BSLASHglssymbol] = ACTIONS(5030), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5030), + [anon_sym_BSLASHglsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5030), + [anon_sym_BSLASHglsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5030), + [anon_sym_BSLASHglsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5030), + [anon_sym_BSLASHglsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5030), + [anon_sym_BSLASHglsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5030), + [anon_sym_BSLASHnewacronym] = ACTIONS(5030), + [anon_sym_BSLASHacrshort] = ACTIONS(5030), + [anon_sym_BSLASHAcrshort] = ACTIONS(5030), + [anon_sym_BSLASHACRshort] = ACTIONS(5030), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5030), + [anon_sym_BSLASHacrlong] = ACTIONS(5030), + [anon_sym_BSLASHAcrlong] = ACTIONS(5030), + [anon_sym_BSLASHACRlong] = ACTIONS(5030), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5030), + [anon_sym_BSLASHacrfull] = ACTIONS(5030), + [anon_sym_BSLASHAcrfull] = ACTIONS(5030), + [anon_sym_BSLASHACRfull] = ACTIONS(5030), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5030), + [anon_sym_BSLASHacs] = ACTIONS(5030), + [anon_sym_BSLASHAcs] = ACTIONS(5030), + [anon_sym_BSLASHacsp] = ACTIONS(5030), + [anon_sym_BSLASHAcsp] = ACTIONS(5030), + [anon_sym_BSLASHacl] = ACTIONS(5030), + [anon_sym_BSLASHAcl] = ACTIONS(5030), + [anon_sym_BSLASHaclp] = ACTIONS(5030), + [anon_sym_BSLASHAclp] = ACTIONS(5030), + [anon_sym_BSLASHacf] = ACTIONS(5030), + [anon_sym_BSLASHAcf] = ACTIONS(5030), + [anon_sym_BSLASHacfp] = ACTIONS(5030), + [anon_sym_BSLASHAcfp] = ACTIONS(5030), + [anon_sym_BSLASHac] = ACTIONS(5030), + [anon_sym_BSLASHAc] = ACTIONS(5030), + [anon_sym_BSLASHacp] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5030), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5030), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5030), + [anon_sym_BSLASHcolor] = ACTIONS(5030), + [anon_sym_BSLASHcolorbox] = ACTIONS(5030), + [anon_sym_BSLASHtextcolor] = ACTIONS(5030), + [anon_sym_BSLASHpagecolor] = ACTIONS(5030), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5030), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5030), + [anon_sym_BSLASHtext] = ACTIONS(5030), + [anon_sym_BSLASHintertext] = ACTIONS(5030), + [anon_sym_shortintertext] = ACTIONS(5030), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(4953), - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_BSLASHpart] = ACTIONS(4955), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddpart] = ACTIONS(4955), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHchapter] = ACTIONS(4955), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddchap] = ACTIONS(4955), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsection] = ACTIONS(4955), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddsec] = ACTIONS(4955), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHparagraph] = ACTIONS(4955), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHitem] = ACTIONS(4955), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASHbegin] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [ts_builtin_sym_end] = ACTIONS(5032), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_BSLASHpart] = ACTIONS(5034), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddpart] = ACTIONS(5034), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHchapter] = ACTIONS(5034), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddchap] = ACTIONS(5034), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsection] = ACTIONS(5034), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddsec] = ACTIONS(5034), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHparagraph] = ACTIONS(5034), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5034), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHitem] = ACTIONS(5034), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASHbegin] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [693] = { [sym_curly_group] = STATE(1104), - [sym_command_name] = ACTIONS(4825), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_BSLASHpart] = ACTIONS(4825), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddpart] = ACTIONS(4825), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHchapter] = ACTIONS(4825), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddchap] = ACTIONS(4825), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsection] = ACTIONS(4825), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddsec] = ACTIONS(4825), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHparagraph] = ACTIONS(4825), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHitem] = ACTIONS(4825), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4825), - [sym_placeholder] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym__] = ACTIONS(4825), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4825), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), - [anon_sym_BSLASHbegin] = ACTIONS(4825), - [anon_sym_BSLASHend] = ACTIONS(4825), - [anon_sym_BSLASHusepackage] = ACTIONS(4825), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), - [anon_sym_BSLASHinclude] = ACTIONS(4825), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), - [anon_sym_BSLASHinput] = ACTIONS(4825), - [anon_sym_BSLASHsubfile] = ACTIONS(4825), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), - [anon_sym_BSLASHbibliography] = ACTIONS(4825), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), - [anon_sym_BSLASHincludesvg] = ACTIONS(4825), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), - [anon_sym_BSLASHimport] = ACTIONS(4825), - [anon_sym_BSLASHsubimport] = ACTIONS(4825), - [anon_sym_BSLASHinputfrom] = ACTIONS(4825), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), - [anon_sym_BSLASHincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHcaption] = ACTIONS(4825), - [anon_sym_BSLASHcite] = ACTIONS(4825), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCite] = ACTIONS(4825), - [anon_sym_BSLASHnocite] = ACTIONS(4825), - [anon_sym_BSLASHcitet] = ACTIONS(4825), - [anon_sym_BSLASHcitep] = ACTIONS(4825), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteauthor] = ACTIONS(4825), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitetitle] = ACTIONS(4825), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteyear] = ACTIONS(4825), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitedate] = ACTIONS(4825), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteurl] = ACTIONS(4825), - [anon_sym_BSLASHfullcite] = ACTIONS(4825), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), - [anon_sym_BSLASHcitealt] = ACTIONS(4825), - [anon_sym_BSLASHcitealp] = ACTIONS(4825), - [anon_sym_BSLASHcitetext] = ACTIONS(4825), - [anon_sym_BSLASHparencite] = ACTIONS(4825), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHParencite] = ACTIONS(4825), - [anon_sym_BSLASHfootcite] = ACTIONS(4825), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), - [anon_sym_BSLASHtextcite] = ACTIONS(4825), - [anon_sym_BSLASHTextcite] = ACTIONS(4825), - [anon_sym_BSLASHsmartcite] = ACTIONS(4825), - [anon_sym_BSLASHSmartcite] = ACTIONS(4825), - [anon_sym_BSLASHsupercite] = ACTIONS(4825), - [anon_sym_BSLASHautocite] = ACTIONS(4825), - [anon_sym_BSLASHAutocite] = ACTIONS(4825), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHvolcite] = ACTIONS(4825), - [anon_sym_BSLASHVolcite] = ACTIONS(4825), - [anon_sym_BSLASHpvolcite] = ACTIONS(4825), - [anon_sym_BSLASHPvolcite] = ACTIONS(4825), - [anon_sym_BSLASHfvolcite] = ACTIONS(4825), - [anon_sym_BSLASHftvolcite] = ACTIONS(4825), - [anon_sym_BSLASHsvolcite] = ACTIONS(4825), - [anon_sym_BSLASHSvolcite] = ACTIONS(4825), - [anon_sym_BSLASHtvolcite] = ACTIONS(4825), - [anon_sym_BSLASHTvolcite] = ACTIONS(4825), - [anon_sym_BSLASHavolcite] = ACTIONS(4825), - [anon_sym_BSLASHAvolcite] = ACTIONS(4825), - [anon_sym_BSLASHnotecite] = ACTIONS(4825), - [anon_sym_BSLASHNotecite] = ACTIONS(4825), - [anon_sym_BSLASHpnotecite] = ACTIONS(4825), - [anon_sym_BSLASHPnotecite] = ACTIONS(4825), - [anon_sym_BSLASHfnotecite] = ACTIONS(4825), - [anon_sym_BSLASHlabel] = ACTIONS(4825), - [anon_sym_BSLASHref] = ACTIONS(4825), - [anon_sym_BSLASHeqref] = ACTIONS(4825), - [anon_sym_BSLASHvref] = ACTIONS(4825), - [anon_sym_BSLASHVref] = ACTIONS(4825), - [anon_sym_BSLASHautoref] = ACTIONS(4825), - [anon_sym_BSLASHpageref] = ACTIONS(4825), - [anon_sym_BSLASHcref] = ACTIONS(4825), - [anon_sym_BSLASHCref] = ACTIONS(4825), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnameCref] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHlabelcref] = ACTIONS(4825), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCrefrange] = ACTIONS(4825), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnewlabel] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), - [anon_sym_BSLASHdef] = ACTIONS(4825), - [anon_sym_BSLASHlet] = ACTIONS(4825), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), - [anon_sym_BSLASHgls] = ACTIONS(4825), - [anon_sym_BSLASHGls] = ACTIONS(4825), - [anon_sym_BSLASHGLS] = ACTIONS(4825), - [anon_sym_BSLASHglspl] = ACTIONS(4825), - [anon_sym_BSLASHGlspl] = ACTIONS(4825), - [anon_sym_BSLASHGLSpl] = ACTIONS(4825), - [anon_sym_BSLASHglsdisp] = ACTIONS(4825), - [anon_sym_BSLASHglslink] = ACTIONS(4825), - [anon_sym_BSLASHglstext] = ACTIONS(4825), - [anon_sym_BSLASHGlstext] = ACTIONS(4825), - [anon_sym_BSLASHGLStext] = ACTIONS(4825), - [anon_sym_BSLASHglsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), - [anon_sym_BSLASHglsplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSplural] = ACTIONS(4825), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHglsname] = ACTIONS(4825), - [anon_sym_BSLASHGlsname] = ACTIONS(4825), - [anon_sym_BSLASHGLSname] = ACTIONS(4825), - [anon_sym_BSLASHglssymbol] = ACTIONS(4825), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), - [anon_sym_BSLASHglsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), - [anon_sym_BSLASHglsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), - [anon_sym_BSLASHglsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), - [anon_sym_BSLASHglsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), - [anon_sym_BSLASHglsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), - [anon_sym_BSLASHnewacronym] = ACTIONS(4825), - [anon_sym_BSLASHacrshort] = ACTIONS(4825), - [anon_sym_BSLASHAcrshort] = ACTIONS(4825), - [anon_sym_BSLASHACRshort] = ACTIONS(4825), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), - [anon_sym_BSLASHacrlong] = ACTIONS(4825), - [anon_sym_BSLASHAcrlong] = ACTIONS(4825), - [anon_sym_BSLASHACRlong] = ACTIONS(4825), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), - [anon_sym_BSLASHacrfull] = ACTIONS(4825), - [anon_sym_BSLASHAcrfull] = ACTIONS(4825), - [anon_sym_BSLASHACRfull] = ACTIONS(4825), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), - [anon_sym_BSLASHacs] = ACTIONS(4825), - [anon_sym_BSLASHAcs] = ACTIONS(4825), - [anon_sym_BSLASHacsp] = ACTIONS(4825), - [anon_sym_BSLASHAcsp] = ACTIONS(4825), - [anon_sym_BSLASHacl] = ACTIONS(4825), - [anon_sym_BSLASHAcl] = ACTIONS(4825), - [anon_sym_BSLASHaclp] = ACTIONS(4825), - [anon_sym_BSLASHAclp] = ACTIONS(4825), - [anon_sym_BSLASHacf] = ACTIONS(4825), - [anon_sym_BSLASHAcf] = ACTIONS(4825), - [anon_sym_BSLASHacfp] = ACTIONS(4825), - [anon_sym_BSLASHAcfp] = ACTIONS(4825), - [anon_sym_BSLASHac] = ACTIONS(4825), - [anon_sym_BSLASHAc] = ACTIONS(4825), - [anon_sym_BSLASHacp] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), - [anon_sym_BSLASHcolor] = ACTIONS(4825), - [anon_sym_BSLASHcolorbox] = ACTIONS(4825), - [anon_sym_BSLASHtextcolor] = ACTIONS(4825), - [anon_sym_BSLASHpagecolor] = ACTIONS(4825), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), - [anon_sym_BSLASHtext] = ACTIONS(4825), - [anon_sym_BSLASHintertext] = ACTIONS(4825), - [anon_sym_shortintertext] = ACTIONS(4825), + [sym_command_name] = ACTIONS(4904), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_BSLASHpart] = ACTIONS(4904), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddpart] = ACTIONS(4904), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHchapter] = ACTIONS(4904), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddchap] = ACTIONS(4904), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsection] = ACTIONS(4904), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddsec] = ACTIONS(4904), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHparagraph] = ACTIONS(4904), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4904), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHitem] = ACTIONS(4904), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4904), + [sym_placeholder] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym__] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4902), + [anon_sym_BSLASHbegin] = ACTIONS(4904), + [anon_sym_BSLASHend] = ACTIONS(4904), + [anon_sym_BSLASHusepackage] = ACTIONS(4904), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4904), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4904), + [anon_sym_BSLASHinclude] = ACTIONS(4904), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4904), + [anon_sym_BSLASHinput] = ACTIONS(4904), + [anon_sym_BSLASHsubfile] = ACTIONS(4904), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4904), + [anon_sym_BSLASHbibliography] = ACTIONS(4904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4904), + [anon_sym_BSLASHincludesvg] = ACTIONS(4904), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4904), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4904), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4904), + [anon_sym_BSLASHimport] = ACTIONS(4904), + [anon_sym_BSLASHsubimport] = ACTIONS(4904), + [anon_sym_BSLASHinputfrom] = ACTIONS(4904), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4904), + [anon_sym_BSLASHincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHcaption] = ACTIONS(4904), + [anon_sym_BSLASHcite] = ACTIONS(4904), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCite] = ACTIONS(4904), + [anon_sym_BSLASHnocite] = ACTIONS(4904), + [anon_sym_BSLASHcitet] = ACTIONS(4904), + [anon_sym_BSLASHcitep] = ACTIONS(4904), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteauthor] = ACTIONS(4904), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4904), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitetitle] = ACTIONS(4904), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteyear] = ACTIONS(4904), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitedate] = ACTIONS(4904), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteurl] = ACTIONS(4904), + [anon_sym_BSLASHfullcite] = ACTIONS(4904), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4904), + [anon_sym_BSLASHcitealt] = ACTIONS(4904), + [anon_sym_BSLASHcitealp] = ACTIONS(4904), + [anon_sym_BSLASHcitetext] = ACTIONS(4904), + [anon_sym_BSLASHparencite] = ACTIONS(4904), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHParencite] = ACTIONS(4904), + [anon_sym_BSLASHfootcite] = ACTIONS(4904), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4904), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4904), + [anon_sym_BSLASHtextcite] = ACTIONS(4904), + [anon_sym_BSLASHTextcite] = ACTIONS(4904), + [anon_sym_BSLASHsmartcite] = ACTIONS(4904), + [anon_sym_BSLASHSmartcite] = ACTIONS(4904), + [anon_sym_BSLASHsupercite] = ACTIONS(4904), + [anon_sym_BSLASHautocite] = ACTIONS(4904), + [anon_sym_BSLASHAutocite] = ACTIONS(4904), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHvolcite] = ACTIONS(4904), + [anon_sym_BSLASHVolcite] = ACTIONS(4904), + [anon_sym_BSLASHpvolcite] = ACTIONS(4904), + [anon_sym_BSLASHPvolcite] = ACTIONS(4904), + [anon_sym_BSLASHfvolcite] = ACTIONS(4904), + [anon_sym_BSLASHftvolcite] = ACTIONS(4904), + [anon_sym_BSLASHsvolcite] = ACTIONS(4904), + [anon_sym_BSLASHSvolcite] = ACTIONS(4904), + [anon_sym_BSLASHtvolcite] = ACTIONS(4904), + [anon_sym_BSLASHTvolcite] = ACTIONS(4904), + [anon_sym_BSLASHavolcite] = ACTIONS(4904), + [anon_sym_BSLASHAvolcite] = ACTIONS(4904), + [anon_sym_BSLASHnotecite] = ACTIONS(4904), + [anon_sym_BSLASHNotecite] = ACTIONS(4904), + [anon_sym_BSLASHpnotecite] = ACTIONS(4904), + [anon_sym_BSLASHPnotecite] = ACTIONS(4904), + [anon_sym_BSLASHfnotecite] = ACTIONS(4904), + [anon_sym_BSLASHlabel] = ACTIONS(4904), + [anon_sym_BSLASHref] = ACTIONS(4904), + [anon_sym_BSLASHeqref] = ACTIONS(4904), + [anon_sym_BSLASHvref] = ACTIONS(4904), + [anon_sym_BSLASHVref] = ACTIONS(4904), + [anon_sym_BSLASHautoref] = ACTIONS(4904), + [anon_sym_BSLASHpageref] = ACTIONS(4904), + [anon_sym_BSLASHcref] = ACTIONS(4904), + [anon_sym_BSLASHCref] = ACTIONS(4904), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnameCref] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHlabelcref] = ACTIONS(4904), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCrefrange] = ACTIONS(4904), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnewlabel] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4904), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4904), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4904), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdef] = ACTIONS(4904), + [anon_sym_BSLASHlet] = ACTIONS(4904), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4904), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4904), + [anon_sym_BSLASHgls] = ACTIONS(4904), + [anon_sym_BSLASHGls] = ACTIONS(4904), + [anon_sym_BSLASHGLS] = ACTIONS(4904), + [anon_sym_BSLASHglspl] = ACTIONS(4904), + [anon_sym_BSLASHGlspl] = ACTIONS(4904), + [anon_sym_BSLASHGLSpl] = ACTIONS(4904), + [anon_sym_BSLASHglsdisp] = ACTIONS(4904), + [anon_sym_BSLASHglslink] = ACTIONS(4904), + [anon_sym_BSLASHglstext] = ACTIONS(4904), + [anon_sym_BSLASHGlstext] = ACTIONS(4904), + [anon_sym_BSLASHGLStext] = ACTIONS(4904), + [anon_sym_BSLASHglsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4904), + [anon_sym_BSLASHglsplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSplural] = ACTIONS(4904), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHglsname] = ACTIONS(4904), + [anon_sym_BSLASHGlsname] = ACTIONS(4904), + [anon_sym_BSLASHGLSname] = ACTIONS(4904), + [anon_sym_BSLASHglssymbol] = ACTIONS(4904), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4904), + [anon_sym_BSLASHglsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4904), + [anon_sym_BSLASHglsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4904), + [anon_sym_BSLASHglsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4904), + [anon_sym_BSLASHglsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4904), + [anon_sym_BSLASHglsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4904), + [anon_sym_BSLASHnewacronym] = ACTIONS(4904), + [anon_sym_BSLASHacrshort] = ACTIONS(4904), + [anon_sym_BSLASHAcrshort] = ACTIONS(4904), + [anon_sym_BSLASHACRshort] = ACTIONS(4904), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4904), + [anon_sym_BSLASHacrlong] = ACTIONS(4904), + [anon_sym_BSLASHAcrlong] = ACTIONS(4904), + [anon_sym_BSLASHACRlong] = ACTIONS(4904), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4904), + [anon_sym_BSLASHacrfull] = ACTIONS(4904), + [anon_sym_BSLASHAcrfull] = ACTIONS(4904), + [anon_sym_BSLASHACRfull] = ACTIONS(4904), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4904), + [anon_sym_BSLASHacs] = ACTIONS(4904), + [anon_sym_BSLASHAcs] = ACTIONS(4904), + [anon_sym_BSLASHacsp] = ACTIONS(4904), + [anon_sym_BSLASHAcsp] = ACTIONS(4904), + [anon_sym_BSLASHacl] = ACTIONS(4904), + [anon_sym_BSLASHAcl] = ACTIONS(4904), + [anon_sym_BSLASHaclp] = ACTIONS(4904), + [anon_sym_BSLASHAclp] = ACTIONS(4904), + [anon_sym_BSLASHacf] = ACTIONS(4904), + [anon_sym_BSLASHAcf] = ACTIONS(4904), + [anon_sym_BSLASHacfp] = ACTIONS(4904), + [anon_sym_BSLASHAcfp] = ACTIONS(4904), + [anon_sym_BSLASHac] = ACTIONS(4904), + [anon_sym_BSLASHAc] = ACTIONS(4904), + [anon_sym_BSLASHacp] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4904), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4904), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4904), + [anon_sym_BSLASHcolor] = ACTIONS(4904), + [anon_sym_BSLASHcolorbox] = ACTIONS(4904), + [anon_sym_BSLASHtextcolor] = ACTIONS(4904), + [anon_sym_BSLASHpagecolor] = ACTIONS(4904), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4904), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4904), + [anon_sym_BSLASHtext] = ACTIONS(4904), + [anon_sym_BSLASHintertext] = ACTIONS(4904), + [anon_sym_shortintertext] = ACTIONS(4904), }, [694] = { [sym_curly_group] = STATE(1105), - [sym_command_name] = ACTIONS(4829), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_BSLASHpart] = ACTIONS(4829), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddpart] = ACTIONS(4829), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHchapter] = ACTIONS(4829), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddchap] = ACTIONS(4829), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsection] = ACTIONS(4829), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddsec] = ACTIONS(4829), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHparagraph] = ACTIONS(4829), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHitem] = ACTIONS(4829), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4829), - [sym_placeholder] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym__] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4829), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4829), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), - [anon_sym_BSLASHbegin] = ACTIONS(4829), - [anon_sym_BSLASHend] = ACTIONS(4829), - [anon_sym_BSLASHusepackage] = ACTIONS(4829), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), - [anon_sym_BSLASHinclude] = ACTIONS(4829), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), - [anon_sym_BSLASHinput] = ACTIONS(4829), - [anon_sym_BSLASHsubfile] = ACTIONS(4829), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), - [anon_sym_BSLASHbibliography] = ACTIONS(4829), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), - [anon_sym_BSLASHincludesvg] = ACTIONS(4829), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), - [anon_sym_BSLASHimport] = ACTIONS(4829), - [anon_sym_BSLASHsubimport] = ACTIONS(4829), - [anon_sym_BSLASHinputfrom] = ACTIONS(4829), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), - [anon_sym_BSLASHincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHcaption] = ACTIONS(4829), - [anon_sym_BSLASHcite] = ACTIONS(4829), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCite] = ACTIONS(4829), - [anon_sym_BSLASHnocite] = ACTIONS(4829), - [anon_sym_BSLASHcitet] = ACTIONS(4829), - [anon_sym_BSLASHcitep] = ACTIONS(4829), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteauthor] = ACTIONS(4829), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitetitle] = ACTIONS(4829), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteyear] = ACTIONS(4829), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitedate] = ACTIONS(4829), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteurl] = ACTIONS(4829), - [anon_sym_BSLASHfullcite] = ACTIONS(4829), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), - [anon_sym_BSLASHcitealt] = ACTIONS(4829), - [anon_sym_BSLASHcitealp] = ACTIONS(4829), - [anon_sym_BSLASHcitetext] = ACTIONS(4829), - [anon_sym_BSLASHparencite] = ACTIONS(4829), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHParencite] = ACTIONS(4829), - [anon_sym_BSLASHfootcite] = ACTIONS(4829), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), - [anon_sym_BSLASHtextcite] = ACTIONS(4829), - [anon_sym_BSLASHTextcite] = ACTIONS(4829), - [anon_sym_BSLASHsmartcite] = ACTIONS(4829), - [anon_sym_BSLASHSmartcite] = ACTIONS(4829), - [anon_sym_BSLASHsupercite] = ACTIONS(4829), - [anon_sym_BSLASHautocite] = ACTIONS(4829), - [anon_sym_BSLASHAutocite] = ACTIONS(4829), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHvolcite] = ACTIONS(4829), - [anon_sym_BSLASHVolcite] = ACTIONS(4829), - [anon_sym_BSLASHpvolcite] = ACTIONS(4829), - [anon_sym_BSLASHPvolcite] = ACTIONS(4829), - [anon_sym_BSLASHfvolcite] = ACTIONS(4829), - [anon_sym_BSLASHftvolcite] = ACTIONS(4829), - [anon_sym_BSLASHsvolcite] = ACTIONS(4829), - [anon_sym_BSLASHSvolcite] = ACTIONS(4829), - [anon_sym_BSLASHtvolcite] = ACTIONS(4829), - [anon_sym_BSLASHTvolcite] = ACTIONS(4829), - [anon_sym_BSLASHavolcite] = ACTIONS(4829), - [anon_sym_BSLASHAvolcite] = ACTIONS(4829), - [anon_sym_BSLASHnotecite] = ACTIONS(4829), - [anon_sym_BSLASHNotecite] = ACTIONS(4829), - [anon_sym_BSLASHpnotecite] = ACTIONS(4829), - [anon_sym_BSLASHPnotecite] = ACTIONS(4829), - [anon_sym_BSLASHfnotecite] = ACTIONS(4829), - [anon_sym_BSLASHlabel] = ACTIONS(4829), - [anon_sym_BSLASHref] = ACTIONS(4829), - [anon_sym_BSLASHeqref] = ACTIONS(4829), - [anon_sym_BSLASHvref] = ACTIONS(4829), - [anon_sym_BSLASHVref] = ACTIONS(4829), - [anon_sym_BSLASHautoref] = ACTIONS(4829), - [anon_sym_BSLASHpageref] = ACTIONS(4829), - [anon_sym_BSLASHcref] = ACTIONS(4829), - [anon_sym_BSLASHCref] = ACTIONS(4829), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnameCref] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHlabelcref] = ACTIONS(4829), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCrefrange] = ACTIONS(4829), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnewlabel] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), - [anon_sym_BSLASHdef] = ACTIONS(4829), - [anon_sym_BSLASHlet] = ACTIONS(4829), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), - [anon_sym_BSLASHgls] = ACTIONS(4829), - [anon_sym_BSLASHGls] = ACTIONS(4829), - [anon_sym_BSLASHGLS] = ACTIONS(4829), - [anon_sym_BSLASHglspl] = ACTIONS(4829), - [anon_sym_BSLASHGlspl] = ACTIONS(4829), - [anon_sym_BSLASHGLSpl] = ACTIONS(4829), - [anon_sym_BSLASHglsdisp] = ACTIONS(4829), - [anon_sym_BSLASHglslink] = ACTIONS(4829), - [anon_sym_BSLASHglstext] = ACTIONS(4829), - [anon_sym_BSLASHGlstext] = ACTIONS(4829), - [anon_sym_BSLASHGLStext] = ACTIONS(4829), - [anon_sym_BSLASHglsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), - [anon_sym_BSLASHglsplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSplural] = ACTIONS(4829), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHglsname] = ACTIONS(4829), - [anon_sym_BSLASHGlsname] = ACTIONS(4829), - [anon_sym_BSLASHGLSname] = ACTIONS(4829), - [anon_sym_BSLASHglssymbol] = ACTIONS(4829), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), - [anon_sym_BSLASHglsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), - [anon_sym_BSLASHglsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), - [anon_sym_BSLASHglsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), - [anon_sym_BSLASHglsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), - [anon_sym_BSLASHglsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), - [anon_sym_BSLASHnewacronym] = ACTIONS(4829), - [anon_sym_BSLASHacrshort] = ACTIONS(4829), - [anon_sym_BSLASHAcrshort] = ACTIONS(4829), - [anon_sym_BSLASHACRshort] = ACTIONS(4829), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), - [anon_sym_BSLASHacrlong] = ACTIONS(4829), - [anon_sym_BSLASHAcrlong] = ACTIONS(4829), - [anon_sym_BSLASHACRlong] = ACTIONS(4829), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), - [anon_sym_BSLASHacrfull] = ACTIONS(4829), - [anon_sym_BSLASHAcrfull] = ACTIONS(4829), - [anon_sym_BSLASHACRfull] = ACTIONS(4829), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), - [anon_sym_BSLASHacs] = ACTIONS(4829), - [anon_sym_BSLASHAcs] = ACTIONS(4829), - [anon_sym_BSLASHacsp] = ACTIONS(4829), - [anon_sym_BSLASHAcsp] = ACTIONS(4829), - [anon_sym_BSLASHacl] = ACTIONS(4829), - [anon_sym_BSLASHAcl] = ACTIONS(4829), - [anon_sym_BSLASHaclp] = ACTIONS(4829), - [anon_sym_BSLASHAclp] = ACTIONS(4829), - [anon_sym_BSLASHacf] = ACTIONS(4829), - [anon_sym_BSLASHAcf] = ACTIONS(4829), - [anon_sym_BSLASHacfp] = ACTIONS(4829), - [anon_sym_BSLASHAcfp] = ACTIONS(4829), - [anon_sym_BSLASHac] = ACTIONS(4829), - [anon_sym_BSLASHAc] = ACTIONS(4829), - [anon_sym_BSLASHacp] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), - [anon_sym_BSLASHcolor] = ACTIONS(4829), - [anon_sym_BSLASHcolorbox] = ACTIONS(4829), - [anon_sym_BSLASHtextcolor] = ACTIONS(4829), - [anon_sym_BSLASHpagecolor] = ACTIONS(4829), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), - [anon_sym_BSLASHtext] = ACTIONS(4829), - [anon_sym_BSLASHintertext] = ACTIONS(4829), - [anon_sym_shortintertext] = ACTIONS(4829), + [sym_command_name] = ACTIONS(4908), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_BSLASHpart] = ACTIONS(4908), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddpart] = ACTIONS(4908), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHchapter] = ACTIONS(4908), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddchap] = ACTIONS(4908), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsection] = ACTIONS(4908), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddsec] = ACTIONS(4908), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHparagraph] = ACTIONS(4908), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4908), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHitem] = ACTIONS(4908), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4908), + [sym_placeholder] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym__] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4906), + [anon_sym_BSLASHbegin] = ACTIONS(4908), + [anon_sym_BSLASHend] = ACTIONS(4908), + [anon_sym_BSLASHusepackage] = ACTIONS(4908), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4908), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4908), + [anon_sym_BSLASHinclude] = ACTIONS(4908), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4908), + [anon_sym_BSLASHinput] = ACTIONS(4908), + [anon_sym_BSLASHsubfile] = ACTIONS(4908), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4908), + [anon_sym_BSLASHbibliography] = ACTIONS(4908), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4908), + [anon_sym_BSLASHincludesvg] = ACTIONS(4908), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4908), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4908), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4908), + [anon_sym_BSLASHimport] = ACTIONS(4908), + [anon_sym_BSLASHsubimport] = ACTIONS(4908), + [anon_sym_BSLASHinputfrom] = ACTIONS(4908), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4908), + [anon_sym_BSLASHincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHcaption] = ACTIONS(4908), + [anon_sym_BSLASHcite] = ACTIONS(4908), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCite] = ACTIONS(4908), + [anon_sym_BSLASHnocite] = ACTIONS(4908), + [anon_sym_BSLASHcitet] = ACTIONS(4908), + [anon_sym_BSLASHcitep] = ACTIONS(4908), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteauthor] = ACTIONS(4908), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4908), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitetitle] = ACTIONS(4908), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteyear] = ACTIONS(4908), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitedate] = ACTIONS(4908), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteurl] = ACTIONS(4908), + [anon_sym_BSLASHfullcite] = ACTIONS(4908), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4908), + [anon_sym_BSLASHcitealt] = ACTIONS(4908), + [anon_sym_BSLASHcitealp] = ACTIONS(4908), + [anon_sym_BSLASHcitetext] = ACTIONS(4908), + [anon_sym_BSLASHparencite] = ACTIONS(4908), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHParencite] = ACTIONS(4908), + [anon_sym_BSLASHfootcite] = ACTIONS(4908), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4908), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4908), + [anon_sym_BSLASHtextcite] = ACTIONS(4908), + [anon_sym_BSLASHTextcite] = ACTIONS(4908), + [anon_sym_BSLASHsmartcite] = ACTIONS(4908), + [anon_sym_BSLASHSmartcite] = ACTIONS(4908), + [anon_sym_BSLASHsupercite] = ACTIONS(4908), + [anon_sym_BSLASHautocite] = ACTIONS(4908), + [anon_sym_BSLASHAutocite] = ACTIONS(4908), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHvolcite] = ACTIONS(4908), + [anon_sym_BSLASHVolcite] = ACTIONS(4908), + [anon_sym_BSLASHpvolcite] = ACTIONS(4908), + [anon_sym_BSLASHPvolcite] = ACTIONS(4908), + [anon_sym_BSLASHfvolcite] = ACTIONS(4908), + [anon_sym_BSLASHftvolcite] = ACTIONS(4908), + [anon_sym_BSLASHsvolcite] = ACTIONS(4908), + [anon_sym_BSLASHSvolcite] = ACTIONS(4908), + [anon_sym_BSLASHtvolcite] = ACTIONS(4908), + [anon_sym_BSLASHTvolcite] = ACTIONS(4908), + [anon_sym_BSLASHavolcite] = ACTIONS(4908), + [anon_sym_BSLASHAvolcite] = ACTIONS(4908), + [anon_sym_BSLASHnotecite] = ACTIONS(4908), + [anon_sym_BSLASHNotecite] = ACTIONS(4908), + [anon_sym_BSLASHpnotecite] = ACTIONS(4908), + [anon_sym_BSLASHPnotecite] = ACTIONS(4908), + [anon_sym_BSLASHfnotecite] = ACTIONS(4908), + [anon_sym_BSLASHlabel] = ACTIONS(4908), + [anon_sym_BSLASHref] = ACTIONS(4908), + [anon_sym_BSLASHeqref] = ACTIONS(4908), + [anon_sym_BSLASHvref] = ACTIONS(4908), + [anon_sym_BSLASHVref] = ACTIONS(4908), + [anon_sym_BSLASHautoref] = ACTIONS(4908), + [anon_sym_BSLASHpageref] = ACTIONS(4908), + [anon_sym_BSLASHcref] = ACTIONS(4908), + [anon_sym_BSLASHCref] = ACTIONS(4908), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnameCref] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHlabelcref] = ACTIONS(4908), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCrefrange] = ACTIONS(4908), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnewlabel] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4908), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4908), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4908), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdef] = ACTIONS(4908), + [anon_sym_BSLASHlet] = ACTIONS(4908), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4908), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4908), + [anon_sym_BSLASHgls] = ACTIONS(4908), + [anon_sym_BSLASHGls] = ACTIONS(4908), + [anon_sym_BSLASHGLS] = ACTIONS(4908), + [anon_sym_BSLASHglspl] = ACTIONS(4908), + [anon_sym_BSLASHGlspl] = ACTIONS(4908), + [anon_sym_BSLASHGLSpl] = ACTIONS(4908), + [anon_sym_BSLASHglsdisp] = ACTIONS(4908), + [anon_sym_BSLASHglslink] = ACTIONS(4908), + [anon_sym_BSLASHglstext] = ACTIONS(4908), + [anon_sym_BSLASHGlstext] = ACTIONS(4908), + [anon_sym_BSLASHGLStext] = ACTIONS(4908), + [anon_sym_BSLASHglsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4908), + [anon_sym_BSLASHglsplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSplural] = ACTIONS(4908), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHglsname] = ACTIONS(4908), + [anon_sym_BSLASHGlsname] = ACTIONS(4908), + [anon_sym_BSLASHGLSname] = ACTIONS(4908), + [anon_sym_BSLASHglssymbol] = ACTIONS(4908), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4908), + [anon_sym_BSLASHglsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4908), + [anon_sym_BSLASHglsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4908), + [anon_sym_BSLASHglsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4908), + [anon_sym_BSLASHglsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4908), + [anon_sym_BSLASHglsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4908), + [anon_sym_BSLASHnewacronym] = ACTIONS(4908), + [anon_sym_BSLASHacrshort] = ACTIONS(4908), + [anon_sym_BSLASHAcrshort] = ACTIONS(4908), + [anon_sym_BSLASHACRshort] = ACTIONS(4908), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4908), + [anon_sym_BSLASHacrlong] = ACTIONS(4908), + [anon_sym_BSLASHAcrlong] = ACTIONS(4908), + [anon_sym_BSLASHACRlong] = ACTIONS(4908), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4908), + [anon_sym_BSLASHacrfull] = ACTIONS(4908), + [anon_sym_BSLASHAcrfull] = ACTIONS(4908), + [anon_sym_BSLASHACRfull] = ACTIONS(4908), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4908), + [anon_sym_BSLASHacs] = ACTIONS(4908), + [anon_sym_BSLASHAcs] = ACTIONS(4908), + [anon_sym_BSLASHacsp] = ACTIONS(4908), + [anon_sym_BSLASHAcsp] = ACTIONS(4908), + [anon_sym_BSLASHacl] = ACTIONS(4908), + [anon_sym_BSLASHAcl] = ACTIONS(4908), + [anon_sym_BSLASHaclp] = ACTIONS(4908), + [anon_sym_BSLASHAclp] = ACTIONS(4908), + [anon_sym_BSLASHacf] = ACTIONS(4908), + [anon_sym_BSLASHAcf] = ACTIONS(4908), + [anon_sym_BSLASHacfp] = ACTIONS(4908), + [anon_sym_BSLASHAcfp] = ACTIONS(4908), + [anon_sym_BSLASHac] = ACTIONS(4908), + [anon_sym_BSLASHAc] = ACTIONS(4908), + [anon_sym_BSLASHacp] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4908), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4908), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4908), + [anon_sym_BSLASHcolor] = ACTIONS(4908), + [anon_sym_BSLASHcolorbox] = ACTIONS(4908), + [anon_sym_BSLASHtextcolor] = ACTIONS(4908), + [anon_sym_BSLASHpagecolor] = ACTIONS(4908), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4908), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4908), + [anon_sym_BSLASHtext] = ACTIONS(4908), + [anon_sym_BSLASHintertext] = ACTIONS(4908), + [anon_sym_shortintertext] = ACTIONS(4908), }, [695] = { [sym_curly_group] = STATE(1106), - [sym_command_name] = ACTIONS(4833), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4831), - [anon_sym_BSLASHpart] = ACTIONS(4833), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddpart] = ACTIONS(4833), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHchapter] = ACTIONS(4833), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddchap] = ACTIONS(4833), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsection] = ACTIONS(4833), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddsec] = ACTIONS(4833), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHparagraph] = ACTIONS(4833), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHitem] = ACTIONS(4833), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4833), - [sym_placeholder] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym__] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), - [anon_sym_BSLASHbegin] = ACTIONS(4833), - [anon_sym_BSLASHend] = ACTIONS(4833), - [anon_sym_BSLASHusepackage] = ACTIONS(4833), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), - [anon_sym_BSLASHinclude] = ACTIONS(4833), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), - [anon_sym_BSLASHinput] = ACTIONS(4833), - [anon_sym_BSLASHsubfile] = ACTIONS(4833), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), - [anon_sym_BSLASHbibliography] = ACTIONS(4833), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), - [anon_sym_BSLASHincludesvg] = ACTIONS(4833), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), - [anon_sym_BSLASHimport] = ACTIONS(4833), - [anon_sym_BSLASHsubimport] = ACTIONS(4833), - [anon_sym_BSLASHinputfrom] = ACTIONS(4833), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), - [anon_sym_BSLASHincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHcaption] = ACTIONS(4833), - [anon_sym_BSLASHcite] = ACTIONS(4833), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCite] = ACTIONS(4833), - [anon_sym_BSLASHnocite] = ACTIONS(4833), - [anon_sym_BSLASHcitet] = ACTIONS(4833), - [anon_sym_BSLASHcitep] = ACTIONS(4833), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteauthor] = ACTIONS(4833), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitetitle] = ACTIONS(4833), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteyear] = ACTIONS(4833), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitedate] = ACTIONS(4833), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteurl] = ACTIONS(4833), - [anon_sym_BSLASHfullcite] = ACTIONS(4833), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), - [anon_sym_BSLASHcitealt] = ACTIONS(4833), - [anon_sym_BSLASHcitealp] = ACTIONS(4833), - [anon_sym_BSLASHcitetext] = ACTIONS(4833), - [anon_sym_BSLASHparencite] = ACTIONS(4833), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHParencite] = ACTIONS(4833), - [anon_sym_BSLASHfootcite] = ACTIONS(4833), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), - [anon_sym_BSLASHtextcite] = ACTIONS(4833), - [anon_sym_BSLASHTextcite] = ACTIONS(4833), - [anon_sym_BSLASHsmartcite] = ACTIONS(4833), - [anon_sym_BSLASHSmartcite] = ACTIONS(4833), - [anon_sym_BSLASHsupercite] = ACTIONS(4833), - [anon_sym_BSLASHautocite] = ACTIONS(4833), - [anon_sym_BSLASHAutocite] = ACTIONS(4833), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHvolcite] = ACTIONS(4833), - [anon_sym_BSLASHVolcite] = ACTIONS(4833), - [anon_sym_BSLASHpvolcite] = ACTIONS(4833), - [anon_sym_BSLASHPvolcite] = ACTIONS(4833), - [anon_sym_BSLASHfvolcite] = ACTIONS(4833), - [anon_sym_BSLASHftvolcite] = ACTIONS(4833), - [anon_sym_BSLASHsvolcite] = ACTIONS(4833), - [anon_sym_BSLASHSvolcite] = ACTIONS(4833), - [anon_sym_BSLASHtvolcite] = ACTIONS(4833), - [anon_sym_BSLASHTvolcite] = ACTIONS(4833), - [anon_sym_BSLASHavolcite] = ACTIONS(4833), - [anon_sym_BSLASHAvolcite] = ACTIONS(4833), - [anon_sym_BSLASHnotecite] = ACTIONS(4833), - [anon_sym_BSLASHNotecite] = ACTIONS(4833), - [anon_sym_BSLASHpnotecite] = ACTIONS(4833), - [anon_sym_BSLASHPnotecite] = ACTIONS(4833), - [anon_sym_BSLASHfnotecite] = ACTIONS(4833), - [anon_sym_BSLASHlabel] = ACTIONS(4833), - [anon_sym_BSLASHref] = ACTIONS(4833), - [anon_sym_BSLASHeqref] = ACTIONS(4833), - [anon_sym_BSLASHvref] = ACTIONS(4833), - [anon_sym_BSLASHVref] = ACTIONS(4833), - [anon_sym_BSLASHautoref] = ACTIONS(4833), - [anon_sym_BSLASHpageref] = ACTIONS(4833), - [anon_sym_BSLASHcref] = ACTIONS(4833), - [anon_sym_BSLASHCref] = ACTIONS(4833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnameCref] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHlabelcref] = ACTIONS(4833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCrefrange] = ACTIONS(4833), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnewlabel] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), - [anon_sym_BSLASHdef] = ACTIONS(4833), - [anon_sym_BSLASHlet] = ACTIONS(4833), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), - [anon_sym_BSLASHgls] = ACTIONS(4833), - [anon_sym_BSLASHGls] = ACTIONS(4833), - [anon_sym_BSLASHGLS] = ACTIONS(4833), - [anon_sym_BSLASHglspl] = ACTIONS(4833), - [anon_sym_BSLASHGlspl] = ACTIONS(4833), - [anon_sym_BSLASHGLSpl] = ACTIONS(4833), - [anon_sym_BSLASHglsdisp] = ACTIONS(4833), - [anon_sym_BSLASHglslink] = ACTIONS(4833), - [anon_sym_BSLASHglstext] = ACTIONS(4833), - [anon_sym_BSLASHGlstext] = ACTIONS(4833), - [anon_sym_BSLASHGLStext] = ACTIONS(4833), - [anon_sym_BSLASHglsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), - [anon_sym_BSLASHglsplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSplural] = ACTIONS(4833), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHglsname] = ACTIONS(4833), - [anon_sym_BSLASHGlsname] = ACTIONS(4833), - [anon_sym_BSLASHGLSname] = ACTIONS(4833), - [anon_sym_BSLASHglssymbol] = ACTIONS(4833), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), - [anon_sym_BSLASHglsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), - [anon_sym_BSLASHglsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), - [anon_sym_BSLASHglsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), - [anon_sym_BSLASHglsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), - [anon_sym_BSLASHglsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), - [anon_sym_BSLASHnewacronym] = ACTIONS(4833), - [anon_sym_BSLASHacrshort] = ACTIONS(4833), - [anon_sym_BSLASHAcrshort] = ACTIONS(4833), - [anon_sym_BSLASHACRshort] = ACTIONS(4833), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), - [anon_sym_BSLASHacrlong] = ACTIONS(4833), - [anon_sym_BSLASHAcrlong] = ACTIONS(4833), - [anon_sym_BSLASHACRlong] = ACTIONS(4833), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), - [anon_sym_BSLASHacrfull] = ACTIONS(4833), - [anon_sym_BSLASHAcrfull] = ACTIONS(4833), - [anon_sym_BSLASHACRfull] = ACTIONS(4833), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), - [anon_sym_BSLASHacs] = ACTIONS(4833), - [anon_sym_BSLASHAcs] = ACTIONS(4833), - [anon_sym_BSLASHacsp] = ACTIONS(4833), - [anon_sym_BSLASHAcsp] = ACTIONS(4833), - [anon_sym_BSLASHacl] = ACTIONS(4833), - [anon_sym_BSLASHAcl] = ACTIONS(4833), - [anon_sym_BSLASHaclp] = ACTIONS(4833), - [anon_sym_BSLASHAclp] = ACTIONS(4833), - [anon_sym_BSLASHacf] = ACTIONS(4833), - [anon_sym_BSLASHAcf] = ACTIONS(4833), - [anon_sym_BSLASHacfp] = ACTIONS(4833), - [anon_sym_BSLASHAcfp] = ACTIONS(4833), - [anon_sym_BSLASHac] = ACTIONS(4833), - [anon_sym_BSLASHAc] = ACTIONS(4833), - [anon_sym_BSLASHacp] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), - [anon_sym_BSLASHcolor] = ACTIONS(4833), - [anon_sym_BSLASHcolorbox] = ACTIONS(4833), - [anon_sym_BSLASHtextcolor] = ACTIONS(4833), - [anon_sym_BSLASHpagecolor] = ACTIONS(4833), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), - [anon_sym_BSLASHtext] = ACTIONS(4833), - [anon_sym_BSLASHintertext] = ACTIONS(4833), - [anon_sym_shortintertext] = ACTIONS(4833), + [sym_command_name] = ACTIONS(4912), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_BSLASHpart] = ACTIONS(4912), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddpart] = ACTIONS(4912), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHchapter] = ACTIONS(4912), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddchap] = ACTIONS(4912), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsection] = ACTIONS(4912), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddsec] = ACTIONS(4912), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHparagraph] = ACTIONS(4912), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4912), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHitem] = ACTIONS(4912), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4912), + [sym_placeholder] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_CARET] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4910), + [anon_sym_BSLASHbegin] = ACTIONS(4912), + [anon_sym_BSLASHend] = ACTIONS(4912), + [anon_sym_BSLASHusepackage] = ACTIONS(4912), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4912), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4912), + [anon_sym_BSLASHinclude] = ACTIONS(4912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4912), + [anon_sym_BSLASHinput] = ACTIONS(4912), + [anon_sym_BSLASHsubfile] = ACTIONS(4912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4912), + [anon_sym_BSLASHbibliography] = ACTIONS(4912), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4912), + [anon_sym_BSLASHincludesvg] = ACTIONS(4912), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4912), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4912), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4912), + [anon_sym_BSLASHimport] = ACTIONS(4912), + [anon_sym_BSLASHsubimport] = ACTIONS(4912), + [anon_sym_BSLASHinputfrom] = ACTIONS(4912), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4912), + [anon_sym_BSLASHincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHcaption] = ACTIONS(4912), + [anon_sym_BSLASHcite] = ACTIONS(4912), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCite] = ACTIONS(4912), + [anon_sym_BSLASHnocite] = ACTIONS(4912), + [anon_sym_BSLASHcitet] = ACTIONS(4912), + [anon_sym_BSLASHcitep] = ACTIONS(4912), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteauthor] = ACTIONS(4912), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4912), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitetitle] = ACTIONS(4912), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteyear] = ACTIONS(4912), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitedate] = ACTIONS(4912), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteurl] = ACTIONS(4912), + [anon_sym_BSLASHfullcite] = ACTIONS(4912), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4912), + [anon_sym_BSLASHcitealt] = ACTIONS(4912), + [anon_sym_BSLASHcitealp] = ACTIONS(4912), + [anon_sym_BSLASHcitetext] = ACTIONS(4912), + [anon_sym_BSLASHparencite] = ACTIONS(4912), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHParencite] = ACTIONS(4912), + [anon_sym_BSLASHfootcite] = ACTIONS(4912), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4912), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4912), + [anon_sym_BSLASHtextcite] = ACTIONS(4912), + [anon_sym_BSLASHTextcite] = ACTIONS(4912), + [anon_sym_BSLASHsmartcite] = ACTIONS(4912), + [anon_sym_BSLASHSmartcite] = ACTIONS(4912), + [anon_sym_BSLASHsupercite] = ACTIONS(4912), + [anon_sym_BSLASHautocite] = ACTIONS(4912), + [anon_sym_BSLASHAutocite] = ACTIONS(4912), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHvolcite] = ACTIONS(4912), + [anon_sym_BSLASHVolcite] = ACTIONS(4912), + [anon_sym_BSLASHpvolcite] = ACTIONS(4912), + [anon_sym_BSLASHPvolcite] = ACTIONS(4912), + [anon_sym_BSLASHfvolcite] = ACTIONS(4912), + [anon_sym_BSLASHftvolcite] = ACTIONS(4912), + [anon_sym_BSLASHsvolcite] = ACTIONS(4912), + [anon_sym_BSLASHSvolcite] = ACTIONS(4912), + [anon_sym_BSLASHtvolcite] = ACTIONS(4912), + [anon_sym_BSLASHTvolcite] = ACTIONS(4912), + [anon_sym_BSLASHavolcite] = ACTIONS(4912), + [anon_sym_BSLASHAvolcite] = ACTIONS(4912), + [anon_sym_BSLASHnotecite] = ACTIONS(4912), + [anon_sym_BSLASHNotecite] = ACTIONS(4912), + [anon_sym_BSLASHpnotecite] = ACTIONS(4912), + [anon_sym_BSLASHPnotecite] = ACTIONS(4912), + [anon_sym_BSLASHfnotecite] = ACTIONS(4912), + [anon_sym_BSLASHlabel] = ACTIONS(4912), + [anon_sym_BSLASHref] = ACTIONS(4912), + [anon_sym_BSLASHeqref] = ACTIONS(4912), + [anon_sym_BSLASHvref] = ACTIONS(4912), + [anon_sym_BSLASHVref] = ACTIONS(4912), + [anon_sym_BSLASHautoref] = ACTIONS(4912), + [anon_sym_BSLASHpageref] = ACTIONS(4912), + [anon_sym_BSLASHcref] = ACTIONS(4912), + [anon_sym_BSLASHCref] = ACTIONS(4912), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnameCref] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHlabelcref] = ACTIONS(4912), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCrefrange] = ACTIONS(4912), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnewlabel] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4912), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4912), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4912), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdef] = ACTIONS(4912), + [anon_sym_BSLASHlet] = ACTIONS(4912), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4912), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), + [anon_sym_BSLASHgls] = ACTIONS(4912), + [anon_sym_BSLASHGls] = ACTIONS(4912), + [anon_sym_BSLASHGLS] = ACTIONS(4912), + [anon_sym_BSLASHglspl] = ACTIONS(4912), + [anon_sym_BSLASHGlspl] = ACTIONS(4912), + [anon_sym_BSLASHGLSpl] = ACTIONS(4912), + [anon_sym_BSLASHglsdisp] = ACTIONS(4912), + [anon_sym_BSLASHglslink] = ACTIONS(4912), + [anon_sym_BSLASHglstext] = ACTIONS(4912), + [anon_sym_BSLASHGlstext] = ACTIONS(4912), + [anon_sym_BSLASHGLStext] = ACTIONS(4912), + [anon_sym_BSLASHglsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4912), + [anon_sym_BSLASHglsplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSplural] = ACTIONS(4912), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHglsname] = ACTIONS(4912), + [anon_sym_BSLASHGlsname] = ACTIONS(4912), + [anon_sym_BSLASHGLSname] = ACTIONS(4912), + [anon_sym_BSLASHglssymbol] = ACTIONS(4912), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4912), + [anon_sym_BSLASHglsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4912), + [anon_sym_BSLASHglsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4912), + [anon_sym_BSLASHglsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4912), + [anon_sym_BSLASHglsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4912), + [anon_sym_BSLASHglsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4912), + [anon_sym_BSLASHnewacronym] = ACTIONS(4912), + [anon_sym_BSLASHacrshort] = ACTIONS(4912), + [anon_sym_BSLASHAcrshort] = ACTIONS(4912), + [anon_sym_BSLASHACRshort] = ACTIONS(4912), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4912), + [anon_sym_BSLASHacrlong] = ACTIONS(4912), + [anon_sym_BSLASHAcrlong] = ACTIONS(4912), + [anon_sym_BSLASHACRlong] = ACTIONS(4912), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4912), + [anon_sym_BSLASHacrfull] = ACTIONS(4912), + [anon_sym_BSLASHAcrfull] = ACTIONS(4912), + [anon_sym_BSLASHACRfull] = ACTIONS(4912), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4912), + [anon_sym_BSLASHacs] = ACTIONS(4912), + [anon_sym_BSLASHAcs] = ACTIONS(4912), + [anon_sym_BSLASHacsp] = ACTIONS(4912), + [anon_sym_BSLASHAcsp] = ACTIONS(4912), + [anon_sym_BSLASHacl] = ACTIONS(4912), + [anon_sym_BSLASHAcl] = ACTIONS(4912), + [anon_sym_BSLASHaclp] = ACTIONS(4912), + [anon_sym_BSLASHAclp] = ACTIONS(4912), + [anon_sym_BSLASHacf] = ACTIONS(4912), + [anon_sym_BSLASHAcf] = ACTIONS(4912), + [anon_sym_BSLASHacfp] = ACTIONS(4912), + [anon_sym_BSLASHAcfp] = ACTIONS(4912), + [anon_sym_BSLASHac] = ACTIONS(4912), + [anon_sym_BSLASHAc] = ACTIONS(4912), + [anon_sym_BSLASHacp] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4912), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4912), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4912), + [anon_sym_BSLASHcolor] = ACTIONS(4912), + [anon_sym_BSLASHcolorbox] = ACTIONS(4912), + [anon_sym_BSLASHtextcolor] = ACTIONS(4912), + [anon_sym_BSLASHpagecolor] = ACTIONS(4912), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4912), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4912), + [anon_sym_BSLASHtext] = ACTIONS(4912), + [anon_sym_BSLASHintertext] = ACTIONS(4912), + [anon_sym_shortintertext] = ACTIONS(4912), }, [696] = { [sym_curly_group] = STATE(1107), - [sym_command_name] = ACTIONS(4837), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_BSLASHpart] = ACTIONS(4837), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddpart] = ACTIONS(4837), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHchapter] = ACTIONS(4837), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddchap] = ACTIONS(4837), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsection] = ACTIONS(4837), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddsec] = ACTIONS(4837), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHparagraph] = ACTIONS(4837), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHitem] = ACTIONS(4837), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4837), - [sym_placeholder] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym__] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), - [anon_sym_BSLASHbegin] = ACTIONS(4837), - [anon_sym_BSLASHend] = ACTIONS(4837), - [anon_sym_BSLASHusepackage] = ACTIONS(4837), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4837), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), - [anon_sym_BSLASHinput] = ACTIONS(4837), - [anon_sym_BSLASHsubfile] = ACTIONS(4837), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), - [anon_sym_BSLASHbibliography] = ACTIONS(4837), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), - [anon_sym_BSLASHincludesvg] = ACTIONS(4837), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), - [anon_sym_BSLASHimport] = ACTIONS(4837), - [anon_sym_BSLASHsubimport] = ACTIONS(4837), - [anon_sym_BSLASHinputfrom] = ACTIONS(4837), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), - [anon_sym_BSLASHincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHcaption] = ACTIONS(4837), - [anon_sym_BSLASHcite] = ACTIONS(4837), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCite] = ACTIONS(4837), - [anon_sym_BSLASHnocite] = ACTIONS(4837), - [anon_sym_BSLASHcitet] = ACTIONS(4837), - [anon_sym_BSLASHcitep] = ACTIONS(4837), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteauthor] = ACTIONS(4837), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitetitle] = ACTIONS(4837), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteyear] = ACTIONS(4837), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitedate] = ACTIONS(4837), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteurl] = ACTIONS(4837), - [anon_sym_BSLASHfullcite] = ACTIONS(4837), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), - [anon_sym_BSLASHcitealt] = ACTIONS(4837), - [anon_sym_BSLASHcitealp] = ACTIONS(4837), - [anon_sym_BSLASHcitetext] = ACTIONS(4837), - [anon_sym_BSLASHparencite] = ACTIONS(4837), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHParencite] = ACTIONS(4837), - [anon_sym_BSLASHfootcite] = ACTIONS(4837), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), - [anon_sym_BSLASHtextcite] = ACTIONS(4837), - [anon_sym_BSLASHTextcite] = ACTIONS(4837), - [anon_sym_BSLASHsmartcite] = ACTIONS(4837), - [anon_sym_BSLASHSmartcite] = ACTIONS(4837), - [anon_sym_BSLASHsupercite] = ACTIONS(4837), - [anon_sym_BSLASHautocite] = ACTIONS(4837), - [anon_sym_BSLASHAutocite] = ACTIONS(4837), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHvolcite] = ACTIONS(4837), - [anon_sym_BSLASHVolcite] = ACTIONS(4837), - [anon_sym_BSLASHpvolcite] = ACTIONS(4837), - [anon_sym_BSLASHPvolcite] = ACTIONS(4837), - [anon_sym_BSLASHfvolcite] = ACTIONS(4837), - [anon_sym_BSLASHftvolcite] = ACTIONS(4837), - [anon_sym_BSLASHsvolcite] = ACTIONS(4837), - [anon_sym_BSLASHSvolcite] = ACTIONS(4837), - [anon_sym_BSLASHtvolcite] = ACTIONS(4837), - [anon_sym_BSLASHTvolcite] = ACTIONS(4837), - [anon_sym_BSLASHavolcite] = ACTIONS(4837), - [anon_sym_BSLASHAvolcite] = ACTIONS(4837), - [anon_sym_BSLASHnotecite] = ACTIONS(4837), - [anon_sym_BSLASHNotecite] = ACTIONS(4837), - [anon_sym_BSLASHpnotecite] = ACTIONS(4837), - [anon_sym_BSLASHPnotecite] = ACTIONS(4837), - [anon_sym_BSLASHfnotecite] = ACTIONS(4837), - [anon_sym_BSLASHlabel] = ACTIONS(4837), - [anon_sym_BSLASHref] = ACTIONS(4837), - [anon_sym_BSLASHeqref] = ACTIONS(4837), - [anon_sym_BSLASHvref] = ACTIONS(4837), - [anon_sym_BSLASHVref] = ACTIONS(4837), - [anon_sym_BSLASHautoref] = ACTIONS(4837), - [anon_sym_BSLASHpageref] = ACTIONS(4837), - [anon_sym_BSLASHcref] = ACTIONS(4837), - [anon_sym_BSLASHCref] = ACTIONS(4837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnameCref] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHlabelcref] = ACTIONS(4837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCrefrange] = ACTIONS(4837), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnewlabel] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), - [anon_sym_BSLASHdef] = ACTIONS(4837), - [anon_sym_BSLASHlet] = ACTIONS(4837), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), - [anon_sym_BSLASHgls] = ACTIONS(4837), - [anon_sym_BSLASHGls] = ACTIONS(4837), - [anon_sym_BSLASHGLS] = ACTIONS(4837), - [anon_sym_BSLASHglspl] = ACTIONS(4837), - [anon_sym_BSLASHGlspl] = ACTIONS(4837), - [anon_sym_BSLASHGLSpl] = ACTIONS(4837), - [anon_sym_BSLASHglsdisp] = ACTIONS(4837), - [anon_sym_BSLASHglslink] = ACTIONS(4837), - [anon_sym_BSLASHglstext] = ACTIONS(4837), - [anon_sym_BSLASHGlstext] = ACTIONS(4837), - [anon_sym_BSLASHGLStext] = ACTIONS(4837), - [anon_sym_BSLASHglsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), - [anon_sym_BSLASHglsplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSplural] = ACTIONS(4837), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHglsname] = ACTIONS(4837), - [anon_sym_BSLASHGlsname] = ACTIONS(4837), - [anon_sym_BSLASHGLSname] = ACTIONS(4837), - [anon_sym_BSLASHglssymbol] = ACTIONS(4837), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), - [anon_sym_BSLASHglsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), - [anon_sym_BSLASHglsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), - [anon_sym_BSLASHglsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), - [anon_sym_BSLASHglsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), - [anon_sym_BSLASHglsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), - [anon_sym_BSLASHnewacronym] = ACTIONS(4837), - [anon_sym_BSLASHacrshort] = ACTIONS(4837), - [anon_sym_BSLASHAcrshort] = ACTIONS(4837), - [anon_sym_BSLASHACRshort] = ACTIONS(4837), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), - [anon_sym_BSLASHacrlong] = ACTIONS(4837), - [anon_sym_BSLASHAcrlong] = ACTIONS(4837), - [anon_sym_BSLASHACRlong] = ACTIONS(4837), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), - [anon_sym_BSLASHacrfull] = ACTIONS(4837), - [anon_sym_BSLASHAcrfull] = ACTIONS(4837), - [anon_sym_BSLASHACRfull] = ACTIONS(4837), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), - [anon_sym_BSLASHacs] = ACTIONS(4837), - [anon_sym_BSLASHAcs] = ACTIONS(4837), - [anon_sym_BSLASHacsp] = ACTIONS(4837), - [anon_sym_BSLASHAcsp] = ACTIONS(4837), - [anon_sym_BSLASHacl] = ACTIONS(4837), - [anon_sym_BSLASHAcl] = ACTIONS(4837), - [anon_sym_BSLASHaclp] = ACTIONS(4837), - [anon_sym_BSLASHAclp] = ACTIONS(4837), - [anon_sym_BSLASHacf] = ACTIONS(4837), - [anon_sym_BSLASHAcf] = ACTIONS(4837), - [anon_sym_BSLASHacfp] = ACTIONS(4837), - [anon_sym_BSLASHAcfp] = ACTIONS(4837), - [anon_sym_BSLASHac] = ACTIONS(4837), - [anon_sym_BSLASHAc] = ACTIONS(4837), - [anon_sym_BSLASHacp] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), - [anon_sym_BSLASHcolor] = ACTIONS(4837), - [anon_sym_BSLASHcolorbox] = ACTIONS(4837), - [anon_sym_BSLASHtextcolor] = ACTIONS(4837), - [anon_sym_BSLASHpagecolor] = ACTIONS(4837), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), - [anon_sym_BSLASHtext] = ACTIONS(4837), - [anon_sym_BSLASHintertext] = ACTIONS(4837), - [anon_sym_shortintertext] = ACTIONS(4837), + [sym_command_name] = ACTIONS(4916), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_BSLASHpart] = ACTIONS(4916), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddpart] = ACTIONS(4916), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHchapter] = ACTIONS(4916), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddchap] = ACTIONS(4916), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsection] = ACTIONS(4916), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddsec] = ACTIONS(4916), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHparagraph] = ACTIONS(4916), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4916), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHitem] = ACTIONS(4916), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4916), + [sym_placeholder] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym__] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4914), + [anon_sym_BSLASHbegin] = ACTIONS(4916), + [anon_sym_BSLASHend] = ACTIONS(4916), + [anon_sym_BSLASHusepackage] = ACTIONS(4916), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4916), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4916), + [anon_sym_BSLASHinclude] = ACTIONS(4916), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4916), + [anon_sym_BSLASHinput] = ACTIONS(4916), + [anon_sym_BSLASHsubfile] = ACTIONS(4916), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4916), + [anon_sym_BSLASHbibliography] = ACTIONS(4916), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4916), + [anon_sym_BSLASHincludesvg] = ACTIONS(4916), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4916), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4916), + [anon_sym_BSLASHimport] = ACTIONS(4916), + [anon_sym_BSLASHsubimport] = ACTIONS(4916), + [anon_sym_BSLASHinputfrom] = ACTIONS(4916), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4916), + [anon_sym_BSLASHincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHcaption] = ACTIONS(4916), + [anon_sym_BSLASHcite] = ACTIONS(4916), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCite] = ACTIONS(4916), + [anon_sym_BSLASHnocite] = ACTIONS(4916), + [anon_sym_BSLASHcitet] = ACTIONS(4916), + [anon_sym_BSLASHcitep] = ACTIONS(4916), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteauthor] = ACTIONS(4916), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4916), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitetitle] = ACTIONS(4916), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteyear] = ACTIONS(4916), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitedate] = ACTIONS(4916), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteurl] = ACTIONS(4916), + [anon_sym_BSLASHfullcite] = ACTIONS(4916), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4916), + [anon_sym_BSLASHcitealt] = ACTIONS(4916), + [anon_sym_BSLASHcitealp] = ACTIONS(4916), + [anon_sym_BSLASHcitetext] = ACTIONS(4916), + [anon_sym_BSLASHparencite] = ACTIONS(4916), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHParencite] = ACTIONS(4916), + [anon_sym_BSLASHfootcite] = ACTIONS(4916), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4916), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4916), + [anon_sym_BSLASHtextcite] = ACTIONS(4916), + [anon_sym_BSLASHTextcite] = ACTIONS(4916), + [anon_sym_BSLASHsmartcite] = ACTIONS(4916), + [anon_sym_BSLASHSmartcite] = ACTIONS(4916), + [anon_sym_BSLASHsupercite] = ACTIONS(4916), + [anon_sym_BSLASHautocite] = ACTIONS(4916), + [anon_sym_BSLASHAutocite] = ACTIONS(4916), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHvolcite] = ACTIONS(4916), + [anon_sym_BSLASHVolcite] = ACTIONS(4916), + [anon_sym_BSLASHpvolcite] = ACTIONS(4916), + [anon_sym_BSLASHPvolcite] = ACTIONS(4916), + [anon_sym_BSLASHfvolcite] = ACTIONS(4916), + [anon_sym_BSLASHftvolcite] = ACTIONS(4916), + [anon_sym_BSLASHsvolcite] = ACTIONS(4916), + [anon_sym_BSLASHSvolcite] = ACTIONS(4916), + [anon_sym_BSLASHtvolcite] = ACTIONS(4916), + [anon_sym_BSLASHTvolcite] = ACTIONS(4916), + [anon_sym_BSLASHavolcite] = ACTIONS(4916), + [anon_sym_BSLASHAvolcite] = ACTIONS(4916), + [anon_sym_BSLASHnotecite] = ACTIONS(4916), + [anon_sym_BSLASHNotecite] = ACTIONS(4916), + [anon_sym_BSLASHpnotecite] = ACTIONS(4916), + [anon_sym_BSLASHPnotecite] = ACTIONS(4916), + [anon_sym_BSLASHfnotecite] = ACTIONS(4916), + [anon_sym_BSLASHlabel] = ACTIONS(4916), + [anon_sym_BSLASHref] = ACTIONS(4916), + [anon_sym_BSLASHeqref] = ACTIONS(4916), + [anon_sym_BSLASHvref] = ACTIONS(4916), + [anon_sym_BSLASHVref] = ACTIONS(4916), + [anon_sym_BSLASHautoref] = ACTIONS(4916), + [anon_sym_BSLASHpageref] = ACTIONS(4916), + [anon_sym_BSLASHcref] = ACTIONS(4916), + [anon_sym_BSLASHCref] = ACTIONS(4916), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnameCref] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHlabelcref] = ACTIONS(4916), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCrefrange] = ACTIONS(4916), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnewlabel] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4916), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4916), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4916), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdef] = ACTIONS(4916), + [anon_sym_BSLASHlet] = ACTIONS(4916), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4916), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4916), + [anon_sym_BSLASHgls] = ACTIONS(4916), + [anon_sym_BSLASHGls] = ACTIONS(4916), + [anon_sym_BSLASHGLS] = ACTIONS(4916), + [anon_sym_BSLASHglspl] = ACTIONS(4916), + [anon_sym_BSLASHGlspl] = ACTIONS(4916), + [anon_sym_BSLASHGLSpl] = ACTIONS(4916), + [anon_sym_BSLASHglsdisp] = ACTIONS(4916), + [anon_sym_BSLASHglslink] = ACTIONS(4916), + [anon_sym_BSLASHglstext] = ACTIONS(4916), + [anon_sym_BSLASHGlstext] = ACTIONS(4916), + [anon_sym_BSLASHGLStext] = ACTIONS(4916), + [anon_sym_BSLASHglsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4916), + [anon_sym_BSLASHglsplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSplural] = ACTIONS(4916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHglsname] = ACTIONS(4916), + [anon_sym_BSLASHGlsname] = ACTIONS(4916), + [anon_sym_BSLASHGLSname] = ACTIONS(4916), + [anon_sym_BSLASHglssymbol] = ACTIONS(4916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4916), + [anon_sym_BSLASHglsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4916), + [anon_sym_BSLASHglsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4916), + [anon_sym_BSLASHglsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4916), + [anon_sym_BSLASHglsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4916), + [anon_sym_BSLASHglsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4916), + [anon_sym_BSLASHnewacronym] = ACTIONS(4916), + [anon_sym_BSLASHacrshort] = ACTIONS(4916), + [anon_sym_BSLASHAcrshort] = ACTIONS(4916), + [anon_sym_BSLASHACRshort] = ACTIONS(4916), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4916), + [anon_sym_BSLASHacrlong] = ACTIONS(4916), + [anon_sym_BSLASHAcrlong] = ACTIONS(4916), + [anon_sym_BSLASHACRlong] = ACTIONS(4916), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4916), + [anon_sym_BSLASHacrfull] = ACTIONS(4916), + [anon_sym_BSLASHAcrfull] = ACTIONS(4916), + [anon_sym_BSLASHACRfull] = ACTIONS(4916), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4916), + [anon_sym_BSLASHacs] = ACTIONS(4916), + [anon_sym_BSLASHAcs] = ACTIONS(4916), + [anon_sym_BSLASHacsp] = ACTIONS(4916), + [anon_sym_BSLASHAcsp] = ACTIONS(4916), + [anon_sym_BSLASHacl] = ACTIONS(4916), + [anon_sym_BSLASHAcl] = ACTIONS(4916), + [anon_sym_BSLASHaclp] = ACTIONS(4916), + [anon_sym_BSLASHAclp] = ACTIONS(4916), + [anon_sym_BSLASHacf] = ACTIONS(4916), + [anon_sym_BSLASHAcf] = ACTIONS(4916), + [anon_sym_BSLASHacfp] = ACTIONS(4916), + [anon_sym_BSLASHAcfp] = ACTIONS(4916), + [anon_sym_BSLASHac] = ACTIONS(4916), + [anon_sym_BSLASHAc] = ACTIONS(4916), + [anon_sym_BSLASHacp] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4916), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4916), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4916), + [anon_sym_BSLASHcolor] = ACTIONS(4916), + [anon_sym_BSLASHcolorbox] = ACTIONS(4916), + [anon_sym_BSLASHtextcolor] = ACTIONS(4916), + [anon_sym_BSLASHpagecolor] = ACTIONS(4916), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4916), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4916), + [anon_sym_BSLASHtext] = ACTIONS(4916), + [anon_sym_BSLASHintertext] = ACTIONS(4916), + [anon_sym_shortintertext] = ACTIONS(4916), }, [697] = { [sym_curly_group] = STATE(1108), - [sym_command_name] = ACTIONS(4841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4839), - [anon_sym_BSLASHpart] = ACTIONS(4841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddpart] = ACTIONS(4841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHchapter] = ACTIONS(4841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddchap] = ACTIONS(4841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsection] = ACTIONS(4841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddsec] = ACTIONS(4841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHparagraph] = ACTIONS(4841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHitem] = ACTIONS(4841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4841), - [sym_placeholder] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym__] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), - [anon_sym_BSLASHbegin] = ACTIONS(4841), - [anon_sym_BSLASHend] = ACTIONS(4841), - [anon_sym_BSLASHusepackage] = ACTIONS(4841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), - [anon_sym_BSLASHinclude] = ACTIONS(4841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), - [anon_sym_BSLASHinput] = ACTIONS(4841), - [anon_sym_BSLASHsubfile] = ACTIONS(4841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), - [anon_sym_BSLASHbibliography] = ACTIONS(4841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), - [anon_sym_BSLASHincludesvg] = ACTIONS(4841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), - [anon_sym_BSLASHimport] = ACTIONS(4841), - [anon_sym_BSLASHsubimport] = ACTIONS(4841), - [anon_sym_BSLASHinputfrom] = ACTIONS(4841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), - [anon_sym_BSLASHincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHcaption] = ACTIONS(4841), - [anon_sym_BSLASHcite] = ACTIONS(4841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCite] = ACTIONS(4841), - [anon_sym_BSLASHnocite] = ACTIONS(4841), - [anon_sym_BSLASHcitet] = ACTIONS(4841), - [anon_sym_BSLASHcitep] = ACTIONS(4841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteauthor] = ACTIONS(4841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitetitle] = ACTIONS(4841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteyear] = ACTIONS(4841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitedate] = ACTIONS(4841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteurl] = ACTIONS(4841), - [anon_sym_BSLASHfullcite] = ACTIONS(4841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), - [anon_sym_BSLASHcitealt] = ACTIONS(4841), - [anon_sym_BSLASHcitealp] = ACTIONS(4841), - [anon_sym_BSLASHcitetext] = ACTIONS(4841), - [anon_sym_BSLASHparencite] = ACTIONS(4841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHParencite] = ACTIONS(4841), - [anon_sym_BSLASHfootcite] = ACTIONS(4841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), - [anon_sym_BSLASHtextcite] = ACTIONS(4841), - [anon_sym_BSLASHTextcite] = ACTIONS(4841), - [anon_sym_BSLASHsmartcite] = ACTIONS(4841), - [anon_sym_BSLASHSmartcite] = ACTIONS(4841), - [anon_sym_BSLASHsupercite] = ACTIONS(4841), - [anon_sym_BSLASHautocite] = ACTIONS(4841), - [anon_sym_BSLASHAutocite] = ACTIONS(4841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHvolcite] = ACTIONS(4841), - [anon_sym_BSLASHVolcite] = ACTIONS(4841), - [anon_sym_BSLASHpvolcite] = ACTIONS(4841), - [anon_sym_BSLASHPvolcite] = ACTIONS(4841), - [anon_sym_BSLASHfvolcite] = ACTIONS(4841), - [anon_sym_BSLASHftvolcite] = ACTIONS(4841), - [anon_sym_BSLASHsvolcite] = ACTIONS(4841), - [anon_sym_BSLASHSvolcite] = ACTIONS(4841), - [anon_sym_BSLASHtvolcite] = ACTIONS(4841), - [anon_sym_BSLASHTvolcite] = ACTIONS(4841), - [anon_sym_BSLASHavolcite] = ACTIONS(4841), - [anon_sym_BSLASHAvolcite] = ACTIONS(4841), - [anon_sym_BSLASHnotecite] = ACTIONS(4841), - [anon_sym_BSLASHNotecite] = ACTIONS(4841), - [anon_sym_BSLASHpnotecite] = ACTIONS(4841), - [anon_sym_BSLASHPnotecite] = ACTIONS(4841), - [anon_sym_BSLASHfnotecite] = ACTIONS(4841), - [anon_sym_BSLASHlabel] = ACTIONS(4841), - [anon_sym_BSLASHref] = ACTIONS(4841), - [anon_sym_BSLASHeqref] = ACTIONS(4841), - [anon_sym_BSLASHvref] = ACTIONS(4841), - [anon_sym_BSLASHVref] = ACTIONS(4841), - [anon_sym_BSLASHautoref] = ACTIONS(4841), - [anon_sym_BSLASHpageref] = ACTIONS(4841), - [anon_sym_BSLASHcref] = ACTIONS(4841), - [anon_sym_BSLASHCref] = ACTIONS(4841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnameCref] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHlabelcref] = ACTIONS(4841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCrefrange] = ACTIONS(4841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnewlabel] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), - [anon_sym_BSLASHdef] = ACTIONS(4841), - [anon_sym_BSLASHlet] = ACTIONS(4841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), - [anon_sym_BSLASHgls] = ACTIONS(4841), - [anon_sym_BSLASHGls] = ACTIONS(4841), - [anon_sym_BSLASHGLS] = ACTIONS(4841), - [anon_sym_BSLASHglspl] = ACTIONS(4841), - [anon_sym_BSLASHGlspl] = ACTIONS(4841), - [anon_sym_BSLASHGLSpl] = ACTIONS(4841), - [anon_sym_BSLASHglsdisp] = ACTIONS(4841), - [anon_sym_BSLASHglslink] = ACTIONS(4841), - [anon_sym_BSLASHglstext] = ACTIONS(4841), - [anon_sym_BSLASHGlstext] = ACTIONS(4841), - [anon_sym_BSLASHGLStext] = ACTIONS(4841), - [anon_sym_BSLASHglsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), - [anon_sym_BSLASHglsplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSplural] = ACTIONS(4841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHglsname] = ACTIONS(4841), - [anon_sym_BSLASHGlsname] = ACTIONS(4841), - [anon_sym_BSLASHGLSname] = ACTIONS(4841), - [anon_sym_BSLASHglssymbol] = ACTIONS(4841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), - [anon_sym_BSLASHglsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), - [anon_sym_BSLASHglsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), - [anon_sym_BSLASHglsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), - [anon_sym_BSLASHglsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), - [anon_sym_BSLASHglsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), - [anon_sym_BSLASHnewacronym] = ACTIONS(4841), - [anon_sym_BSLASHacrshort] = ACTIONS(4841), - [anon_sym_BSLASHAcrshort] = ACTIONS(4841), - [anon_sym_BSLASHACRshort] = ACTIONS(4841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), - [anon_sym_BSLASHacrlong] = ACTIONS(4841), - [anon_sym_BSLASHAcrlong] = ACTIONS(4841), - [anon_sym_BSLASHACRlong] = ACTIONS(4841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), - [anon_sym_BSLASHacrfull] = ACTIONS(4841), - [anon_sym_BSLASHAcrfull] = ACTIONS(4841), - [anon_sym_BSLASHACRfull] = ACTIONS(4841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), - [anon_sym_BSLASHacs] = ACTIONS(4841), - [anon_sym_BSLASHAcs] = ACTIONS(4841), - [anon_sym_BSLASHacsp] = ACTIONS(4841), - [anon_sym_BSLASHAcsp] = ACTIONS(4841), - [anon_sym_BSLASHacl] = ACTIONS(4841), - [anon_sym_BSLASHAcl] = ACTIONS(4841), - [anon_sym_BSLASHaclp] = ACTIONS(4841), - [anon_sym_BSLASHAclp] = ACTIONS(4841), - [anon_sym_BSLASHacf] = ACTIONS(4841), - [anon_sym_BSLASHAcf] = ACTIONS(4841), - [anon_sym_BSLASHacfp] = ACTIONS(4841), - [anon_sym_BSLASHAcfp] = ACTIONS(4841), - [anon_sym_BSLASHac] = ACTIONS(4841), - [anon_sym_BSLASHAc] = ACTIONS(4841), - [anon_sym_BSLASHacp] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), - [anon_sym_BSLASHcolor] = ACTIONS(4841), - [anon_sym_BSLASHcolorbox] = ACTIONS(4841), - [anon_sym_BSLASHtextcolor] = ACTIONS(4841), - [anon_sym_BSLASHpagecolor] = ACTIONS(4841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), - [anon_sym_BSLASHtext] = ACTIONS(4841), - [anon_sym_BSLASHintertext] = ACTIONS(4841), - [anon_sym_shortintertext] = ACTIONS(4841), + [sym_command_name] = ACTIONS(4920), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_BSLASHpart] = ACTIONS(4920), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddpart] = ACTIONS(4920), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHchapter] = ACTIONS(4920), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddchap] = ACTIONS(4920), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsection] = ACTIONS(4920), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddsec] = ACTIONS(4920), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHparagraph] = ACTIONS(4920), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4920), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHitem] = ACTIONS(4920), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4920), + [sym_placeholder] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym__] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4918), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4918), + [anon_sym_BSLASHbegin] = ACTIONS(4920), + [anon_sym_BSLASHend] = ACTIONS(4920), + [anon_sym_BSLASHusepackage] = ACTIONS(4920), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4920), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4920), + [anon_sym_BSLASHinclude] = ACTIONS(4920), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4920), + [anon_sym_BSLASHinput] = ACTIONS(4920), + [anon_sym_BSLASHsubfile] = ACTIONS(4920), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4920), + [anon_sym_BSLASHbibliography] = ACTIONS(4920), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4920), + [anon_sym_BSLASHincludesvg] = ACTIONS(4920), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4920), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4920), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4920), + [anon_sym_BSLASHimport] = ACTIONS(4920), + [anon_sym_BSLASHsubimport] = ACTIONS(4920), + [anon_sym_BSLASHinputfrom] = ACTIONS(4920), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4920), + [anon_sym_BSLASHincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHcaption] = ACTIONS(4920), + [anon_sym_BSLASHcite] = ACTIONS(4920), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCite] = ACTIONS(4920), + [anon_sym_BSLASHnocite] = ACTIONS(4920), + [anon_sym_BSLASHcitet] = ACTIONS(4920), + [anon_sym_BSLASHcitep] = ACTIONS(4920), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteauthor] = ACTIONS(4920), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4920), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitetitle] = ACTIONS(4920), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteyear] = ACTIONS(4920), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitedate] = ACTIONS(4920), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteurl] = ACTIONS(4920), + [anon_sym_BSLASHfullcite] = ACTIONS(4920), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4920), + [anon_sym_BSLASHcitealt] = ACTIONS(4920), + [anon_sym_BSLASHcitealp] = ACTIONS(4920), + [anon_sym_BSLASHcitetext] = ACTIONS(4920), + [anon_sym_BSLASHparencite] = ACTIONS(4920), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHParencite] = ACTIONS(4920), + [anon_sym_BSLASHfootcite] = ACTIONS(4920), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4920), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4920), + [anon_sym_BSLASHtextcite] = ACTIONS(4920), + [anon_sym_BSLASHTextcite] = ACTIONS(4920), + [anon_sym_BSLASHsmartcite] = ACTIONS(4920), + [anon_sym_BSLASHSmartcite] = ACTIONS(4920), + [anon_sym_BSLASHsupercite] = ACTIONS(4920), + [anon_sym_BSLASHautocite] = ACTIONS(4920), + [anon_sym_BSLASHAutocite] = ACTIONS(4920), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHvolcite] = ACTIONS(4920), + [anon_sym_BSLASHVolcite] = ACTIONS(4920), + [anon_sym_BSLASHpvolcite] = ACTIONS(4920), + [anon_sym_BSLASHPvolcite] = ACTIONS(4920), + [anon_sym_BSLASHfvolcite] = ACTIONS(4920), + [anon_sym_BSLASHftvolcite] = ACTIONS(4920), + [anon_sym_BSLASHsvolcite] = ACTIONS(4920), + [anon_sym_BSLASHSvolcite] = ACTIONS(4920), + [anon_sym_BSLASHtvolcite] = ACTIONS(4920), + [anon_sym_BSLASHTvolcite] = ACTIONS(4920), + [anon_sym_BSLASHavolcite] = ACTIONS(4920), + [anon_sym_BSLASHAvolcite] = ACTIONS(4920), + [anon_sym_BSLASHnotecite] = ACTIONS(4920), + [anon_sym_BSLASHNotecite] = ACTIONS(4920), + [anon_sym_BSLASHpnotecite] = ACTIONS(4920), + [anon_sym_BSLASHPnotecite] = ACTIONS(4920), + [anon_sym_BSLASHfnotecite] = ACTIONS(4920), + [anon_sym_BSLASHlabel] = ACTIONS(4920), + [anon_sym_BSLASHref] = ACTIONS(4920), + [anon_sym_BSLASHeqref] = ACTIONS(4920), + [anon_sym_BSLASHvref] = ACTIONS(4920), + [anon_sym_BSLASHVref] = ACTIONS(4920), + [anon_sym_BSLASHautoref] = ACTIONS(4920), + [anon_sym_BSLASHpageref] = ACTIONS(4920), + [anon_sym_BSLASHcref] = ACTIONS(4920), + [anon_sym_BSLASHCref] = ACTIONS(4920), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnameCref] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHlabelcref] = ACTIONS(4920), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCrefrange] = ACTIONS(4920), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnewlabel] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4920), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4920), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4920), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdef] = ACTIONS(4920), + [anon_sym_BSLASHlet] = ACTIONS(4920), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4920), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4920), + [anon_sym_BSLASHgls] = ACTIONS(4920), + [anon_sym_BSLASHGls] = ACTIONS(4920), + [anon_sym_BSLASHGLS] = ACTIONS(4920), + [anon_sym_BSLASHglspl] = ACTIONS(4920), + [anon_sym_BSLASHGlspl] = ACTIONS(4920), + [anon_sym_BSLASHGLSpl] = ACTIONS(4920), + [anon_sym_BSLASHglsdisp] = ACTIONS(4920), + [anon_sym_BSLASHglslink] = ACTIONS(4920), + [anon_sym_BSLASHglstext] = ACTIONS(4920), + [anon_sym_BSLASHGlstext] = ACTIONS(4920), + [anon_sym_BSLASHGLStext] = ACTIONS(4920), + [anon_sym_BSLASHglsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4920), + [anon_sym_BSLASHglsplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSplural] = ACTIONS(4920), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHglsname] = ACTIONS(4920), + [anon_sym_BSLASHGlsname] = ACTIONS(4920), + [anon_sym_BSLASHGLSname] = ACTIONS(4920), + [anon_sym_BSLASHglssymbol] = ACTIONS(4920), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4920), + [anon_sym_BSLASHglsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4920), + [anon_sym_BSLASHglsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4920), + [anon_sym_BSLASHglsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4920), + [anon_sym_BSLASHglsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4920), + [anon_sym_BSLASHglsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4920), + [anon_sym_BSLASHnewacronym] = ACTIONS(4920), + [anon_sym_BSLASHacrshort] = ACTIONS(4920), + [anon_sym_BSLASHAcrshort] = ACTIONS(4920), + [anon_sym_BSLASHACRshort] = ACTIONS(4920), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4920), + [anon_sym_BSLASHacrlong] = ACTIONS(4920), + [anon_sym_BSLASHAcrlong] = ACTIONS(4920), + [anon_sym_BSLASHACRlong] = ACTIONS(4920), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4920), + [anon_sym_BSLASHacrfull] = ACTIONS(4920), + [anon_sym_BSLASHAcrfull] = ACTIONS(4920), + [anon_sym_BSLASHACRfull] = ACTIONS(4920), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4920), + [anon_sym_BSLASHacs] = ACTIONS(4920), + [anon_sym_BSLASHAcs] = ACTIONS(4920), + [anon_sym_BSLASHacsp] = ACTIONS(4920), + [anon_sym_BSLASHAcsp] = ACTIONS(4920), + [anon_sym_BSLASHacl] = ACTIONS(4920), + [anon_sym_BSLASHAcl] = ACTIONS(4920), + [anon_sym_BSLASHaclp] = ACTIONS(4920), + [anon_sym_BSLASHAclp] = ACTIONS(4920), + [anon_sym_BSLASHacf] = ACTIONS(4920), + [anon_sym_BSLASHAcf] = ACTIONS(4920), + [anon_sym_BSLASHacfp] = ACTIONS(4920), + [anon_sym_BSLASHAcfp] = ACTIONS(4920), + [anon_sym_BSLASHac] = ACTIONS(4920), + [anon_sym_BSLASHAc] = ACTIONS(4920), + [anon_sym_BSLASHacp] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4920), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4920), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4920), + [anon_sym_BSLASHcolor] = ACTIONS(4920), + [anon_sym_BSLASHcolorbox] = ACTIONS(4920), + [anon_sym_BSLASHtextcolor] = ACTIONS(4920), + [anon_sym_BSLASHpagecolor] = ACTIONS(4920), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4920), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4920), + [anon_sym_BSLASHtext] = ACTIONS(4920), + [anon_sym_BSLASHintertext] = ACTIONS(4920), + [anon_sym_shortintertext] = ACTIONS(4920), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(4957), - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [ts_builtin_sym_end] = ACTIONS(5036), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_BSLASHpart] = ACTIONS(5038), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddpart] = ACTIONS(5038), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHchapter] = ACTIONS(5038), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddchap] = ACTIONS(5038), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsection] = ACTIONS(5038), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddsec] = ACTIONS(5038), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHparagraph] = ACTIONS(5038), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5038), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHitem] = ACTIONS(5038), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASHbegin] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [699] = { [sym_curly_group] = STATE(1109), - [sym_command_name] = ACTIONS(4845), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4843), - [anon_sym_BSLASHpart] = ACTIONS(4845), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddpart] = ACTIONS(4845), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHchapter] = ACTIONS(4845), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddchap] = ACTIONS(4845), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsection] = ACTIONS(4845), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddsec] = ACTIONS(4845), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHparagraph] = ACTIONS(4845), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHitem] = ACTIONS(4845), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4845), - [sym_placeholder] = ACTIONS(4843), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4845), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_CARET] = ACTIONS(4845), - [anon_sym__] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_SQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), - [anon_sym_BSLASHbegin] = ACTIONS(4845), - [anon_sym_BSLASHend] = ACTIONS(4845), - [anon_sym_BSLASHusepackage] = ACTIONS(4845), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), - [anon_sym_BSLASHinclude] = ACTIONS(4845), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), - [anon_sym_BSLASHinput] = ACTIONS(4845), - [anon_sym_BSLASHsubfile] = ACTIONS(4845), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), - [anon_sym_BSLASHbibliography] = ACTIONS(4845), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), - [anon_sym_BSLASHincludesvg] = ACTIONS(4845), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), - [anon_sym_BSLASHimport] = ACTIONS(4845), - [anon_sym_BSLASHsubimport] = ACTIONS(4845), - [anon_sym_BSLASHinputfrom] = ACTIONS(4845), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), - [anon_sym_BSLASHincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHcaption] = ACTIONS(4845), - [anon_sym_BSLASHcite] = ACTIONS(4845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCite] = ACTIONS(4845), - [anon_sym_BSLASHnocite] = ACTIONS(4845), - [anon_sym_BSLASHcitet] = ACTIONS(4845), - [anon_sym_BSLASHcitep] = ACTIONS(4845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteauthor] = ACTIONS(4845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitetitle] = ACTIONS(4845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteyear] = ACTIONS(4845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitedate] = ACTIONS(4845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteurl] = ACTIONS(4845), - [anon_sym_BSLASHfullcite] = ACTIONS(4845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), - [anon_sym_BSLASHcitealt] = ACTIONS(4845), - [anon_sym_BSLASHcitealp] = ACTIONS(4845), - [anon_sym_BSLASHcitetext] = ACTIONS(4845), - [anon_sym_BSLASHparencite] = ACTIONS(4845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHParencite] = ACTIONS(4845), - [anon_sym_BSLASHfootcite] = ACTIONS(4845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), - [anon_sym_BSLASHtextcite] = ACTIONS(4845), - [anon_sym_BSLASHTextcite] = ACTIONS(4845), - [anon_sym_BSLASHsmartcite] = ACTIONS(4845), - [anon_sym_BSLASHSmartcite] = ACTIONS(4845), - [anon_sym_BSLASHsupercite] = ACTIONS(4845), - [anon_sym_BSLASHautocite] = ACTIONS(4845), - [anon_sym_BSLASHAutocite] = ACTIONS(4845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHvolcite] = ACTIONS(4845), - [anon_sym_BSLASHVolcite] = ACTIONS(4845), - [anon_sym_BSLASHpvolcite] = ACTIONS(4845), - [anon_sym_BSLASHPvolcite] = ACTIONS(4845), - [anon_sym_BSLASHfvolcite] = ACTIONS(4845), - [anon_sym_BSLASHftvolcite] = ACTIONS(4845), - [anon_sym_BSLASHsvolcite] = ACTIONS(4845), - [anon_sym_BSLASHSvolcite] = ACTIONS(4845), - [anon_sym_BSLASHtvolcite] = ACTIONS(4845), - [anon_sym_BSLASHTvolcite] = ACTIONS(4845), - [anon_sym_BSLASHavolcite] = ACTIONS(4845), - [anon_sym_BSLASHAvolcite] = ACTIONS(4845), - [anon_sym_BSLASHnotecite] = ACTIONS(4845), - [anon_sym_BSLASHNotecite] = ACTIONS(4845), - [anon_sym_BSLASHpnotecite] = ACTIONS(4845), - [anon_sym_BSLASHPnotecite] = ACTIONS(4845), - [anon_sym_BSLASHfnotecite] = ACTIONS(4845), - [anon_sym_BSLASHlabel] = ACTIONS(4845), - [anon_sym_BSLASHref] = ACTIONS(4845), - [anon_sym_BSLASHeqref] = ACTIONS(4845), - [anon_sym_BSLASHvref] = ACTIONS(4845), - [anon_sym_BSLASHVref] = ACTIONS(4845), - [anon_sym_BSLASHautoref] = ACTIONS(4845), - [anon_sym_BSLASHpageref] = ACTIONS(4845), - [anon_sym_BSLASHcref] = ACTIONS(4845), - [anon_sym_BSLASHCref] = ACTIONS(4845), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnameCref] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHlabelcref] = ACTIONS(4845), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCrefrange] = ACTIONS(4845), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnewlabel] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), - [anon_sym_BSLASHdef] = ACTIONS(4845), - [anon_sym_BSLASHlet] = ACTIONS(4845), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), - [anon_sym_BSLASHgls] = ACTIONS(4845), - [anon_sym_BSLASHGls] = ACTIONS(4845), - [anon_sym_BSLASHGLS] = ACTIONS(4845), - [anon_sym_BSLASHglspl] = ACTIONS(4845), - [anon_sym_BSLASHGlspl] = ACTIONS(4845), - [anon_sym_BSLASHGLSpl] = ACTIONS(4845), - [anon_sym_BSLASHglsdisp] = ACTIONS(4845), - [anon_sym_BSLASHglslink] = ACTIONS(4845), - [anon_sym_BSLASHglstext] = ACTIONS(4845), - [anon_sym_BSLASHGlstext] = ACTIONS(4845), - [anon_sym_BSLASHGLStext] = ACTIONS(4845), - [anon_sym_BSLASHglsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), - [anon_sym_BSLASHglsplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSplural] = ACTIONS(4845), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHglsname] = ACTIONS(4845), - [anon_sym_BSLASHGlsname] = ACTIONS(4845), - [anon_sym_BSLASHGLSname] = ACTIONS(4845), - [anon_sym_BSLASHglssymbol] = ACTIONS(4845), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), - [anon_sym_BSLASHglsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), - [anon_sym_BSLASHglsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), - [anon_sym_BSLASHglsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), - [anon_sym_BSLASHglsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), - [anon_sym_BSLASHglsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), - [anon_sym_BSLASHnewacronym] = ACTIONS(4845), - [anon_sym_BSLASHacrshort] = ACTIONS(4845), - [anon_sym_BSLASHAcrshort] = ACTIONS(4845), - [anon_sym_BSLASHACRshort] = ACTIONS(4845), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), - [anon_sym_BSLASHacrlong] = ACTIONS(4845), - [anon_sym_BSLASHAcrlong] = ACTIONS(4845), - [anon_sym_BSLASHACRlong] = ACTIONS(4845), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), - [anon_sym_BSLASHacrfull] = ACTIONS(4845), - [anon_sym_BSLASHAcrfull] = ACTIONS(4845), - [anon_sym_BSLASHACRfull] = ACTIONS(4845), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), - [anon_sym_BSLASHacs] = ACTIONS(4845), - [anon_sym_BSLASHAcs] = ACTIONS(4845), - [anon_sym_BSLASHacsp] = ACTIONS(4845), - [anon_sym_BSLASHAcsp] = ACTIONS(4845), - [anon_sym_BSLASHacl] = ACTIONS(4845), - [anon_sym_BSLASHAcl] = ACTIONS(4845), - [anon_sym_BSLASHaclp] = ACTIONS(4845), - [anon_sym_BSLASHAclp] = ACTIONS(4845), - [anon_sym_BSLASHacf] = ACTIONS(4845), - [anon_sym_BSLASHAcf] = ACTIONS(4845), - [anon_sym_BSLASHacfp] = ACTIONS(4845), - [anon_sym_BSLASHAcfp] = ACTIONS(4845), - [anon_sym_BSLASHac] = ACTIONS(4845), - [anon_sym_BSLASHAc] = ACTIONS(4845), - [anon_sym_BSLASHacp] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), - [anon_sym_BSLASHcolor] = ACTIONS(4845), - [anon_sym_BSLASHcolorbox] = ACTIONS(4845), - [anon_sym_BSLASHtextcolor] = ACTIONS(4845), - [anon_sym_BSLASHpagecolor] = ACTIONS(4845), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), - [anon_sym_BSLASHtext] = ACTIONS(4845), - [anon_sym_BSLASHintertext] = ACTIONS(4845), - [anon_sym_shortintertext] = ACTIONS(4845), + [sym_command_name] = ACTIONS(4924), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_BSLASHpart] = ACTIONS(4924), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddpart] = ACTIONS(4924), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHchapter] = ACTIONS(4924), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddchap] = ACTIONS(4924), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsection] = ACTIONS(4924), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddsec] = ACTIONS(4924), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHparagraph] = ACTIONS(4924), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4924), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHitem] = ACTIONS(4924), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4924), + [sym_placeholder] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym__] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4922), + [anon_sym_BSLASHbegin] = ACTIONS(4924), + [anon_sym_BSLASHend] = ACTIONS(4924), + [anon_sym_BSLASHusepackage] = ACTIONS(4924), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4924), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4924), + [anon_sym_BSLASHinclude] = ACTIONS(4924), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4924), + [anon_sym_BSLASHinput] = ACTIONS(4924), + [anon_sym_BSLASHsubfile] = ACTIONS(4924), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4924), + [anon_sym_BSLASHbibliography] = ACTIONS(4924), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4924), + [anon_sym_BSLASHincludesvg] = ACTIONS(4924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4924), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4924), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4924), + [anon_sym_BSLASHimport] = ACTIONS(4924), + [anon_sym_BSLASHsubimport] = ACTIONS(4924), + [anon_sym_BSLASHinputfrom] = ACTIONS(4924), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4924), + [anon_sym_BSLASHincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHcaption] = ACTIONS(4924), + [anon_sym_BSLASHcite] = ACTIONS(4924), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCite] = ACTIONS(4924), + [anon_sym_BSLASHnocite] = ACTIONS(4924), + [anon_sym_BSLASHcitet] = ACTIONS(4924), + [anon_sym_BSLASHcitep] = ACTIONS(4924), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteauthor] = ACTIONS(4924), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4924), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitetitle] = ACTIONS(4924), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteyear] = ACTIONS(4924), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitedate] = ACTIONS(4924), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteurl] = ACTIONS(4924), + [anon_sym_BSLASHfullcite] = ACTIONS(4924), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4924), + [anon_sym_BSLASHcitealt] = ACTIONS(4924), + [anon_sym_BSLASHcitealp] = ACTIONS(4924), + [anon_sym_BSLASHcitetext] = ACTIONS(4924), + [anon_sym_BSLASHparencite] = ACTIONS(4924), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHParencite] = ACTIONS(4924), + [anon_sym_BSLASHfootcite] = ACTIONS(4924), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4924), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4924), + [anon_sym_BSLASHtextcite] = ACTIONS(4924), + [anon_sym_BSLASHTextcite] = ACTIONS(4924), + [anon_sym_BSLASHsmartcite] = ACTIONS(4924), + [anon_sym_BSLASHSmartcite] = ACTIONS(4924), + [anon_sym_BSLASHsupercite] = ACTIONS(4924), + [anon_sym_BSLASHautocite] = ACTIONS(4924), + [anon_sym_BSLASHAutocite] = ACTIONS(4924), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHvolcite] = ACTIONS(4924), + [anon_sym_BSLASHVolcite] = ACTIONS(4924), + [anon_sym_BSLASHpvolcite] = ACTIONS(4924), + [anon_sym_BSLASHPvolcite] = ACTIONS(4924), + [anon_sym_BSLASHfvolcite] = ACTIONS(4924), + [anon_sym_BSLASHftvolcite] = ACTIONS(4924), + [anon_sym_BSLASHsvolcite] = ACTIONS(4924), + [anon_sym_BSLASHSvolcite] = ACTIONS(4924), + [anon_sym_BSLASHtvolcite] = ACTIONS(4924), + [anon_sym_BSLASHTvolcite] = ACTIONS(4924), + [anon_sym_BSLASHavolcite] = ACTIONS(4924), + [anon_sym_BSLASHAvolcite] = ACTIONS(4924), + [anon_sym_BSLASHnotecite] = ACTIONS(4924), + [anon_sym_BSLASHNotecite] = ACTIONS(4924), + [anon_sym_BSLASHpnotecite] = ACTIONS(4924), + [anon_sym_BSLASHPnotecite] = ACTIONS(4924), + [anon_sym_BSLASHfnotecite] = ACTIONS(4924), + [anon_sym_BSLASHlabel] = ACTIONS(4924), + [anon_sym_BSLASHref] = ACTIONS(4924), + [anon_sym_BSLASHeqref] = ACTIONS(4924), + [anon_sym_BSLASHvref] = ACTIONS(4924), + [anon_sym_BSLASHVref] = ACTIONS(4924), + [anon_sym_BSLASHautoref] = ACTIONS(4924), + [anon_sym_BSLASHpageref] = ACTIONS(4924), + [anon_sym_BSLASHcref] = ACTIONS(4924), + [anon_sym_BSLASHCref] = ACTIONS(4924), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnameCref] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHlabelcref] = ACTIONS(4924), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCrefrange] = ACTIONS(4924), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnewlabel] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4924), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4924), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4924), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdef] = ACTIONS(4924), + [anon_sym_BSLASHlet] = ACTIONS(4924), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4924), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4924), + [anon_sym_BSLASHgls] = ACTIONS(4924), + [anon_sym_BSLASHGls] = ACTIONS(4924), + [anon_sym_BSLASHGLS] = ACTIONS(4924), + [anon_sym_BSLASHglspl] = ACTIONS(4924), + [anon_sym_BSLASHGlspl] = ACTIONS(4924), + [anon_sym_BSLASHGLSpl] = ACTIONS(4924), + [anon_sym_BSLASHglsdisp] = ACTIONS(4924), + [anon_sym_BSLASHglslink] = ACTIONS(4924), + [anon_sym_BSLASHglstext] = ACTIONS(4924), + [anon_sym_BSLASHGlstext] = ACTIONS(4924), + [anon_sym_BSLASHGLStext] = ACTIONS(4924), + [anon_sym_BSLASHglsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4924), + [anon_sym_BSLASHglsplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSplural] = ACTIONS(4924), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHglsname] = ACTIONS(4924), + [anon_sym_BSLASHGlsname] = ACTIONS(4924), + [anon_sym_BSLASHGLSname] = ACTIONS(4924), + [anon_sym_BSLASHglssymbol] = ACTIONS(4924), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4924), + [anon_sym_BSLASHglsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4924), + [anon_sym_BSLASHglsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4924), + [anon_sym_BSLASHglsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4924), + [anon_sym_BSLASHglsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4924), + [anon_sym_BSLASHglsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4924), + [anon_sym_BSLASHnewacronym] = ACTIONS(4924), + [anon_sym_BSLASHacrshort] = ACTIONS(4924), + [anon_sym_BSLASHAcrshort] = ACTIONS(4924), + [anon_sym_BSLASHACRshort] = ACTIONS(4924), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4924), + [anon_sym_BSLASHacrlong] = ACTIONS(4924), + [anon_sym_BSLASHAcrlong] = ACTIONS(4924), + [anon_sym_BSLASHACRlong] = ACTIONS(4924), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4924), + [anon_sym_BSLASHacrfull] = ACTIONS(4924), + [anon_sym_BSLASHAcrfull] = ACTIONS(4924), + [anon_sym_BSLASHACRfull] = ACTIONS(4924), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4924), + [anon_sym_BSLASHacs] = ACTIONS(4924), + [anon_sym_BSLASHAcs] = ACTIONS(4924), + [anon_sym_BSLASHacsp] = ACTIONS(4924), + [anon_sym_BSLASHAcsp] = ACTIONS(4924), + [anon_sym_BSLASHacl] = ACTIONS(4924), + [anon_sym_BSLASHAcl] = ACTIONS(4924), + [anon_sym_BSLASHaclp] = ACTIONS(4924), + [anon_sym_BSLASHAclp] = ACTIONS(4924), + [anon_sym_BSLASHacf] = ACTIONS(4924), + [anon_sym_BSLASHAcf] = ACTIONS(4924), + [anon_sym_BSLASHacfp] = ACTIONS(4924), + [anon_sym_BSLASHAcfp] = ACTIONS(4924), + [anon_sym_BSLASHac] = ACTIONS(4924), + [anon_sym_BSLASHAc] = ACTIONS(4924), + [anon_sym_BSLASHacp] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4924), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4924), + [anon_sym_BSLASHcolor] = ACTIONS(4924), + [anon_sym_BSLASHcolorbox] = ACTIONS(4924), + [anon_sym_BSLASHtextcolor] = ACTIONS(4924), + [anon_sym_BSLASHpagecolor] = ACTIONS(4924), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4924), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4924), + [anon_sym_BSLASHtext] = ACTIONS(4924), + [anon_sym_BSLASHintertext] = ACTIONS(4924), + [anon_sym_shortintertext] = ACTIONS(4924), }, [700] = { [sym_curly_group] = STATE(1110), - [sym_command_name] = ACTIONS(4849), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_BSLASHpart] = ACTIONS(4849), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddpart] = ACTIONS(4849), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHchapter] = ACTIONS(4849), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddchap] = ACTIONS(4849), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsection] = ACTIONS(4849), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddsec] = ACTIONS(4849), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHparagraph] = ACTIONS(4849), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHitem] = ACTIONS(4849), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_word] = ACTIONS(4849), - [sym_placeholder] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4849), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4849), - [anon_sym__] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4849), - [anon_sym_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), - [anon_sym_DOLLAR] = ACTIONS(4849), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), - [anon_sym_BSLASHbegin] = ACTIONS(4849), - [anon_sym_BSLASHend] = ACTIONS(4849), - [anon_sym_BSLASHusepackage] = ACTIONS(4849), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), - [anon_sym_BSLASHinclude] = ACTIONS(4849), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), - [anon_sym_BSLASHinput] = ACTIONS(4849), - [anon_sym_BSLASHsubfile] = ACTIONS(4849), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), - [anon_sym_BSLASHbibliography] = ACTIONS(4849), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4849), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), - [anon_sym_BSLASHimport] = ACTIONS(4849), - [anon_sym_BSLASHsubimport] = ACTIONS(4849), - [anon_sym_BSLASHinputfrom] = ACTIONS(4849), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), - [anon_sym_BSLASHincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHcaption] = ACTIONS(4849), - [anon_sym_BSLASHcite] = ACTIONS(4849), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCite] = ACTIONS(4849), - [anon_sym_BSLASHnocite] = ACTIONS(4849), - [anon_sym_BSLASHcitet] = ACTIONS(4849), - [anon_sym_BSLASHcitep] = ACTIONS(4849), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteauthor] = ACTIONS(4849), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitetitle] = ACTIONS(4849), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteyear] = ACTIONS(4849), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitedate] = ACTIONS(4849), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteurl] = ACTIONS(4849), - [anon_sym_BSLASHfullcite] = ACTIONS(4849), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), - [anon_sym_BSLASHcitealt] = ACTIONS(4849), - [anon_sym_BSLASHcitealp] = ACTIONS(4849), - [anon_sym_BSLASHcitetext] = ACTIONS(4849), - [anon_sym_BSLASHparencite] = ACTIONS(4849), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHParencite] = ACTIONS(4849), - [anon_sym_BSLASHfootcite] = ACTIONS(4849), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), - [anon_sym_BSLASHtextcite] = ACTIONS(4849), - [anon_sym_BSLASHTextcite] = ACTIONS(4849), - [anon_sym_BSLASHsmartcite] = ACTIONS(4849), - [anon_sym_BSLASHSmartcite] = ACTIONS(4849), - [anon_sym_BSLASHsupercite] = ACTIONS(4849), - [anon_sym_BSLASHautocite] = ACTIONS(4849), - [anon_sym_BSLASHAutocite] = ACTIONS(4849), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHvolcite] = ACTIONS(4849), - [anon_sym_BSLASHVolcite] = ACTIONS(4849), - [anon_sym_BSLASHpvolcite] = ACTIONS(4849), - [anon_sym_BSLASHPvolcite] = ACTIONS(4849), - [anon_sym_BSLASHfvolcite] = ACTIONS(4849), - [anon_sym_BSLASHftvolcite] = ACTIONS(4849), - [anon_sym_BSLASHsvolcite] = ACTIONS(4849), - [anon_sym_BSLASHSvolcite] = ACTIONS(4849), - [anon_sym_BSLASHtvolcite] = ACTIONS(4849), - [anon_sym_BSLASHTvolcite] = ACTIONS(4849), - [anon_sym_BSLASHavolcite] = ACTIONS(4849), - [anon_sym_BSLASHAvolcite] = ACTIONS(4849), - [anon_sym_BSLASHnotecite] = ACTIONS(4849), - [anon_sym_BSLASHNotecite] = ACTIONS(4849), - [anon_sym_BSLASHpnotecite] = ACTIONS(4849), - [anon_sym_BSLASHPnotecite] = ACTIONS(4849), - [anon_sym_BSLASHfnotecite] = ACTIONS(4849), - [anon_sym_BSLASHlabel] = ACTIONS(4849), - [anon_sym_BSLASHref] = ACTIONS(4849), - [anon_sym_BSLASHeqref] = ACTIONS(4849), - [anon_sym_BSLASHvref] = ACTIONS(4849), - [anon_sym_BSLASHVref] = ACTIONS(4849), - [anon_sym_BSLASHautoref] = ACTIONS(4849), - [anon_sym_BSLASHpageref] = ACTIONS(4849), - [anon_sym_BSLASHcref] = ACTIONS(4849), - [anon_sym_BSLASHCref] = ACTIONS(4849), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnameCref] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHlabelcref] = ACTIONS(4849), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCrefrange] = ACTIONS(4849), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnewlabel] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), - [anon_sym_BSLASHdef] = ACTIONS(4849), - [anon_sym_BSLASHlet] = ACTIONS(4849), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), - [anon_sym_BSLASHgls] = ACTIONS(4849), - [anon_sym_BSLASHGls] = ACTIONS(4849), - [anon_sym_BSLASHGLS] = ACTIONS(4849), - [anon_sym_BSLASHglspl] = ACTIONS(4849), - [anon_sym_BSLASHGlspl] = ACTIONS(4849), - [anon_sym_BSLASHGLSpl] = ACTIONS(4849), - [anon_sym_BSLASHglsdisp] = ACTIONS(4849), - [anon_sym_BSLASHglslink] = ACTIONS(4849), - [anon_sym_BSLASHglstext] = ACTIONS(4849), - [anon_sym_BSLASHGlstext] = ACTIONS(4849), - [anon_sym_BSLASHGLStext] = ACTIONS(4849), - [anon_sym_BSLASHglsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), - [anon_sym_BSLASHglsplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSplural] = ACTIONS(4849), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHglsname] = ACTIONS(4849), - [anon_sym_BSLASHGlsname] = ACTIONS(4849), - [anon_sym_BSLASHGLSname] = ACTIONS(4849), - [anon_sym_BSLASHglssymbol] = ACTIONS(4849), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), - [anon_sym_BSLASHglsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), - [anon_sym_BSLASHglsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), - [anon_sym_BSLASHglsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), - [anon_sym_BSLASHglsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), - [anon_sym_BSLASHglsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), - [anon_sym_BSLASHnewacronym] = ACTIONS(4849), - [anon_sym_BSLASHacrshort] = ACTIONS(4849), - [anon_sym_BSLASHAcrshort] = ACTIONS(4849), - [anon_sym_BSLASHACRshort] = ACTIONS(4849), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), - [anon_sym_BSLASHacrlong] = ACTIONS(4849), - [anon_sym_BSLASHAcrlong] = ACTIONS(4849), - [anon_sym_BSLASHACRlong] = ACTIONS(4849), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), - [anon_sym_BSLASHacrfull] = ACTIONS(4849), - [anon_sym_BSLASHAcrfull] = ACTIONS(4849), - [anon_sym_BSLASHACRfull] = ACTIONS(4849), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), - [anon_sym_BSLASHacs] = ACTIONS(4849), - [anon_sym_BSLASHAcs] = ACTIONS(4849), - [anon_sym_BSLASHacsp] = ACTIONS(4849), - [anon_sym_BSLASHAcsp] = ACTIONS(4849), - [anon_sym_BSLASHacl] = ACTIONS(4849), - [anon_sym_BSLASHAcl] = ACTIONS(4849), - [anon_sym_BSLASHaclp] = ACTIONS(4849), - [anon_sym_BSLASHAclp] = ACTIONS(4849), - [anon_sym_BSLASHacf] = ACTIONS(4849), - [anon_sym_BSLASHAcf] = ACTIONS(4849), - [anon_sym_BSLASHacfp] = ACTIONS(4849), - [anon_sym_BSLASHAcfp] = ACTIONS(4849), - [anon_sym_BSLASHac] = ACTIONS(4849), - [anon_sym_BSLASHAc] = ACTIONS(4849), - [anon_sym_BSLASHacp] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), - [anon_sym_BSLASHcolor] = ACTIONS(4849), - [anon_sym_BSLASHcolorbox] = ACTIONS(4849), - [anon_sym_BSLASHtextcolor] = ACTIONS(4849), - [anon_sym_BSLASHpagecolor] = ACTIONS(4849), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), - [anon_sym_BSLASHtext] = ACTIONS(4849), - [anon_sym_BSLASHintertext] = ACTIONS(4849), - [anon_sym_shortintertext] = ACTIONS(4849), + [sym_command_name] = ACTIONS(4928), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_BSLASHpart] = ACTIONS(4928), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddpart] = ACTIONS(4928), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHchapter] = ACTIONS(4928), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddchap] = ACTIONS(4928), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsection] = ACTIONS(4928), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddsec] = ACTIONS(4928), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHparagraph] = ACTIONS(4928), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4928), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHitem] = ACTIONS(4928), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(225), + [sym_word] = ACTIONS(4928), + [sym_placeholder] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym__] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4926), + [anon_sym_BSLASHbegin] = ACTIONS(4928), + [anon_sym_BSLASHend] = ACTIONS(4928), + [anon_sym_BSLASHusepackage] = ACTIONS(4928), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4928), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4928), + [anon_sym_BSLASHinclude] = ACTIONS(4928), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4928), + [anon_sym_BSLASHinput] = ACTIONS(4928), + [anon_sym_BSLASHsubfile] = ACTIONS(4928), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4928), + [anon_sym_BSLASHbibliography] = ACTIONS(4928), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4928), + [anon_sym_BSLASHincludesvg] = ACTIONS(4928), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4928), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4928), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4928), + [anon_sym_BSLASHimport] = ACTIONS(4928), + [anon_sym_BSLASHsubimport] = ACTIONS(4928), + [anon_sym_BSLASHinputfrom] = ACTIONS(4928), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4928), + [anon_sym_BSLASHincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHcaption] = ACTIONS(4928), + [anon_sym_BSLASHcite] = ACTIONS(4928), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCite] = ACTIONS(4928), + [anon_sym_BSLASHnocite] = ACTIONS(4928), + [anon_sym_BSLASHcitet] = ACTIONS(4928), + [anon_sym_BSLASHcitep] = ACTIONS(4928), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteauthor] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitetitle] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteyear] = ACTIONS(4928), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitedate] = ACTIONS(4928), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteurl] = ACTIONS(4928), + [anon_sym_BSLASHfullcite] = ACTIONS(4928), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4928), + [anon_sym_BSLASHcitealt] = ACTIONS(4928), + [anon_sym_BSLASHcitealp] = ACTIONS(4928), + [anon_sym_BSLASHcitetext] = ACTIONS(4928), + [anon_sym_BSLASHparencite] = ACTIONS(4928), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHParencite] = ACTIONS(4928), + [anon_sym_BSLASHfootcite] = ACTIONS(4928), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4928), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4928), + [anon_sym_BSLASHtextcite] = ACTIONS(4928), + [anon_sym_BSLASHTextcite] = ACTIONS(4928), + [anon_sym_BSLASHsmartcite] = ACTIONS(4928), + [anon_sym_BSLASHSmartcite] = ACTIONS(4928), + [anon_sym_BSLASHsupercite] = ACTIONS(4928), + [anon_sym_BSLASHautocite] = ACTIONS(4928), + [anon_sym_BSLASHAutocite] = ACTIONS(4928), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHvolcite] = ACTIONS(4928), + [anon_sym_BSLASHVolcite] = ACTIONS(4928), + [anon_sym_BSLASHpvolcite] = ACTIONS(4928), + [anon_sym_BSLASHPvolcite] = ACTIONS(4928), + [anon_sym_BSLASHfvolcite] = ACTIONS(4928), + [anon_sym_BSLASHftvolcite] = ACTIONS(4928), + [anon_sym_BSLASHsvolcite] = ACTIONS(4928), + [anon_sym_BSLASHSvolcite] = ACTIONS(4928), + [anon_sym_BSLASHtvolcite] = ACTIONS(4928), + [anon_sym_BSLASHTvolcite] = ACTIONS(4928), + [anon_sym_BSLASHavolcite] = ACTIONS(4928), + [anon_sym_BSLASHAvolcite] = ACTIONS(4928), + [anon_sym_BSLASHnotecite] = ACTIONS(4928), + [anon_sym_BSLASHNotecite] = ACTIONS(4928), + [anon_sym_BSLASHpnotecite] = ACTIONS(4928), + [anon_sym_BSLASHPnotecite] = ACTIONS(4928), + [anon_sym_BSLASHfnotecite] = ACTIONS(4928), + [anon_sym_BSLASHlabel] = ACTIONS(4928), + [anon_sym_BSLASHref] = ACTIONS(4928), + [anon_sym_BSLASHeqref] = ACTIONS(4928), + [anon_sym_BSLASHvref] = ACTIONS(4928), + [anon_sym_BSLASHVref] = ACTIONS(4928), + [anon_sym_BSLASHautoref] = ACTIONS(4928), + [anon_sym_BSLASHpageref] = ACTIONS(4928), + [anon_sym_BSLASHcref] = ACTIONS(4928), + [anon_sym_BSLASHCref] = ACTIONS(4928), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnameCref] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHlabelcref] = ACTIONS(4928), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCrefrange] = ACTIONS(4928), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnewlabel] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4928), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4928), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4928), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdef] = ACTIONS(4928), + [anon_sym_BSLASHlet] = ACTIONS(4928), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4928), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4928), + [anon_sym_BSLASHgls] = ACTIONS(4928), + [anon_sym_BSLASHGls] = ACTIONS(4928), + [anon_sym_BSLASHGLS] = ACTIONS(4928), + [anon_sym_BSLASHglspl] = ACTIONS(4928), + [anon_sym_BSLASHGlspl] = ACTIONS(4928), + [anon_sym_BSLASHGLSpl] = ACTIONS(4928), + [anon_sym_BSLASHglsdisp] = ACTIONS(4928), + [anon_sym_BSLASHglslink] = ACTIONS(4928), + [anon_sym_BSLASHglstext] = ACTIONS(4928), + [anon_sym_BSLASHGlstext] = ACTIONS(4928), + [anon_sym_BSLASHGLStext] = ACTIONS(4928), + [anon_sym_BSLASHglsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4928), + [anon_sym_BSLASHglsplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSplural] = ACTIONS(4928), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHglsname] = ACTIONS(4928), + [anon_sym_BSLASHGlsname] = ACTIONS(4928), + [anon_sym_BSLASHGLSname] = ACTIONS(4928), + [anon_sym_BSLASHglssymbol] = ACTIONS(4928), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4928), + [anon_sym_BSLASHglsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4928), + [anon_sym_BSLASHglsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4928), + [anon_sym_BSLASHglsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4928), + [anon_sym_BSLASHglsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4928), + [anon_sym_BSLASHglsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4928), + [anon_sym_BSLASHnewacronym] = ACTIONS(4928), + [anon_sym_BSLASHacrshort] = ACTIONS(4928), + [anon_sym_BSLASHAcrshort] = ACTIONS(4928), + [anon_sym_BSLASHACRshort] = ACTIONS(4928), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4928), + [anon_sym_BSLASHacrlong] = ACTIONS(4928), + [anon_sym_BSLASHAcrlong] = ACTIONS(4928), + [anon_sym_BSLASHACRlong] = ACTIONS(4928), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4928), + [anon_sym_BSLASHacrfull] = ACTIONS(4928), + [anon_sym_BSLASHAcrfull] = ACTIONS(4928), + [anon_sym_BSLASHACRfull] = ACTIONS(4928), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4928), + [anon_sym_BSLASHacs] = ACTIONS(4928), + [anon_sym_BSLASHAcs] = ACTIONS(4928), + [anon_sym_BSLASHacsp] = ACTIONS(4928), + [anon_sym_BSLASHAcsp] = ACTIONS(4928), + [anon_sym_BSLASHacl] = ACTIONS(4928), + [anon_sym_BSLASHAcl] = ACTIONS(4928), + [anon_sym_BSLASHaclp] = ACTIONS(4928), + [anon_sym_BSLASHAclp] = ACTIONS(4928), + [anon_sym_BSLASHacf] = ACTIONS(4928), + [anon_sym_BSLASHAcf] = ACTIONS(4928), + [anon_sym_BSLASHacfp] = ACTIONS(4928), + [anon_sym_BSLASHAcfp] = ACTIONS(4928), + [anon_sym_BSLASHac] = ACTIONS(4928), + [anon_sym_BSLASHAc] = ACTIONS(4928), + [anon_sym_BSLASHacp] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4928), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4928), + [anon_sym_BSLASHcolor] = ACTIONS(4928), + [anon_sym_BSLASHcolorbox] = ACTIONS(4928), + [anon_sym_BSLASHtextcolor] = ACTIONS(4928), + [anon_sym_BSLASHpagecolor] = ACTIONS(4928), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4928), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4928), + [anon_sym_BSLASHtext] = ACTIONS(4928), + [anon_sym_BSLASHintertext] = ACTIONS(4928), + [anon_sym_shortintertext] = ACTIONS(4928), }, [701] = { - [ts_builtin_sym_end] = ACTIONS(4961), - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_BSLASHpart] = ACTIONS(4963), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddpart] = ACTIONS(4963), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHchapter] = ACTIONS(4963), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddchap] = ACTIONS(4963), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsection] = ACTIONS(4963), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddsec] = ACTIONS(4963), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHparagraph] = ACTIONS(4963), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHitem] = ACTIONS(4963), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASHbegin] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [ts_builtin_sym_end] = ACTIONS(5040), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_BSLASHpart] = ACTIONS(5042), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddpart] = ACTIONS(5042), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHchapter] = ACTIONS(5042), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddchap] = ACTIONS(5042), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsection] = ACTIONS(5042), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddsec] = ACTIONS(5042), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHparagraph] = ACTIONS(5042), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5042), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHitem] = ACTIONS(5042), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASHbegin] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [702] = { [sym_brack_group_text] = STATE(1012), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_BSLASHpart] = ACTIONS(4879), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddpart] = ACTIONS(4879), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHchapter] = ACTIONS(4879), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddchap] = ACTIONS(4879), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsection] = ACTIONS(4879), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddsec] = ACTIONS(4879), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHparagraph] = ACTIONS(4879), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHitem] = ACTIONS(4879), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASHbegin] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_BSLASHpart] = ACTIONS(4958), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddpart] = ACTIONS(4958), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHchapter] = ACTIONS(4958), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddchap] = ACTIONS(4958), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsection] = ACTIONS(4958), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddsec] = ACTIONS(4958), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHparagraph] = ACTIONS(4958), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4958), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHitem] = ACTIONS(4958), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASHbegin] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [703] = { [sym_brack_group_text] = STATE(1111), - [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(4965), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4853), - [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), + [sym_command_name] = ACTIONS(4932), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_BSLASHpart] = ACTIONS(4932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddpart] = ACTIONS(4932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHchapter] = ACTIONS(4932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddchap] = ACTIONS(4932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsection] = ACTIONS(4932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddsec] = ACTIONS(4932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHparagraph] = ACTIONS(4932), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4932), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHitem] = ACTIONS(4932), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4930), + [sym_word] = ACTIONS(4932), + [sym_placeholder] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym__] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4930), + [anon_sym_BSLASHbegin] = ACTIONS(4932), + [anon_sym_BSLASHend] = ACTIONS(4932), + [anon_sym_BSLASHusepackage] = ACTIONS(4932), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4932), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4932), + [anon_sym_BSLASHinclude] = ACTIONS(4932), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4932), + [anon_sym_BSLASHinput] = ACTIONS(4932), + [anon_sym_BSLASHsubfile] = ACTIONS(4932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4932), + [anon_sym_BSLASHbibliography] = ACTIONS(4932), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4932), + [anon_sym_BSLASHincludesvg] = ACTIONS(4932), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4932), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4932), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4932), + [anon_sym_BSLASHimport] = ACTIONS(4932), + [anon_sym_BSLASHsubimport] = ACTIONS(4932), + [anon_sym_BSLASHinputfrom] = ACTIONS(4932), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4932), + [anon_sym_BSLASHincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHcaption] = ACTIONS(4932), + [anon_sym_BSLASHcite] = ACTIONS(4932), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCite] = ACTIONS(4932), + [anon_sym_BSLASHnocite] = ACTIONS(4932), + [anon_sym_BSLASHcitet] = ACTIONS(4932), + [anon_sym_BSLASHcitep] = ACTIONS(4932), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteauthor] = ACTIONS(4932), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4932), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitetitle] = ACTIONS(4932), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteyear] = ACTIONS(4932), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitedate] = ACTIONS(4932), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteurl] = ACTIONS(4932), + [anon_sym_BSLASHfullcite] = ACTIONS(4932), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4932), + [anon_sym_BSLASHcitealt] = ACTIONS(4932), + [anon_sym_BSLASHcitealp] = ACTIONS(4932), + [anon_sym_BSLASHcitetext] = ACTIONS(4932), + [anon_sym_BSLASHparencite] = ACTIONS(4932), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHParencite] = ACTIONS(4932), + [anon_sym_BSLASHfootcite] = ACTIONS(4932), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4932), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4932), + [anon_sym_BSLASHtextcite] = ACTIONS(4932), + [anon_sym_BSLASHTextcite] = ACTIONS(4932), + [anon_sym_BSLASHsmartcite] = ACTIONS(4932), + [anon_sym_BSLASHSmartcite] = ACTIONS(4932), + [anon_sym_BSLASHsupercite] = ACTIONS(4932), + [anon_sym_BSLASHautocite] = ACTIONS(4932), + [anon_sym_BSLASHAutocite] = ACTIONS(4932), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHvolcite] = ACTIONS(4932), + [anon_sym_BSLASHVolcite] = ACTIONS(4932), + [anon_sym_BSLASHpvolcite] = ACTIONS(4932), + [anon_sym_BSLASHPvolcite] = ACTIONS(4932), + [anon_sym_BSLASHfvolcite] = ACTIONS(4932), + [anon_sym_BSLASHftvolcite] = ACTIONS(4932), + [anon_sym_BSLASHsvolcite] = ACTIONS(4932), + [anon_sym_BSLASHSvolcite] = ACTIONS(4932), + [anon_sym_BSLASHtvolcite] = ACTIONS(4932), + [anon_sym_BSLASHTvolcite] = ACTIONS(4932), + [anon_sym_BSLASHavolcite] = ACTIONS(4932), + [anon_sym_BSLASHAvolcite] = ACTIONS(4932), + [anon_sym_BSLASHnotecite] = ACTIONS(4932), + [anon_sym_BSLASHNotecite] = ACTIONS(4932), + [anon_sym_BSLASHpnotecite] = ACTIONS(4932), + [anon_sym_BSLASHPnotecite] = ACTIONS(4932), + [anon_sym_BSLASHfnotecite] = ACTIONS(4932), + [anon_sym_BSLASHlabel] = ACTIONS(4932), + [anon_sym_BSLASHref] = ACTIONS(4932), + [anon_sym_BSLASHeqref] = ACTIONS(4932), + [anon_sym_BSLASHvref] = ACTIONS(4932), + [anon_sym_BSLASHVref] = ACTIONS(4932), + [anon_sym_BSLASHautoref] = ACTIONS(4932), + [anon_sym_BSLASHpageref] = ACTIONS(4932), + [anon_sym_BSLASHcref] = ACTIONS(4932), + [anon_sym_BSLASHCref] = ACTIONS(4932), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnameCref] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHlabelcref] = ACTIONS(4932), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCrefrange] = ACTIONS(4932), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnewlabel] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4932), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4932), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4932), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdef] = ACTIONS(4932), + [anon_sym_BSLASHlet] = ACTIONS(4932), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4932), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4932), + [anon_sym_BSLASHgls] = ACTIONS(4932), + [anon_sym_BSLASHGls] = ACTIONS(4932), + [anon_sym_BSLASHGLS] = ACTIONS(4932), + [anon_sym_BSLASHglspl] = ACTIONS(4932), + [anon_sym_BSLASHGlspl] = ACTIONS(4932), + [anon_sym_BSLASHGLSpl] = ACTIONS(4932), + [anon_sym_BSLASHglsdisp] = ACTIONS(4932), + [anon_sym_BSLASHglslink] = ACTIONS(4932), + [anon_sym_BSLASHglstext] = ACTIONS(4932), + [anon_sym_BSLASHGlstext] = ACTIONS(4932), + [anon_sym_BSLASHGLStext] = ACTIONS(4932), + [anon_sym_BSLASHglsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4932), + [anon_sym_BSLASHglsplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSplural] = ACTIONS(4932), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHglsname] = ACTIONS(4932), + [anon_sym_BSLASHGlsname] = ACTIONS(4932), + [anon_sym_BSLASHGLSname] = ACTIONS(4932), + [anon_sym_BSLASHglssymbol] = ACTIONS(4932), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4932), + [anon_sym_BSLASHglsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4932), + [anon_sym_BSLASHglsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4932), + [anon_sym_BSLASHglsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4932), + [anon_sym_BSLASHglsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4932), + [anon_sym_BSLASHglsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4932), + [anon_sym_BSLASHnewacronym] = ACTIONS(4932), + [anon_sym_BSLASHacrshort] = ACTIONS(4932), + [anon_sym_BSLASHAcrshort] = ACTIONS(4932), + [anon_sym_BSLASHACRshort] = ACTIONS(4932), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4932), + [anon_sym_BSLASHacrlong] = ACTIONS(4932), + [anon_sym_BSLASHAcrlong] = ACTIONS(4932), + [anon_sym_BSLASHACRlong] = ACTIONS(4932), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4932), + [anon_sym_BSLASHacrfull] = ACTIONS(4932), + [anon_sym_BSLASHAcrfull] = ACTIONS(4932), + [anon_sym_BSLASHACRfull] = ACTIONS(4932), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4932), + [anon_sym_BSLASHacs] = ACTIONS(4932), + [anon_sym_BSLASHAcs] = ACTIONS(4932), + [anon_sym_BSLASHacsp] = ACTIONS(4932), + [anon_sym_BSLASHAcsp] = ACTIONS(4932), + [anon_sym_BSLASHacl] = ACTIONS(4932), + [anon_sym_BSLASHAcl] = ACTIONS(4932), + [anon_sym_BSLASHaclp] = ACTIONS(4932), + [anon_sym_BSLASHAclp] = ACTIONS(4932), + [anon_sym_BSLASHacf] = ACTIONS(4932), + [anon_sym_BSLASHAcf] = ACTIONS(4932), + [anon_sym_BSLASHacfp] = ACTIONS(4932), + [anon_sym_BSLASHAcfp] = ACTIONS(4932), + [anon_sym_BSLASHac] = ACTIONS(4932), + [anon_sym_BSLASHAc] = ACTIONS(4932), + [anon_sym_BSLASHacp] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4932), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4932), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4932), + [anon_sym_BSLASHcolor] = ACTIONS(4932), + [anon_sym_BSLASHcolorbox] = ACTIONS(4932), + [anon_sym_BSLASHtextcolor] = ACTIONS(4932), + [anon_sym_BSLASHpagecolor] = ACTIONS(4932), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4932), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4932), + [anon_sym_BSLASHtext] = ACTIONS(4932), + [anon_sym_BSLASHintertext] = ACTIONS(4932), + [anon_sym_shortintertext] = ACTIONS(4932), }, [704] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(4967), - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_BSLASHpart] = ACTIONS(4969), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddpart] = ACTIONS(4969), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHchapter] = ACTIONS(4969), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddchap] = ACTIONS(4969), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsection] = ACTIONS(4969), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddsec] = ACTIONS(4969), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHparagraph] = ACTIONS(4969), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHitem] = ACTIONS(4969), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASHbegin] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [ts_builtin_sym_end] = ACTIONS(5046), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_BSLASHpart] = ACTIONS(5048), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddpart] = ACTIONS(5048), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHchapter] = ACTIONS(5048), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddchap] = ACTIONS(5048), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsection] = ACTIONS(5048), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddsec] = ACTIONS(5048), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHparagraph] = ACTIONS(5048), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5048), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHitem] = ACTIONS(5048), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASHbegin] = ACTIONS(5048), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [706] = { - [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(4971), - [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(4971), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [ts_builtin_sym_end] = ACTIONS(5050), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_BSLASHpart] = ACTIONS(5052), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddpart] = ACTIONS(5052), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHchapter] = ACTIONS(5052), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddchap] = ACTIONS(5052), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsection] = ACTIONS(5052), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddsec] = ACTIONS(5052), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHparagraph] = ACTIONS(5052), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5052), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHitem] = ACTIONS(5052), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [anon_sym_RBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASHbegin] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [707] = { [sym_brack_group] = STATE(1215), - [sym_command_name] = ACTIONS(4975), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_RPAREN] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_RBRACK] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_BSLASHpart] = ACTIONS(4975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4977), - [anon_sym_BSLASHaddpart] = ACTIONS(4975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4977), - [anon_sym_BSLASHchapter] = ACTIONS(4975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4977), - [anon_sym_BSLASHaddchap] = ACTIONS(4975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4977), - [anon_sym_BSLASHsection] = ACTIONS(4975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4977), - [anon_sym_BSLASHaddsec] = ACTIONS(4975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4977), - [anon_sym_BSLASHsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4977), - [anon_sym_BSLASHparagraph] = ACTIONS(4975), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4977), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4977), - [anon_sym_LBRACE] = ACTIONS(4977), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4977), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4977), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHend] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4977), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4977), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4977), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4977), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4977), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4977), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4977), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4977), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4977), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4977), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4977), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4977), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), - [anon_sym_BSLASHtext] = ACTIONS(4975), - [anon_sym_BSLASHintertext] = ACTIONS(4975), - [anon_sym_shortintertext] = ACTIONS(4975), + [sym_command_name] = ACTIONS(5054), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5054), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_BSLASHpart] = ACTIONS(5054), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5056), + [anon_sym_BSLASHaddpart] = ACTIONS(5054), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5056), + [anon_sym_BSLASHchapter] = ACTIONS(5054), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5056), + [anon_sym_BSLASHaddchap] = ACTIONS(5054), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5056), + [anon_sym_BSLASHsection] = ACTIONS(5054), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5056), + [anon_sym_BSLASHaddsec] = ACTIONS(5054), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5056), + [anon_sym_BSLASHsubsection] = ACTIONS(5054), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5056), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5054), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5056), + [anon_sym_BSLASHparagraph] = ACTIONS(5054), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5056), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5054), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5056), + [anon_sym_BSLASHitem] = ACTIONS(5054), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(5056), + [sym_word] = ACTIONS(5054), + [sym_placeholder] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym__] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_COLON] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5054), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5056), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5056), + [anon_sym_BSLASHbegin] = ACTIONS(5054), + [anon_sym_BSLASHend] = ACTIONS(5054), + [anon_sym_BSLASHusepackage] = ACTIONS(5054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5054), + [anon_sym_BSLASHinclude] = ACTIONS(5054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5054), + [anon_sym_BSLASHinput] = ACTIONS(5054), + [anon_sym_BSLASHsubfile] = ACTIONS(5054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5054), + [anon_sym_BSLASHbibliography] = ACTIONS(5054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5054), + [anon_sym_BSLASHincludesvg] = ACTIONS(5054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5054), + [anon_sym_BSLASHimport] = ACTIONS(5054), + [anon_sym_BSLASHsubimport] = ACTIONS(5054), + [anon_sym_BSLASHinputfrom] = ACTIONS(5054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5054), + [anon_sym_BSLASHincludefrom] = ACTIONS(5054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5054), + [anon_sym_BSLASHcaption] = ACTIONS(5054), + [anon_sym_BSLASHcite] = ACTIONS(5054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5056), + [anon_sym_BSLASHCite] = ACTIONS(5054), + [anon_sym_BSLASHnocite] = ACTIONS(5054), + [anon_sym_BSLASHcitet] = ACTIONS(5054), + [anon_sym_BSLASHcitep] = ACTIONS(5054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5056), + [anon_sym_BSLASHciteauthor] = ACTIONS(5054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5056), + [anon_sym_BSLASHcitetitle] = ACTIONS(5054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5056), + [anon_sym_BSLASHciteyear] = ACTIONS(5054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5056), + [anon_sym_BSLASHcitedate] = ACTIONS(5054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5056), + [anon_sym_BSLASHciteurl] = ACTIONS(5054), + [anon_sym_BSLASHfullcite] = ACTIONS(5054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5054), + [anon_sym_BSLASHcitealt] = ACTIONS(5054), + [anon_sym_BSLASHcitealp] = ACTIONS(5054), + [anon_sym_BSLASHcitetext] = ACTIONS(5054), + [anon_sym_BSLASHparencite] = ACTIONS(5054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5056), + [anon_sym_BSLASHParencite] = ACTIONS(5054), + [anon_sym_BSLASHfootcite] = ACTIONS(5054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5054), + [anon_sym_BSLASHtextcite] = ACTIONS(5054), + [anon_sym_BSLASHTextcite] = ACTIONS(5054), + [anon_sym_BSLASHsmartcite] = ACTIONS(5054), + [anon_sym_BSLASHSmartcite] = ACTIONS(5054), + [anon_sym_BSLASHsupercite] = ACTIONS(5054), + [anon_sym_BSLASHautocite] = ACTIONS(5054), + [anon_sym_BSLASHAutocite] = ACTIONS(5054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5056), + [anon_sym_BSLASHvolcite] = ACTIONS(5054), + [anon_sym_BSLASHVolcite] = ACTIONS(5054), + [anon_sym_BSLASHpvolcite] = ACTIONS(5054), + [anon_sym_BSLASHPvolcite] = ACTIONS(5054), + [anon_sym_BSLASHfvolcite] = ACTIONS(5054), + [anon_sym_BSLASHftvolcite] = ACTIONS(5054), + [anon_sym_BSLASHsvolcite] = ACTIONS(5054), + [anon_sym_BSLASHSvolcite] = ACTIONS(5054), + [anon_sym_BSLASHtvolcite] = ACTIONS(5054), + [anon_sym_BSLASHTvolcite] = ACTIONS(5054), + [anon_sym_BSLASHavolcite] = ACTIONS(5054), + [anon_sym_BSLASHAvolcite] = ACTIONS(5054), + [anon_sym_BSLASHnotecite] = ACTIONS(5054), + [anon_sym_BSLASHNotecite] = ACTIONS(5054), + [anon_sym_BSLASHpnotecite] = ACTIONS(5054), + [anon_sym_BSLASHPnotecite] = ACTIONS(5054), + [anon_sym_BSLASHfnotecite] = ACTIONS(5054), + [anon_sym_BSLASHlabel] = ACTIONS(5054), + [anon_sym_BSLASHref] = ACTIONS(5054), + [anon_sym_BSLASHeqref] = ACTIONS(5054), + [anon_sym_BSLASHvref] = ACTIONS(5054), + [anon_sym_BSLASHVref] = ACTIONS(5054), + [anon_sym_BSLASHautoref] = ACTIONS(5054), + [anon_sym_BSLASHpageref] = ACTIONS(5054), + [anon_sym_BSLASHcref] = ACTIONS(5054), + [anon_sym_BSLASHCref] = ACTIONS(5054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5056), + [anon_sym_BSLASHnamecref] = ACTIONS(5054), + [anon_sym_BSLASHnameCref] = ACTIONS(5054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5054), + [anon_sym_BSLASHlabelcref] = ACTIONS(5054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5054), + [anon_sym_BSLASHcrefrange] = ACTIONS(5054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5056), + [anon_sym_BSLASHCrefrange] = ACTIONS(5054), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5056), + [anon_sym_BSLASHnewlabel] = ACTIONS(5054), + [anon_sym_BSLASHnewcommand] = ACTIONS(5054), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5056), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5054), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5056), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5054), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5056), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5056), + [anon_sym_BSLASHdef] = ACTIONS(5054), + [anon_sym_BSLASHlet] = ACTIONS(5054), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5054), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5054), + [anon_sym_BSLASHgls] = ACTIONS(5054), + [anon_sym_BSLASHGls] = ACTIONS(5054), + [anon_sym_BSLASHGLS] = ACTIONS(5054), + [anon_sym_BSLASHglspl] = ACTIONS(5054), + [anon_sym_BSLASHGlspl] = ACTIONS(5054), + [anon_sym_BSLASHGLSpl] = ACTIONS(5054), + [anon_sym_BSLASHglsdisp] = ACTIONS(5054), + [anon_sym_BSLASHglslink] = ACTIONS(5054), + [anon_sym_BSLASHglstext] = ACTIONS(5054), + [anon_sym_BSLASHGlstext] = ACTIONS(5054), + [anon_sym_BSLASHGLStext] = ACTIONS(5054), + [anon_sym_BSLASHglsfirst] = ACTIONS(5054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5054), + [anon_sym_BSLASHglsplural] = ACTIONS(5054), + [anon_sym_BSLASHGlsplural] = ACTIONS(5054), + [anon_sym_BSLASHGLSplural] = ACTIONS(5054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5054), + [anon_sym_BSLASHglsname] = ACTIONS(5054), + [anon_sym_BSLASHGlsname] = ACTIONS(5054), + [anon_sym_BSLASHGLSname] = ACTIONS(5054), + [anon_sym_BSLASHglssymbol] = ACTIONS(5054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5054), + [anon_sym_BSLASHglsdesc] = ACTIONS(5054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5054), + [anon_sym_BSLASHglsuseri] = ACTIONS(5054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5054), + [anon_sym_BSLASHglsuserii] = ACTIONS(5054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5054), + [anon_sym_BSLASHglsuserv] = ACTIONS(5054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5054), + [anon_sym_BSLASHglsuservi] = ACTIONS(5054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5054), + [anon_sym_BSLASHnewacronym] = ACTIONS(5054), + [anon_sym_BSLASHacrshort] = ACTIONS(5054), + [anon_sym_BSLASHAcrshort] = ACTIONS(5054), + [anon_sym_BSLASHACRshort] = ACTIONS(5054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5054), + [anon_sym_BSLASHacrlong] = ACTIONS(5054), + [anon_sym_BSLASHAcrlong] = ACTIONS(5054), + [anon_sym_BSLASHACRlong] = ACTIONS(5054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5054), + [anon_sym_BSLASHacrfull] = ACTIONS(5054), + [anon_sym_BSLASHAcrfull] = ACTIONS(5054), + [anon_sym_BSLASHACRfull] = ACTIONS(5054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5054), + [anon_sym_BSLASHacs] = ACTIONS(5054), + [anon_sym_BSLASHAcs] = ACTIONS(5054), + [anon_sym_BSLASHacsp] = ACTIONS(5054), + [anon_sym_BSLASHAcsp] = ACTIONS(5054), + [anon_sym_BSLASHacl] = ACTIONS(5054), + [anon_sym_BSLASHAcl] = ACTIONS(5054), + [anon_sym_BSLASHaclp] = ACTIONS(5054), + [anon_sym_BSLASHAclp] = ACTIONS(5054), + [anon_sym_BSLASHacf] = ACTIONS(5054), + [anon_sym_BSLASHAcf] = ACTIONS(5054), + [anon_sym_BSLASHacfp] = ACTIONS(5054), + [anon_sym_BSLASHAcfp] = ACTIONS(5054), + [anon_sym_BSLASHac] = ACTIONS(5054), + [anon_sym_BSLASHAc] = ACTIONS(5054), + [anon_sym_BSLASHacp] = ACTIONS(5054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5054), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5056), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5054), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5056), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5054), + [anon_sym_BSLASHcolor] = ACTIONS(5054), + [anon_sym_BSLASHcolorbox] = ACTIONS(5054), + [anon_sym_BSLASHtextcolor] = ACTIONS(5054), + [anon_sym_BSLASHpagecolor] = ACTIONS(5054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5054), + [anon_sym_BSLASHtext] = ACTIONS(5054), + [anon_sym_BSLASHintertext] = ACTIONS(5054), + [anon_sym_shortintertext] = ACTIONS(5054), }, [708] = { - [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(4981), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [ts_builtin_sym_end] = ACTIONS(5060), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_BSLASHpart] = ACTIONS(5062), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddpart] = ACTIONS(5062), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHchapter] = ACTIONS(5062), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddchap] = ACTIONS(5062), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsection] = ACTIONS(5062), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddsec] = ACTIONS(5062), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHparagraph] = ACTIONS(5062), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5062), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHitem] = ACTIONS(5062), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASHbegin] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [709] = { - [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(4985), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [ts_builtin_sym_end] = ACTIONS(5064), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_BSLASHpart] = ACTIONS(5066), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddpart] = ACTIONS(5066), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHchapter] = ACTIONS(5066), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddchap] = ACTIONS(5066), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsection] = ACTIONS(5066), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddsec] = ACTIONS(5066), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHparagraph] = ACTIONS(5066), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5066), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHitem] = ACTIONS(5066), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASHbegin] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [710] = { - [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(4989), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [ts_builtin_sym_end] = ACTIONS(5068), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_BSLASHpart] = ACTIONS(5070), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddpart] = ACTIONS(5070), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHchapter] = ACTIONS(5070), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddchap] = ACTIONS(5070), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsection] = ACTIONS(5070), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddsec] = ACTIONS(5070), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHparagraph] = ACTIONS(5070), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5070), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHitem] = ACTIONS(5070), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASHbegin] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [711] = { - [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(4993), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [ts_builtin_sym_end] = ACTIONS(5072), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_BSLASHpart] = ACTIONS(5074), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddpart] = ACTIONS(5074), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHchapter] = ACTIONS(5074), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddchap] = ACTIONS(5074), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsection] = ACTIONS(5074), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddsec] = ACTIONS(5074), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHparagraph] = ACTIONS(5074), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5074), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHitem] = ACTIONS(5074), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASHbegin] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [712] = { - [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(4997), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [ts_builtin_sym_end] = ACTIONS(5076), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_BSLASHpart] = ACTIONS(5078), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddpart] = ACTIONS(5078), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHchapter] = ACTIONS(5078), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddchap] = ACTIONS(5078), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsection] = ACTIONS(5078), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddsec] = ACTIONS(5078), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHparagraph] = ACTIONS(5078), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5078), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHitem] = ACTIONS(5078), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASHbegin] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [713] = { - [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(5001), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [ts_builtin_sym_end] = ACTIONS(5080), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_BSLASHpart] = ACTIONS(5082), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddpart] = ACTIONS(5082), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHchapter] = ACTIONS(5082), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddchap] = ACTIONS(5082), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsection] = ACTIONS(5082), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddsec] = ACTIONS(5082), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHparagraph] = ACTIONS(5082), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5082), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHitem] = ACTIONS(5082), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASHbegin] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(5005), - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [ts_builtin_sym_end] = ACTIONS(5084), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(5084), + [anon_sym_BSLASHpart] = ACTIONS(5086), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddpart] = ACTIONS(5086), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHchapter] = ACTIONS(5086), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddchap] = ACTIONS(5086), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsection] = ACTIONS(5086), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddsec] = ACTIONS(5086), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHparagraph] = ACTIONS(5086), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5086), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHitem] = ACTIONS(5086), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASHbegin] = ACTIONS(5086), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [715] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5009), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_BSLASHpart] = ACTIONS(4865), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddpart] = ACTIONS(4865), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHchapter] = ACTIONS(4865), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddchap] = ACTIONS(4865), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsection] = ACTIONS(4865), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddsec] = ACTIONS(4865), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHparagraph] = ACTIONS(4865), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHitem] = ACTIONS(4865), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASHbegin] = ACTIONS(4865), - [anon_sym_BSLASHend] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_BSLASHpart] = ACTIONS(4944), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddpart] = ACTIONS(4944), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHchapter] = ACTIONS(4944), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddchap] = ACTIONS(4944), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsection] = ACTIONS(4944), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddsec] = ACTIONS(4944), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHparagraph] = ACTIONS(4944), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4944), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHitem] = ACTIONS(4944), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASHbegin] = ACTIONS(4944), + [anon_sym_BSLASHend] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [716] = { - [ts_builtin_sym_end] = ACTIONS(5011), - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_BSLASHpart] = ACTIONS(5013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddpart] = ACTIONS(5013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHchapter] = ACTIONS(5013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddchap] = ACTIONS(5013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsection] = ACTIONS(5013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddsec] = ACTIONS(5013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHparagraph] = ACTIONS(5013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHitem] = ACTIONS(5013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASHbegin] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [ts_builtin_sym_end] = ACTIONS(5090), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_BSLASHpart] = ACTIONS(5092), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddpart] = ACTIONS(5092), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHchapter] = ACTIONS(5092), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddchap] = ACTIONS(5092), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsection] = ACTIONS(5092), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddsec] = ACTIONS(5092), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHparagraph] = ACTIONS(5092), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5092), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHitem] = ACTIONS(5092), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASHbegin] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [717] = { - [ts_builtin_sym_end] = ACTIONS(5015), - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_BSLASHpart] = ACTIONS(5017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddpart] = ACTIONS(5017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHchapter] = ACTIONS(5017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddchap] = ACTIONS(5017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsection] = ACTIONS(5017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddsec] = ACTIONS(5017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHparagraph] = ACTIONS(5017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHitem] = ACTIONS(5017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASHbegin] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [ts_builtin_sym_end] = ACTIONS(5094), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_BSLASHpart] = ACTIONS(5096), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddpart] = ACTIONS(5096), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHchapter] = ACTIONS(5096), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddchap] = ACTIONS(5096), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsection] = ACTIONS(5096), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddsec] = ACTIONS(5096), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHparagraph] = ACTIONS(5096), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5096), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHitem] = ACTIONS(5096), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASHbegin] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [718] = { - [ts_builtin_sym_end] = ACTIONS(5019), - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [ts_builtin_sym_end] = ACTIONS(5098), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_BSLASHpart] = ACTIONS(5100), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddpart] = ACTIONS(5100), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHchapter] = ACTIONS(5100), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddchap] = ACTIONS(5100), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsection] = ACTIONS(5100), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddsec] = ACTIONS(5100), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHparagraph] = ACTIONS(5100), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5100), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHitem] = ACTIONS(5100), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASHbegin] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [719] = { - [ts_builtin_sym_end] = ACTIONS(5023), - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [ts_builtin_sym_end] = ACTIONS(5102), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_BSLASHpart] = ACTIONS(5104), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddpart] = ACTIONS(5104), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHchapter] = ACTIONS(5104), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddchap] = ACTIONS(5104), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsection] = ACTIONS(5104), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddsec] = ACTIONS(5104), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHparagraph] = ACTIONS(5104), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5104), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHitem] = ACTIONS(5104), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_RBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASHbegin] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [720] = { - [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), - [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [ts_builtin_sym_end] = ACTIONS(143), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [721] = { - [ts_builtin_sym_end] = ACTIONS(5027), - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [ts_builtin_sym_end] = ACTIONS(5106), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_BSLASHpart] = ACTIONS(5108), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddpart] = ACTIONS(5108), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHchapter] = ACTIONS(5108), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddchap] = ACTIONS(5108), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsection] = ACTIONS(5108), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddsec] = ACTIONS(5108), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHparagraph] = ACTIONS(5108), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5108), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHitem] = ACTIONS(5108), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASHbegin] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [722] = { - [ts_builtin_sym_end] = ACTIONS(131), - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [723] = { - [ts_builtin_sym_end] = ACTIONS(5031), - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [ts_builtin_sym_end] = ACTIONS(5110), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_BSLASHpart] = ACTIONS(5112), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddpart] = ACTIONS(5112), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHchapter] = ACTIONS(5112), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddchap] = ACTIONS(5112), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsection] = ACTIONS(5112), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddsec] = ACTIONS(5112), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHparagraph] = ACTIONS(5112), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5112), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHitem] = ACTIONS(5112), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [anon_sym_RBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASHbegin] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [724] = { - [ts_builtin_sym_end] = ACTIONS(137), - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_RBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [ts_builtin_sym_end] = ACTIONS(139), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(5035), - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [ts_builtin_sym_end] = ACTIONS(5114), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_BSLASHpart] = ACTIONS(5116), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddpart] = ACTIONS(5116), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHchapter] = ACTIONS(5116), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddchap] = ACTIONS(5116), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsection] = ACTIONS(5116), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddsec] = ACTIONS(5116), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHparagraph] = ACTIONS(5116), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5116), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHitem] = ACTIONS(5116), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASHbegin] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(5039), - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [ts_builtin_sym_end] = ACTIONS(5118), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_BSLASHpart] = ACTIONS(5120), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddpart] = ACTIONS(5120), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHchapter] = ACTIONS(5120), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddchap] = ACTIONS(5120), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsection] = ACTIONS(5120), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddsec] = ACTIONS(5120), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHparagraph] = ACTIONS(5120), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5120), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHitem] = ACTIONS(5120), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASHbegin] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [727] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [ts_builtin_sym_end] = ACTIONS(5122), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_BSLASHpart] = ACTIONS(5124), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddpart] = ACTIONS(5124), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHchapter] = ACTIONS(5124), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddchap] = ACTIONS(5124), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsection] = ACTIONS(5124), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddsec] = ACTIONS(5124), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHparagraph] = ACTIONS(5124), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5124), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHitem] = ACTIONS(5124), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [anon_sym_RBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASHbegin] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [728] = { - [ts_builtin_sym_end] = ACTIONS(5047), - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [ts_builtin_sym_end] = ACTIONS(5126), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_BSLASHpart] = ACTIONS(5128), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddpart] = ACTIONS(5128), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHchapter] = ACTIONS(5128), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddchap] = ACTIONS(5128), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsection] = ACTIONS(5128), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddsec] = ACTIONS(5128), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHparagraph] = ACTIONS(5128), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5128), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHitem] = ACTIONS(5128), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASHbegin] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [729] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [ts_builtin_sym_end] = ACTIONS(5130), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_BSLASHpart] = ACTIONS(5132), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddpart] = ACTIONS(5132), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHchapter] = ACTIONS(5132), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddchap] = ACTIONS(5132), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsection] = ACTIONS(5132), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddsec] = ACTIONS(5132), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHparagraph] = ACTIONS(5132), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5132), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHitem] = ACTIONS(5132), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [anon_sym_RBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASHbegin] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [730] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [ts_builtin_sym_end] = ACTIONS(5134), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_BSLASHpart] = ACTIONS(5136), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddpart] = ACTIONS(5136), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHchapter] = ACTIONS(5136), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddchap] = ACTIONS(5136), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsection] = ACTIONS(5136), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddsec] = ACTIONS(5136), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHparagraph] = ACTIONS(5136), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5136), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHitem] = ACTIONS(5136), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [anon_sym_RBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASHbegin] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [731] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5061), - [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), + [ts_builtin_sym_end] = ACTIONS(5138), + [sym_command_name] = ACTIONS(5140), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5138), + [anon_sym_RBRACK] = ACTIONS(5138), + [anon_sym_COMMA] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_BSLASHpart] = ACTIONS(5140), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddpart] = ACTIONS(5140), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHchapter] = ACTIONS(5140), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddchap] = ACTIONS(5140), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsection] = ACTIONS(5140), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddsec] = ACTIONS(5140), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHparagraph] = ACTIONS(5140), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5140), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHitem] = ACTIONS(5140), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5138), + [anon_sym_RBRACE] = ACTIONS(5138), + [sym_word] = ACTIONS(5140), + [sym_placeholder] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym__] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5140), + [anon_sym_BANG] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_SQUOTE] = ACTIONS(5140), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5138), + [anon_sym_BSLASHbegin] = ACTIONS(5140), + [anon_sym_BSLASHusepackage] = ACTIONS(5140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5140), + [anon_sym_BSLASHinclude] = ACTIONS(5140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5140), + [anon_sym_BSLASHinput] = ACTIONS(5140), + [anon_sym_BSLASHsubfile] = ACTIONS(5140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5140), + [anon_sym_BSLASHbibliography] = ACTIONS(5140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5140), + [anon_sym_BSLASHincludesvg] = ACTIONS(5140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5140), + [anon_sym_BSLASHimport] = ACTIONS(5140), + [anon_sym_BSLASHsubimport] = ACTIONS(5140), + [anon_sym_BSLASHinputfrom] = ACTIONS(5140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5140), + [anon_sym_BSLASHincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHcaption] = ACTIONS(5140), + [anon_sym_BSLASHcite] = ACTIONS(5140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCite] = ACTIONS(5140), + [anon_sym_BSLASHnocite] = ACTIONS(5140), + [anon_sym_BSLASHcitet] = ACTIONS(5140), + [anon_sym_BSLASHcitep] = ACTIONS(5140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteauthor] = ACTIONS(5140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitetitle] = ACTIONS(5140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteyear] = ACTIONS(5140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitedate] = ACTIONS(5140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteurl] = ACTIONS(5140), + [anon_sym_BSLASHfullcite] = ACTIONS(5140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5140), + [anon_sym_BSLASHcitealt] = ACTIONS(5140), + [anon_sym_BSLASHcitealp] = ACTIONS(5140), + [anon_sym_BSLASHcitetext] = ACTIONS(5140), + [anon_sym_BSLASHparencite] = ACTIONS(5140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHParencite] = ACTIONS(5140), + [anon_sym_BSLASHfootcite] = ACTIONS(5140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5140), + [anon_sym_BSLASHtextcite] = ACTIONS(5140), + [anon_sym_BSLASHTextcite] = ACTIONS(5140), + [anon_sym_BSLASHsmartcite] = ACTIONS(5140), + [anon_sym_BSLASHSmartcite] = ACTIONS(5140), + [anon_sym_BSLASHsupercite] = ACTIONS(5140), + [anon_sym_BSLASHautocite] = ACTIONS(5140), + [anon_sym_BSLASHAutocite] = ACTIONS(5140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHvolcite] = ACTIONS(5140), + [anon_sym_BSLASHVolcite] = ACTIONS(5140), + [anon_sym_BSLASHpvolcite] = ACTIONS(5140), + [anon_sym_BSLASHPvolcite] = ACTIONS(5140), + [anon_sym_BSLASHfvolcite] = ACTIONS(5140), + [anon_sym_BSLASHftvolcite] = ACTIONS(5140), + [anon_sym_BSLASHsvolcite] = ACTIONS(5140), + [anon_sym_BSLASHSvolcite] = ACTIONS(5140), + [anon_sym_BSLASHtvolcite] = ACTIONS(5140), + [anon_sym_BSLASHTvolcite] = ACTIONS(5140), + [anon_sym_BSLASHavolcite] = ACTIONS(5140), + [anon_sym_BSLASHAvolcite] = ACTIONS(5140), + [anon_sym_BSLASHnotecite] = ACTIONS(5140), + [anon_sym_BSLASHNotecite] = ACTIONS(5140), + [anon_sym_BSLASHpnotecite] = ACTIONS(5140), + [anon_sym_BSLASHPnotecite] = ACTIONS(5140), + [anon_sym_BSLASHfnotecite] = ACTIONS(5140), + [anon_sym_BSLASHlabel] = ACTIONS(5140), + [anon_sym_BSLASHref] = ACTIONS(5140), + [anon_sym_BSLASHeqref] = ACTIONS(5140), + [anon_sym_BSLASHvref] = ACTIONS(5140), + [anon_sym_BSLASHVref] = ACTIONS(5140), + [anon_sym_BSLASHautoref] = ACTIONS(5140), + [anon_sym_BSLASHpageref] = ACTIONS(5140), + [anon_sym_BSLASHcref] = ACTIONS(5140), + [anon_sym_BSLASHCref] = ACTIONS(5140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnameCref] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHlabelcref] = ACTIONS(5140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCrefrange] = ACTIONS(5140), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnewlabel] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5140), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5140), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdef] = ACTIONS(5140), + [anon_sym_BSLASHlet] = ACTIONS(5140), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5140), + [anon_sym_BSLASHgls] = ACTIONS(5140), + [anon_sym_BSLASHGls] = ACTIONS(5140), + [anon_sym_BSLASHGLS] = ACTIONS(5140), + [anon_sym_BSLASHglspl] = ACTIONS(5140), + [anon_sym_BSLASHGlspl] = ACTIONS(5140), + [anon_sym_BSLASHGLSpl] = ACTIONS(5140), + [anon_sym_BSLASHglsdisp] = ACTIONS(5140), + [anon_sym_BSLASHglslink] = ACTIONS(5140), + [anon_sym_BSLASHglstext] = ACTIONS(5140), + [anon_sym_BSLASHGlstext] = ACTIONS(5140), + [anon_sym_BSLASHGLStext] = ACTIONS(5140), + [anon_sym_BSLASHglsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5140), + [anon_sym_BSLASHglsplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSplural] = ACTIONS(5140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHglsname] = ACTIONS(5140), + [anon_sym_BSLASHGlsname] = ACTIONS(5140), + [anon_sym_BSLASHGLSname] = ACTIONS(5140), + [anon_sym_BSLASHglssymbol] = ACTIONS(5140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5140), + [anon_sym_BSLASHglsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5140), + [anon_sym_BSLASHglsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5140), + [anon_sym_BSLASHglsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5140), + [anon_sym_BSLASHglsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5140), + [anon_sym_BSLASHglsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5140), + [anon_sym_BSLASHnewacronym] = ACTIONS(5140), + [anon_sym_BSLASHacrshort] = ACTIONS(5140), + [anon_sym_BSLASHAcrshort] = ACTIONS(5140), + [anon_sym_BSLASHACRshort] = ACTIONS(5140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5140), + [anon_sym_BSLASHacrlong] = ACTIONS(5140), + [anon_sym_BSLASHAcrlong] = ACTIONS(5140), + [anon_sym_BSLASHACRlong] = ACTIONS(5140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5140), + [anon_sym_BSLASHacrfull] = ACTIONS(5140), + [anon_sym_BSLASHAcrfull] = ACTIONS(5140), + [anon_sym_BSLASHACRfull] = ACTIONS(5140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5140), + [anon_sym_BSLASHacs] = ACTIONS(5140), + [anon_sym_BSLASHAcs] = ACTIONS(5140), + [anon_sym_BSLASHacsp] = ACTIONS(5140), + [anon_sym_BSLASHAcsp] = ACTIONS(5140), + [anon_sym_BSLASHacl] = ACTIONS(5140), + [anon_sym_BSLASHAcl] = ACTIONS(5140), + [anon_sym_BSLASHaclp] = ACTIONS(5140), + [anon_sym_BSLASHAclp] = ACTIONS(5140), + [anon_sym_BSLASHacf] = ACTIONS(5140), + [anon_sym_BSLASHAcf] = ACTIONS(5140), + [anon_sym_BSLASHacfp] = ACTIONS(5140), + [anon_sym_BSLASHAcfp] = ACTIONS(5140), + [anon_sym_BSLASHac] = ACTIONS(5140), + [anon_sym_BSLASHAc] = ACTIONS(5140), + [anon_sym_BSLASHacp] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5140), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5140), + [anon_sym_BSLASHcolor] = ACTIONS(5140), + [anon_sym_BSLASHcolorbox] = ACTIONS(5140), + [anon_sym_BSLASHtextcolor] = ACTIONS(5140), + [anon_sym_BSLASHpagecolor] = ACTIONS(5140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5140), + [anon_sym_BSLASHtext] = ACTIONS(5140), + [anon_sym_BSLASHintertext] = ACTIONS(5140), + [anon_sym_shortintertext] = ACTIONS(5140), }, [732] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [ts_builtin_sym_end] = ACTIONS(5142), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_BSLASHpart] = ACTIONS(5144), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddpart] = ACTIONS(5144), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHchapter] = ACTIONS(5144), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddchap] = ACTIONS(5144), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsection] = ACTIONS(5144), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddsec] = ACTIONS(5144), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHparagraph] = ACTIONS(5144), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5144), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHitem] = ACTIONS(5144), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASHbegin] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(5067), - [sym_command_name] = ACTIONS(5069), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), - [anon_sym_BSLASHtext] = ACTIONS(5069), - [anon_sym_BSLASHintertext] = ACTIONS(5069), - [anon_sym_shortintertext] = ACTIONS(5069), + [ts_builtin_sym_end] = ACTIONS(5146), + [sym_command_name] = ACTIONS(5148), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5146), + [anon_sym_RBRACK] = ACTIONS(5146), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_BSLASHpart] = ACTIONS(5148), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddpart] = ACTIONS(5148), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHchapter] = ACTIONS(5148), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddchap] = ACTIONS(5148), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsection] = ACTIONS(5148), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddsec] = ACTIONS(5148), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHparagraph] = ACTIONS(5148), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5148), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHitem] = ACTIONS(5148), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5146), + [anon_sym_RBRACE] = ACTIONS(5146), + [sym_word] = ACTIONS(5148), + [sym_placeholder] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym__] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5148), + [anon_sym_BANG] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_SQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5146), + [anon_sym_BSLASHbegin] = ACTIONS(5148), + [anon_sym_BSLASHusepackage] = ACTIONS(5148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5148), + [anon_sym_BSLASHinclude] = ACTIONS(5148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5148), + [anon_sym_BSLASHinput] = ACTIONS(5148), + [anon_sym_BSLASHsubfile] = ACTIONS(5148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5148), + [anon_sym_BSLASHbibliography] = ACTIONS(5148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5148), + [anon_sym_BSLASHincludesvg] = ACTIONS(5148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5148), + [anon_sym_BSLASHimport] = ACTIONS(5148), + [anon_sym_BSLASHsubimport] = ACTIONS(5148), + [anon_sym_BSLASHinputfrom] = ACTIONS(5148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5148), + [anon_sym_BSLASHincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHcaption] = ACTIONS(5148), + [anon_sym_BSLASHcite] = ACTIONS(5148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCite] = ACTIONS(5148), + [anon_sym_BSLASHnocite] = ACTIONS(5148), + [anon_sym_BSLASHcitet] = ACTIONS(5148), + [anon_sym_BSLASHcitep] = ACTIONS(5148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteauthor] = ACTIONS(5148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitetitle] = ACTIONS(5148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteyear] = ACTIONS(5148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitedate] = ACTIONS(5148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteurl] = ACTIONS(5148), + [anon_sym_BSLASHfullcite] = ACTIONS(5148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5148), + [anon_sym_BSLASHcitealt] = ACTIONS(5148), + [anon_sym_BSLASHcitealp] = ACTIONS(5148), + [anon_sym_BSLASHcitetext] = ACTIONS(5148), + [anon_sym_BSLASHparencite] = ACTIONS(5148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHParencite] = ACTIONS(5148), + [anon_sym_BSLASHfootcite] = ACTIONS(5148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5148), + [anon_sym_BSLASHtextcite] = ACTIONS(5148), + [anon_sym_BSLASHTextcite] = ACTIONS(5148), + [anon_sym_BSLASHsmartcite] = ACTIONS(5148), + [anon_sym_BSLASHSmartcite] = ACTIONS(5148), + [anon_sym_BSLASHsupercite] = ACTIONS(5148), + [anon_sym_BSLASHautocite] = ACTIONS(5148), + [anon_sym_BSLASHAutocite] = ACTIONS(5148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHvolcite] = ACTIONS(5148), + [anon_sym_BSLASHVolcite] = ACTIONS(5148), + [anon_sym_BSLASHpvolcite] = ACTIONS(5148), + [anon_sym_BSLASHPvolcite] = ACTIONS(5148), + [anon_sym_BSLASHfvolcite] = ACTIONS(5148), + [anon_sym_BSLASHftvolcite] = ACTIONS(5148), + [anon_sym_BSLASHsvolcite] = ACTIONS(5148), + [anon_sym_BSLASHSvolcite] = ACTIONS(5148), + [anon_sym_BSLASHtvolcite] = ACTIONS(5148), + [anon_sym_BSLASHTvolcite] = ACTIONS(5148), + [anon_sym_BSLASHavolcite] = ACTIONS(5148), + [anon_sym_BSLASHAvolcite] = ACTIONS(5148), + [anon_sym_BSLASHnotecite] = ACTIONS(5148), + [anon_sym_BSLASHNotecite] = ACTIONS(5148), + [anon_sym_BSLASHpnotecite] = ACTIONS(5148), + [anon_sym_BSLASHPnotecite] = ACTIONS(5148), + [anon_sym_BSLASHfnotecite] = ACTIONS(5148), + [anon_sym_BSLASHlabel] = ACTIONS(5148), + [anon_sym_BSLASHref] = ACTIONS(5148), + [anon_sym_BSLASHeqref] = ACTIONS(5148), + [anon_sym_BSLASHvref] = ACTIONS(5148), + [anon_sym_BSLASHVref] = ACTIONS(5148), + [anon_sym_BSLASHautoref] = ACTIONS(5148), + [anon_sym_BSLASHpageref] = ACTIONS(5148), + [anon_sym_BSLASHcref] = ACTIONS(5148), + [anon_sym_BSLASHCref] = ACTIONS(5148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnameCref] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHlabelcref] = ACTIONS(5148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCrefrange] = ACTIONS(5148), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnewlabel] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5148), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5148), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdef] = ACTIONS(5148), + [anon_sym_BSLASHlet] = ACTIONS(5148), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5148), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5148), + [anon_sym_BSLASHgls] = ACTIONS(5148), + [anon_sym_BSLASHGls] = ACTIONS(5148), + [anon_sym_BSLASHGLS] = ACTIONS(5148), + [anon_sym_BSLASHglspl] = ACTIONS(5148), + [anon_sym_BSLASHGlspl] = ACTIONS(5148), + [anon_sym_BSLASHGLSpl] = ACTIONS(5148), + [anon_sym_BSLASHglsdisp] = ACTIONS(5148), + [anon_sym_BSLASHglslink] = ACTIONS(5148), + [anon_sym_BSLASHglstext] = ACTIONS(5148), + [anon_sym_BSLASHGlstext] = ACTIONS(5148), + [anon_sym_BSLASHGLStext] = ACTIONS(5148), + [anon_sym_BSLASHglsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5148), + [anon_sym_BSLASHglsplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSplural] = ACTIONS(5148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHglsname] = ACTIONS(5148), + [anon_sym_BSLASHGlsname] = ACTIONS(5148), + [anon_sym_BSLASHGLSname] = ACTIONS(5148), + [anon_sym_BSLASHglssymbol] = ACTIONS(5148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5148), + [anon_sym_BSLASHglsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5148), + [anon_sym_BSLASHglsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5148), + [anon_sym_BSLASHglsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5148), + [anon_sym_BSLASHglsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5148), + [anon_sym_BSLASHglsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5148), + [anon_sym_BSLASHnewacronym] = ACTIONS(5148), + [anon_sym_BSLASHacrshort] = ACTIONS(5148), + [anon_sym_BSLASHAcrshort] = ACTIONS(5148), + [anon_sym_BSLASHACRshort] = ACTIONS(5148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5148), + [anon_sym_BSLASHacrlong] = ACTIONS(5148), + [anon_sym_BSLASHAcrlong] = ACTIONS(5148), + [anon_sym_BSLASHACRlong] = ACTIONS(5148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5148), + [anon_sym_BSLASHacrfull] = ACTIONS(5148), + [anon_sym_BSLASHAcrfull] = ACTIONS(5148), + [anon_sym_BSLASHACRfull] = ACTIONS(5148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5148), + [anon_sym_BSLASHacs] = ACTIONS(5148), + [anon_sym_BSLASHAcs] = ACTIONS(5148), + [anon_sym_BSLASHacsp] = ACTIONS(5148), + [anon_sym_BSLASHAcsp] = ACTIONS(5148), + [anon_sym_BSLASHacl] = ACTIONS(5148), + [anon_sym_BSLASHAcl] = ACTIONS(5148), + [anon_sym_BSLASHaclp] = ACTIONS(5148), + [anon_sym_BSLASHAclp] = ACTIONS(5148), + [anon_sym_BSLASHacf] = ACTIONS(5148), + [anon_sym_BSLASHAcf] = ACTIONS(5148), + [anon_sym_BSLASHacfp] = ACTIONS(5148), + [anon_sym_BSLASHAcfp] = ACTIONS(5148), + [anon_sym_BSLASHac] = ACTIONS(5148), + [anon_sym_BSLASHAc] = ACTIONS(5148), + [anon_sym_BSLASHacp] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5148), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5148), + [anon_sym_BSLASHcolor] = ACTIONS(5148), + [anon_sym_BSLASHcolorbox] = ACTIONS(5148), + [anon_sym_BSLASHtextcolor] = ACTIONS(5148), + [anon_sym_BSLASHpagecolor] = ACTIONS(5148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5148), + [anon_sym_BSLASHtext] = ACTIONS(5148), + [anon_sym_BSLASHintertext] = ACTIONS(5148), + [anon_sym_shortintertext] = ACTIONS(5148), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(5071), - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [ts_builtin_sym_end] = ACTIONS(5150), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_BSLASHpart] = ACTIONS(5152), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddpart] = ACTIONS(5152), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHchapter] = ACTIONS(5152), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddchap] = ACTIONS(5152), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsection] = ACTIONS(5152), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddsec] = ACTIONS(5152), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHparagraph] = ACTIONS(5152), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5152), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHitem] = ACTIONS(5152), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [anon_sym_RBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASHbegin] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [735] = { - [ts_builtin_sym_end] = ACTIONS(5075), - [sym_command_name] = ACTIONS(5077), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - [anon_sym_BSLASHtext] = ACTIONS(5077), - [anon_sym_BSLASHintertext] = ACTIONS(5077), - [anon_sym_shortintertext] = ACTIONS(5077), + [ts_builtin_sym_end] = ACTIONS(5154), + [sym_command_name] = ACTIONS(5156), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_BSLASHpart] = ACTIONS(5156), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddpart] = ACTIONS(5156), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHchapter] = ACTIONS(5156), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddchap] = ACTIONS(5156), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsection] = ACTIONS(5156), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddsec] = ACTIONS(5156), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHparagraph] = ACTIONS(5156), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5156), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHitem] = ACTIONS(5156), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_RBRACE] = ACTIONS(5154), + [sym_word] = ACTIONS(5156), + [sym_placeholder] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym__] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_BANG] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_SQUOTE] = ACTIONS(5156), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5154), + [anon_sym_BSLASHbegin] = ACTIONS(5156), + [anon_sym_BSLASHusepackage] = ACTIONS(5156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5156), + [anon_sym_BSLASHinclude] = ACTIONS(5156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5156), + [anon_sym_BSLASHinput] = ACTIONS(5156), + [anon_sym_BSLASHsubfile] = ACTIONS(5156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5156), + [anon_sym_BSLASHbibliography] = ACTIONS(5156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5156), + [anon_sym_BSLASHincludesvg] = ACTIONS(5156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5156), + [anon_sym_BSLASHimport] = ACTIONS(5156), + [anon_sym_BSLASHsubimport] = ACTIONS(5156), + [anon_sym_BSLASHinputfrom] = ACTIONS(5156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5156), + [anon_sym_BSLASHincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHcaption] = ACTIONS(5156), + [anon_sym_BSLASHcite] = ACTIONS(5156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCite] = ACTIONS(5156), + [anon_sym_BSLASHnocite] = ACTIONS(5156), + [anon_sym_BSLASHcitet] = ACTIONS(5156), + [anon_sym_BSLASHcitep] = ACTIONS(5156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteauthor] = ACTIONS(5156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitetitle] = ACTIONS(5156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteyear] = ACTIONS(5156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitedate] = ACTIONS(5156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteurl] = ACTIONS(5156), + [anon_sym_BSLASHfullcite] = ACTIONS(5156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5156), + [anon_sym_BSLASHcitealt] = ACTIONS(5156), + [anon_sym_BSLASHcitealp] = ACTIONS(5156), + [anon_sym_BSLASHcitetext] = ACTIONS(5156), + [anon_sym_BSLASHparencite] = ACTIONS(5156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHParencite] = ACTIONS(5156), + [anon_sym_BSLASHfootcite] = ACTIONS(5156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5156), + [anon_sym_BSLASHtextcite] = ACTIONS(5156), + [anon_sym_BSLASHTextcite] = ACTIONS(5156), + [anon_sym_BSLASHsmartcite] = ACTIONS(5156), + [anon_sym_BSLASHSmartcite] = ACTIONS(5156), + [anon_sym_BSLASHsupercite] = ACTIONS(5156), + [anon_sym_BSLASHautocite] = ACTIONS(5156), + [anon_sym_BSLASHAutocite] = ACTIONS(5156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHvolcite] = ACTIONS(5156), + [anon_sym_BSLASHVolcite] = ACTIONS(5156), + [anon_sym_BSLASHpvolcite] = ACTIONS(5156), + [anon_sym_BSLASHPvolcite] = ACTIONS(5156), + [anon_sym_BSLASHfvolcite] = ACTIONS(5156), + [anon_sym_BSLASHftvolcite] = ACTIONS(5156), + [anon_sym_BSLASHsvolcite] = ACTIONS(5156), + [anon_sym_BSLASHSvolcite] = ACTIONS(5156), + [anon_sym_BSLASHtvolcite] = ACTIONS(5156), + [anon_sym_BSLASHTvolcite] = ACTIONS(5156), + [anon_sym_BSLASHavolcite] = ACTIONS(5156), + [anon_sym_BSLASHAvolcite] = ACTIONS(5156), + [anon_sym_BSLASHnotecite] = ACTIONS(5156), + [anon_sym_BSLASHNotecite] = ACTIONS(5156), + [anon_sym_BSLASHpnotecite] = ACTIONS(5156), + [anon_sym_BSLASHPnotecite] = ACTIONS(5156), + [anon_sym_BSLASHfnotecite] = ACTIONS(5156), + [anon_sym_BSLASHlabel] = ACTIONS(5156), + [anon_sym_BSLASHref] = ACTIONS(5156), + [anon_sym_BSLASHeqref] = ACTIONS(5156), + [anon_sym_BSLASHvref] = ACTIONS(5156), + [anon_sym_BSLASHVref] = ACTIONS(5156), + [anon_sym_BSLASHautoref] = ACTIONS(5156), + [anon_sym_BSLASHpageref] = ACTIONS(5156), + [anon_sym_BSLASHcref] = ACTIONS(5156), + [anon_sym_BSLASHCref] = ACTIONS(5156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnameCref] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHlabelcref] = ACTIONS(5156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCrefrange] = ACTIONS(5156), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnewlabel] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5156), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5156), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdef] = ACTIONS(5156), + [anon_sym_BSLASHlet] = ACTIONS(5156), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5156), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5156), + [anon_sym_BSLASHgls] = ACTIONS(5156), + [anon_sym_BSLASHGls] = ACTIONS(5156), + [anon_sym_BSLASHGLS] = ACTIONS(5156), + [anon_sym_BSLASHglspl] = ACTIONS(5156), + [anon_sym_BSLASHGlspl] = ACTIONS(5156), + [anon_sym_BSLASHGLSpl] = ACTIONS(5156), + [anon_sym_BSLASHglsdisp] = ACTIONS(5156), + [anon_sym_BSLASHglslink] = ACTIONS(5156), + [anon_sym_BSLASHglstext] = ACTIONS(5156), + [anon_sym_BSLASHGlstext] = ACTIONS(5156), + [anon_sym_BSLASHGLStext] = ACTIONS(5156), + [anon_sym_BSLASHglsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5156), + [anon_sym_BSLASHglsplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSplural] = ACTIONS(5156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHglsname] = ACTIONS(5156), + [anon_sym_BSLASHGlsname] = ACTIONS(5156), + [anon_sym_BSLASHGLSname] = ACTIONS(5156), + [anon_sym_BSLASHglssymbol] = ACTIONS(5156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5156), + [anon_sym_BSLASHglsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5156), + [anon_sym_BSLASHglsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5156), + [anon_sym_BSLASHglsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5156), + [anon_sym_BSLASHglsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5156), + [anon_sym_BSLASHglsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5156), + [anon_sym_BSLASHnewacronym] = ACTIONS(5156), + [anon_sym_BSLASHacrshort] = ACTIONS(5156), + [anon_sym_BSLASHAcrshort] = ACTIONS(5156), + [anon_sym_BSLASHACRshort] = ACTIONS(5156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5156), + [anon_sym_BSLASHacrlong] = ACTIONS(5156), + [anon_sym_BSLASHAcrlong] = ACTIONS(5156), + [anon_sym_BSLASHACRlong] = ACTIONS(5156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5156), + [anon_sym_BSLASHacrfull] = ACTIONS(5156), + [anon_sym_BSLASHAcrfull] = ACTIONS(5156), + [anon_sym_BSLASHACRfull] = ACTIONS(5156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5156), + [anon_sym_BSLASHacs] = ACTIONS(5156), + [anon_sym_BSLASHAcs] = ACTIONS(5156), + [anon_sym_BSLASHacsp] = ACTIONS(5156), + [anon_sym_BSLASHAcsp] = ACTIONS(5156), + [anon_sym_BSLASHacl] = ACTIONS(5156), + [anon_sym_BSLASHAcl] = ACTIONS(5156), + [anon_sym_BSLASHaclp] = ACTIONS(5156), + [anon_sym_BSLASHAclp] = ACTIONS(5156), + [anon_sym_BSLASHacf] = ACTIONS(5156), + [anon_sym_BSLASHAcf] = ACTIONS(5156), + [anon_sym_BSLASHacfp] = ACTIONS(5156), + [anon_sym_BSLASHAcfp] = ACTIONS(5156), + [anon_sym_BSLASHac] = ACTIONS(5156), + [anon_sym_BSLASHAc] = ACTIONS(5156), + [anon_sym_BSLASHacp] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5156), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5156), + [anon_sym_BSLASHcolor] = ACTIONS(5156), + [anon_sym_BSLASHcolorbox] = ACTIONS(5156), + [anon_sym_BSLASHtextcolor] = ACTIONS(5156), + [anon_sym_BSLASHpagecolor] = ACTIONS(5156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5156), + [anon_sym_BSLASHtext] = ACTIONS(5156), + [anon_sym_BSLASHintertext] = ACTIONS(5156), + [anon_sym_shortintertext] = ACTIONS(5156), }, [736] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5081), - [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), + [ts_builtin_sym_end] = ACTIONS(5158), + [sym_command_name] = ACTIONS(5160), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_BSLASHpart] = ACTIONS(5160), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddpart] = ACTIONS(5160), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHchapter] = ACTIONS(5160), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddchap] = ACTIONS(5160), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsection] = ACTIONS(5160), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddsec] = ACTIONS(5160), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHparagraph] = ACTIONS(5160), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5160), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHitem] = ACTIONS(5160), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_RBRACE] = ACTIONS(5158), + [sym_word] = ACTIONS(5160), + [sym_placeholder] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym__] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_SQUOTE] = ACTIONS(5160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5158), + [anon_sym_BSLASHbegin] = ACTIONS(5160), + [anon_sym_BSLASHusepackage] = ACTIONS(5160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5160), + [anon_sym_BSLASHinclude] = ACTIONS(5160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5160), + [anon_sym_BSLASHinput] = ACTIONS(5160), + [anon_sym_BSLASHsubfile] = ACTIONS(5160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5160), + [anon_sym_BSLASHbibliography] = ACTIONS(5160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5160), + [anon_sym_BSLASHincludesvg] = ACTIONS(5160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5160), + [anon_sym_BSLASHimport] = ACTIONS(5160), + [anon_sym_BSLASHsubimport] = ACTIONS(5160), + [anon_sym_BSLASHinputfrom] = ACTIONS(5160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5160), + [anon_sym_BSLASHincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHcaption] = ACTIONS(5160), + [anon_sym_BSLASHcite] = ACTIONS(5160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCite] = ACTIONS(5160), + [anon_sym_BSLASHnocite] = ACTIONS(5160), + [anon_sym_BSLASHcitet] = ACTIONS(5160), + [anon_sym_BSLASHcitep] = ACTIONS(5160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteauthor] = ACTIONS(5160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitetitle] = ACTIONS(5160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteyear] = ACTIONS(5160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitedate] = ACTIONS(5160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteurl] = ACTIONS(5160), + [anon_sym_BSLASHfullcite] = ACTIONS(5160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5160), + [anon_sym_BSLASHcitealt] = ACTIONS(5160), + [anon_sym_BSLASHcitealp] = ACTIONS(5160), + [anon_sym_BSLASHcitetext] = ACTIONS(5160), + [anon_sym_BSLASHparencite] = ACTIONS(5160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHParencite] = ACTIONS(5160), + [anon_sym_BSLASHfootcite] = ACTIONS(5160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5160), + [anon_sym_BSLASHtextcite] = ACTIONS(5160), + [anon_sym_BSLASHTextcite] = ACTIONS(5160), + [anon_sym_BSLASHsmartcite] = ACTIONS(5160), + [anon_sym_BSLASHSmartcite] = ACTIONS(5160), + [anon_sym_BSLASHsupercite] = ACTIONS(5160), + [anon_sym_BSLASHautocite] = ACTIONS(5160), + [anon_sym_BSLASHAutocite] = ACTIONS(5160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHvolcite] = ACTIONS(5160), + [anon_sym_BSLASHVolcite] = ACTIONS(5160), + [anon_sym_BSLASHpvolcite] = ACTIONS(5160), + [anon_sym_BSLASHPvolcite] = ACTIONS(5160), + [anon_sym_BSLASHfvolcite] = ACTIONS(5160), + [anon_sym_BSLASHftvolcite] = ACTIONS(5160), + [anon_sym_BSLASHsvolcite] = ACTIONS(5160), + [anon_sym_BSLASHSvolcite] = ACTIONS(5160), + [anon_sym_BSLASHtvolcite] = ACTIONS(5160), + [anon_sym_BSLASHTvolcite] = ACTIONS(5160), + [anon_sym_BSLASHavolcite] = ACTIONS(5160), + [anon_sym_BSLASHAvolcite] = ACTIONS(5160), + [anon_sym_BSLASHnotecite] = ACTIONS(5160), + [anon_sym_BSLASHNotecite] = ACTIONS(5160), + [anon_sym_BSLASHpnotecite] = ACTIONS(5160), + [anon_sym_BSLASHPnotecite] = ACTIONS(5160), + [anon_sym_BSLASHfnotecite] = ACTIONS(5160), + [anon_sym_BSLASHlabel] = ACTIONS(5160), + [anon_sym_BSLASHref] = ACTIONS(5160), + [anon_sym_BSLASHeqref] = ACTIONS(5160), + [anon_sym_BSLASHvref] = ACTIONS(5160), + [anon_sym_BSLASHVref] = ACTIONS(5160), + [anon_sym_BSLASHautoref] = ACTIONS(5160), + [anon_sym_BSLASHpageref] = ACTIONS(5160), + [anon_sym_BSLASHcref] = ACTIONS(5160), + [anon_sym_BSLASHCref] = ACTIONS(5160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnameCref] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHlabelcref] = ACTIONS(5160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCrefrange] = ACTIONS(5160), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnewlabel] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5160), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5160), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdef] = ACTIONS(5160), + [anon_sym_BSLASHlet] = ACTIONS(5160), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5160), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5160), + [anon_sym_BSLASHgls] = ACTIONS(5160), + [anon_sym_BSLASHGls] = ACTIONS(5160), + [anon_sym_BSLASHGLS] = ACTIONS(5160), + [anon_sym_BSLASHglspl] = ACTIONS(5160), + [anon_sym_BSLASHGlspl] = ACTIONS(5160), + [anon_sym_BSLASHGLSpl] = ACTIONS(5160), + [anon_sym_BSLASHglsdisp] = ACTIONS(5160), + [anon_sym_BSLASHglslink] = ACTIONS(5160), + [anon_sym_BSLASHglstext] = ACTIONS(5160), + [anon_sym_BSLASHGlstext] = ACTIONS(5160), + [anon_sym_BSLASHGLStext] = ACTIONS(5160), + [anon_sym_BSLASHglsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5160), + [anon_sym_BSLASHglsplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSplural] = ACTIONS(5160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHglsname] = ACTIONS(5160), + [anon_sym_BSLASHGlsname] = ACTIONS(5160), + [anon_sym_BSLASHGLSname] = ACTIONS(5160), + [anon_sym_BSLASHglssymbol] = ACTIONS(5160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5160), + [anon_sym_BSLASHglsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5160), + [anon_sym_BSLASHglsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5160), + [anon_sym_BSLASHglsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5160), + [anon_sym_BSLASHglsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5160), + [anon_sym_BSLASHglsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5160), + [anon_sym_BSLASHnewacronym] = ACTIONS(5160), + [anon_sym_BSLASHacrshort] = ACTIONS(5160), + [anon_sym_BSLASHAcrshort] = ACTIONS(5160), + [anon_sym_BSLASHACRshort] = ACTIONS(5160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5160), + [anon_sym_BSLASHacrlong] = ACTIONS(5160), + [anon_sym_BSLASHAcrlong] = ACTIONS(5160), + [anon_sym_BSLASHACRlong] = ACTIONS(5160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5160), + [anon_sym_BSLASHacrfull] = ACTIONS(5160), + [anon_sym_BSLASHAcrfull] = ACTIONS(5160), + [anon_sym_BSLASHACRfull] = ACTIONS(5160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5160), + [anon_sym_BSLASHacs] = ACTIONS(5160), + [anon_sym_BSLASHAcs] = ACTIONS(5160), + [anon_sym_BSLASHacsp] = ACTIONS(5160), + [anon_sym_BSLASHAcsp] = ACTIONS(5160), + [anon_sym_BSLASHacl] = ACTIONS(5160), + [anon_sym_BSLASHAcl] = ACTIONS(5160), + [anon_sym_BSLASHaclp] = ACTIONS(5160), + [anon_sym_BSLASHAclp] = ACTIONS(5160), + [anon_sym_BSLASHacf] = ACTIONS(5160), + [anon_sym_BSLASHAcf] = ACTIONS(5160), + [anon_sym_BSLASHacfp] = ACTIONS(5160), + [anon_sym_BSLASHAcfp] = ACTIONS(5160), + [anon_sym_BSLASHac] = ACTIONS(5160), + [anon_sym_BSLASHAc] = ACTIONS(5160), + [anon_sym_BSLASHacp] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5160), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5160), + [anon_sym_BSLASHcolor] = ACTIONS(5160), + [anon_sym_BSLASHcolorbox] = ACTIONS(5160), + [anon_sym_BSLASHtextcolor] = ACTIONS(5160), + [anon_sym_BSLASHpagecolor] = ACTIONS(5160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5160), + [anon_sym_BSLASHtext] = ACTIONS(5160), + [anon_sym_BSLASHintertext] = ACTIONS(5160), + [anon_sym_shortintertext] = ACTIONS(5160), }, [737] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5085), - [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), + [ts_builtin_sym_end] = ACTIONS(5162), + [sym_command_name] = ACTIONS(5164), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_BSLASHpart] = ACTIONS(5164), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddpart] = ACTIONS(5164), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHchapter] = ACTIONS(5164), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddchap] = ACTIONS(5164), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsection] = ACTIONS(5164), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddsec] = ACTIONS(5164), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHparagraph] = ACTIONS(5164), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5164), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHitem] = ACTIONS(5164), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [sym_word] = ACTIONS(5164), + [sym_placeholder] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym__] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_SQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5162), + [anon_sym_BSLASHbegin] = ACTIONS(5164), + [anon_sym_BSLASHusepackage] = ACTIONS(5164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5164), + [anon_sym_BSLASHinclude] = ACTIONS(5164), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5164), + [anon_sym_BSLASHinput] = ACTIONS(5164), + [anon_sym_BSLASHsubfile] = ACTIONS(5164), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5164), + [anon_sym_BSLASHbibliography] = ACTIONS(5164), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), + [anon_sym_BSLASHincludesvg] = ACTIONS(5164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5164), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5164), + [anon_sym_BSLASHimport] = ACTIONS(5164), + [anon_sym_BSLASHsubimport] = ACTIONS(5164), + [anon_sym_BSLASHinputfrom] = ACTIONS(5164), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5164), + [anon_sym_BSLASHincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHcaption] = ACTIONS(5164), + [anon_sym_BSLASHcite] = ACTIONS(5164), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCite] = ACTIONS(5164), + [anon_sym_BSLASHnocite] = ACTIONS(5164), + [anon_sym_BSLASHcitet] = ACTIONS(5164), + [anon_sym_BSLASHcitep] = ACTIONS(5164), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteauthor] = ACTIONS(5164), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5164), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitetitle] = ACTIONS(5164), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteyear] = ACTIONS(5164), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitedate] = ACTIONS(5164), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteurl] = ACTIONS(5164), + [anon_sym_BSLASHfullcite] = ACTIONS(5164), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5164), + [anon_sym_BSLASHcitealt] = ACTIONS(5164), + [anon_sym_BSLASHcitealp] = ACTIONS(5164), + [anon_sym_BSLASHcitetext] = ACTIONS(5164), + [anon_sym_BSLASHparencite] = ACTIONS(5164), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHParencite] = ACTIONS(5164), + [anon_sym_BSLASHfootcite] = ACTIONS(5164), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5164), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5164), + [anon_sym_BSLASHtextcite] = ACTIONS(5164), + [anon_sym_BSLASHTextcite] = ACTIONS(5164), + [anon_sym_BSLASHsmartcite] = ACTIONS(5164), + [anon_sym_BSLASHSmartcite] = ACTIONS(5164), + [anon_sym_BSLASHsupercite] = ACTIONS(5164), + [anon_sym_BSLASHautocite] = ACTIONS(5164), + [anon_sym_BSLASHAutocite] = ACTIONS(5164), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHvolcite] = ACTIONS(5164), + [anon_sym_BSLASHVolcite] = ACTIONS(5164), + [anon_sym_BSLASHpvolcite] = ACTIONS(5164), + [anon_sym_BSLASHPvolcite] = ACTIONS(5164), + [anon_sym_BSLASHfvolcite] = ACTIONS(5164), + [anon_sym_BSLASHftvolcite] = ACTIONS(5164), + [anon_sym_BSLASHsvolcite] = ACTIONS(5164), + [anon_sym_BSLASHSvolcite] = ACTIONS(5164), + [anon_sym_BSLASHtvolcite] = ACTIONS(5164), + [anon_sym_BSLASHTvolcite] = ACTIONS(5164), + [anon_sym_BSLASHavolcite] = ACTIONS(5164), + [anon_sym_BSLASHAvolcite] = ACTIONS(5164), + [anon_sym_BSLASHnotecite] = ACTIONS(5164), + [anon_sym_BSLASHNotecite] = ACTIONS(5164), + [anon_sym_BSLASHpnotecite] = ACTIONS(5164), + [anon_sym_BSLASHPnotecite] = ACTIONS(5164), + [anon_sym_BSLASHfnotecite] = ACTIONS(5164), + [anon_sym_BSLASHlabel] = ACTIONS(5164), + [anon_sym_BSLASHref] = ACTIONS(5164), + [anon_sym_BSLASHeqref] = ACTIONS(5164), + [anon_sym_BSLASHvref] = ACTIONS(5164), + [anon_sym_BSLASHVref] = ACTIONS(5164), + [anon_sym_BSLASHautoref] = ACTIONS(5164), + [anon_sym_BSLASHpageref] = ACTIONS(5164), + [anon_sym_BSLASHcref] = ACTIONS(5164), + [anon_sym_BSLASHCref] = ACTIONS(5164), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnameCref] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHlabelcref] = ACTIONS(5164), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCrefrange] = ACTIONS(5164), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnewlabel] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5164), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5164), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5164), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdef] = ACTIONS(5164), + [anon_sym_BSLASHlet] = ACTIONS(5164), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5164), + [anon_sym_BSLASHgls] = ACTIONS(5164), + [anon_sym_BSLASHGls] = ACTIONS(5164), + [anon_sym_BSLASHGLS] = ACTIONS(5164), + [anon_sym_BSLASHglspl] = ACTIONS(5164), + [anon_sym_BSLASHGlspl] = ACTIONS(5164), + [anon_sym_BSLASHGLSpl] = ACTIONS(5164), + [anon_sym_BSLASHglsdisp] = ACTIONS(5164), + [anon_sym_BSLASHglslink] = ACTIONS(5164), + [anon_sym_BSLASHglstext] = ACTIONS(5164), + [anon_sym_BSLASHGlstext] = ACTIONS(5164), + [anon_sym_BSLASHGLStext] = ACTIONS(5164), + [anon_sym_BSLASHglsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5164), + [anon_sym_BSLASHglsplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSplural] = ACTIONS(5164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHglsname] = ACTIONS(5164), + [anon_sym_BSLASHGlsname] = ACTIONS(5164), + [anon_sym_BSLASHGLSname] = ACTIONS(5164), + [anon_sym_BSLASHglssymbol] = ACTIONS(5164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5164), + [anon_sym_BSLASHglsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5164), + [anon_sym_BSLASHglsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5164), + [anon_sym_BSLASHglsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5164), + [anon_sym_BSLASHglsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5164), + [anon_sym_BSLASHglsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5164), + [anon_sym_BSLASHnewacronym] = ACTIONS(5164), + [anon_sym_BSLASHacrshort] = ACTIONS(5164), + [anon_sym_BSLASHAcrshort] = ACTIONS(5164), + [anon_sym_BSLASHACRshort] = ACTIONS(5164), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5164), + [anon_sym_BSLASHacrlong] = ACTIONS(5164), + [anon_sym_BSLASHAcrlong] = ACTIONS(5164), + [anon_sym_BSLASHACRlong] = ACTIONS(5164), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5164), + [anon_sym_BSLASHacrfull] = ACTIONS(5164), + [anon_sym_BSLASHAcrfull] = ACTIONS(5164), + [anon_sym_BSLASHACRfull] = ACTIONS(5164), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5164), + [anon_sym_BSLASHacs] = ACTIONS(5164), + [anon_sym_BSLASHAcs] = ACTIONS(5164), + [anon_sym_BSLASHacsp] = ACTIONS(5164), + [anon_sym_BSLASHAcsp] = ACTIONS(5164), + [anon_sym_BSLASHacl] = ACTIONS(5164), + [anon_sym_BSLASHAcl] = ACTIONS(5164), + [anon_sym_BSLASHaclp] = ACTIONS(5164), + [anon_sym_BSLASHAclp] = ACTIONS(5164), + [anon_sym_BSLASHacf] = ACTIONS(5164), + [anon_sym_BSLASHAcf] = ACTIONS(5164), + [anon_sym_BSLASHacfp] = ACTIONS(5164), + [anon_sym_BSLASHAcfp] = ACTIONS(5164), + [anon_sym_BSLASHac] = ACTIONS(5164), + [anon_sym_BSLASHAc] = ACTIONS(5164), + [anon_sym_BSLASHacp] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5164), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5164), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5164), + [anon_sym_BSLASHcolor] = ACTIONS(5164), + [anon_sym_BSLASHcolorbox] = ACTIONS(5164), + [anon_sym_BSLASHtextcolor] = ACTIONS(5164), + [anon_sym_BSLASHpagecolor] = ACTIONS(5164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5164), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5164), + [anon_sym_BSLASHtext] = ACTIONS(5164), + [anon_sym_BSLASHintertext] = ACTIONS(5164), + [anon_sym_shortintertext] = ACTIONS(5164), }, [738] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5089), - [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), + [ts_builtin_sym_end] = ACTIONS(5166), + [sym_command_name] = ACTIONS(5168), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_BSLASHpart] = ACTIONS(5168), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddpart] = ACTIONS(5168), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHchapter] = ACTIONS(5168), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddchap] = ACTIONS(5168), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsection] = ACTIONS(5168), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddsec] = ACTIONS(5168), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHparagraph] = ACTIONS(5168), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5168), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHitem] = ACTIONS(5168), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(5166), + [sym_word] = ACTIONS(5168), + [sym_placeholder] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym__] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_SQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(5168), + [anon_sym_BSLASHusepackage] = ACTIONS(5168), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5168), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5168), + [anon_sym_BSLASHinclude] = ACTIONS(5168), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5168), + [anon_sym_BSLASHinput] = ACTIONS(5168), + [anon_sym_BSLASHsubfile] = ACTIONS(5168), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5168), + [anon_sym_BSLASHbibliography] = ACTIONS(5168), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5168), + [anon_sym_BSLASHincludesvg] = ACTIONS(5168), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5168), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5168), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5168), + [anon_sym_BSLASHimport] = ACTIONS(5168), + [anon_sym_BSLASHsubimport] = ACTIONS(5168), + [anon_sym_BSLASHinputfrom] = ACTIONS(5168), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5168), + [anon_sym_BSLASHincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(5168), + [anon_sym_BSLASHcite] = ACTIONS(5168), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCite] = ACTIONS(5168), + [anon_sym_BSLASHnocite] = ACTIONS(5168), + [anon_sym_BSLASHcitet] = ACTIONS(5168), + [anon_sym_BSLASHcitep] = ACTIONS(5168), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteauthor] = ACTIONS(5168), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5168), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitetitle] = ACTIONS(5168), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteyear] = ACTIONS(5168), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitedate] = ACTIONS(5168), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteurl] = ACTIONS(5168), + [anon_sym_BSLASHfullcite] = ACTIONS(5168), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5168), + [anon_sym_BSLASHcitealt] = ACTIONS(5168), + [anon_sym_BSLASHcitealp] = ACTIONS(5168), + [anon_sym_BSLASHcitetext] = ACTIONS(5168), + [anon_sym_BSLASHparencite] = ACTIONS(5168), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHParencite] = ACTIONS(5168), + [anon_sym_BSLASHfootcite] = ACTIONS(5168), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5168), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5168), + [anon_sym_BSLASHtextcite] = ACTIONS(5168), + [anon_sym_BSLASHTextcite] = ACTIONS(5168), + [anon_sym_BSLASHsmartcite] = ACTIONS(5168), + [anon_sym_BSLASHSmartcite] = ACTIONS(5168), + [anon_sym_BSLASHsupercite] = ACTIONS(5168), + [anon_sym_BSLASHautocite] = ACTIONS(5168), + [anon_sym_BSLASHAutocite] = ACTIONS(5168), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHvolcite] = ACTIONS(5168), + [anon_sym_BSLASHVolcite] = ACTIONS(5168), + [anon_sym_BSLASHpvolcite] = ACTIONS(5168), + [anon_sym_BSLASHPvolcite] = ACTIONS(5168), + [anon_sym_BSLASHfvolcite] = ACTIONS(5168), + [anon_sym_BSLASHftvolcite] = ACTIONS(5168), + [anon_sym_BSLASHsvolcite] = ACTIONS(5168), + [anon_sym_BSLASHSvolcite] = ACTIONS(5168), + [anon_sym_BSLASHtvolcite] = ACTIONS(5168), + [anon_sym_BSLASHTvolcite] = ACTIONS(5168), + [anon_sym_BSLASHavolcite] = ACTIONS(5168), + [anon_sym_BSLASHAvolcite] = ACTIONS(5168), + [anon_sym_BSLASHnotecite] = ACTIONS(5168), + [anon_sym_BSLASHNotecite] = ACTIONS(5168), + [anon_sym_BSLASHpnotecite] = ACTIONS(5168), + [anon_sym_BSLASHPnotecite] = ACTIONS(5168), + [anon_sym_BSLASHfnotecite] = ACTIONS(5168), + [anon_sym_BSLASHlabel] = ACTIONS(5168), + [anon_sym_BSLASHref] = ACTIONS(5168), + [anon_sym_BSLASHeqref] = ACTIONS(5168), + [anon_sym_BSLASHvref] = ACTIONS(5168), + [anon_sym_BSLASHVref] = ACTIONS(5168), + [anon_sym_BSLASHautoref] = ACTIONS(5168), + [anon_sym_BSLASHpageref] = ACTIONS(5168), + [anon_sym_BSLASHcref] = ACTIONS(5168), + [anon_sym_BSLASHCref] = ACTIONS(5168), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnameCref] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHlabelcref] = ACTIONS(5168), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCrefrange] = ACTIONS(5168), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnewlabel] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5168), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5168), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5168), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdef] = ACTIONS(5168), + [anon_sym_BSLASHlet] = ACTIONS(5168), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5168), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5168), + [anon_sym_BSLASHgls] = ACTIONS(5168), + [anon_sym_BSLASHGls] = ACTIONS(5168), + [anon_sym_BSLASHGLS] = ACTIONS(5168), + [anon_sym_BSLASHglspl] = ACTIONS(5168), + [anon_sym_BSLASHGlspl] = ACTIONS(5168), + [anon_sym_BSLASHGLSpl] = ACTIONS(5168), + [anon_sym_BSLASHglsdisp] = ACTIONS(5168), + [anon_sym_BSLASHglslink] = ACTIONS(5168), + [anon_sym_BSLASHglstext] = ACTIONS(5168), + [anon_sym_BSLASHGlstext] = ACTIONS(5168), + [anon_sym_BSLASHGLStext] = ACTIONS(5168), + [anon_sym_BSLASHglsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5168), + [anon_sym_BSLASHglsplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSplural] = ACTIONS(5168), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHglsname] = ACTIONS(5168), + [anon_sym_BSLASHGlsname] = ACTIONS(5168), + [anon_sym_BSLASHGLSname] = ACTIONS(5168), + [anon_sym_BSLASHglssymbol] = ACTIONS(5168), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5168), + [anon_sym_BSLASHglsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5168), + [anon_sym_BSLASHglsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5168), + [anon_sym_BSLASHglsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5168), + [anon_sym_BSLASHglsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5168), + [anon_sym_BSLASHglsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5168), + [anon_sym_BSLASHnewacronym] = ACTIONS(5168), + [anon_sym_BSLASHacrshort] = ACTIONS(5168), + [anon_sym_BSLASHAcrshort] = ACTIONS(5168), + [anon_sym_BSLASHACRshort] = ACTIONS(5168), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5168), + [anon_sym_BSLASHacrlong] = ACTIONS(5168), + [anon_sym_BSLASHAcrlong] = ACTIONS(5168), + [anon_sym_BSLASHACRlong] = ACTIONS(5168), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5168), + [anon_sym_BSLASHacrfull] = ACTIONS(5168), + [anon_sym_BSLASHAcrfull] = ACTIONS(5168), + [anon_sym_BSLASHACRfull] = ACTIONS(5168), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5168), + [anon_sym_BSLASHacs] = ACTIONS(5168), + [anon_sym_BSLASHAcs] = ACTIONS(5168), + [anon_sym_BSLASHacsp] = ACTIONS(5168), + [anon_sym_BSLASHAcsp] = ACTIONS(5168), + [anon_sym_BSLASHacl] = ACTIONS(5168), + [anon_sym_BSLASHAcl] = ACTIONS(5168), + [anon_sym_BSLASHaclp] = ACTIONS(5168), + [anon_sym_BSLASHAclp] = ACTIONS(5168), + [anon_sym_BSLASHacf] = ACTIONS(5168), + [anon_sym_BSLASHAcf] = ACTIONS(5168), + [anon_sym_BSLASHacfp] = ACTIONS(5168), + [anon_sym_BSLASHAcfp] = ACTIONS(5168), + [anon_sym_BSLASHac] = ACTIONS(5168), + [anon_sym_BSLASHAc] = ACTIONS(5168), + [anon_sym_BSLASHacp] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5168), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5168), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5168), + [anon_sym_BSLASHcolor] = ACTIONS(5168), + [anon_sym_BSLASHcolorbox] = ACTIONS(5168), + [anon_sym_BSLASHtextcolor] = ACTIONS(5168), + [anon_sym_BSLASHpagecolor] = ACTIONS(5168), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5168), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5168), + [anon_sym_BSLASHtext] = ACTIONS(5168), + [anon_sym_BSLASHintertext] = ACTIONS(5168), + [anon_sym_shortintertext] = ACTIONS(5168), }, [739] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5093), - [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), + [ts_builtin_sym_end] = ACTIONS(5170), + [sym_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_BSLASHpart] = ACTIONS(5172), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddpart] = ACTIONS(5172), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHchapter] = ACTIONS(5172), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddchap] = ACTIONS(5172), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsection] = ACTIONS(5172), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddsec] = ACTIONS(5172), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHparagraph] = ACTIONS(5172), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5172), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHitem] = ACTIONS(5172), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_RBRACE] = ACTIONS(5170), + [sym_word] = ACTIONS(5172), + [sym_placeholder] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym__] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5172), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_SQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5170), + [anon_sym_BSLASHbegin] = ACTIONS(5172), + [anon_sym_BSLASHusepackage] = ACTIONS(5172), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5172), + [anon_sym_BSLASHinclude] = ACTIONS(5172), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5172), + [anon_sym_BSLASHinput] = ACTIONS(5172), + [anon_sym_BSLASHsubfile] = ACTIONS(5172), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5172), + [anon_sym_BSLASHbibliography] = ACTIONS(5172), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5172), + [anon_sym_BSLASHincludesvg] = ACTIONS(5172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5172), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5172), + [anon_sym_BSLASHimport] = ACTIONS(5172), + [anon_sym_BSLASHsubimport] = ACTIONS(5172), + [anon_sym_BSLASHinputfrom] = ACTIONS(5172), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5172), + [anon_sym_BSLASHincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHcaption] = ACTIONS(5172), + [anon_sym_BSLASHcite] = ACTIONS(5172), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCite] = ACTIONS(5172), + [anon_sym_BSLASHnocite] = ACTIONS(5172), + [anon_sym_BSLASHcitet] = ACTIONS(5172), + [anon_sym_BSLASHcitep] = ACTIONS(5172), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteauthor] = ACTIONS(5172), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5172), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitetitle] = ACTIONS(5172), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteyear] = ACTIONS(5172), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitedate] = ACTIONS(5172), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteurl] = ACTIONS(5172), + [anon_sym_BSLASHfullcite] = ACTIONS(5172), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5172), + [anon_sym_BSLASHcitealt] = ACTIONS(5172), + [anon_sym_BSLASHcitealp] = ACTIONS(5172), + [anon_sym_BSLASHcitetext] = ACTIONS(5172), + [anon_sym_BSLASHparencite] = ACTIONS(5172), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHParencite] = ACTIONS(5172), + [anon_sym_BSLASHfootcite] = ACTIONS(5172), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5172), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5172), + [anon_sym_BSLASHtextcite] = ACTIONS(5172), + [anon_sym_BSLASHTextcite] = ACTIONS(5172), + [anon_sym_BSLASHsmartcite] = ACTIONS(5172), + [anon_sym_BSLASHSmartcite] = ACTIONS(5172), + [anon_sym_BSLASHsupercite] = ACTIONS(5172), + [anon_sym_BSLASHautocite] = ACTIONS(5172), + [anon_sym_BSLASHAutocite] = ACTIONS(5172), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHvolcite] = ACTIONS(5172), + [anon_sym_BSLASHVolcite] = ACTIONS(5172), + [anon_sym_BSLASHpvolcite] = ACTIONS(5172), + [anon_sym_BSLASHPvolcite] = ACTIONS(5172), + [anon_sym_BSLASHfvolcite] = ACTIONS(5172), + [anon_sym_BSLASHftvolcite] = ACTIONS(5172), + [anon_sym_BSLASHsvolcite] = ACTIONS(5172), + [anon_sym_BSLASHSvolcite] = ACTIONS(5172), + [anon_sym_BSLASHtvolcite] = ACTIONS(5172), + [anon_sym_BSLASHTvolcite] = ACTIONS(5172), + [anon_sym_BSLASHavolcite] = ACTIONS(5172), + [anon_sym_BSLASHAvolcite] = ACTIONS(5172), + [anon_sym_BSLASHnotecite] = ACTIONS(5172), + [anon_sym_BSLASHNotecite] = ACTIONS(5172), + [anon_sym_BSLASHpnotecite] = ACTIONS(5172), + [anon_sym_BSLASHPnotecite] = ACTIONS(5172), + [anon_sym_BSLASHfnotecite] = ACTIONS(5172), + [anon_sym_BSLASHlabel] = ACTIONS(5172), + [anon_sym_BSLASHref] = ACTIONS(5172), + [anon_sym_BSLASHeqref] = ACTIONS(5172), + [anon_sym_BSLASHvref] = ACTIONS(5172), + [anon_sym_BSLASHVref] = ACTIONS(5172), + [anon_sym_BSLASHautoref] = ACTIONS(5172), + [anon_sym_BSLASHpageref] = ACTIONS(5172), + [anon_sym_BSLASHcref] = ACTIONS(5172), + [anon_sym_BSLASHCref] = ACTIONS(5172), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnameCref] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHlabelcref] = ACTIONS(5172), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCrefrange] = ACTIONS(5172), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnewlabel] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5172), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5172), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5172), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdef] = ACTIONS(5172), + [anon_sym_BSLASHlet] = ACTIONS(5172), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5172), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5172), + [anon_sym_BSLASHgls] = ACTIONS(5172), + [anon_sym_BSLASHGls] = ACTIONS(5172), + [anon_sym_BSLASHGLS] = ACTIONS(5172), + [anon_sym_BSLASHglspl] = ACTIONS(5172), + [anon_sym_BSLASHGlspl] = ACTIONS(5172), + [anon_sym_BSLASHGLSpl] = ACTIONS(5172), + [anon_sym_BSLASHglsdisp] = ACTIONS(5172), + [anon_sym_BSLASHglslink] = ACTIONS(5172), + [anon_sym_BSLASHglstext] = ACTIONS(5172), + [anon_sym_BSLASHGlstext] = ACTIONS(5172), + [anon_sym_BSLASHGLStext] = ACTIONS(5172), + [anon_sym_BSLASHglsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5172), + [anon_sym_BSLASHglsplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSplural] = ACTIONS(5172), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHglsname] = ACTIONS(5172), + [anon_sym_BSLASHGlsname] = ACTIONS(5172), + [anon_sym_BSLASHGLSname] = ACTIONS(5172), + [anon_sym_BSLASHglssymbol] = ACTIONS(5172), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5172), + [anon_sym_BSLASHglsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5172), + [anon_sym_BSLASHglsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5172), + [anon_sym_BSLASHglsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5172), + [anon_sym_BSLASHglsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5172), + [anon_sym_BSLASHglsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5172), + [anon_sym_BSLASHnewacronym] = ACTIONS(5172), + [anon_sym_BSLASHacrshort] = ACTIONS(5172), + [anon_sym_BSLASHAcrshort] = ACTIONS(5172), + [anon_sym_BSLASHACRshort] = ACTIONS(5172), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5172), + [anon_sym_BSLASHacrlong] = ACTIONS(5172), + [anon_sym_BSLASHAcrlong] = ACTIONS(5172), + [anon_sym_BSLASHACRlong] = ACTIONS(5172), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5172), + [anon_sym_BSLASHacrfull] = ACTIONS(5172), + [anon_sym_BSLASHAcrfull] = ACTIONS(5172), + [anon_sym_BSLASHACRfull] = ACTIONS(5172), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5172), + [anon_sym_BSLASHacs] = ACTIONS(5172), + [anon_sym_BSLASHAcs] = ACTIONS(5172), + [anon_sym_BSLASHacsp] = ACTIONS(5172), + [anon_sym_BSLASHAcsp] = ACTIONS(5172), + [anon_sym_BSLASHacl] = ACTIONS(5172), + [anon_sym_BSLASHAcl] = ACTIONS(5172), + [anon_sym_BSLASHaclp] = ACTIONS(5172), + [anon_sym_BSLASHAclp] = ACTIONS(5172), + [anon_sym_BSLASHacf] = ACTIONS(5172), + [anon_sym_BSLASHAcf] = ACTIONS(5172), + [anon_sym_BSLASHacfp] = ACTIONS(5172), + [anon_sym_BSLASHAcfp] = ACTIONS(5172), + [anon_sym_BSLASHac] = ACTIONS(5172), + [anon_sym_BSLASHAc] = ACTIONS(5172), + [anon_sym_BSLASHacp] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5172), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5172), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5172), + [anon_sym_BSLASHcolor] = ACTIONS(5172), + [anon_sym_BSLASHcolorbox] = ACTIONS(5172), + [anon_sym_BSLASHtextcolor] = ACTIONS(5172), + [anon_sym_BSLASHpagecolor] = ACTIONS(5172), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5172), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5172), + [anon_sym_BSLASHtext] = ACTIONS(5172), + [anon_sym_BSLASHintertext] = ACTIONS(5172), + [anon_sym_shortintertext] = ACTIONS(5172), }, [740] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5097), - [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), + [ts_builtin_sym_end] = ACTIONS(5174), + [sym_command_name] = ACTIONS(5176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_BSLASHpart] = ACTIONS(5176), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddpart] = ACTIONS(5176), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHchapter] = ACTIONS(5176), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddchap] = ACTIONS(5176), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsection] = ACTIONS(5176), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddsec] = ACTIONS(5176), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHparagraph] = ACTIONS(5176), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5176), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHitem] = ACTIONS(5176), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5174), + [anon_sym_RBRACE] = ACTIONS(5174), + [sym_word] = ACTIONS(5176), + [sym_placeholder] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym__] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_SQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5176), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5174), + [anon_sym_BSLASHbegin] = ACTIONS(5176), + [anon_sym_BSLASHusepackage] = ACTIONS(5176), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5176), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5176), + [anon_sym_BSLASHinclude] = ACTIONS(5176), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5176), + [anon_sym_BSLASHinput] = ACTIONS(5176), + [anon_sym_BSLASHsubfile] = ACTIONS(5176), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5176), + [anon_sym_BSLASHbibliography] = ACTIONS(5176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5176), + [anon_sym_BSLASHincludesvg] = ACTIONS(5176), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5176), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5176), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5176), + [anon_sym_BSLASHimport] = ACTIONS(5176), + [anon_sym_BSLASHsubimport] = ACTIONS(5176), + [anon_sym_BSLASHinputfrom] = ACTIONS(5176), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), + [anon_sym_BSLASHincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHcaption] = ACTIONS(5176), + [anon_sym_BSLASHcite] = ACTIONS(5176), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCite] = ACTIONS(5176), + [anon_sym_BSLASHnocite] = ACTIONS(5176), + [anon_sym_BSLASHcitet] = ACTIONS(5176), + [anon_sym_BSLASHcitep] = ACTIONS(5176), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteauthor] = ACTIONS(5176), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5176), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitetitle] = ACTIONS(5176), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteyear] = ACTIONS(5176), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitedate] = ACTIONS(5176), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteurl] = ACTIONS(5176), + [anon_sym_BSLASHfullcite] = ACTIONS(5176), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5176), + [anon_sym_BSLASHcitealt] = ACTIONS(5176), + [anon_sym_BSLASHcitealp] = ACTIONS(5176), + [anon_sym_BSLASHcitetext] = ACTIONS(5176), + [anon_sym_BSLASHparencite] = ACTIONS(5176), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHParencite] = ACTIONS(5176), + [anon_sym_BSLASHfootcite] = ACTIONS(5176), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5176), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5176), + [anon_sym_BSLASHtextcite] = ACTIONS(5176), + [anon_sym_BSLASHTextcite] = ACTIONS(5176), + [anon_sym_BSLASHsmartcite] = ACTIONS(5176), + [anon_sym_BSLASHSmartcite] = ACTIONS(5176), + [anon_sym_BSLASHsupercite] = ACTIONS(5176), + [anon_sym_BSLASHautocite] = ACTIONS(5176), + [anon_sym_BSLASHAutocite] = ACTIONS(5176), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHvolcite] = ACTIONS(5176), + [anon_sym_BSLASHVolcite] = ACTIONS(5176), + [anon_sym_BSLASHpvolcite] = ACTIONS(5176), + [anon_sym_BSLASHPvolcite] = ACTIONS(5176), + [anon_sym_BSLASHfvolcite] = ACTIONS(5176), + [anon_sym_BSLASHftvolcite] = ACTIONS(5176), + [anon_sym_BSLASHsvolcite] = ACTIONS(5176), + [anon_sym_BSLASHSvolcite] = ACTIONS(5176), + [anon_sym_BSLASHtvolcite] = ACTIONS(5176), + [anon_sym_BSLASHTvolcite] = ACTIONS(5176), + [anon_sym_BSLASHavolcite] = ACTIONS(5176), + [anon_sym_BSLASHAvolcite] = ACTIONS(5176), + [anon_sym_BSLASHnotecite] = ACTIONS(5176), + [anon_sym_BSLASHNotecite] = ACTIONS(5176), + [anon_sym_BSLASHpnotecite] = ACTIONS(5176), + [anon_sym_BSLASHPnotecite] = ACTIONS(5176), + [anon_sym_BSLASHfnotecite] = ACTIONS(5176), + [anon_sym_BSLASHlabel] = ACTIONS(5176), + [anon_sym_BSLASHref] = ACTIONS(5176), + [anon_sym_BSLASHeqref] = ACTIONS(5176), + [anon_sym_BSLASHvref] = ACTIONS(5176), + [anon_sym_BSLASHVref] = ACTIONS(5176), + [anon_sym_BSLASHautoref] = ACTIONS(5176), + [anon_sym_BSLASHpageref] = ACTIONS(5176), + [anon_sym_BSLASHcref] = ACTIONS(5176), + [anon_sym_BSLASHCref] = ACTIONS(5176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnameCref] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHlabelcref] = ACTIONS(5176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCrefrange] = ACTIONS(5176), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnewlabel] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5176), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5176), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5176), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdef] = ACTIONS(5176), + [anon_sym_BSLASHlet] = ACTIONS(5176), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5176), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5176), + [anon_sym_BSLASHgls] = ACTIONS(5176), + [anon_sym_BSLASHGls] = ACTIONS(5176), + [anon_sym_BSLASHGLS] = ACTIONS(5176), + [anon_sym_BSLASHglspl] = ACTIONS(5176), + [anon_sym_BSLASHGlspl] = ACTIONS(5176), + [anon_sym_BSLASHGLSpl] = ACTIONS(5176), + [anon_sym_BSLASHglsdisp] = ACTIONS(5176), + [anon_sym_BSLASHglslink] = ACTIONS(5176), + [anon_sym_BSLASHglstext] = ACTIONS(5176), + [anon_sym_BSLASHGlstext] = ACTIONS(5176), + [anon_sym_BSLASHGLStext] = ACTIONS(5176), + [anon_sym_BSLASHglsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5176), + [anon_sym_BSLASHglsplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSplural] = ACTIONS(5176), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHglsname] = ACTIONS(5176), + [anon_sym_BSLASHGlsname] = ACTIONS(5176), + [anon_sym_BSLASHGLSname] = ACTIONS(5176), + [anon_sym_BSLASHglssymbol] = ACTIONS(5176), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5176), + [anon_sym_BSLASHglsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5176), + [anon_sym_BSLASHglsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5176), + [anon_sym_BSLASHglsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5176), + [anon_sym_BSLASHglsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5176), + [anon_sym_BSLASHglsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5176), + [anon_sym_BSLASHnewacronym] = ACTIONS(5176), + [anon_sym_BSLASHacrshort] = ACTIONS(5176), + [anon_sym_BSLASHAcrshort] = ACTIONS(5176), + [anon_sym_BSLASHACRshort] = ACTIONS(5176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5176), + [anon_sym_BSLASHacrlong] = ACTIONS(5176), + [anon_sym_BSLASHAcrlong] = ACTIONS(5176), + [anon_sym_BSLASHACRlong] = ACTIONS(5176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5176), + [anon_sym_BSLASHacrfull] = ACTIONS(5176), + [anon_sym_BSLASHAcrfull] = ACTIONS(5176), + [anon_sym_BSLASHACRfull] = ACTIONS(5176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5176), + [anon_sym_BSLASHacs] = ACTIONS(5176), + [anon_sym_BSLASHAcs] = ACTIONS(5176), + [anon_sym_BSLASHacsp] = ACTIONS(5176), + [anon_sym_BSLASHAcsp] = ACTIONS(5176), + [anon_sym_BSLASHacl] = ACTIONS(5176), + [anon_sym_BSLASHAcl] = ACTIONS(5176), + [anon_sym_BSLASHaclp] = ACTIONS(5176), + [anon_sym_BSLASHAclp] = ACTIONS(5176), + [anon_sym_BSLASHacf] = ACTIONS(5176), + [anon_sym_BSLASHAcf] = ACTIONS(5176), + [anon_sym_BSLASHacfp] = ACTIONS(5176), + [anon_sym_BSLASHAcfp] = ACTIONS(5176), + [anon_sym_BSLASHac] = ACTIONS(5176), + [anon_sym_BSLASHAc] = ACTIONS(5176), + [anon_sym_BSLASHacp] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5176), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5176), + [anon_sym_BSLASHcolor] = ACTIONS(5176), + [anon_sym_BSLASHcolorbox] = ACTIONS(5176), + [anon_sym_BSLASHtextcolor] = ACTIONS(5176), + [anon_sym_BSLASHpagecolor] = ACTIONS(5176), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5176), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5176), + [anon_sym_BSLASHtext] = ACTIONS(5176), + [anon_sym_BSLASHintertext] = ACTIONS(5176), + [anon_sym_shortintertext] = ACTIONS(5176), }, [741] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5101), - [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), + [ts_builtin_sym_end] = ACTIONS(5178), + [sym_command_name] = ACTIONS(5180), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_BSLASHpart] = ACTIONS(5180), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddpart] = ACTIONS(5180), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHchapter] = ACTIONS(5180), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddchap] = ACTIONS(5180), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsection] = ACTIONS(5180), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddsec] = ACTIONS(5180), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHparagraph] = ACTIONS(5180), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5180), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHitem] = ACTIONS(5180), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5178), + [sym_word] = ACTIONS(5180), + [sym_placeholder] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym__] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_SQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5178), + [anon_sym_BSLASHbegin] = ACTIONS(5180), + [anon_sym_BSLASHusepackage] = ACTIONS(5180), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5180), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5180), + [anon_sym_BSLASHinclude] = ACTIONS(5180), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5180), + [anon_sym_BSLASHinput] = ACTIONS(5180), + [anon_sym_BSLASHsubfile] = ACTIONS(5180), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5180), + [anon_sym_BSLASHbibliography] = ACTIONS(5180), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5180), + [anon_sym_BSLASHincludesvg] = ACTIONS(5180), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5180), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5180), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5180), + [anon_sym_BSLASHimport] = ACTIONS(5180), + [anon_sym_BSLASHsubimport] = ACTIONS(5180), + [anon_sym_BSLASHinputfrom] = ACTIONS(5180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5180), + [anon_sym_BSLASHincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHcaption] = ACTIONS(5180), + [anon_sym_BSLASHcite] = ACTIONS(5180), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCite] = ACTIONS(5180), + [anon_sym_BSLASHnocite] = ACTIONS(5180), + [anon_sym_BSLASHcitet] = ACTIONS(5180), + [anon_sym_BSLASHcitep] = ACTIONS(5180), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteauthor] = ACTIONS(5180), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5180), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitetitle] = ACTIONS(5180), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteyear] = ACTIONS(5180), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitedate] = ACTIONS(5180), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteurl] = ACTIONS(5180), + [anon_sym_BSLASHfullcite] = ACTIONS(5180), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5180), + [anon_sym_BSLASHcitealt] = ACTIONS(5180), + [anon_sym_BSLASHcitealp] = ACTIONS(5180), + [anon_sym_BSLASHcitetext] = ACTIONS(5180), + [anon_sym_BSLASHparencite] = ACTIONS(5180), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHParencite] = ACTIONS(5180), + [anon_sym_BSLASHfootcite] = ACTIONS(5180), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5180), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5180), + [anon_sym_BSLASHtextcite] = ACTIONS(5180), + [anon_sym_BSLASHTextcite] = ACTIONS(5180), + [anon_sym_BSLASHsmartcite] = ACTIONS(5180), + [anon_sym_BSLASHSmartcite] = ACTIONS(5180), + [anon_sym_BSLASHsupercite] = ACTIONS(5180), + [anon_sym_BSLASHautocite] = ACTIONS(5180), + [anon_sym_BSLASHAutocite] = ACTIONS(5180), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHvolcite] = ACTIONS(5180), + [anon_sym_BSLASHVolcite] = ACTIONS(5180), + [anon_sym_BSLASHpvolcite] = ACTIONS(5180), + [anon_sym_BSLASHPvolcite] = ACTIONS(5180), + [anon_sym_BSLASHfvolcite] = ACTIONS(5180), + [anon_sym_BSLASHftvolcite] = ACTIONS(5180), + [anon_sym_BSLASHsvolcite] = ACTIONS(5180), + [anon_sym_BSLASHSvolcite] = ACTIONS(5180), + [anon_sym_BSLASHtvolcite] = ACTIONS(5180), + [anon_sym_BSLASHTvolcite] = ACTIONS(5180), + [anon_sym_BSLASHavolcite] = ACTIONS(5180), + [anon_sym_BSLASHAvolcite] = ACTIONS(5180), + [anon_sym_BSLASHnotecite] = ACTIONS(5180), + [anon_sym_BSLASHNotecite] = ACTIONS(5180), + [anon_sym_BSLASHpnotecite] = ACTIONS(5180), + [anon_sym_BSLASHPnotecite] = ACTIONS(5180), + [anon_sym_BSLASHfnotecite] = ACTIONS(5180), + [anon_sym_BSLASHlabel] = ACTIONS(5180), + [anon_sym_BSLASHref] = ACTIONS(5180), + [anon_sym_BSLASHeqref] = ACTIONS(5180), + [anon_sym_BSLASHvref] = ACTIONS(5180), + [anon_sym_BSLASHVref] = ACTIONS(5180), + [anon_sym_BSLASHautoref] = ACTIONS(5180), + [anon_sym_BSLASHpageref] = ACTIONS(5180), + [anon_sym_BSLASHcref] = ACTIONS(5180), + [anon_sym_BSLASHCref] = ACTIONS(5180), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnameCref] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHlabelcref] = ACTIONS(5180), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCrefrange] = ACTIONS(5180), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnewlabel] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5180), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5180), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5180), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdef] = ACTIONS(5180), + [anon_sym_BSLASHlet] = ACTIONS(5180), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5180), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5180), + [anon_sym_BSLASHgls] = ACTIONS(5180), + [anon_sym_BSLASHGls] = ACTIONS(5180), + [anon_sym_BSLASHGLS] = ACTIONS(5180), + [anon_sym_BSLASHglspl] = ACTIONS(5180), + [anon_sym_BSLASHGlspl] = ACTIONS(5180), + [anon_sym_BSLASHGLSpl] = ACTIONS(5180), + [anon_sym_BSLASHglsdisp] = ACTIONS(5180), + [anon_sym_BSLASHglslink] = ACTIONS(5180), + [anon_sym_BSLASHglstext] = ACTIONS(5180), + [anon_sym_BSLASHGlstext] = ACTIONS(5180), + [anon_sym_BSLASHGLStext] = ACTIONS(5180), + [anon_sym_BSLASHglsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5180), + [anon_sym_BSLASHglsplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSplural] = ACTIONS(5180), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHglsname] = ACTIONS(5180), + [anon_sym_BSLASHGlsname] = ACTIONS(5180), + [anon_sym_BSLASHGLSname] = ACTIONS(5180), + [anon_sym_BSLASHglssymbol] = ACTIONS(5180), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5180), + [anon_sym_BSLASHglsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5180), + [anon_sym_BSLASHglsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5180), + [anon_sym_BSLASHglsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5180), + [anon_sym_BSLASHglsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5180), + [anon_sym_BSLASHglsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5180), + [anon_sym_BSLASHnewacronym] = ACTIONS(5180), + [anon_sym_BSLASHacrshort] = ACTIONS(5180), + [anon_sym_BSLASHAcrshort] = ACTIONS(5180), + [anon_sym_BSLASHACRshort] = ACTIONS(5180), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5180), + [anon_sym_BSLASHacrlong] = ACTIONS(5180), + [anon_sym_BSLASHAcrlong] = ACTIONS(5180), + [anon_sym_BSLASHACRlong] = ACTIONS(5180), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5180), + [anon_sym_BSLASHacrfull] = ACTIONS(5180), + [anon_sym_BSLASHAcrfull] = ACTIONS(5180), + [anon_sym_BSLASHACRfull] = ACTIONS(5180), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5180), + [anon_sym_BSLASHacs] = ACTIONS(5180), + [anon_sym_BSLASHAcs] = ACTIONS(5180), + [anon_sym_BSLASHacsp] = ACTIONS(5180), + [anon_sym_BSLASHAcsp] = ACTIONS(5180), + [anon_sym_BSLASHacl] = ACTIONS(5180), + [anon_sym_BSLASHAcl] = ACTIONS(5180), + [anon_sym_BSLASHaclp] = ACTIONS(5180), + [anon_sym_BSLASHAclp] = ACTIONS(5180), + [anon_sym_BSLASHacf] = ACTIONS(5180), + [anon_sym_BSLASHAcf] = ACTIONS(5180), + [anon_sym_BSLASHacfp] = ACTIONS(5180), + [anon_sym_BSLASHAcfp] = ACTIONS(5180), + [anon_sym_BSLASHac] = ACTIONS(5180), + [anon_sym_BSLASHAc] = ACTIONS(5180), + [anon_sym_BSLASHacp] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5180), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5180), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5180), + [anon_sym_BSLASHcolor] = ACTIONS(5180), + [anon_sym_BSLASHcolorbox] = ACTIONS(5180), + [anon_sym_BSLASHtextcolor] = ACTIONS(5180), + [anon_sym_BSLASHpagecolor] = ACTIONS(5180), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5180), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5180), + [anon_sym_BSLASHtext] = ACTIONS(5180), + [anon_sym_BSLASHintertext] = ACTIONS(5180), + [anon_sym_shortintertext] = ACTIONS(5180), }, [742] = { [sym_brack_group_text] = STATE(1184), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_BSLASHpart] = ACTIONS(4857), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddpart] = ACTIONS(4857), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHchapter] = ACTIONS(4857), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddchap] = ACTIONS(4857), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsection] = ACTIONS(4857), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddsec] = ACTIONS(4857), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHparagraph] = ACTIONS(4857), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHitem] = ACTIONS(4857), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASHbegin] = ACTIONS(4857), - [anon_sym_BSLASHend] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BSLASHpart] = ACTIONS(4936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddpart] = ACTIONS(4936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHchapter] = ACTIONS(4936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddchap] = ACTIONS(4936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsection] = ACTIONS(4936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddsec] = ACTIONS(4936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHparagraph] = ACTIONS(4936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHitem] = ACTIONS(4936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASHbegin] = ACTIONS(4936), + [anon_sym_BSLASHend] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [743] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5105), - [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), + [ts_builtin_sym_end] = ACTIONS(5182), + [sym_command_name] = ACTIONS(5184), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_BSLASHpart] = ACTIONS(5184), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddpart] = ACTIONS(5184), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHchapter] = ACTIONS(5184), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddchap] = ACTIONS(5184), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsection] = ACTIONS(5184), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddsec] = ACTIONS(5184), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHparagraph] = ACTIONS(5184), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5184), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHitem] = ACTIONS(5184), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [sym_word] = ACTIONS(5184), + [sym_placeholder] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym__] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5182), + [anon_sym_BSLASHbegin] = ACTIONS(5184), + [anon_sym_BSLASHusepackage] = ACTIONS(5184), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5184), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5184), + [anon_sym_BSLASHinclude] = ACTIONS(5184), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5184), + [anon_sym_BSLASHinput] = ACTIONS(5184), + [anon_sym_BSLASHsubfile] = ACTIONS(5184), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5184), + [anon_sym_BSLASHbibliography] = ACTIONS(5184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5184), + [anon_sym_BSLASHincludesvg] = ACTIONS(5184), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5184), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5184), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5184), + [anon_sym_BSLASHimport] = ACTIONS(5184), + [anon_sym_BSLASHsubimport] = ACTIONS(5184), + [anon_sym_BSLASHinputfrom] = ACTIONS(5184), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5184), + [anon_sym_BSLASHincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHcaption] = ACTIONS(5184), + [anon_sym_BSLASHcite] = ACTIONS(5184), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCite] = ACTIONS(5184), + [anon_sym_BSLASHnocite] = ACTIONS(5184), + [anon_sym_BSLASHcitet] = ACTIONS(5184), + [anon_sym_BSLASHcitep] = ACTIONS(5184), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteauthor] = ACTIONS(5184), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5184), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitetitle] = ACTIONS(5184), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteyear] = ACTIONS(5184), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitedate] = ACTIONS(5184), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteurl] = ACTIONS(5184), + [anon_sym_BSLASHfullcite] = ACTIONS(5184), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5184), + [anon_sym_BSLASHcitealt] = ACTIONS(5184), + [anon_sym_BSLASHcitealp] = ACTIONS(5184), + [anon_sym_BSLASHcitetext] = ACTIONS(5184), + [anon_sym_BSLASHparencite] = ACTIONS(5184), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHParencite] = ACTIONS(5184), + [anon_sym_BSLASHfootcite] = ACTIONS(5184), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5184), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5184), + [anon_sym_BSLASHtextcite] = ACTIONS(5184), + [anon_sym_BSLASHTextcite] = ACTIONS(5184), + [anon_sym_BSLASHsmartcite] = ACTIONS(5184), + [anon_sym_BSLASHSmartcite] = ACTIONS(5184), + [anon_sym_BSLASHsupercite] = ACTIONS(5184), + [anon_sym_BSLASHautocite] = ACTIONS(5184), + [anon_sym_BSLASHAutocite] = ACTIONS(5184), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHvolcite] = ACTIONS(5184), + [anon_sym_BSLASHVolcite] = ACTIONS(5184), + [anon_sym_BSLASHpvolcite] = ACTIONS(5184), + [anon_sym_BSLASHPvolcite] = ACTIONS(5184), + [anon_sym_BSLASHfvolcite] = ACTIONS(5184), + [anon_sym_BSLASHftvolcite] = ACTIONS(5184), + [anon_sym_BSLASHsvolcite] = ACTIONS(5184), + [anon_sym_BSLASHSvolcite] = ACTIONS(5184), + [anon_sym_BSLASHtvolcite] = ACTIONS(5184), + [anon_sym_BSLASHTvolcite] = ACTIONS(5184), + [anon_sym_BSLASHavolcite] = ACTIONS(5184), + [anon_sym_BSLASHAvolcite] = ACTIONS(5184), + [anon_sym_BSLASHnotecite] = ACTIONS(5184), + [anon_sym_BSLASHNotecite] = ACTIONS(5184), + [anon_sym_BSLASHpnotecite] = ACTIONS(5184), + [anon_sym_BSLASHPnotecite] = ACTIONS(5184), + [anon_sym_BSLASHfnotecite] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5184), + [anon_sym_BSLASHref] = ACTIONS(5184), + [anon_sym_BSLASHeqref] = ACTIONS(5184), + [anon_sym_BSLASHvref] = ACTIONS(5184), + [anon_sym_BSLASHVref] = ACTIONS(5184), + [anon_sym_BSLASHautoref] = ACTIONS(5184), + [anon_sym_BSLASHpageref] = ACTIONS(5184), + [anon_sym_BSLASHcref] = ACTIONS(5184), + [anon_sym_BSLASHCref] = ACTIONS(5184), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnameCref] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHlabelcref] = ACTIONS(5184), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCrefrange] = ACTIONS(5184), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnewlabel] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5184), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5184), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5184), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdef] = ACTIONS(5184), + [anon_sym_BSLASHlet] = ACTIONS(5184), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5184), + [anon_sym_BSLASHgls] = ACTIONS(5184), + [anon_sym_BSLASHGls] = ACTIONS(5184), + [anon_sym_BSLASHGLS] = ACTIONS(5184), + [anon_sym_BSLASHglspl] = ACTIONS(5184), + [anon_sym_BSLASHGlspl] = ACTIONS(5184), + [anon_sym_BSLASHGLSpl] = ACTIONS(5184), + [anon_sym_BSLASHglsdisp] = ACTIONS(5184), + [anon_sym_BSLASHglslink] = ACTIONS(5184), + [anon_sym_BSLASHglstext] = ACTIONS(5184), + [anon_sym_BSLASHGlstext] = ACTIONS(5184), + [anon_sym_BSLASHGLStext] = ACTIONS(5184), + [anon_sym_BSLASHglsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5184), + [anon_sym_BSLASHglsplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSplural] = ACTIONS(5184), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHglsname] = ACTIONS(5184), + [anon_sym_BSLASHGlsname] = ACTIONS(5184), + [anon_sym_BSLASHGLSname] = ACTIONS(5184), + [anon_sym_BSLASHglssymbol] = ACTIONS(5184), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5184), + [anon_sym_BSLASHglsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5184), + [anon_sym_BSLASHglsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5184), + [anon_sym_BSLASHglsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5184), + [anon_sym_BSLASHglsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5184), + [anon_sym_BSLASHglsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5184), + [anon_sym_BSLASHnewacronym] = ACTIONS(5184), + [anon_sym_BSLASHacrshort] = ACTIONS(5184), + [anon_sym_BSLASHAcrshort] = ACTIONS(5184), + [anon_sym_BSLASHACRshort] = ACTIONS(5184), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5184), + [anon_sym_BSLASHacrlong] = ACTIONS(5184), + [anon_sym_BSLASHAcrlong] = ACTIONS(5184), + [anon_sym_BSLASHACRlong] = ACTIONS(5184), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5184), + [anon_sym_BSLASHacrfull] = ACTIONS(5184), + [anon_sym_BSLASHAcrfull] = ACTIONS(5184), + [anon_sym_BSLASHACRfull] = ACTIONS(5184), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5184), + [anon_sym_BSLASHacs] = ACTIONS(5184), + [anon_sym_BSLASHAcs] = ACTIONS(5184), + [anon_sym_BSLASHacsp] = ACTIONS(5184), + [anon_sym_BSLASHAcsp] = ACTIONS(5184), + [anon_sym_BSLASHacl] = ACTIONS(5184), + [anon_sym_BSLASHAcl] = ACTIONS(5184), + [anon_sym_BSLASHaclp] = ACTIONS(5184), + [anon_sym_BSLASHAclp] = ACTIONS(5184), + [anon_sym_BSLASHacf] = ACTIONS(5184), + [anon_sym_BSLASHAcf] = ACTIONS(5184), + [anon_sym_BSLASHacfp] = ACTIONS(5184), + [anon_sym_BSLASHAcfp] = ACTIONS(5184), + [anon_sym_BSLASHac] = ACTIONS(5184), + [anon_sym_BSLASHAc] = ACTIONS(5184), + [anon_sym_BSLASHacp] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5184), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5184), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5184), + [anon_sym_BSLASHcolor] = ACTIONS(5184), + [anon_sym_BSLASHcolorbox] = ACTIONS(5184), + [anon_sym_BSLASHtextcolor] = ACTIONS(5184), + [anon_sym_BSLASHpagecolor] = ACTIONS(5184), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5184), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5184), + [anon_sym_BSLASHtext] = ACTIONS(5184), + [anon_sym_BSLASHintertext] = ACTIONS(5184), + [anon_sym_shortintertext] = ACTIONS(5184), }, [744] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5109), - [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), + [ts_builtin_sym_end] = ACTIONS(5186), + [sym_command_name] = ACTIONS(5188), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_BSLASHpart] = ACTIONS(5188), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddpart] = ACTIONS(5188), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHchapter] = ACTIONS(5188), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddchap] = ACTIONS(5188), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsection] = ACTIONS(5188), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddsec] = ACTIONS(5188), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHparagraph] = ACTIONS(5188), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5188), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHitem] = ACTIONS(5188), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [sym_word] = ACTIONS(5188), + [sym_placeholder] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym__] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_BANG] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_SQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5186), + [anon_sym_BSLASHbegin] = ACTIONS(5188), + [anon_sym_BSLASHusepackage] = ACTIONS(5188), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5188), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5188), + [anon_sym_BSLASHinclude] = ACTIONS(5188), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5188), + [anon_sym_BSLASHinput] = ACTIONS(5188), + [anon_sym_BSLASHsubfile] = ACTIONS(5188), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5188), + [anon_sym_BSLASHbibliography] = ACTIONS(5188), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5188), + [anon_sym_BSLASHincludesvg] = ACTIONS(5188), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5188), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5188), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5188), + [anon_sym_BSLASHimport] = ACTIONS(5188), + [anon_sym_BSLASHsubimport] = ACTIONS(5188), + [anon_sym_BSLASHinputfrom] = ACTIONS(5188), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5188), + [anon_sym_BSLASHincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHcaption] = ACTIONS(5188), + [anon_sym_BSLASHcite] = ACTIONS(5188), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCite] = ACTIONS(5188), + [anon_sym_BSLASHnocite] = ACTIONS(5188), + [anon_sym_BSLASHcitet] = ACTIONS(5188), + [anon_sym_BSLASHcitep] = ACTIONS(5188), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteauthor] = ACTIONS(5188), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5188), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitetitle] = ACTIONS(5188), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteyear] = ACTIONS(5188), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitedate] = ACTIONS(5188), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteurl] = ACTIONS(5188), + [anon_sym_BSLASHfullcite] = ACTIONS(5188), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5188), + [anon_sym_BSLASHcitealt] = ACTIONS(5188), + [anon_sym_BSLASHcitealp] = ACTIONS(5188), + [anon_sym_BSLASHcitetext] = ACTIONS(5188), + [anon_sym_BSLASHparencite] = ACTIONS(5188), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHParencite] = ACTIONS(5188), + [anon_sym_BSLASHfootcite] = ACTIONS(5188), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5188), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5188), + [anon_sym_BSLASHtextcite] = ACTIONS(5188), + [anon_sym_BSLASHTextcite] = ACTIONS(5188), + [anon_sym_BSLASHsmartcite] = ACTIONS(5188), + [anon_sym_BSLASHSmartcite] = ACTIONS(5188), + [anon_sym_BSLASHsupercite] = ACTIONS(5188), + [anon_sym_BSLASHautocite] = ACTIONS(5188), + [anon_sym_BSLASHAutocite] = ACTIONS(5188), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHvolcite] = ACTIONS(5188), + [anon_sym_BSLASHVolcite] = ACTIONS(5188), + [anon_sym_BSLASHpvolcite] = ACTIONS(5188), + [anon_sym_BSLASHPvolcite] = ACTIONS(5188), + [anon_sym_BSLASHfvolcite] = ACTIONS(5188), + [anon_sym_BSLASHftvolcite] = ACTIONS(5188), + [anon_sym_BSLASHsvolcite] = ACTIONS(5188), + [anon_sym_BSLASHSvolcite] = ACTIONS(5188), + [anon_sym_BSLASHtvolcite] = ACTIONS(5188), + [anon_sym_BSLASHTvolcite] = ACTIONS(5188), + [anon_sym_BSLASHavolcite] = ACTIONS(5188), + [anon_sym_BSLASHAvolcite] = ACTIONS(5188), + [anon_sym_BSLASHnotecite] = ACTIONS(5188), + [anon_sym_BSLASHNotecite] = ACTIONS(5188), + [anon_sym_BSLASHpnotecite] = ACTIONS(5188), + [anon_sym_BSLASHPnotecite] = ACTIONS(5188), + [anon_sym_BSLASHfnotecite] = ACTIONS(5188), + [anon_sym_BSLASHlabel] = ACTIONS(5188), + [anon_sym_BSLASHref] = ACTIONS(5188), + [anon_sym_BSLASHeqref] = ACTIONS(5188), + [anon_sym_BSLASHvref] = ACTIONS(5188), + [anon_sym_BSLASHVref] = ACTIONS(5188), + [anon_sym_BSLASHautoref] = ACTIONS(5188), + [anon_sym_BSLASHpageref] = ACTIONS(5188), + [anon_sym_BSLASHcref] = ACTIONS(5188), + [anon_sym_BSLASHCref] = ACTIONS(5188), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnameCref] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHlabelcref] = ACTIONS(5188), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCrefrange] = ACTIONS(5188), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnewlabel] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5188), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5188), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5188), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdef] = ACTIONS(5188), + [anon_sym_BSLASHlet] = ACTIONS(5188), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5188), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5188), + [anon_sym_BSLASHgls] = ACTIONS(5188), + [anon_sym_BSLASHGls] = ACTIONS(5188), + [anon_sym_BSLASHGLS] = ACTIONS(5188), + [anon_sym_BSLASHglspl] = ACTIONS(5188), + [anon_sym_BSLASHGlspl] = ACTIONS(5188), + [anon_sym_BSLASHGLSpl] = ACTIONS(5188), + [anon_sym_BSLASHglsdisp] = ACTIONS(5188), + [anon_sym_BSLASHglslink] = ACTIONS(5188), + [anon_sym_BSLASHglstext] = ACTIONS(5188), + [anon_sym_BSLASHGlstext] = ACTIONS(5188), + [anon_sym_BSLASHGLStext] = ACTIONS(5188), + [anon_sym_BSLASHglsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5188), + [anon_sym_BSLASHglsplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSplural] = ACTIONS(5188), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHglsname] = ACTIONS(5188), + [anon_sym_BSLASHGlsname] = ACTIONS(5188), + [anon_sym_BSLASHGLSname] = ACTIONS(5188), + [anon_sym_BSLASHglssymbol] = ACTIONS(5188), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5188), + [anon_sym_BSLASHglsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5188), + [anon_sym_BSLASHglsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5188), + [anon_sym_BSLASHglsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5188), + [anon_sym_BSLASHglsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5188), + [anon_sym_BSLASHglsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5188), + [anon_sym_BSLASHnewacronym] = ACTIONS(5188), + [anon_sym_BSLASHacrshort] = ACTIONS(5188), + [anon_sym_BSLASHAcrshort] = ACTIONS(5188), + [anon_sym_BSLASHACRshort] = ACTIONS(5188), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5188), + [anon_sym_BSLASHacrlong] = ACTIONS(5188), + [anon_sym_BSLASHAcrlong] = ACTIONS(5188), + [anon_sym_BSLASHACRlong] = ACTIONS(5188), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5188), + [anon_sym_BSLASHacrfull] = ACTIONS(5188), + [anon_sym_BSLASHAcrfull] = ACTIONS(5188), + [anon_sym_BSLASHACRfull] = ACTIONS(5188), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5188), + [anon_sym_BSLASHacs] = ACTIONS(5188), + [anon_sym_BSLASHAcs] = ACTIONS(5188), + [anon_sym_BSLASHacsp] = ACTIONS(5188), + [anon_sym_BSLASHAcsp] = ACTIONS(5188), + [anon_sym_BSLASHacl] = ACTIONS(5188), + [anon_sym_BSLASHAcl] = ACTIONS(5188), + [anon_sym_BSLASHaclp] = ACTIONS(5188), + [anon_sym_BSLASHAclp] = ACTIONS(5188), + [anon_sym_BSLASHacf] = ACTIONS(5188), + [anon_sym_BSLASHAcf] = ACTIONS(5188), + [anon_sym_BSLASHacfp] = ACTIONS(5188), + [anon_sym_BSLASHAcfp] = ACTIONS(5188), + [anon_sym_BSLASHac] = ACTIONS(5188), + [anon_sym_BSLASHAc] = ACTIONS(5188), + [anon_sym_BSLASHacp] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5188), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5188), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5188), + [anon_sym_BSLASHcolor] = ACTIONS(5188), + [anon_sym_BSLASHcolorbox] = ACTIONS(5188), + [anon_sym_BSLASHtextcolor] = ACTIONS(5188), + [anon_sym_BSLASHpagecolor] = ACTIONS(5188), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5188), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5188), + [anon_sym_BSLASHtext] = ACTIONS(5188), + [anon_sym_BSLASHintertext] = ACTIONS(5188), + [anon_sym_shortintertext] = ACTIONS(5188), }, [745] = { [sym_curly_group] = STATE(964), - [sym_command_name] = ACTIONS(4829), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_BSLASHpart] = ACTIONS(4829), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddpart] = ACTIONS(4829), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHchapter] = ACTIONS(4829), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddchap] = ACTIONS(4829), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsection] = ACTIONS(4829), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddsec] = ACTIONS(4829), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHparagraph] = ACTIONS(4829), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHitem] = ACTIONS(4829), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4829), - [sym_placeholder] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym__] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4829), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4829), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), - [anon_sym_BSLASHbegin] = ACTIONS(4829), - [anon_sym_BSLASHusepackage] = ACTIONS(4829), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), - [anon_sym_BSLASHinclude] = ACTIONS(4829), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), - [anon_sym_BSLASHinput] = ACTIONS(4829), - [anon_sym_BSLASHsubfile] = ACTIONS(4829), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), - [anon_sym_BSLASHbibliography] = ACTIONS(4829), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), - [anon_sym_BSLASHincludesvg] = ACTIONS(4829), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), - [anon_sym_BSLASHimport] = ACTIONS(4829), - [anon_sym_BSLASHsubimport] = ACTIONS(4829), - [anon_sym_BSLASHinputfrom] = ACTIONS(4829), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), - [anon_sym_BSLASHincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHcaption] = ACTIONS(4829), - [anon_sym_BSLASHcite] = ACTIONS(4829), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCite] = ACTIONS(4829), - [anon_sym_BSLASHnocite] = ACTIONS(4829), - [anon_sym_BSLASHcitet] = ACTIONS(4829), - [anon_sym_BSLASHcitep] = ACTIONS(4829), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteauthor] = ACTIONS(4829), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitetitle] = ACTIONS(4829), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteyear] = ACTIONS(4829), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitedate] = ACTIONS(4829), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteurl] = ACTIONS(4829), - [anon_sym_BSLASHfullcite] = ACTIONS(4829), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), - [anon_sym_BSLASHcitealt] = ACTIONS(4829), - [anon_sym_BSLASHcitealp] = ACTIONS(4829), - [anon_sym_BSLASHcitetext] = ACTIONS(4829), - [anon_sym_BSLASHparencite] = ACTIONS(4829), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHParencite] = ACTIONS(4829), - [anon_sym_BSLASHfootcite] = ACTIONS(4829), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), - [anon_sym_BSLASHtextcite] = ACTIONS(4829), - [anon_sym_BSLASHTextcite] = ACTIONS(4829), - [anon_sym_BSLASHsmartcite] = ACTIONS(4829), - [anon_sym_BSLASHSmartcite] = ACTIONS(4829), - [anon_sym_BSLASHsupercite] = ACTIONS(4829), - [anon_sym_BSLASHautocite] = ACTIONS(4829), - [anon_sym_BSLASHAutocite] = ACTIONS(4829), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHvolcite] = ACTIONS(4829), - [anon_sym_BSLASHVolcite] = ACTIONS(4829), - [anon_sym_BSLASHpvolcite] = ACTIONS(4829), - [anon_sym_BSLASHPvolcite] = ACTIONS(4829), - [anon_sym_BSLASHfvolcite] = ACTIONS(4829), - [anon_sym_BSLASHftvolcite] = ACTIONS(4829), - [anon_sym_BSLASHsvolcite] = ACTIONS(4829), - [anon_sym_BSLASHSvolcite] = ACTIONS(4829), - [anon_sym_BSLASHtvolcite] = ACTIONS(4829), - [anon_sym_BSLASHTvolcite] = ACTIONS(4829), - [anon_sym_BSLASHavolcite] = ACTIONS(4829), - [anon_sym_BSLASHAvolcite] = ACTIONS(4829), - [anon_sym_BSLASHnotecite] = ACTIONS(4829), - [anon_sym_BSLASHNotecite] = ACTIONS(4829), - [anon_sym_BSLASHpnotecite] = ACTIONS(4829), - [anon_sym_BSLASHPnotecite] = ACTIONS(4829), - [anon_sym_BSLASHfnotecite] = ACTIONS(4829), - [anon_sym_BSLASHlabel] = ACTIONS(4829), - [anon_sym_BSLASHref] = ACTIONS(4829), - [anon_sym_BSLASHeqref] = ACTIONS(4829), - [anon_sym_BSLASHvref] = ACTIONS(4829), - [anon_sym_BSLASHVref] = ACTIONS(4829), - [anon_sym_BSLASHautoref] = ACTIONS(4829), - [anon_sym_BSLASHpageref] = ACTIONS(4829), - [anon_sym_BSLASHcref] = ACTIONS(4829), - [anon_sym_BSLASHCref] = ACTIONS(4829), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnameCref] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHlabelcref] = ACTIONS(4829), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCrefrange] = ACTIONS(4829), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnewlabel] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), - [anon_sym_BSLASHdef] = ACTIONS(4829), - [anon_sym_BSLASHlet] = ACTIONS(4829), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), - [anon_sym_BSLASHgls] = ACTIONS(4829), - [anon_sym_BSLASHGls] = ACTIONS(4829), - [anon_sym_BSLASHGLS] = ACTIONS(4829), - [anon_sym_BSLASHglspl] = ACTIONS(4829), - [anon_sym_BSLASHGlspl] = ACTIONS(4829), - [anon_sym_BSLASHGLSpl] = ACTIONS(4829), - [anon_sym_BSLASHglsdisp] = ACTIONS(4829), - [anon_sym_BSLASHglslink] = ACTIONS(4829), - [anon_sym_BSLASHglstext] = ACTIONS(4829), - [anon_sym_BSLASHGlstext] = ACTIONS(4829), - [anon_sym_BSLASHGLStext] = ACTIONS(4829), - [anon_sym_BSLASHglsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), - [anon_sym_BSLASHglsplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSplural] = ACTIONS(4829), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHglsname] = ACTIONS(4829), - [anon_sym_BSLASHGlsname] = ACTIONS(4829), - [anon_sym_BSLASHGLSname] = ACTIONS(4829), - [anon_sym_BSLASHglssymbol] = ACTIONS(4829), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), - [anon_sym_BSLASHglsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), - [anon_sym_BSLASHglsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), - [anon_sym_BSLASHglsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), - [anon_sym_BSLASHglsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), - [anon_sym_BSLASHglsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), - [anon_sym_BSLASHnewacronym] = ACTIONS(4829), - [anon_sym_BSLASHacrshort] = ACTIONS(4829), - [anon_sym_BSLASHAcrshort] = ACTIONS(4829), - [anon_sym_BSLASHACRshort] = ACTIONS(4829), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), - [anon_sym_BSLASHacrlong] = ACTIONS(4829), - [anon_sym_BSLASHAcrlong] = ACTIONS(4829), - [anon_sym_BSLASHACRlong] = ACTIONS(4829), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), - [anon_sym_BSLASHacrfull] = ACTIONS(4829), - [anon_sym_BSLASHAcrfull] = ACTIONS(4829), - [anon_sym_BSLASHACRfull] = ACTIONS(4829), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), - [anon_sym_BSLASHacs] = ACTIONS(4829), - [anon_sym_BSLASHAcs] = ACTIONS(4829), - [anon_sym_BSLASHacsp] = ACTIONS(4829), - [anon_sym_BSLASHAcsp] = ACTIONS(4829), - [anon_sym_BSLASHacl] = ACTIONS(4829), - [anon_sym_BSLASHAcl] = ACTIONS(4829), - [anon_sym_BSLASHaclp] = ACTIONS(4829), - [anon_sym_BSLASHAclp] = ACTIONS(4829), - [anon_sym_BSLASHacf] = ACTIONS(4829), - [anon_sym_BSLASHAcf] = ACTIONS(4829), - [anon_sym_BSLASHacfp] = ACTIONS(4829), - [anon_sym_BSLASHAcfp] = ACTIONS(4829), - [anon_sym_BSLASHac] = ACTIONS(4829), - [anon_sym_BSLASHAc] = ACTIONS(4829), - [anon_sym_BSLASHacp] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), - [anon_sym_BSLASHcolor] = ACTIONS(4829), - [anon_sym_BSLASHcolorbox] = ACTIONS(4829), - [anon_sym_BSLASHtextcolor] = ACTIONS(4829), - [anon_sym_BSLASHpagecolor] = ACTIONS(4829), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), - [anon_sym_BSLASHtext] = ACTIONS(4829), - [anon_sym_BSLASHintertext] = ACTIONS(4829), - [anon_sym_shortintertext] = ACTIONS(4829), + [sym_command_name] = ACTIONS(4908), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_BSLASHpart] = ACTIONS(4908), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddpart] = ACTIONS(4908), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHchapter] = ACTIONS(4908), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddchap] = ACTIONS(4908), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsection] = ACTIONS(4908), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddsec] = ACTIONS(4908), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHparagraph] = ACTIONS(4908), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4908), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHitem] = ACTIONS(4908), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4908), + [sym_placeholder] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym__] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4906), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4906), + [anon_sym_BSLASHbegin] = ACTIONS(4908), + [anon_sym_BSLASHusepackage] = ACTIONS(4908), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4908), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4908), + [anon_sym_BSLASHinclude] = ACTIONS(4908), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4908), + [anon_sym_BSLASHinput] = ACTIONS(4908), + [anon_sym_BSLASHsubfile] = ACTIONS(4908), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4908), + [anon_sym_BSLASHbibliography] = ACTIONS(4908), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4908), + [anon_sym_BSLASHincludesvg] = ACTIONS(4908), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4908), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4908), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4908), + [anon_sym_BSLASHimport] = ACTIONS(4908), + [anon_sym_BSLASHsubimport] = ACTIONS(4908), + [anon_sym_BSLASHinputfrom] = ACTIONS(4908), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4908), + [anon_sym_BSLASHincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHcaption] = ACTIONS(4908), + [anon_sym_BSLASHcite] = ACTIONS(4908), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCite] = ACTIONS(4908), + [anon_sym_BSLASHnocite] = ACTIONS(4908), + [anon_sym_BSLASHcitet] = ACTIONS(4908), + [anon_sym_BSLASHcitep] = ACTIONS(4908), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteauthor] = ACTIONS(4908), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4908), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitetitle] = ACTIONS(4908), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteyear] = ACTIONS(4908), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitedate] = ACTIONS(4908), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteurl] = ACTIONS(4908), + [anon_sym_BSLASHfullcite] = ACTIONS(4908), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4908), + [anon_sym_BSLASHcitealt] = ACTIONS(4908), + [anon_sym_BSLASHcitealp] = ACTIONS(4908), + [anon_sym_BSLASHcitetext] = ACTIONS(4908), + [anon_sym_BSLASHparencite] = ACTIONS(4908), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHParencite] = ACTIONS(4908), + [anon_sym_BSLASHfootcite] = ACTIONS(4908), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4908), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4908), + [anon_sym_BSLASHtextcite] = ACTIONS(4908), + [anon_sym_BSLASHTextcite] = ACTIONS(4908), + [anon_sym_BSLASHsmartcite] = ACTIONS(4908), + [anon_sym_BSLASHSmartcite] = ACTIONS(4908), + [anon_sym_BSLASHsupercite] = ACTIONS(4908), + [anon_sym_BSLASHautocite] = ACTIONS(4908), + [anon_sym_BSLASHAutocite] = ACTIONS(4908), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHvolcite] = ACTIONS(4908), + [anon_sym_BSLASHVolcite] = ACTIONS(4908), + [anon_sym_BSLASHpvolcite] = ACTIONS(4908), + [anon_sym_BSLASHPvolcite] = ACTIONS(4908), + [anon_sym_BSLASHfvolcite] = ACTIONS(4908), + [anon_sym_BSLASHftvolcite] = ACTIONS(4908), + [anon_sym_BSLASHsvolcite] = ACTIONS(4908), + [anon_sym_BSLASHSvolcite] = ACTIONS(4908), + [anon_sym_BSLASHtvolcite] = ACTIONS(4908), + [anon_sym_BSLASHTvolcite] = ACTIONS(4908), + [anon_sym_BSLASHavolcite] = ACTIONS(4908), + [anon_sym_BSLASHAvolcite] = ACTIONS(4908), + [anon_sym_BSLASHnotecite] = ACTIONS(4908), + [anon_sym_BSLASHNotecite] = ACTIONS(4908), + [anon_sym_BSLASHpnotecite] = ACTIONS(4908), + [anon_sym_BSLASHPnotecite] = ACTIONS(4908), + [anon_sym_BSLASHfnotecite] = ACTIONS(4908), + [anon_sym_BSLASHlabel] = ACTIONS(4908), + [anon_sym_BSLASHref] = ACTIONS(4908), + [anon_sym_BSLASHeqref] = ACTIONS(4908), + [anon_sym_BSLASHvref] = ACTIONS(4908), + [anon_sym_BSLASHVref] = ACTIONS(4908), + [anon_sym_BSLASHautoref] = ACTIONS(4908), + [anon_sym_BSLASHpageref] = ACTIONS(4908), + [anon_sym_BSLASHcref] = ACTIONS(4908), + [anon_sym_BSLASHCref] = ACTIONS(4908), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnameCref] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHlabelcref] = ACTIONS(4908), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCrefrange] = ACTIONS(4908), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnewlabel] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4908), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4908), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4908), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdef] = ACTIONS(4908), + [anon_sym_BSLASHlet] = ACTIONS(4908), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4908), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4908), + [anon_sym_BSLASHgls] = ACTIONS(4908), + [anon_sym_BSLASHGls] = ACTIONS(4908), + [anon_sym_BSLASHGLS] = ACTIONS(4908), + [anon_sym_BSLASHglspl] = ACTIONS(4908), + [anon_sym_BSLASHGlspl] = ACTIONS(4908), + [anon_sym_BSLASHGLSpl] = ACTIONS(4908), + [anon_sym_BSLASHglsdisp] = ACTIONS(4908), + [anon_sym_BSLASHglslink] = ACTIONS(4908), + [anon_sym_BSLASHglstext] = ACTIONS(4908), + [anon_sym_BSLASHGlstext] = ACTIONS(4908), + [anon_sym_BSLASHGLStext] = ACTIONS(4908), + [anon_sym_BSLASHglsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4908), + [anon_sym_BSLASHglsplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSplural] = ACTIONS(4908), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHglsname] = ACTIONS(4908), + [anon_sym_BSLASHGlsname] = ACTIONS(4908), + [anon_sym_BSLASHGLSname] = ACTIONS(4908), + [anon_sym_BSLASHglssymbol] = ACTIONS(4908), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4908), + [anon_sym_BSLASHglsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4908), + [anon_sym_BSLASHglsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4908), + [anon_sym_BSLASHglsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4908), + [anon_sym_BSLASHglsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4908), + [anon_sym_BSLASHglsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4908), + [anon_sym_BSLASHnewacronym] = ACTIONS(4908), + [anon_sym_BSLASHacrshort] = ACTIONS(4908), + [anon_sym_BSLASHAcrshort] = ACTIONS(4908), + [anon_sym_BSLASHACRshort] = ACTIONS(4908), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4908), + [anon_sym_BSLASHacrlong] = ACTIONS(4908), + [anon_sym_BSLASHAcrlong] = ACTIONS(4908), + [anon_sym_BSLASHACRlong] = ACTIONS(4908), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4908), + [anon_sym_BSLASHacrfull] = ACTIONS(4908), + [anon_sym_BSLASHAcrfull] = ACTIONS(4908), + [anon_sym_BSLASHACRfull] = ACTIONS(4908), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4908), + [anon_sym_BSLASHacs] = ACTIONS(4908), + [anon_sym_BSLASHAcs] = ACTIONS(4908), + [anon_sym_BSLASHacsp] = ACTIONS(4908), + [anon_sym_BSLASHAcsp] = ACTIONS(4908), + [anon_sym_BSLASHacl] = ACTIONS(4908), + [anon_sym_BSLASHAcl] = ACTIONS(4908), + [anon_sym_BSLASHaclp] = ACTIONS(4908), + [anon_sym_BSLASHAclp] = ACTIONS(4908), + [anon_sym_BSLASHacf] = ACTIONS(4908), + [anon_sym_BSLASHAcf] = ACTIONS(4908), + [anon_sym_BSLASHacfp] = ACTIONS(4908), + [anon_sym_BSLASHAcfp] = ACTIONS(4908), + [anon_sym_BSLASHac] = ACTIONS(4908), + [anon_sym_BSLASHAc] = ACTIONS(4908), + [anon_sym_BSLASHacp] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4908), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4908), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4908), + [anon_sym_BSLASHcolor] = ACTIONS(4908), + [anon_sym_BSLASHcolorbox] = ACTIONS(4908), + [anon_sym_BSLASHtextcolor] = ACTIONS(4908), + [anon_sym_BSLASHpagecolor] = ACTIONS(4908), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4908), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4908), + [anon_sym_BSLASHtext] = ACTIONS(4908), + [anon_sym_BSLASHintertext] = ACTIONS(4908), + [anon_sym_shortintertext] = ACTIONS(4908), }, [746] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_BSLASHpart] = ACTIONS(4865), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddpart] = ACTIONS(4865), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHchapter] = ACTIONS(4865), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddchap] = ACTIONS(4865), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsection] = ACTIONS(4865), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddsec] = ACTIONS(4865), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHparagraph] = ACTIONS(4865), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHitem] = ACTIONS(4865), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASHbegin] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5190), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_BSLASHpart] = ACTIONS(4944), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddpart] = ACTIONS(4944), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHchapter] = ACTIONS(4944), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddchap] = ACTIONS(4944), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsection] = ACTIONS(4944), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddsec] = ACTIONS(4944), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHparagraph] = ACTIONS(4944), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4944), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHitem] = ACTIONS(4944), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASHbegin] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [747] = { - [ts_builtin_sym_end] = ACTIONS(5113), - [sym_command_name] = ACTIONS(5115), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_BSLASHpart] = ACTIONS(5115), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddpart] = ACTIONS(5115), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHchapter] = ACTIONS(5115), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddchap] = ACTIONS(5115), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsection] = ACTIONS(5115), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddsec] = ACTIONS(5115), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHparagraph] = ACTIONS(5115), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHitem] = ACTIONS(5115), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(5113), - [sym_word] = ACTIONS(5115), - [sym_placeholder] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_CARET] = ACTIONS(5115), - [anon_sym__] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), - [anon_sym_BSLASHbegin] = ACTIONS(5115), - [anon_sym_BSLASHusepackage] = ACTIONS(5115), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), - [anon_sym_BSLASHinclude] = ACTIONS(5115), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), - [anon_sym_BSLASHinput] = ACTIONS(5115), - [anon_sym_BSLASHsubfile] = ACTIONS(5115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), - [anon_sym_BSLASHbibliography] = ACTIONS(5115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), - [anon_sym_BSLASHincludesvg] = ACTIONS(5115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), - [anon_sym_BSLASHimport] = ACTIONS(5115), - [anon_sym_BSLASHsubimport] = ACTIONS(5115), - [anon_sym_BSLASHinputfrom] = ACTIONS(5115), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), - [anon_sym_BSLASHincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHcaption] = ACTIONS(5115), - [anon_sym_BSLASHcite] = ACTIONS(5115), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCite] = ACTIONS(5115), - [anon_sym_BSLASHnocite] = ACTIONS(5115), - [anon_sym_BSLASHcitet] = ACTIONS(5115), - [anon_sym_BSLASHcitep] = ACTIONS(5115), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteyear] = ACTIONS(5115), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitedate] = ACTIONS(5115), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteurl] = ACTIONS(5115), - [anon_sym_BSLASHfullcite] = ACTIONS(5115), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), - [anon_sym_BSLASHcitealt] = ACTIONS(5115), - [anon_sym_BSLASHcitealp] = ACTIONS(5115), - [anon_sym_BSLASHcitetext] = ACTIONS(5115), - [anon_sym_BSLASHparencite] = ACTIONS(5115), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHParencite] = ACTIONS(5115), - [anon_sym_BSLASHfootcite] = ACTIONS(5115), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), - [anon_sym_BSLASHtextcite] = ACTIONS(5115), - [anon_sym_BSLASHTextcite] = ACTIONS(5115), - [anon_sym_BSLASHsmartcite] = ACTIONS(5115), - [anon_sym_BSLASHSmartcite] = ACTIONS(5115), - [anon_sym_BSLASHsupercite] = ACTIONS(5115), - [anon_sym_BSLASHautocite] = ACTIONS(5115), - [anon_sym_BSLASHAutocite] = ACTIONS(5115), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHvolcite] = ACTIONS(5115), - [anon_sym_BSLASHVolcite] = ACTIONS(5115), - [anon_sym_BSLASHpvolcite] = ACTIONS(5115), - [anon_sym_BSLASHPvolcite] = ACTIONS(5115), - [anon_sym_BSLASHfvolcite] = ACTIONS(5115), - [anon_sym_BSLASHftvolcite] = ACTIONS(5115), - [anon_sym_BSLASHsvolcite] = ACTIONS(5115), - [anon_sym_BSLASHSvolcite] = ACTIONS(5115), - [anon_sym_BSLASHtvolcite] = ACTIONS(5115), - [anon_sym_BSLASHTvolcite] = ACTIONS(5115), - [anon_sym_BSLASHavolcite] = ACTIONS(5115), - [anon_sym_BSLASHAvolcite] = ACTIONS(5115), - [anon_sym_BSLASHnotecite] = ACTIONS(5115), - [anon_sym_BSLASHNotecite] = ACTIONS(5115), - [anon_sym_BSLASHpnotecite] = ACTIONS(5115), - [anon_sym_BSLASHPnotecite] = ACTIONS(5115), - [anon_sym_BSLASHfnotecite] = ACTIONS(5115), - [anon_sym_BSLASHlabel] = ACTIONS(5115), - [anon_sym_BSLASHref] = ACTIONS(5115), - [anon_sym_BSLASHeqref] = ACTIONS(5115), - [anon_sym_BSLASHvref] = ACTIONS(5115), - [anon_sym_BSLASHVref] = ACTIONS(5115), - [anon_sym_BSLASHautoref] = ACTIONS(5115), - [anon_sym_BSLASHpageref] = ACTIONS(5115), - [anon_sym_BSLASHcref] = ACTIONS(5115), - [anon_sym_BSLASHCref] = ACTIONS(5115), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnameCref] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHlabelcref] = ACTIONS(5115), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnewlabel] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), - [anon_sym_BSLASHdef] = ACTIONS(5115), - [anon_sym_BSLASHlet] = ACTIONS(5115), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), - [anon_sym_BSLASHgls] = ACTIONS(5115), - [anon_sym_BSLASHGls] = ACTIONS(5115), - [anon_sym_BSLASHGLS] = ACTIONS(5115), - [anon_sym_BSLASHglspl] = ACTIONS(5115), - [anon_sym_BSLASHGlspl] = ACTIONS(5115), - [anon_sym_BSLASHGLSpl] = ACTIONS(5115), - [anon_sym_BSLASHglsdisp] = ACTIONS(5115), - [anon_sym_BSLASHglslink] = ACTIONS(5115), - [anon_sym_BSLASHglstext] = ACTIONS(5115), - [anon_sym_BSLASHGlstext] = ACTIONS(5115), - [anon_sym_BSLASHGLStext] = ACTIONS(5115), - [anon_sym_BSLASHglsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), - [anon_sym_BSLASHglsplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSplural] = ACTIONS(5115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHglsname] = ACTIONS(5115), - [anon_sym_BSLASHGlsname] = ACTIONS(5115), - [anon_sym_BSLASHGLSname] = ACTIONS(5115), - [anon_sym_BSLASHglssymbol] = ACTIONS(5115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), - [anon_sym_BSLASHglsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), - [anon_sym_BSLASHglsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), - [anon_sym_BSLASHglsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), - [anon_sym_BSLASHglsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), - [anon_sym_BSLASHglsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), - [anon_sym_BSLASHnewacronym] = ACTIONS(5115), - [anon_sym_BSLASHacrshort] = ACTIONS(5115), - [anon_sym_BSLASHAcrshort] = ACTIONS(5115), - [anon_sym_BSLASHACRshort] = ACTIONS(5115), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), - [anon_sym_BSLASHacrlong] = ACTIONS(5115), - [anon_sym_BSLASHAcrlong] = ACTIONS(5115), - [anon_sym_BSLASHACRlong] = ACTIONS(5115), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), - [anon_sym_BSLASHacrfull] = ACTIONS(5115), - [anon_sym_BSLASHAcrfull] = ACTIONS(5115), - [anon_sym_BSLASHACRfull] = ACTIONS(5115), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), - [anon_sym_BSLASHacs] = ACTIONS(5115), - [anon_sym_BSLASHAcs] = ACTIONS(5115), - [anon_sym_BSLASHacsp] = ACTIONS(5115), - [anon_sym_BSLASHAcsp] = ACTIONS(5115), - [anon_sym_BSLASHacl] = ACTIONS(5115), - [anon_sym_BSLASHAcl] = ACTIONS(5115), - [anon_sym_BSLASHaclp] = ACTIONS(5115), - [anon_sym_BSLASHAclp] = ACTIONS(5115), - [anon_sym_BSLASHacf] = ACTIONS(5115), - [anon_sym_BSLASHAcf] = ACTIONS(5115), - [anon_sym_BSLASHacfp] = ACTIONS(5115), - [anon_sym_BSLASHAcfp] = ACTIONS(5115), - [anon_sym_BSLASHac] = ACTIONS(5115), - [anon_sym_BSLASHAc] = ACTIONS(5115), - [anon_sym_BSLASHacp] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), - [anon_sym_BSLASHcolor] = ACTIONS(5115), - [anon_sym_BSLASHcolorbox] = ACTIONS(5115), - [anon_sym_BSLASHtextcolor] = ACTIONS(5115), - [anon_sym_BSLASHpagecolor] = ACTIONS(5115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), - [anon_sym_BSLASHtext] = ACTIONS(5115), - [anon_sym_BSLASHintertext] = ACTIONS(5115), - [anon_sym_shortintertext] = ACTIONS(5115), + [ts_builtin_sym_end] = ACTIONS(5192), + [sym_command_name] = ACTIONS(5194), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_BSLASHpart] = ACTIONS(5194), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddpart] = ACTIONS(5194), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHchapter] = ACTIONS(5194), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddchap] = ACTIONS(5194), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsection] = ACTIONS(5194), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddsec] = ACTIONS(5194), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHparagraph] = ACTIONS(5194), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5194), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHitem] = ACTIONS(5194), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_RBRACE] = ACTIONS(5192), + [sym_word] = ACTIONS(5194), + [sym_placeholder] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym__] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_SQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5192), + [anon_sym_BSLASHbegin] = ACTIONS(5194), + [anon_sym_BSLASHusepackage] = ACTIONS(5194), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5194), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5194), + [anon_sym_BSLASHinclude] = ACTIONS(5194), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5194), + [anon_sym_BSLASHinput] = ACTIONS(5194), + [anon_sym_BSLASHsubfile] = ACTIONS(5194), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5194), + [anon_sym_BSLASHbibliography] = ACTIONS(5194), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5194), + [anon_sym_BSLASHincludesvg] = ACTIONS(5194), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5194), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5194), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5194), + [anon_sym_BSLASHimport] = ACTIONS(5194), + [anon_sym_BSLASHsubimport] = ACTIONS(5194), + [anon_sym_BSLASHinputfrom] = ACTIONS(5194), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5194), + [anon_sym_BSLASHincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHcaption] = ACTIONS(5194), + [anon_sym_BSLASHcite] = ACTIONS(5194), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCite] = ACTIONS(5194), + [anon_sym_BSLASHnocite] = ACTIONS(5194), + [anon_sym_BSLASHcitet] = ACTIONS(5194), + [anon_sym_BSLASHcitep] = ACTIONS(5194), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteauthor] = ACTIONS(5194), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5194), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitetitle] = ACTIONS(5194), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteyear] = ACTIONS(5194), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitedate] = ACTIONS(5194), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteurl] = ACTIONS(5194), + [anon_sym_BSLASHfullcite] = ACTIONS(5194), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5194), + [anon_sym_BSLASHcitealt] = ACTIONS(5194), + [anon_sym_BSLASHcitealp] = ACTIONS(5194), + [anon_sym_BSLASHcitetext] = ACTIONS(5194), + [anon_sym_BSLASHparencite] = ACTIONS(5194), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHParencite] = ACTIONS(5194), + [anon_sym_BSLASHfootcite] = ACTIONS(5194), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5194), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5194), + [anon_sym_BSLASHtextcite] = ACTIONS(5194), + [anon_sym_BSLASHTextcite] = ACTIONS(5194), + [anon_sym_BSLASHsmartcite] = ACTIONS(5194), + [anon_sym_BSLASHSmartcite] = ACTIONS(5194), + [anon_sym_BSLASHsupercite] = ACTIONS(5194), + [anon_sym_BSLASHautocite] = ACTIONS(5194), + [anon_sym_BSLASHAutocite] = ACTIONS(5194), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHvolcite] = ACTIONS(5194), + [anon_sym_BSLASHVolcite] = ACTIONS(5194), + [anon_sym_BSLASHpvolcite] = ACTIONS(5194), + [anon_sym_BSLASHPvolcite] = ACTIONS(5194), + [anon_sym_BSLASHfvolcite] = ACTIONS(5194), + [anon_sym_BSLASHftvolcite] = ACTIONS(5194), + [anon_sym_BSLASHsvolcite] = ACTIONS(5194), + [anon_sym_BSLASHSvolcite] = ACTIONS(5194), + [anon_sym_BSLASHtvolcite] = ACTIONS(5194), + [anon_sym_BSLASHTvolcite] = ACTIONS(5194), + [anon_sym_BSLASHavolcite] = ACTIONS(5194), + [anon_sym_BSLASHAvolcite] = ACTIONS(5194), + [anon_sym_BSLASHnotecite] = ACTIONS(5194), + [anon_sym_BSLASHNotecite] = ACTIONS(5194), + [anon_sym_BSLASHpnotecite] = ACTIONS(5194), + [anon_sym_BSLASHPnotecite] = ACTIONS(5194), + [anon_sym_BSLASHfnotecite] = ACTIONS(5194), + [anon_sym_BSLASHlabel] = ACTIONS(5194), + [anon_sym_BSLASHref] = ACTIONS(5194), + [anon_sym_BSLASHeqref] = ACTIONS(5194), + [anon_sym_BSLASHvref] = ACTIONS(5194), + [anon_sym_BSLASHVref] = ACTIONS(5194), + [anon_sym_BSLASHautoref] = ACTIONS(5194), + [anon_sym_BSLASHpageref] = ACTIONS(5194), + [anon_sym_BSLASHcref] = ACTIONS(5194), + [anon_sym_BSLASHCref] = ACTIONS(5194), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnameCref] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHlabelcref] = ACTIONS(5194), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCrefrange] = ACTIONS(5194), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnewlabel] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5194), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5194), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5194), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdef] = ACTIONS(5194), + [anon_sym_BSLASHlet] = ACTIONS(5194), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5194), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5194), + [anon_sym_BSLASHgls] = ACTIONS(5194), + [anon_sym_BSLASHGls] = ACTIONS(5194), + [anon_sym_BSLASHGLS] = ACTIONS(5194), + [anon_sym_BSLASHglspl] = ACTIONS(5194), + [anon_sym_BSLASHGlspl] = ACTIONS(5194), + [anon_sym_BSLASHGLSpl] = ACTIONS(5194), + [anon_sym_BSLASHglsdisp] = ACTIONS(5194), + [anon_sym_BSLASHglslink] = ACTIONS(5194), + [anon_sym_BSLASHglstext] = ACTIONS(5194), + [anon_sym_BSLASHGlstext] = ACTIONS(5194), + [anon_sym_BSLASHGLStext] = ACTIONS(5194), + [anon_sym_BSLASHglsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5194), + [anon_sym_BSLASHglsplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSplural] = ACTIONS(5194), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHglsname] = ACTIONS(5194), + [anon_sym_BSLASHGlsname] = ACTIONS(5194), + [anon_sym_BSLASHGLSname] = ACTIONS(5194), + [anon_sym_BSLASHglssymbol] = ACTIONS(5194), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5194), + [anon_sym_BSLASHglsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5194), + [anon_sym_BSLASHglsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5194), + [anon_sym_BSLASHglsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5194), + [anon_sym_BSLASHglsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5194), + [anon_sym_BSLASHglsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5194), + [anon_sym_BSLASHnewacronym] = ACTIONS(5194), + [anon_sym_BSLASHacrshort] = ACTIONS(5194), + [anon_sym_BSLASHAcrshort] = ACTIONS(5194), + [anon_sym_BSLASHACRshort] = ACTIONS(5194), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5194), + [anon_sym_BSLASHacrlong] = ACTIONS(5194), + [anon_sym_BSLASHAcrlong] = ACTIONS(5194), + [anon_sym_BSLASHACRlong] = ACTIONS(5194), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5194), + [anon_sym_BSLASHacrfull] = ACTIONS(5194), + [anon_sym_BSLASHAcrfull] = ACTIONS(5194), + [anon_sym_BSLASHACRfull] = ACTIONS(5194), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5194), + [anon_sym_BSLASHacs] = ACTIONS(5194), + [anon_sym_BSLASHAcs] = ACTIONS(5194), + [anon_sym_BSLASHacsp] = ACTIONS(5194), + [anon_sym_BSLASHAcsp] = ACTIONS(5194), + [anon_sym_BSLASHacl] = ACTIONS(5194), + [anon_sym_BSLASHAcl] = ACTIONS(5194), + [anon_sym_BSLASHaclp] = ACTIONS(5194), + [anon_sym_BSLASHAclp] = ACTIONS(5194), + [anon_sym_BSLASHacf] = ACTIONS(5194), + [anon_sym_BSLASHAcf] = ACTIONS(5194), + [anon_sym_BSLASHacfp] = ACTIONS(5194), + [anon_sym_BSLASHAcfp] = ACTIONS(5194), + [anon_sym_BSLASHac] = ACTIONS(5194), + [anon_sym_BSLASHAc] = ACTIONS(5194), + [anon_sym_BSLASHacp] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5194), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5194), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5194), + [anon_sym_BSLASHcolor] = ACTIONS(5194), + [anon_sym_BSLASHcolorbox] = ACTIONS(5194), + [anon_sym_BSLASHtextcolor] = ACTIONS(5194), + [anon_sym_BSLASHpagecolor] = ACTIONS(5194), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5194), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5194), + [anon_sym_BSLASHtext] = ACTIONS(5194), + [anon_sym_BSLASHintertext] = ACTIONS(5194), + [anon_sym_shortintertext] = ACTIONS(5194), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(5117), - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_BSLASHpart] = ACTIONS(5119), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddpart] = ACTIONS(5119), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHchapter] = ACTIONS(5119), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddchap] = ACTIONS(5119), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsection] = ACTIONS(5119), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddsec] = ACTIONS(5119), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHparagraph] = ACTIONS(5119), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHitem] = ACTIONS(5119), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASHbegin] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [ts_builtin_sym_end] = ACTIONS(5196), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_BSLASHpart] = ACTIONS(5198), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddpart] = ACTIONS(5198), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHchapter] = ACTIONS(5198), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddchap] = ACTIONS(5198), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsection] = ACTIONS(5198), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddsec] = ACTIONS(5198), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHparagraph] = ACTIONS(5198), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5198), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHitem] = ACTIONS(5198), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_RBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASHbegin] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(5121), - [sym_command_name] = ACTIONS(5123), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_BSLASHpart] = ACTIONS(5123), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddpart] = ACTIONS(5123), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHchapter] = ACTIONS(5123), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddchap] = ACTIONS(5123), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsection] = ACTIONS(5123), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddsec] = ACTIONS(5123), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHparagraph] = ACTIONS(5123), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHitem] = ACTIONS(5123), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(5121), - [sym_word] = ACTIONS(5123), - [sym_placeholder] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_CARET] = ACTIONS(5123), - [anon_sym__] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), - [anon_sym_BSLASHbegin] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5123), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), - [anon_sym_BSLASHinclude] = ACTIONS(5123), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), - [anon_sym_BSLASHinput] = ACTIONS(5123), - [anon_sym_BSLASHsubfile] = ACTIONS(5123), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), - [anon_sym_BSLASHbibliography] = ACTIONS(5123), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), - [anon_sym_BSLASHincludesvg] = ACTIONS(5123), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), - [anon_sym_BSLASHimport] = ACTIONS(5123), - [anon_sym_BSLASHsubimport] = ACTIONS(5123), - [anon_sym_BSLASHinputfrom] = ACTIONS(5123), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), - [anon_sym_BSLASHincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHcaption] = ACTIONS(5123), - [anon_sym_BSLASHcite] = ACTIONS(5123), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCite] = ACTIONS(5123), - [anon_sym_BSLASHnocite] = ACTIONS(5123), - [anon_sym_BSLASHcitet] = ACTIONS(5123), - [anon_sym_BSLASHcitep] = ACTIONS(5123), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteyear] = ACTIONS(5123), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitedate] = ACTIONS(5123), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteurl] = ACTIONS(5123), - [anon_sym_BSLASHfullcite] = ACTIONS(5123), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), - [anon_sym_BSLASHcitealt] = ACTIONS(5123), - [anon_sym_BSLASHcitealp] = ACTIONS(5123), - [anon_sym_BSLASHcitetext] = ACTIONS(5123), - [anon_sym_BSLASHparencite] = ACTIONS(5123), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHParencite] = ACTIONS(5123), - [anon_sym_BSLASHfootcite] = ACTIONS(5123), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), - [anon_sym_BSLASHtextcite] = ACTIONS(5123), - [anon_sym_BSLASHTextcite] = ACTIONS(5123), - [anon_sym_BSLASHsmartcite] = ACTIONS(5123), - [anon_sym_BSLASHSmartcite] = ACTIONS(5123), - [anon_sym_BSLASHsupercite] = ACTIONS(5123), - [anon_sym_BSLASHautocite] = ACTIONS(5123), - [anon_sym_BSLASHAutocite] = ACTIONS(5123), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHvolcite] = ACTIONS(5123), - [anon_sym_BSLASHVolcite] = ACTIONS(5123), - [anon_sym_BSLASHpvolcite] = ACTIONS(5123), - [anon_sym_BSLASHPvolcite] = ACTIONS(5123), - [anon_sym_BSLASHfvolcite] = ACTIONS(5123), - [anon_sym_BSLASHftvolcite] = ACTIONS(5123), - [anon_sym_BSLASHsvolcite] = ACTIONS(5123), - [anon_sym_BSLASHSvolcite] = ACTIONS(5123), - [anon_sym_BSLASHtvolcite] = ACTIONS(5123), - [anon_sym_BSLASHTvolcite] = ACTIONS(5123), - [anon_sym_BSLASHavolcite] = ACTIONS(5123), - [anon_sym_BSLASHAvolcite] = ACTIONS(5123), - [anon_sym_BSLASHnotecite] = ACTIONS(5123), - [anon_sym_BSLASHNotecite] = ACTIONS(5123), - [anon_sym_BSLASHpnotecite] = ACTIONS(5123), - [anon_sym_BSLASHPnotecite] = ACTIONS(5123), - [anon_sym_BSLASHfnotecite] = ACTIONS(5123), - [anon_sym_BSLASHlabel] = ACTIONS(5123), - [anon_sym_BSLASHref] = ACTIONS(5123), - [anon_sym_BSLASHeqref] = ACTIONS(5123), - [anon_sym_BSLASHvref] = ACTIONS(5123), - [anon_sym_BSLASHVref] = ACTIONS(5123), - [anon_sym_BSLASHautoref] = ACTIONS(5123), - [anon_sym_BSLASHpageref] = ACTIONS(5123), - [anon_sym_BSLASHcref] = ACTIONS(5123), - [anon_sym_BSLASHCref] = ACTIONS(5123), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnameCref] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHlabelcref] = ACTIONS(5123), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnewlabel] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), - [anon_sym_BSLASHdef] = ACTIONS(5123), - [anon_sym_BSLASHlet] = ACTIONS(5123), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), - [anon_sym_BSLASHgls] = ACTIONS(5123), - [anon_sym_BSLASHGls] = ACTIONS(5123), - [anon_sym_BSLASHGLS] = ACTIONS(5123), - [anon_sym_BSLASHglspl] = ACTIONS(5123), - [anon_sym_BSLASHGlspl] = ACTIONS(5123), - [anon_sym_BSLASHGLSpl] = ACTIONS(5123), - [anon_sym_BSLASHglsdisp] = ACTIONS(5123), - [anon_sym_BSLASHglslink] = ACTIONS(5123), - [anon_sym_BSLASHglstext] = ACTIONS(5123), - [anon_sym_BSLASHGlstext] = ACTIONS(5123), - [anon_sym_BSLASHGLStext] = ACTIONS(5123), - [anon_sym_BSLASHglsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), - [anon_sym_BSLASHglsplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSplural] = ACTIONS(5123), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHglsname] = ACTIONS(5123), - [anon_sym_BSLASHGlsname] = ACTIONS(5123), - [anon_sym_BSLASHGLSname] = ACTIONS(5123), - [anon_sym_BSLASHglssymbol] = ACTIONS(5123), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), - [anon_sym_BSLASHglsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), - [anon_sym_BSLASHglsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), - [anon_sym_BSLASHglsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), - [anon_sym_BSLASHglsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), - [anon_sym_BSLASHglsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), - [anon_sym_BSLASHnewacronym] = ACTIONS(5123), - [anon_sym_BSLASHacrshort] = ACTIONS(5123), - [anon_sym_BSLASHAcrshort] = ACTIONS(5123), - [anon_sym_BSLASHACRshort] = ACTIONS(5123), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), - [anon_sym_BSLASHacrlong] = ACTIONS(5123), - [anon_sym_BSLASHAcrlong] = ACTIONS(5123), - [anon_sym_BSLASHACRlong] = ACTIONS(5123), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), - [anon_sym_BSLASHacrfull] = ACTIONS(5123), - [anon_sym_BSLASHAcrfull] = ACTIONS(5123), - [anon_sym_BSLASHACRfull] = ACTIONS(5123), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), - [anon_sym_BSLASHacs] = ACTIONS(5123), - [anon_sym_BSLASHAcs] = ACTIONS(5123), - [anon_sym_BSLASHacsp] = ACTIONS(5123), - [anon_sym_BSLASHAcsp] = ACTIONS(5123), - [anon_sym_BSLASHacl] = ACTIONS(5123), - [anon_sym_BSLASHAcl] = ACTIONS(5123), - [anon_sym_BSLASHaclp] = ACTIONS(5123), - [anon_sym_BSLASHAclp] = ACTIONS(5123), - [anon_sym_BSLASHacf] = ACTIONS(5123), - [anon_sym_BSLASHAcf] = ACTIONS(5123), - [anon_sym_BSLASHacfp] = ACTIONS(5123), - [anon_sym_BSLASHAcfp] = ACTIONS(5123), - [anon_sym_BSLASHac] = ACTIONS(5123), - [anon_sym_BSLASHAc] = ACTIONS(5123), - [anon_sym_BSLASHacp] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), - [anon_sym_BSLASHcolor] = ACTIONS(5123), - [anon_sym_BSLASHcolorbox] = ACTIONS(5123), - [anon_sym_BSLASHtextcolor] = ACTIONS(5123), - [anon_sym_BSLASHpagecolor] = ACTIONS(5123), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), - [anon_sym_BSLASHtext] = ACTIONS(5123), - [anon_sym_BSLASHintertext] = ACTIONS(5123), - [anon_sym_shortintertext] = ACTIONS(5123), + [ts_builtin_sym_end] = ACTIONS(5200), + [sym_command_name] = ACTIONS(5202), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_RBRACK] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_BSLASHpart] = ACTIONS(5202), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddpart] = ACTIONS(5202), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHchapter] = ACTIONS(5202), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddchap] = ACTIONS(5202), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsection] = ACTIONS(5202), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddsec] = ACTIONS(5202), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHparagraph] = ACTIONS(5202), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5202), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHitem] = ACTIONS(5202), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5200), + [anon_sym_RBRACE] = ACTIONS(5200), + [sym_word] = ACTIONS(5202), + [sym_placeholder] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym__] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_SQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5200), + [anon_sym_BSLASHbegin] = ACTIONS(5202), + [anon_sym_BSLASHusepackage] = ACTIONS(5202), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5202), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5202), + [anon_sym_BSLASHinclude] = ACTIONS(5202), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5202), + [anon_sym_BSLASHinput] = ACTIONS(5202), + [anon_sym_BSLASHsubfile] = ACTIONS(5202), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5202), + [anon_sym_BSLASHbibliography] = ACTIONS(5202), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5202), + [anon_sym_BSLASHincludesvg] = ACTIONS(5202), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5202), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5202), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5202), + [anon_sym_BSLASHimport] = ACTIONS(5202), + [anon_sym_BSLASHsubimport] = ACTIONS(5202), + [anon_sym_BSLASHinputfrom] = ACTIONS(5202), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5202), + [anon_sym_BSLASHincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHcaption] = ACTIONS(5202), + [anon_sym_BSLASHcite] = ACTIONS(5202), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCite] = ACTIONS(5202), + [anon_sym_BSLASHnocite] = ACTIONS(5202), + [anon_sym_BSLASHcitet] = ACTIONS(5202), + [anon_sym_BSLASHcitep] = ACTIONS(5202), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteauthor] = ACTIONS(5202), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5202), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitetitle] = ACTIONS(5202), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteyear] = ACTIONS(5202), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitedate] = ACTIONS(5202), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteurl] = ACTIONS(5202), + [anon_sym_BSLASHfullcite] = ACTIONS(5202), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5202), + [anon_sym_BSLASHcitealt] = ACTIONS(5202), + [anon_sym_BSLASHcitealp] = ACTIONS(5202), + [anon_sym_BSLASHcitetext] = ACTIONS(5202), + [anon_sym_BSLASHparencite] = ACTIONS(5202), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHParencite] = ACTIONS(5202), + [anon_sym_BSLASHfootcite] = ACTIONS(5202), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5202), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5202), + [anon_sym_BSLASHtextcite] = ACTIONS(5202), + [anon_sym_BSLASHTextcite] = ACTIONS(5202), + [anon_sym_BSLASHsmartcite] = ACTIONS(5202), + [anon_sym_BSLASHSmartcite] = ACTIONS(5202), + [anon_sym_BSLASHsupercite] = ACTIONS(5202), + [anon_sym_BSLASHautocite] = ACTIONS(5202), + [anon_sym_BSLASHAutocite] = ACTIONS(5202), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHvolcite] = ACTIONS(5202), + [anon_sym_BSLASHVolcite] = ACTIONS(5202), + [anon_sym_BSLASHpvolcite] = ACTIONS(5202), + [anon_sym_BSLASHPvolcite] = ACTIONS(5202), + [anon_sym_BSLASHfvolcite] = ACTIONS(5202), + [anon_sym_BSLASHftvolcite] = ACTIONS(5202), + [anon_sym_BSLASHsvolcite] = ACTIONS(5202), + [anon_sym_BSLASHSvolcite] = ACTIONS(5202), + [anon_sym_BSLASHtvolcite] = ACTIONS(5202), + [anon_sym_BSLASHTvolcite] = ACTIONS(5202), + [anon_sym_BSLASHavolcite] = ACTIONS(5202), + [anon_sym_BSLASHAvolcite] = ACTIONS(5202), + [anon_sym_BSLASHnotecite] = ACTIONS(5202), + [anon_sym_BSLASHNotecite] = ACTIONS(5202), + [anon_sym_BSLASHpnotecite] = ACTIONS(5202), + [anon_sym_BSLASHPnotecite] = ACTIONS(5202), + [anon_sym_BSLASHfnotecite] = ACTIONS(5202), + [anon_sym_BSLASHlabel] = ACTIONS(5202), + [anon_sym_BSLASHref] = ACTIONS(5202), + [anon_sym_BSLASHeqref] = ACTIONS(5202), + [anon_sym_BSLASHvref] = ACTIONS(5202), + [anon_sym_BSLASHVref] = ACTIONS(5202), + [anon_sym_BSLASHautoref] = ACTIONS(5202), + [anon_sym_BSLASHpageref] = ACTIONS(5202), + [anon_sym_BSLASHcref] = ACTIONS(5202), + [anon_sym_BSLASHCref] = ACTIONS(5202), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnameCref] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHlabelcref] = ACTIONS(5202), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCrefrange] = ACTIONS(5202), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnewlabel] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5202), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5202), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5202), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdef] = ACTIONS(5202), + [anon_sym_BSLASHlet] = ACTIONS(5202), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5202), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5202), + [anon_sym_BSLASHgls] = ACTIONS(5202), + [anon_sym_BSLASHGls] = ACTIONS(5202), + [anon_sym_BSLASHGLS] = ACTIONS(5202), + [anon_sym_BSLASHglspl] = ACTIONS(5202), + [anon_sym_BSLASHGlspl] = ACTIONS(5202), + [anon_sym_BSLASHGLSpl] = ACTIONS(5202), + [anon_sym_BSLASHglsdisp] = ACTIONS(5202), + [anon_sym_BSLASHglslink] = ACTIONS(5202), + [anon_sym_BSLASHglstext] = ACTIONS(5202), + [anon_sym_BSLASHGlstext] = ACTIONS(5202), + [anon_sym_BSLASHGLStext] = ACTIONS(5202), + [anon_sym_BSLASHglsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5202), + [anon_sym_BSLASHglsplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSplural] = ACTIONS(5202), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHglsname] = ACTIONS(5202), + [anon_sym_BSLASHGlsname] = ACTIONS(5202), + [anon_sym_BSLASHGLSname] = ACTIONS(5202), + [anon_sym_BSLASHglssymbol] = ACTIONS(5202), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5202), + [anon_sym_BSLASHglsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5202), + [anon_sym_BSLASHglsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5202), + [anon_sym_BSLASHglsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5202), + [anon_sym_BSLASHglsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5202), + [anon_sym_BSLASHglsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5202), + [anon_sym_BSLASHnewacronym] = ACTIONS(5202), + [anon_sym_BSLASHacrshort] = ACTIONS(5202), + [anon_sym_BSLASHAcrshort] = ACTIONS(5202), + [anon_sym_BSLASHACRshort] = ACTIONS(5202), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5202), + [anon_sym_BSLASHacrlong] = ACTIONS(5202), + [anon_sym_BSLASHAcrlong] = ACTIONS(5202), + [anon_sym_BSLASHACRlong] = ACTIONS(5202), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5202), + [anon_sym_BSLASHacrfull] = ACTIONS(5202), + [anon_sym_BSLASHAcrfull] = ACTIONS(5202), + [anon_sym_BSLASHACRfull] = ACTIONS(5202), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5202), + [anon_sym_BSLASHacs] = ACTIONS(5202), + [anon_sym_BSLASHAcs] = ACTIONS(5202), + [anon_sym_BSLASHacsp] = ACTIONS(5202), + [anon_sym_BSLASHAcsp] = ACTIONS(5202), + [anon_sym_BSLASHacl] = ACTIONS(5202), + [anon_sym_BSLASHAcl] = ACTIONS(5202), + [anon_sym_BSLASHaclp] = ACTIONS(5202), + [anon_sym_BSLASHAclp] = ACTIONS(5202), + [anon_sym_BSLASHacf] = ACTIONS(5202), + [anon_sym_BSLASHAcf] = ACTIONS(5202), + [anon_sym_BSLASHacfp] = ACTIONS(5202), + [anon_sym_BSLASHAcfp] = ACTIONS(5202), + [anon_sym_BSLASHac] = ACTIONS(5202), + [anon_sym_BSLASHAc] = ACTIONS(5202), + [anon_sym_BSLASHacp] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5202), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5202), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5202), + [anon_sym_BSLASHcolor] = ACTIONS(5202), + [anon_sym_BSLASHcolorbox] = ACTIONS(5202), + [anon_sym_BSLASHtextcolor] = ACTIONS(5202), + [anon_sym_BSLASHpagecolor] = ACTIONS(5202), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5202), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5202), + [anon_sym_BSLASHtext] = ACTIONS(5202), + [anon_sym_BSLASHintertext] = ACTIONS(5202), + [anon_sym_shortintertext] = ACTIONS(5202), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(5125), - [sym_command_name] = ACTIONS(5127), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_RPAREN] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(5125), - [anon_sym_BSLASHpart] = ACTIONS(5127), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddpart] = ACTIONS(5127), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHchapter] = ACTIONS(5127), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddchap] = ACTIONS(5127), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsection] = ACTIONS(5127), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddsec] = ACTIONS(5127), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHparagraph] = ACTIONS(5127), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHitem] = ACTIONS(5127), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), - [anon_sym_LBRACE] = ACTIONS(5125), - [anon_sym_RBRACE] = ACTIONS(5125), - [sym_word] = ACTIONS(5127), - [sym_placeholder] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_CARET] = ACTIONS(5127), - [anon_sym__] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5127), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), - [anon_sym_BSLASHbegin] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5127), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), - [anon_sym_BSLASHinclude] = ACTIONS(5127), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), - [anon_sym_BSLASHinput] = ACTIONS(5127), - [anon_sym_BSLASHsubfile] = ACTIONS(5127), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), - [anon_sym_BSLASHbibliography] = ACTIONS(5127), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), - [anon_sym_BSLASHincludesvg] = ACTIONS(5127), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), - [anon_sym_BSLASHimport] = ACTIONS(5127), - [anon_sym_BSLASHsubimport] = ACTIONS(5127), - [anon_sym_BSLASHinputfrom] = ACTIONS(5127), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), - [anon_sym_BSLASHincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHcaption] = ACTIONS(5127), - [anon_sym_BSLASHcite] = ACTIONS(5127), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCite] = ACTIONS(5127), - [anon_sym_BSLASHnocite] = ACTIONS(5127), - [anon_sym_BSLASHcitet] = ACTIONS(5127), - [anon_sym_BSLASHcitep] = ACTIONS(5127), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteyear] = ACTIONS(5127), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitedate] = ACTIONS(5127), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteurl] = ACTIONS(5127), - [anon_sym_BSLASHfullcite] = ACTIONS(5127), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), - [anon_sym_BSLASHcitealt] = ACTIONS(5127), - [anon_sym_BSLASHcitealp] = ACTIONS(5127), - [anon_sym_BSLASHcitetext] = ACTIONS(5127), - [anon_sym_BSLASHparencite] = ACTIONS(5127), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHParencite] = ACTIONS(5127), - [anon_sym_BSLASHfootcite] = ACTIONS(5127), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), - [anon_sym_BSLASHtextcite] = ACTIONS(5127), - [anon_sym_BSLASHTextcite] = ACTIONS(5127), - [anon_sym_BSLASHsmartcite] = ACTIONS(5127), - [anon_sym_BSLASHSmartcite] = ACTIONS(5127), - [anon_sym_BSLASHsupercite] = ACTIONS(5127), - [anon_sym_BSLASHautocite] = ACTIONS(5127), - [anon_sym_BSLASHAutocite] = ACTIONS(5127), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHvolcite] = ACTIONS(5127), - [anon_sym_BSLASHVolcite] = ACTIONS(5127), - [anon_sym_BSLASHpvolcite] = ACTIONS(5127), - [anon_sym_BSLASHPvolcite] = ACTIONS(5127), - [anon_sym_BSLASHfvolcite] = ACTIONS(5127), - [anon_sym_BSLASHftvolcite] = ACTIONS(5127), - [anon_sym_BSLASHsvolcite] = ACTIONS(5127), - [anon_sym_BSLASHSvolcite] = ACTIONS(5127), - [anon_sym_BSLASHtvolcite] = ACTIONS(5127), - [anon_sym_BSLASHTvolcite] = ACTIONS(5127), - [anon_sym_BSLASHavolcite] = ACTIONS(5127), - [anon_sym_BSLASHAvolcite] = ACTIONS(5127), - [anon_sym_BSLASHnotecite] = ACTIONS(5127), - [anon_sym_BSLASHNotecite] = ACTIONS(5127), - [anon_sym_BSLASHpnotecite] = ACTIONS(5127), - [anon_sym_BSLASHPnotecite] = ACTIONS(5127), - [anon_sym_BSLASHfnotecite] = ACTIONS(5127), - [anon_sym_BSLASHlabel] = ACTIONS(5127), - [anon_sym_BSLASHref] = ACTIONS(5127), - [anon_sym_BSLASHeqref] = ACTIONS(5127), - [anon_sym_BSLASHvref] = ACTIONS(5127), - [anon_sym_BSLASHVref] = ACTIONS(5127), - [anon_sym_BSLASHautoref] = ACTIONS(5127), - [anon_sym_BSLASHpageref] = ACTIONS(5127), - [anon_sym_BSLASHcref] = ACTIONS(5127), - [anon_sym_BSLASHCref] = ACTIONS(5127), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnameCref] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHlabelcref] = ACTIONS(5127), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnewlabel] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), - [anon_sym_BSLASHdef] = ACTIONS(5127), - [anon_sym_BSLASHlet] = ACTIONS(5127), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), - [anon_sym_BSLASHgls] = ACTIONS(5127), - [anon_sym_BSLASHGls] = ACTIONS(5127), - [anon_sym_BSLASHGLS] = ACTIONS(5127), - [anon_sym_BSLASHglspl] = ACTIONS(5127), - [anon_sym_BSLASHGlspl] = ACTIONS(5127), - [anon_sym_BSLASHGLSpl] = ACTIONS(5127), - [anon_sym_BSLASHglsdisp] = ACTIONS(5127), - [anon_sym_BSLASHglslink] = ACTIONS(5127), - [anon_sym_BSLASHglstext] = ACTIONS(5127), - [anon_sym_BSLASHGlstext] = ACTIONS(5127), - [anon_sym_BSLASHGLStext] = ACTIONS(5127), - [anon_sym_BSLASHglsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), - [anon_sym_BSLASHglsplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSplural] = ACTIONS(5127), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHglsname] = ACTIONS(5127), - [anon_sym_BSLASHGlsname] = ACTIONS(5127), - [anon_sym_BSLASHGLSname] = ACTIONS(5127), - [anon_sym_BSLASHglssymbol] = ACTIONS(5127), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), - [anon_sym_BSLASHglsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), - [anon_sym_BSLASHglsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), - [anon_sym_BSLASHglsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), - [anon_sym_BSLASHglsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), - [anon_sym_BSLASHglsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), - [anon_sym_BSLASHnewacronym] = ACTIONS(5127), - [anon_sym_BSLASHacrshort] = ACTIONS(5127), - [anon_sym_BSLASHAcrshort] = ACTIONS(5127), - [anon_sym_BSLASHACRshort] = ACTIONS(5127), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), - [anon_sym_BSLASHacrlong] = ACTIONS(5127), - [anon_sym_BSLASHAcrlong] = ACTIONS(5127), - [anon_sym_BSLASHACRlong] = ACTIONS(5127), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), - [anon_sym_BSLASHacrfull] = ACTIONS(5127), - [anon_sym_BSLASHAcrfull] = ACTIONS(5127), - [anon_sym_BSLASHACRfull] = ACTIONS(5127), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), - [anon_sym_BSLASHacs] = ACTIONS(5127), - [anon_sym_BSLASHAcs] = ACTIONS(5127), - [anon_sym_BSLASHacsp] = ACTIONS(5127), - [anon_sym_BSLASHAcsp] = ACTIONS(5127), - [anon_sym_BSLASHacl] = ACTIONS(5127), - [anon_sym_BSLASHAcl] = ACTIONS(5127), - [anon_sym_BSLASHaclp] = ACTIONS(5127), - [anon_sym_BSLASHAclp] = ACTIONS(5127), - [anon_sym_BSLASHacf] = ACTIONS(5127), - [anon_sym_BSLASHAcf] = ACTIONS(5127), - [anon_sym_BSLASHacfp] = ACTIONS(5127), - [anon_sym_BSLASHAcfp] = ACTIONS(5127), - [anon_sym_BSLASHac] = ACTIONS(5127), - [anon_sym_BSLASHAc] = ACTIONS(5127), - [anon_sym_BSLASHacp] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), - [anon_sym_BSLASHcolor] = ACTIONS(5127), - [anon_sym_BSLASHcolorbox] = ACTIONS(5127), - [anon_sym_BSLASHtextcolor] = ACTIONS(5127), - [anon_sym_BSLASHpagecolor] = ACTIONS(5127), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), - [anon_sym_BSLASHtext] = ACTIONS(5127), - [anon_sym_BSLASHintertext] = ACTIONS(5127), - [anon_sym_shortintertext] = ACTIONS(5127), + [ts_builtin_sym_end] = ACTIONS(5204), + [sym_command_name] = ACTIONS(5206), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_COMMA] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_BSLASHpart] = ACTIONS(5206), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddpart] = ACTIONS(5206), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHchapter] = ACTIONS(5206), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddchap] = ACTIONS(5206), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsection] = ACTIONS(5206), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddsec] = ACTIONS(5206), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHparagraph] = ACTIONS(5206), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5206), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHitem] = ACTIONS(5206), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5204), + [anon_sym_RBRACE] = ACTIONS(5204), + [sym_word] = ACTIONS(5206), + [sym_placeholder] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym__] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_SQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5204), + [anon_sym_BSLASHbegin] = ACTIONS(5206), + [anon_sym_BSLASHusepackage] = ACTIONS(5206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5206), + [anon_sym_BSLASHinclude] = ACTIONS(5206), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5206), + [anon_sym_BSLASHinput] = ACTIONS(5206), + [anon_sym_BSLASHsubfile] = ACTIONS(5206), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5206), + [anon_sym_BSLASHbibliography] = ACTIONS(5206), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5206), + [anon_sym_BSLASHincludesvg] = ACTIONS(5206), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5206), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5206), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5206), + [anon_sym_BSLASHimport] = ACTIONS(5206), + [anon_sym_BSLASHsubimport] = ACTIONS(5206), + [anon_sym_BSLASHinputfrom] = ACTIONS(5206), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5206), + [anon_sym_BSLASHincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHcaption] = ACTIONS(5206), + [anon_sym_BSLASHcite] = ACTIONS(5206), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCite] = ACTIONS(5206), + [anon_sym_BSLASHnocite] = ACTIONS(5206), + [anon_sym_BSLASHcitet] = ACTIONS(5206), + [anon_sym_BSLASHcitep] = ACTIONS(5206), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteauthor] = ACTIONS(5206), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5206), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitetitle] = ACTIONS(5206), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteyear] = ACTIONS(5206), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitedate] = ACTIONS(5206), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteurl] = ACTIONS(5206), + [anon_sym_BSLASHfullcite] = ACTIONS(5206), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5206), + [anon_sym_BSLASHcitealt] = ACTIONS(5206), + [anon_sym_BSLASHcitealp] = ACTIONS(5206), + [anon_sym_BSLASHcitetext] = ACTIONS(5206), + [anon_sym_BSLASHparencite] = ACTIONS(5206), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHParencite] = ACTIONS(5206), + [anon_sym_BSLASHfootcite] = ACTIONS(5206), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5206), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5206), + [anon_sym_BSLASHtextcite] = ACTIONS(5206), + [anon_sym_BSLASHTextcite] = ACTIONS(5206), + [anon_sym_BSLASHsmartcite] = ACTIONS(5206), + [anon_sym_BSLASHSmartcite] = ACTIONS(5206), + [anon_sym_BSLASHsupercite] = ACTIONS(5206), + [anon_sym_BSLASHautocite] = ACTIONS(5206), + [anon_sym_BSLASHAutocite] = ACTIONS(5206), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHvolcite] = ACTIONS(5206), + [anon_sym_BSLASHVolcite] = ACTIONS(5206), + [anon_sym_BSLASHpvolcite] = ACTIONS(5206), + [anon_sym_BSLASHPvolcite] = ACTIONS(5206), + [anon_sym_BSLASHfvolcite] = ACTIONS(5206), + [anon_sym_BSLASHftvolcite] = ACTIONS(5206), + [anon_sym_BSLASHsvolcite] = ACTIONS(5206), + [anon_sym_BSLASHSvolcite] = ACTIONS(5206), + [anon_sym_BSLASHtvolcite] = ACTIONS(5206), + [anon_sym_BSLASHTvolcite] = ACTIONS(5206), + [anon_sym_BSLASHavolcite] = ACTIONS(5206), + [anon_sym_BSLASHAvolcite] = ACTIONS(5206), + [anon_sym_BSLASHnotecite] = ACTIONS(5206), + [anon_sym_BSLASHNotecite] = ACTIONS(5206), + [anon_sym_BSLASHpnotecite] = ACTIONS(5206), + [anon_sym_BSLASHPnotecite] = ACTIONS(5206), + [anon_sym_BSLASHfnotecite] = ACTIONS(5206), + [anon_sym_BSLASHlabel] = ACTIONS(5206), + [anon_sym_BSLASHref] = ACTIONS(5206), + [anon_sym_BSLASHeqref] = ACTIONS(5206), + [anon_sym_BSLASHvref] = ACTIONS(5206), + [anon_sym_BSLASHVref] = ACTIONS(5206), + [anon_sym_BSLASHautoref] = ACTIONS(5206), + [anon_sym_BSLASHpageref] = ACTIONS(5206), + [anon_sym_BSLASHcref] = ACTIONS(5206), + [anon_sym_BSLASHCref] = ACTIONS(5206), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnameCref] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHlabelcref] = ACTIONS(5206), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCrefrange] = ACTIONS(5206), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnewlabel] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5206), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5206), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5206), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdef] = ACTIONS(5206), + [anon_sym_BSLASHlet] = ACTIONS(5206), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5206), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5206), + [anon_sym_BSLASHgls] = ACTIONS(5206), + [anon_sym_BSLASHGls] = ACTIONS(5206), + [anon_sym_BSLASHGLS] = ACTIONS(5206), + [anon_sym_BSLASHglspl] = ACTIONS(5206), + [anon_sym_BSLASHGlspl] = ACTIONS(5206), + [anon_sym_BSLASHGLSpl] = ACTIONS(5206), + [anon_sym_BSLASHglsdisp] = ACTIONS(5206), + [anon_sym_BSLASHglslink] = ACTIONS(5206), + [anon_sym_BSLASHglstext] = ACTIONS(5206), + [anon_sym_BSLASHGlstext] = ACTIONS(5206), + [anon_sym_BSLASHGLStext] = ACTIONS(5206), + [anon_sym_BSLASHglsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5206), + [anon_sym_BSLASHglsplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSplural] = ACTIONS(5206), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHglsname] = ACTIONS(5206), + [anon_sym_BSLASHGlsname] = ACTIONS(5206), + [anon_sym_BSLASHGLSname] = ACTIONS(5206), + [anon_sym_BSLASHglssymbol] = ACTIONS(5206), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5206), + [anon_sym_BSLASHglsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5206), + [anon_sym_BSLASHglsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5206), + [anon_sym_BSLASHglsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5206), + [anon_sym_BSLASHglsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5206), + [anon_sym_BSLASHglsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5206), + [anon_sym_BSLASHnewacronym] = ACTIONS(5206), + [anon_sym_BSLASHacrshort] = ACTIONS(5206), + [anon_sym_BSLASHAcrshort] = ACTIONS(5206), + [anon_sym_BSLASHACRshort] = ACTIONS(5206), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5206), + [anon_sym_BSLASHacrlong] = ACTIONS(5206), + [anon_sym_BSLASHAcrlong] = ACTIONS(5206), + [anon_sym_BSLASHACRlong] = ACTIONS(5206), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5206), + [anon_sym_BSLASHacrfull] = ACTIONS(5206), + [anon_sym_BSLASHAcrfull] = ACTIONS(5206), + [anon_sym_BSLASHACRfull] = ACTIONS(5206), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5206), + [anon_sym_BSLASHacs] = ACTIONS(5206), + [anon_sym_BSLASHAcs] = ACTIONS(5206), + [anon_sym_BSLASHacsp] = ACTIONS(5206), + [anon_sym_BSLASHAcsp] = ACTIONS(5206), + [anon_sym_BSLASHacl] = ACTIONS(5206), + [anon_sym_BSLASHAcl] = ACTIONS(5206), + [anon_sym_BSLASHaclp] = ACTIONS(5206), + [anon_sym_BSLASHAclp] = ACTIONS(5206), + [anon_sym_BSLASHacf] = ACTIONS(5206), + [anon_sym_BSLASHAcf] = ACTIONS(5206), + [anon_sym_BSLASHacfp] = ACTIONS(5206), + [anon_sym_BSLASHAcfp] = ACTIONS(5206), + [anon_sym_BSLASHac] = ACTIONS(5206), + [anon_sym_BSLASHAc] = ACTIONS(5206), + [anon_sym_BSLASHacp] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5206), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5206), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5206), + [anon_sym_BSLASHcolor] = ACTIONS(5206), + [anon_sym_BSLASHcolorbox] = ACTIONS(5206), + [anon_sym_BSLASHtextcolor] = ACTIONS(5206), + [anon_sym_BSLASHpagecolor] = ACTIONS(5206), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5206), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5206), + [anon_sym_BSLASHtext] = ACTIONS(5206), + [anon_sym_BSLASHintertext] = ACTIONS(5206), + [anon_sym_shortintertext] = ACTIONS(5206), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(5129), - [sym_command_name] = ACTIONS(5131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_BSLASHpart] = ACTIONS(5131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddpart] = ACTIONS(5131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHchapter] = ACTIONS(5131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddchap] = ACTIONS(5131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsection] = ACTIONS(5131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddsec] = ACTIONS(5131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHparagraph] = ACTIONS(5131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHitem] = ACTIONS(5131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5129), - [anon_sym_RBRACE] = ACTIONS(5129), - [sym_word] = ACTIONS(5131), - [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_DOLLAR_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), - [anon_sym_BSLASHbegin] = ACTIONS(5131), - [anon_sym_BSLASHusepackage] = ACTIONS(5131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), - [anon_sym_BSLASHinclude] = ACTIONS(5131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), - [anon_sym_BSLASHinput] = ACTIONS(5131), - [anon_sym_BSLASHsubfile] = ACTIONS(5131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), - [anon_sym_BSLASHbibliography] = ACTIONS(5131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), - [anon_sym_BSLASHincludesvg] = ACTIONS(5131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), - [anon_sym_BSLASHimport] = ACTIONS(5131), - [anon_sym_BSLASHsubimport] = ACTIONS(5131), - [anon_sym_BSLASHinputfrom] = ACTIONS(5131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), - [anon_sym_BSLASHincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHcaption] = ACTIONS(5131), - [anon_sym_BSLASHcite] = ACTIONS(5131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCite] = ACTIONS(5131), - [anon_sym_BSLASHnocite] = ACTIONS(5131), - [anon_sym_BSLASHcitet] = ACTIONS(5131), - [anon_sym_BSLASHcitep] = ACTIONS(5131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor] = ACTIONS(5131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle] = ACTIONS(5131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteyear] = ACTIONS(5131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitedate] = ACTIONS(5131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteurl] = ACTIONS(5131), - [anon_sym_BSLASHfullcite] = ACTIONS(5131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), - [anon_sym_BSLASHcitealt] = ACTIONS(5131), - [anon_sym_BSLASHcitealp] = ACTIONS(5131), - [anon_sym_BSLASHcitetext] = ACTIONS(5131), - [anon_sym_BSLASHparencite] = ACTIONS(5131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHParencite] = ACTIONS(5131), - [anon_sym_BSLASHfootcite] = ACTIONS(5131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), - [anon_sym_BSLASHtextcite] = ACTIONS(5131), - [anon_sym_BSLASHTextcite] = ACTIONS(5131), - [anon_sym_BSLASHsmartcite] = ACTIONS(5131), - [anon_sym_BSLASHSmartcite] = ACTIONS(5131), - [anon_sym_BSLASHsupercite] = ACTIONS(5131), - [anon_sym_BSLASHautocite] = ACTIONS(5131), - [anon_sym_BSLASHAutocite] = ACTIONS(5131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHvolcite] = ACTIONS(5131), - [anon_sym_BSLASHVolcite] = ACTIONS(5131), - [anon_sym_BSLASHpvolcite] = ACTIONS(5131), - [anon_sym_BSLASHPvolcite] = ACTIONS(5131), - [anon_sym_BSLASHfvolcite] = ACTIONS(5131), - [anon_sym_BSLASHftvolcite] = ACTIONS(5131), - [anon_sym_BSLASHsvolcite] = ACTIONS(5131), - [anon_sym_BSLASHSvolcite] = ACTIONS(5131), - [anon_sym_BSLASHtvolcite] = ACTIONS(5131), - [anon_sym_BSLASHTvolcite] = ACTIONS(5131), - [anon_sym_BSLASHavolcite] = ACTIONS(5131), - [anon_sym_BSLASHAvolcite] = ACTIONS(5131), - [anon_sym_BSLASHnotecite] = ACTIONS(5131), - [anon_sym_BSLASHNotecite] = ACTIONS(5131), - [anon_sym_BSLASHpnotecite] = ACTIONS(5131), - [anon_sym_BSLASHPnotecite] = ACTIONS(5131), - [anon_sym_BSLASHfnotecite] = ACTIONS(5131), - [anon_sym_BSLASHlabel] = ACTIONS(5131), - [anon_sym_BSLASHref] = ACTIONS(5131), - [anon_sym_BSLASHeqref] = ACTIONS(5131), - [anon_sym_BSLASHvref] = ACTIONS(5131), - [anon_sym_BSLASHVref] = ACTIONS(5131), - [anon_sym_BSLASHautoref] = ACTIONS(5131), - [anon_sym_BSLASHpageref] = ACTIONS(5131), - [anon_sym_BSLASHcref] = ACTIONS(5131), - [anon_sym_BSLASHCref] = ACTIONS(5131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnameCref] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHlabelcref] = ACTIONS(5131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange] = ACTIONS(5131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnewlabel] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), - [anon_sym_BSLASHdef] = ACTIONS(5131), - [anon_sym_BSLASHlet] = ACTIONS(5131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), - [anon_sym_BSLASHgls] = ACTIONS(5131), - [anon_sym_BSLASHGls] = ACTIONS(5131), - [anon_sym_BSLASHGLS] = ACTIONS(5131), - [anon_sym_BSLASHglspl] = ACTIONS(5131), - [anon_sym_BSLASHGlspl] = ACTIONS(5131), - [anon_sym_BSLASHGLSpl] = ACTIONS(5131), - [anon_sym_BSLASHglsdisp] = ACTIONS(5131), - [anon_sym_BSLASHglslink] = ACTIONS(5131), - [anon_sym_BSLASHglstext] = ACTIONS(5131), - [anon_sym_BSLASHGlstext] = ACTIONS(5131), - [anon_sym_BSLASHGLStext] = ACTIONS(5131), - [anon_sym_BSLASHglsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), - [anon_sym_BSLASHglsplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSplural] = ACTIONS(5131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHglsname] = ACTIONS(5131), - [anon_sym_BSLASHGlsname] = ACTIONS(5131), - [anon_sym_BSLASHGLSname] = ACTIONS(5131), - [anon_sym_BSLASHglssymbol] = ACTIONS(5131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), - [anon_sym_BSLASHglsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), - [anon_sym_BSLASHglsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), - [anon_sym_BSLASHglsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), - [anon_sym_BSLASHglsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), - [anon_sym_BSLASHglsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), - [anon_sym_BSLASHnewacronym] = ACTIONS(5131), - [anon_sym_BSLASHacrshort] = ACTIONS(5131), - [anon_sym_BSLASHAcrshort] = ACTIONS(5131), - [anon_sym_BSLASHACRshort] = ACTIONS(5131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), - [anon_sym_BSLASHacrlong] = ACTIONS(5131), - [anon_sym_BSLASHAcrlong] = ACTIONS(5131), - [anon_sym_BSLASHACRlong] = ACTIONS(5131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), - [anon_sym_BSLASHacrfull] = ACTIONS(5131), - [anon_sym_BSLASHAcrfull] = ACTIONS(5131), - [anon_sym_BSLASHACRfull] = ACTIONS(5131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), - [anon_sym_BSLASHacs] = ACTIONS(5131), - [anon_sym_BSLASHAcs] = ACTIONS(5131), - [anon_sym_BSLASHacsp] = ACTIONS(5131), - [anon_sym_BSLASHAcsp] = ACTIONS(5131), - [anon_sym_BSLASHacl] = ACTIONS(5131), - [anon_sym_BSLASHAcl] = ACTIONS(5131), - [anon_sym_BSLASHaclp] = ACTIONS(5131), - [anon_sym_BSLASHAclp] = ACTIONS(5131), - [anon_sym_BSLASHacf] = ACTIONS(5131), - [anon_sym_BSLASHAcf] = ACTIONS(5131), - [anon_sym_BSLASHacfp] = ACTIONS(5131), - [anon_sym_BSLASHAcfp] = ACTIONS(5131), - [anon_sym_BSLASHac] = ACTIONS(5131), - [anon_sym_BSLASHAc] = ACTIONS(5131), - [anon_sym_BSLASHacp] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), - [anon_sym_BSLASHcolor] = ACTIONS(5131), - [anon_sym_BSLASHcolorbox] = ACTIONS(5131), - [anon_sym_BSLASHtextcolor] = ACTIONS(5131), - [anon_sym_BSLASHpagecolor] = ACTIONS(5131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), - [anon_sym_BSLASHtext] = ACTIONS(5131), - [anon_sym_BSLASHintertext] = ACTIONS(5131), - [anon_sym_shortintertext] = ACTIONS(5131), + [ts_builtin_sym_end] = ACTIONS(5208), + [sym_command_name] = ACTIONS(5210), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_BSLASHpart] = ACTIONS(5210), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddpart] = ACTIONS(5210), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHchapter] = ACTIONS(5210), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddchap] = ACTIONS(5210), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsection] = ACTIONS(5210), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddsec] = ACTIONS(5210), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHparagraph] = ACTIONS(5210), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5210), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHitem] = ACTIONS(5210), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5208), + [anon_sym_RBRACE] = ACTIONS(5208), + [sym_word] = ACTIONS(5210), + [sym_placeholder] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym__] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_SQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5208), + [anon_sym_BSLASHbegin] = ACTIONS(5210), + [anon_sym_BSLASHusepackage] = ACTIONS(5210), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5210), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5210), + [anon_sym_BSLASHinclude] = ACTIONS(5210), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5210), + [anon_sym_BSLASHinput] = ACTIONS(5210), + [anon_sym_BSLASHsubfile] = ACTIONS(5210), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5210), + [anon_sym_BSLASHbibliography] = ACTIONS(5210), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5210), + [anon_sym_BSLASHincludesvg] = ACTIONS(5210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5210), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5210), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5210), + [anon_sym_BSLASHimport] = ACTIONS(5210), + [anon_sym_BSLASHsubimport] = ACTIONS(5210), + [anon_sym_BSLASHinputfrom] = ACTIONS(5210), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5210), + [anon_sym_BSLASHincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHcaption] = ACTIONS(5210), + [anon_sym_BSLASHcite] = ACTIONS(5210), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCite] = ACTIONS(5210), + [anon_sym_BSLASHnocite] = ACTIONS(5210), + [anon_sym_BSLASHcitet] = ACTIONS(5210), + [anon_sym_BSLASHcitep] = ACTIONS(5210), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteauthor] = ACTIONS(5210), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5210), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitetitle] = ACTIONS(5210), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteyear] = ACTIONS(5210), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitedate] = ACTIONS(5210), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteurl] = ACTIONS(5210), + [anon_sym_BSLASHfullcite] = ACTIONS(5210), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5210), + [anon_sym_BSLASHcitealt] = ACTIONS(5210), + [anon_sym_BSLASHcitealp] = ACTIONS(5210), + [anon_sym_BSLASHcitetext] = ACTIONS(5210), + [anon_sym_BSLASHparencite] = ACTIONS(5210), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHParencite] = ACTIONS(5210), + [anon_sym_BSLASHfootcite] = ACTIONS(5210), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5210), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5210), + [anon_sym_BSLASHtextcite] = ACTIONS(5210), + [anon_sym_BSLASHTextcite] = ACTIONS(5210), + [anon_sym_BSLASHsmartcite] = ACTIONS(5210), + [anon_sym_BSLASHSmartcite] = ACTIONS(5210), + [anon_sym_BSLASHsupercite] = ACTIONS(5210), + [anon_sym_BSLASHautocite] = ACTIONS(5210), + [anon_sym_BSLASHAutocite] = ACTIONS(5210), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHvolcite] = ACTIONS(5210), + [anon_sym_BSLASHVolcite] = ACTIONS(5210), + [anon_sym_BSLASHpvolcite] = ACTIONS(5210), + [anon_sym_BSLASHPvolcite] = ACTIONS(5210), + [anon_sym_BSLASHfvolcite] = ACTIONS(5210), + [anon_sym_BSLASHftvolcite] = ACTIONS(5210), + [anon_sym_BSLASHsvolcite] = ACTIONS(5210), + [anon_sym_BSLASHSvolcite] = ACTIONS(5210), + [anon_sym_BSLASHtvolcite] = ACTIONS(5210), + [anon_sym_BSLASHTvolcite] = ACTIONS(5210), + [anon_sym_BSLASHavolcite] = ACTIONS(5210), + [anon_sym_BSLASHAvolcite] = ACTIONS(5210), + [anon_sym_BSLASHnotecite] = ACTIONS(5210), + [anon_sym_BSLASHNotecite] = ACTIONS(5210), + [anon_sym_BSLASHpnotecite] = ACTIONS(5210), + [anon_sym_BSLASHPnotecite] = ACTIONS(5210), + [anon_sym_BSLASHfnotecite] = ACTIONS(5210), + [anon_sym_BSLASHlabel] = ACTIONS(5210), + [anon_sym_BSLASHref] = ACTIONS(5210), + [anon_sym_BSLASHeqref] = ACTIONS(5210), + [anon_sym_BSLASHvref] = ACTIONS(5210), + [anon_sym_BSLASHVref] = ACTIONS(5210), + [anon_sym_BSLASHautoref] = ACTIONS(5210), + [anon_sym_BSLASHpageref] = ACTIONS(5210), + [anon_sym_BSLASHcref] = ACTIONS(5210), + [anon_sym_BSLASHCref] = ACTIONS(5210), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnameCref] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHlabelcref] = ACTIONS(5210), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCrefrange] = ACTIONS(5210), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnewlabel] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdef] = ACTIONS(5210), + [anon_sym_BSLASHlet] = ACTIONS(5210), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5210), + [anon_sym_BSLASHgls] = ACTIONS(5210), + [anon_sym_BSLASHGls] = ACTIONS(5210), + [anon_sym_BSLASHGLS] = ACTIONS(5210), + [anon_sym_BSLASHglspl] = ACTIONS(5210), + [anon_sym_BSLASHGlspl] = ACTIONS(5210), + [anon_sym_BSLASHGLSpl] = ACTIONS(5210), + [anon_sym_BSLASHglsdisp] = ACTIONS(5210), + [anon_sym_BSLASHglslink] = ACTIONS(5210), + [anon_sym_BSLASHglstext] = ACTIONS(5210), + [anon_sym_BSLASHGlstext] = ACTIONS(5210), + [anon_sym_BSLASHGLStext] = ACTIONS(5210), + [anon_sym_BSLASHglsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5210), + [anon_sym_BSLASHglsplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSplural] = ACTIONS(5210), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHglsname] = ACTIONS(5210), + [anon_sym_BSLASHGlsname] = ACTIONS(5210), + [anon_sym_BSLASHGLSname] = ACTIONS(5210), + [anon_sym_BSLASHglssymbol] = ACTIONS(5210), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5210), + [anon_sym_BSLASHglsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5210), + [anon_sym_BSLASHglsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5210), + [anon_sym_BSLASHglsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5210), + [anon_sym_BSLASHglsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5210), + [anon_sym_BSLASHglsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5210), + [anon_sym_BSLASHnewacronym] = ACTIONS(5210), + [anon_sym_BSLASHacrshort] = ACTIONS(5210), + [anon_sym_BSLASHAcrshort] = ACTIONS(5210), + [anon_sym_BSLASHACRshort] = ACTIONS(5210), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5210), + [anon_sym_BSLASHacrlong] = ACTIONS(5210), + [anon_sym_BSLASHAcrlong] = ACTIONS(5210), + [anon_sym_BSLASHACRlong] = ACTIONS(5210), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5210), + [anon_sym_BSLASHacrfull] = ACTIONS(5210), + [anon_sym_BSLASHAcrfull] = ACTIONS(5210), + [anon_sym_BSLASHACRfull] = ACTIONS(5210), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5210), + [anon_sym_BSLASHacs] = ACTIONS(5210), + [anon_sym_BSLASHAcs] = ACTIONS(5210), + [anon_sym_BSLASHacsp] = ACTIONS(5210), + [anon_sym_BSLASHAcsp] = ACTIONS(5210), + [anon_sym_BSLASHacl] = ACTIONS(5210), + [anon_sym_BSLASHAcl] = ACTIONS(5210), + [anon_sym_BSLASHaclp] = ACTIONS(5210), + [anon_sym_BSLASHAclp] = ACTIONS(5210), + [anon_sym_BSLASHacf] = ACTIONS(5210), + [anon_sym_BSLASHAcf] = ACTIONS(5210), + [anon_sym_BSLASHacfp] = ACTIONS(5210), + [anon_sym_BSLASHAcfp] = ACTIONS(5210), + [anon_sym_BSLASHac] = ACTIONS(5210), + [anon_sym_BSLASHAc] = ACTIONS(5210), + [anon_sym_BSLASHacp] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5210), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5210), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5210), + [anon_sym_BSLASHcolor] = ACTIONS(5210), + [anon_sym_BSLASHcolorbox] = ACTIONS(5210), + [anon_sym_BSLASHtextcolor] = ACTIONS(5210), + [anon_sym_BSLASHpagecolor] = ACTIONS(5210), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5210), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5210), + [anon_sym_BSLASHtext] = ACTIONS(5210), + [anon_sym_BSLASHintertext] = ACTIONS(5210), + [anon_sym_shortintertext] = ACTIONS(5210), }, [752] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [ts_builtin_sym_end] = ACTIONS(5212), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_BSLASHpart] = ACTIONS(5214), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddpart] = ACTIONS(5214), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHchapter] = ACTIONS(5214), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddchap] = ACTIONS(5214), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsection] = ACTIONS(5214), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddsec] = ACTIONS(5214), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHparagraph] = ACTIONS(5214), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5214), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHitem] = ACTIONS(5214), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [anon_sym_RBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASHbegin] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [753] = { [sym_brack_group_text] = STATE(1167), - [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(4931), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4853), - [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), + [sym_command_name] = ACTIONS(4932), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_BSLASHpart] = ACTIONS(4932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddpart] = ACTIONS(4932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHchapter] = ACTIONS(4932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddchap] = ACTIONS(4932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsection] = ACTIONS(4932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddsec] = ACTIONS(4932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHparagraph] = ACTIONS(4932), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4932), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHitem] = ACTIONS(4932), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4930), + [sym_word] = ACTIONS(4932), + [sym_placeholder] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym__] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4930), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4930), + [anon_sym_BSLASHbegin] = ACTIONS(4932), + [anon_sym_BSLASHusepackage] = ACTIONS(4932), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4932), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4932), + [anon_sym_BSLASHinclude] = ACTIONS(4932), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4932), + [anon_sym_BSLASHinput] = ACTIONS(4932), + [anon_sym_BSLASHsubfile] = ACTIONS(4932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4932), + [anon_sym_BSLASHbibliography] = ACTIONS(4932), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4932), + [anon_sym_BSLASHincludesvg] = ACTIONS(4932), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4932), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4932), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4932), + [anon_sym_BSLASHimport] = ACTIONS(4932), + [anon_sym_BSLASHsubimport] = ACTIONS(4932), + [anon_sym_BSLASHinputfrom] = ACTIONS(4932), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4932), + [anon_sym_BSLASHincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHcaption] = ACTIONS(4932), + [anon_sym_BSLASHcite] = ACTIONS(4932), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCite] = ACTIONS(4932), + [anon_sym_BSLASHnocite] = ACTIONS(4932), + [anon_sym_BSLASHcitet] = ACTIONS(4932), + [anon_sym_BSLASHcitep] = ACTIONS(4932), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteauthor] = ACTIONS(4932), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4932), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitetitle] = ACTIONS(4932), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteyear] = ACTIONS(4932), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitedate] = ACTIONS(4932), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteurl] = ACTIONS(4932), + [anon_sym_BSLASHfullcite] = ACTIONS(4932), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4932), + [anon_sym_BSLASHcitealt] = ACTIONS(4932), + [anon_sym_BSLASHcitealp] = ACTIONS(4932), + [anon_sym_BSLASHcitetext] = ACTIONS(4932), + [anon_sym_BSLASHparencite] = ACTIONS(4932), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHParencite] = ACTIONS(4932), + [anon_sym_BSLASHfootcite] = ACTIONS(4932), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4932), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4932), + [anon_sym_BSLASHtextcite] = ACTIONS(4932), + [anon_sym_BSLASHTextcite] = ACTIONS(4932), + [anon_sym_BSLASHsmartcite] = ACTIONS(4932), + [anon_sym_BSLASHSmartcite] = ACTIONS(4932), + [anon_sym_BSLASHsupercite] = ACTIONS(4932), + [anon_sym_BSLASHautocite] = ACTIONS(4932), + [anon_sym_BSLASHAutocite] = ACTIONS(4932), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHvolcite] = ACTIONS(4932), + [anon_sym_BSLASHVolcite] = ACTIONS(4932), + [anon_sym_BSLASHpvolcite] = ACTIONS(4932), + [anon_sym_BSLASHPvolcite] = ACTIONS(4932), + [anon_sym_BSLASHfvolcite] = ACTIONS(4932), + [anon_sym_BSLASHftvolcite] = ACTIONS(4932), + [anon_sym_BSLASHsvolcite] = ACTIONS(4932), + [anon_sym_BSLASHSvolcite] = ACTIONS(4932), + [anon_sym_BSLASHtvolcite] = ACTIONS(4932), + [anon_sym_BSLASHTvolcite] = ACTIONS(4932), + [anon_sym_BSLASHavolcite] = ACTIONS(4932), + [anon_sym_BSLASHAvolcite] = ACTIONS(4932), + [anon_sym_BSLASHnotecite] = ACTIONS(4932), + [anon_sym_BSLASHNotecite] = ACTIONS(4932), + [anon_sym_BSLASHpnotecite] = ACTIONS(4932), + [anon_sym_BSLASHPnotecite] = ACTIONS(4932), + [anon_sym_BSLASHfnotecite] = ACTIONS(4932), + [anon_sym_BSLASHlabel] = ACTIONS(4932), + [anon_sym_BSLASHref] = ACTIONS(4932), + [anon_sym_BSLASHeqref] = ACTIONS(4932), + [anon_sym_BSLASHvref] = ACTIONS(4932), + [anon_sym_BSLASHVref] = ACTIONS(4932), + [anon_sym_BSLASHautoref] = ACTIONS(4932), + [anon_sym_BSLASHpageref] = ACTIONS(4932), + [anon_sym_BSLASHcref] = ACTIONS(4932), + [anon_sym_BSLASHCref] = ACTIONS(4932), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnameCref] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHlabelcref] = ACTIONS(4932), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCrefrange] = ACTIONS(4932), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnewlabel] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4932), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4932), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4932), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdef] = ACTIONS(4932), + [anon_sym_BSLASHlet] = ACTIONS(4932), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4932), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4932), + [anon_sym_BSLASHgls] = ACTIONS(4932), + [anon_sym_BSLASHGls] = ACTIONS(4932), + [anon_sym_BSLASHGLS] = ACTIONS(4932), + [anon_sym_BSLASHglspl] = ACTIONS(4932), + [anon_sym_BSLASHGlspl] = ACTIONS(4932), + [anon_sym_BSLASHGLSpl] = ACTIONS(4932), + [anon_sym_BSLASHglsdisp] = ACTIONS(4932), + [anon_sym_BSLASHglslink] = ACTIONS(4932), + [anon_sym_BSLASHglstext] = ACTIONS(4932), + [anon_sym_BSLASHGlstext] = ACTIONS(4932), + [anon_sym_BSLASHGLStext] = ACTIONS(4932), + [anon_sym_BSLASHglsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4932), + [anon_sym_BSLASHglsplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSplural] = ACTIONS(4932), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHglsname] = ACTIONS(4932), + [anon_sym_BSLASHGlsname] = ACTIONS(4932), + [anon_sym_BSLASHGLSname] = ACTIONS(4932), + [anon_sym_BSLASHglssymbol] = ACTIONS(4932), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4932), + [anon_sym_BSLASHglsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4932), + [anon_sym_BSLASHglsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4932), + [anon_sym_BSLASHglsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4932), + [anon_sym_BSLASHglsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4932), + [anon_sym_BSLASHglsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4932), + [anon_sym_BSLASHnewacronym] = ACTIONS(4932), + [anon_sym_BSLASHacrshort] = ACTIONS(4932), + [anon_sym_BSLASHAcrshort] = ACTIONS(4932), + [anon_sym_BSLASHACRshort] = ACTIONS(4932), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4932), + [anon_sym_BSLASHacrlong] = ACTIONS(4932), + [anon_sym_BSLASHAcrlong] = ACTIONS(4932), + [anon_sym_BSLASHACRlong] = ACTIONS(4932), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4932), + [anon_sym_BSLASHacrfull] = ACTIONS(4932), + [anon_sym_BSLASHAcrfull] = ACTIONS(4932), + [anon_sym_BSLASHACRfull] = ACTIONS(4932), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4932), + [anon_sym_BSLASHacs] = ACTIONS(4932), + [anon_sym_BSLASHAcs] = ACTIONS(4932), + [anon_sym_BSLASHacsp] = ACTIONS(4932), + [anon_sym_BSLASHAcsp] = ACTIONS(4932), + [anon_sym_BSLASHacl] = ACTIONS(4932), + [anon_sym_BSLASHAcl] = ACTIONS(4932), + [anon_sym_BSLASHaclp] = ACTIONS(4932), + [anon_sym_BSLASHAclp] = ACTIONS(4932), + [anon_sym_BSLASHacf] = ACTIONS(4932), + [anon_sym_BSLASHAcf] = ACTIONS(4932), + [anon_sym_BSLASHacfp] = ACTIONS(4932), + [anon_sym_BSLASHAcfp] = ACTIONS(4932), + [anon_sym_BSLASHac] = ACTIONS(4932), + [anon_sym_BSLASHAc] = ACTIONS(4932), + [anon_sym_BSLASHacp] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4932), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4932), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4932), + [anon_sym_BSLASHcolor] = ACTIONS(4932), + [anon_sym_BSLASHcolorbox] = ACTIONS(4932), + [anon_sym_BSLASHtextcolor] = ACTIONS(4932), + [anon_sym_BSLASHpagecolor] = ACTIONS(4932), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4932), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4932), + [anon_sym_BSLASHtext] = ACTIONS(4932), + [anon_sym_BSLASHintertext] = ACTIONS(4932), + [anon_sym_shortintertext] = ACTIONS(4932), }, [754] = { [sym_curly_group] = STATE(1168), - [sym_command_name] = ACTIONS(4849), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_BSLASHpart] = ACTIONS(4849), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddpart] = ACTIONS(4849), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHchapter] = ACTIONS(4849), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddchap] = ACTIONS(4849), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsection] = ACTIONS(4849), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddsec] = ACTIONS(4849), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHparagraph] = ACTIONS(4849), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHitem] = ACTIONS(4849), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4849), - [sym_placeholder] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4849), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4849), - [anon_sym__] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4849), - [anon_sym_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4847), - [anon_sym_DOLLAR] = ACTIONS(4849), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), - [anon_sym_BSLASHbegin] = ACTIONS(4849), - [anon_sym_BSLASHusepackage] = ACTIONS(4849), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), - [anon_sym_BSLASHinclude] = ACTIONS(4849), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), - [anon_sym_BSLASHinput] = ACTIONS(4849), - [anon_sym_BSLASHsubfile] = ACTIONS(4849), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), - [anon_sym_BSLASHbibliography] = ACTIONS(4849), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4849), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), - [anon_sym_BSLASHimport] = ACTIONS(4849), - [anon_sym_BSLASHsubimport] = ACTIONS(4849), - [anon_sym_BSLASHinputfrom] = ACTIONS(4849), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), - [anon_sym_BSLASHincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHcaption] = ACTIONS(4849), - [anon_sym_BSLASHcite] = ACTIONS(4849), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCite] = ACTIONS(4849), - [anon_sym_BSLASHnocite] = ACTIONS(4849), - [anon_sym_BSLASHcitet] = ACTIONS(4849), - [anon_sym_BSLASHcitep] = ACTIONS(4849), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteauthor] = ACTIONS(4849), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitetitle] = ACTIONS(4849), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteyear] = ACTIONS(4849), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitedate] = ACTIONS(4849), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteurl] = ACTIONS(4849), - [anon_sym_BSLASHfullcite] = ACTIONS(4849), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), - [anon_sym_BSLASHcitealt] = ACTIONS(4849), - [anon_sym_BSLASHcitealp] = ACTIONS(4849), - [anon_sym_BSLASHcitetext] = ACTIONS(4849), - [anon_sym_BSLASHparencite] = ACTIONS(4849), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHParencite] = ACTIONS(4849), - [anon_sym_BSLASHfootcite] = ACTIONS(4849), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), - [anon_sym_BSLASHtextcite] = ACTIONS(4849), - [anon_sym_BSLASHTextcite] = ACTIONS(4849), - [anon_sym_BSLASHsmartcite] = ACTIONS(4849), - [anon_sym_BSLASHSmartcite] = ACTIONS(4849), - [anon_sym_BSLASHsupercite] = ACTIONS(4849), - [anon_sym_BSLASHautocite] = ACTIONS(4849), - [anon_sym_BSLASHAutocite] = ACTIONS(4849), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHvolcite] = ACTIONS(4849), - [anon_sym_BSLASHVolcite] = ACTIONS(4849), - [anon_sym_BSLASHpvolcite] = ACTIONS(4849), - [anon_sym_BSLASHPvolcite] = ACTIONS(4849), - [anon_sym_BSLASHfvolcite] = ACTIONS(4849), - [anon_sym_BSLASHftvolcite] = ACTIONS(4849), - [anon_sym_BSLASHsvolcite] = ACTIONS(4849), - [anon_sym_BSLASHSvolcite] = ACTIONS(4849), - [anon_sym_BSLASHtvolcite] = ACTIONS(4849), - [anon_sym_BSLASHTvolcite] = ACTIONS(4849), - [anon_sym_BSLASHavolcite] = ACTIONS(4849), - [anon_sym_BSLASHAvolcite] = ACTIONS(4849), - [anon_sym_BSLASHnotecite] = ACTIONS(4849), - [anon_sym_BSLASHNotecite] = ACTIONS(4849), - [anon_sym_BSLASHpnotecite] = ACTIONS(4849), - [anon_sym_BSLASHPnotecite] = ACTIONS(4849), - [anon_sym_BSLASHfnotecite] = ACTIONS(4849), - [anon_sym_BSLASHlabel] = ACTIONS(4849), - [anon_sym_BSLASHref] = ACTIONS(4849), - [anon_sym_BSLASHeqref] = ACTIONS(4849), - [anon_sym_BSLASHvref] = ACTIONS(4849), - [anon_sym_BSLASHVref] = ACTIONS(4849), - [anon_sym_BSLASHautoref] = ACTIONS(4849), - [anon_sym_BSLASHpageref] = ACTIONS(4849), - [anon_sym_BSLASHcref] = ACTIONS(4849), - [anon_sym_BSLASHCref] = ACTIONS(4849), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnameCref] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHlabelcref] = ACTIONS(4849), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCrefrange] = ACTIONS(4849), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnewlabel] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), - [anon_sym_BSLASHdef] = ACTIONS(4849), - [anon_sym_BSLASHlet] = ACTIONS(4849), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), - [anon_sym_BSLASHgls] = ACTIONS(4849), - [anon_sym_BSLASHGls] = ACTIONS(4849), - [anon_sym_BSLASHGLS] = ACTIONS(4849), - [anon_sym_BSLASHglspl] = ACTIONS(4849), - [anon_sym_BSLASHGlspl] = ACTIONS(4849), - [anon_sym_BSLASHGLSpl] = ACTIONS(4849), - [anon_sym_BSLASHglsdisp] = ACTIONS(4849), - [anon_sym_BSLASHglslink] = ACTIONS(4849), - [anon_sym_BSLASHglstext] = ACTIONS(4849), - [anon_sym_BSLASHGlstext] = ACTIONS(4849), - [anon_sym_BSLASHGLStext] = ACTIONS(4849), - [anon_sym_BSLASHglsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), - [anon_sym_BSLASHglsplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSplural] = ACTIONS(4849), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHglsname] = ACTIONS(4849), - [anon_sym_BSLASHGlsname] = ACTIONS(4849), - [anon_sym_BSLASHGLSname] = ACTIONS(4849), - [anon_sym_BSLASHglssymbol] = ACTIONS(4849), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), - [anon_sym_BSLASHglsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), - [anon_sym_BSLASHglsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), - [anon_sym_BSLASHglsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), - [anon_sym_BSLASHglsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), - [anon_sym_BSLASHglsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), - [anon_sym_BSLASHnewacronym] = ACTIONS(4849), - [anon_sym_BSLASHacrshort] = ACTIONS(4849), - [anon_sym_BSLASHAcrshort] = ACTIONS(4849), - [anon_sym_BSLASHACRshort] = ACTIONS(4849), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), - [anon_sym_BSLASHacrlong] = ACTIONS(4849), - [anon_sym_BSLASHAcrlong] = ACTIONS(4849), - [anon_sym_BSLASHACRlong] = ACTIONS(4849), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), - [anon_sym_BSLASHacrfull] = ACTIONS(4849), - [anon_sym_BSLASHAcrfull] = ACTIONS(4849), - [anon_sym_BSLASHACRfull] = ACTIONS(4849), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), - [anon_sym_BSLASHacs] = ACTIONS(4849), - [anon_sym_BSLASHAcs] = ACTIONS(4849), - [anon_sym_BSLASHacsp] = ACTIONS(4849), - [anon_sym_BSLASHAcsp] = ACTIONS(4849), - [anon_sym_BSLASHacl] = ACTIONS(4849), - [anon_sym_BSLASHAcl] = ACTIONS(4849), - [anon_sym_BSLASHaclp] = ACTIONS(4849), - [anon_sym_BSLASHAclp] = ACTIONS(4849), - [anon_sym_BSLASHacf] = ACTIONS(4849), - [anon_sym_BSLASHAcf] = ACTIONS(4849), - [anon_sym_BSLASHacfp] = ACTIONS(4849), - [anon_sym_BSLASHAcfp] = ACTIONS(4849), - [anon_sym_BSLASHac] = ACTIONS(4849), - [anon_sym_BSLASHAc] = ACTIONS(4849), - [anon_sym_BSLASHacp] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), - [anon_sym_BSLASHcolor] = ACTIONS(4849), - [anon_sym_BSLASHcolorbox] = ACTIONS(4849), - [anon_sym_BSLASHtextcolor] = ACTIONS(4849), - [anon_sym_BSLASHpagecolor] = ACTIONS(4849), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), - [anon_sym_BSLASHtext] = ACTIONS(4849), - [anon_sym_BSLASHintertext] = ACTIONS(4849), - [anon_sym_shortintertext] = ACTIONS(4849), + [sym_command_name] = ACTIONS(4928), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_BSLASHpart] = ACTIONS(4928), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddpart] = ACTIONS(4928), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHchapter] = ACTIONS(4928), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddchap] = ACTIONS(4928), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsection] = ACTIONS(4928), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddsec] = ACTIONS(4928), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHparagraph] = ACTIONS(4928), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4928), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHitem] = ACTIONS(4928), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4928), + [sym_placeholder] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym__] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4926), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4926), + [anon_sym_BSLASHbegin] = ACTIONS(4928), + [anon_sym_BSLASHusepackage] = ACTIONS(4928), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4928), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4928), + [anon_sym_BSLASHinclude] = ACTIONS(4928), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4928), + [anon_sym_BSLASHinput] = ACTIONS(4928), + [anon_sym_BSLASHsubfile] = ACTIONS(4928), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4928), + [anon_sym_BSLASHbibliography] = ACTIONS(4928), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4928), + [anon_sym_BSLASHincludesvg] = ACTIONS(4928), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4928), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4928), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4928), + [anon_sym_BSLASHimport] = ACTIONS(4928), + [anon_sym_BSLASHsubimport] = ACTIONS(4928), + [anon_sym_BSLASHinputfrom] = ACTIONS(4928), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4928), + [anon_sym_BSLASHincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHcaption] = ACTIONS(4928), + [anon_sym_BSLASHcite] = ACTIONS(4928), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCite] = ACTIONS(4928), + [anon_sym_BSLASHnocite] = ACTIONS(4928), + [anon_sym_BSLASHcitet] = ACTIONS(4928), + [anon_sym_BSLASHcitep] = ACTIONS(4928), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteauthor] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitetitle] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteyear] = ACTIONS(4928), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitedate] = ACTIONS(4928), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteurl] = ACTIONS(4928), + [anon_sym_BSLASHfullcite] = ACTIONS(4928), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4928), + [anon_sym_BSLASHcitealt] = ACTIONS(4928), + [anon_sym_BSLASHcitealp] = ACTIONS(4928), + [anon_sym_BSLASHcitetext] = ACTIONS(4928), + [anon_sym_BSLASHparencite] = ACTIONS(4928), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHParencite] = ACTIONS(4928), + [anon_sym_BSLASHfootcite] = ACTIONS(4928), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4928), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4928), + [anon_sym_BSLASHtextcite] = ACTIONS(4928), + [anon_sym_BSLASHTextcite] = ACTIONS(4928), + [anon_sym_BSLASHsmartcite] = ACTIONS(4928), + [anon_sym_BSLASHSmartcite] = ACTIONS(4928), + [anon_sym_BSLASHsupercite] = ACTIONS(4928), + [anon_sym_BSLASHautocite] = ACTIONS(4928), + [anon_sym_BSLASHAutocite] = ACTIONS(4928), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHvolcite] = ACTIONS(4928), + [anon_sym_BSLASHVolcite] = ACTIONS(4928), + [anon_sym_BSLASHpvolcite] = ACTIONS(4928), + [anon_sym_BSLASHPvolcite] = ACTIONS(4928), + [anon_sym_BSLASHfvolcite] = ACTIONS(4928), + [anon_sym_BSLASHftvolcite] = ACTIONS(4928), + [anon_sym_BSLASHsvolcite] = ACTIONS(4928), + [anon_sym_BSLASHSvolcite] = ACTIONS(4928), + [anon_sym_BSLASHtvolcite] = ACTIONS(4928), + [anon_sym_BSLASHTvolcite] = ACTIONS(4928), + [anon_sym_BSLASHavolcite] = ACTIONS(4928), + [anon_sym_BSLASHAvolcite] = ACTIONS(4928), + [anon_sym_BSLASHnotecite] = ACTIONS(4928), + [anon_sym_BSLASHNotecite] = ACTIONS(4928), + [anon_sym_BSLASHpnotecite] = ACTIONS(4928), + [anon_sym_BSLASHPnotecite] = ACTIONS(4928), + [anon_sym_BSLASHfnotecite] = ACTIONS(4928), + [anon_sym_BSLASHlabel] = ACTIONS(4928), + [anon_sym_BSLASHref] = ACTIONS(4928), + [anon_sym_BSLASHeqref] = ACTIONS(4928), + [anon_sym_BSLASHvref] = ACTIONS(4928), + [anon_sym_BSLASHVref] = ACTIONS(4928), + [anon_sym_BSLASHautoref] = ACTIONS(4928), + [anon_sym_BSLASHpageref] = ACTIONS(4928), + [anon_sym_BSLASHcref] = ACTIONS(4928), + [anon_sym_BSLASHCref] = ACTIONS(4928), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnameCref] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHlabelcref] = ACTIONS(4928), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCrefrange] = ACTIONS(4928), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnewlabel] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4928), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4928), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4928), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdef] = ACTIONS(4928), + [anon_sym_BSLASHlet] = ACTIONS(4928), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4928), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4928), + [anon_sym_BSLASHgls] = ACTIONS(4928), + [anon_sym_BSLASHGls] = ACTIONS(4928), + [anon_sym_BSLASHGLS] = ACTIONS(4928), + [anon_sym_BSLASHglspl] = ACTIONS(4928), + [anon_sym_BSLASHGlspl] = ACTIONS(4928), + [anon_sym_BSLASHGLSpl] = ACTIONS(4928), + [anon_sym_BSLASHglsdisp] = ACTIONS(4928), + [anon_sym_BSLASHglslink] = ACTIONS(4928), + [anon_sym_BSLASHglstext] = ACTIONS(4928), + [anon_sym_BSLASHGlstext] = ACTIONS(4928), + [anon_sym_BSLASHGLStext] = ACTIONS(4928), + [anon_sym_BSLASHglsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4928), + [anon_sym_BSLASHglsplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSplural] = ACTIONS(4928), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHglsname] = ACTIONS(4928), + [anon_sym_BSLASHGlsname] = ACTIONS(4928), + [anon_sym_BSLASHGLSname] = ACTIONS(4928), + [anon_sym_BSLASHglssymbol] = ACTIONS(4928), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4928), + [anon_sym_BSLASHglsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4928), + [anon_sym_BSLASHglsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4928), + [anon_sym_BSLASHglsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4928), + [anon_sym_BSLASHglsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4928), + [anon_sym_BSLASHglsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4928), + [anon_sym_BSLASHnewacronym] = ACTIONS(4928), + [anon_sym_BSLASHacrshort] = ACTIONS(4928), + [anon_sym_BSLASHAcrshort] = ACTIONS(4928), + [anon_sym_BSLASHACRshort] = ACTIONS(4928), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4928), + [anon_sym_BSLASHacrlong] = ACTIONS(4928), + [anon_sym_BSLASHAcrlong] = ACTIONS(4928), + [anon_sym_BSLASHACRlong] = ACTIONS(4928), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4928), + [anon_sym_BSLASHacrfull] = ACTIONS(4928), + [anon_sym_BSLASHAcrfull] = ACTIONS(4928), + [anon_sym_BSLASHACRfull] = ACTIONS(4928), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4928), + [anon_sym_BSLASHacs] = ACTIONS(4928), + [anon_sym_BSLASHAcs] = ACTIONS(4928), + [anon_sym_BSLASHacsp] = ACTIONS(4928), + [anon_sym_BSLASHAcsp] = ACTIONS(4928), + [anon_sym_BSLASHacl] = ACTIONS(4928), + [anon_sym_BSLASHAcl] = ACTIONS(4928), + [anon_sym_BSLASHaclp] = ACTIONS(4928), + [anon_sym_BSLASHAclp] = ACTIONS(4928), + [anon_sym_BSLASHacf] = ACTIONS(4928), + [anon_sym_BSLASHAcf] = ACTIONS(4928), + [anon_sym_BSLASHacfp] = ACTIONS(4928), + [anon_sym_BSLASHAcfp] = ACTIONS(4928), + [anon_sym_BSLASHac] = ACTIONS(4928), + [anon_sym_BSLASHAc] = ACTIONS(4928), + [anon_sym_BSLASHacp] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4928), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4928), + [anon_sym_BSLASHcolor] = ACTIONS(4928), + [anon_sym_BSLASHcolorbox] = ACTIONS(4928), + [anon_sym_BSLASHtextcolor] = ACTIONS(4928), + [anon_sym_BSLASHpagecolor] = ACTIONS(4928), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4928), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4928), + [anon_sym_BSLASHtext] = ACTIONS(4928), + [anon_sym_BSLASHintertext] = ACTIONS(4928), + [anon_sym_shortintertext] = ACTIONS(4928), }, [755] = { [sym_curly_group] = STATE(1169), - [sym_command_name] = ACTIONS(4845), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4843), - [anon_sym_BSLASHpart] = ACTIONS(4845), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddpart] = ACTIONS(4845), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHchapter] = ACTIONS(4845), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddchap] = ACTIONS(4845), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsection] = ACTIONS(4845), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddsec] = ACTIONS(4845), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHparagraph] = ACTIONS(4845), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHitem] = ACTIONS(4845), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4845), - [sym_placeholder] = ACTIONS(4843), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4845), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_CARET] = ACTIONS(4845), - [anon_sym__] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_SQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), - [anon_sym_BSLASHbegin] = ACTIONS(4845), - [anon_sym_BSLASHusepackage] = ACTIONS(4845), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), - [anon_sym_BSLASHinclude] = ACTIONS(4845), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), - [anon_sym_BSLASHinput] = ACTIONS(4845), - [anon_sym_BSLASHsubfile] = ACTIONS(4845), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), - [anon_sym_BSLASHbibliography] = ACTIONS(4845), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), - [anon_sym_BSLASHincludesvg] = ACTIONS(4845), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), - [anon_sym_BSLASHimport] = ACTIONS(4845), - [anon_sym_BSLASHsubimport] = ACTIONS(4845), - [anon_sym_BSLASHinputfrom] = ACTIONS(4845), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), - [anon_sym_BSLASHincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHcaption] = ACTIONS(4845), - [anon_sym_BSLASHcite] = ACTIONS(4845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCite] = ACTIONS(4845), - [anon_sym_BSLASHnocite] = ACTIONS(4845), - [anon_sym_BSLASHcitet] = ACTIONS(4845), - [anon_sym_BSLASHcitep] = ACTIONS(4845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteauthor] = ACTIONS(4845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitetitle] = ACTIONS(4845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteyear] = ACTIONS(4845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitedate] = ACTIONS(4845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteurl] = ACTIONS(4845), - [anon_sym_BSLASHfullcite] = ACTIONS(4845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), - [anon_sym_BSLASHcitealt] = ACTIONS(4845), - [anon_sym_BSLASHcitealp] = ACTIONS(4845), - [anon_sym_BSLASHcitetext] = ACTIONS(4845), - [anon_sym_BSLASHparencite] = ACTIONS(4845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHParencite] = ACTIONS(4845), - [anon_sym_BSLASHfootcite] = ACTIONS(4845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), - [anon_sym_BSLASHtextcite] = ACTIONS(4845), - [anon_sym_BSLASHTextcite] = ACTIONS(4845), - [anon_sym_BSLASHsmartcite] = ACTIONS(4845), - [anon_sym_BSLASHSmartcite] = ACTIONS(4845), - [anon_sym_BSLASHsupercite] = ACTIONS(4845), - [anon_sym_BSLASHautocite] = ACTIONS(4845), - [anon_sym_BSLASHAutocite] = ACTIONS(4845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHvolcite] = ACTIONS(4845), - [anon_sym_BSLASHVolcite] = ACTIONS(4845), - [anon_sym_BSLASHpvolcite] = ACTIONS(4845), - [anon_sym_BSLASHPvolcite] = ACTIONS(4845), - [anon_sym_BSLASHfvolcite] = ACTIONS(4845), - [anon_sym_BSLASHftvolcite] = ACTIONS(4845), - [anon_sym_BSLASHsvolcite] = ACTIONS(4845), - [anon_sym_BSLASHSvolcite] = ACTIONS(4845), - [anon_sym_BSLASHtvolcite] = ACTIONS(4845), - [anon_sym_BSLASHTvolcite] = ACTIONS(4845), - [anon_sym_BSLASHavolcite] = ACTIONS(4845), - [anon_sym_BSLASHAvolcite] = ACTIONS(4845), - [anon_sym_BSLASHnotecite] = ACTIONS(4845), - [anon_sym_BSLASHNotecite] = ACTIONS(4845), - [anon_sym_BSLASHpnotecite] = ACTIONS(4845), - [anon_sym_BSLASHPnotecite] = ACTIONS(4845), - [anon_sym_BSLASHfnotecite] = ACTIONS(4845), - [anon_sym_BSLASHlabel] = ACTIONS(4845), - [anon_sym_BSLASHref] = ACTIONS(4845), - [anon_sym_BSLASHeqref] = ACTIONS(4845), - [anon_sym_BSLASHvref] = ACTIONS(4845), - [anon_sym_BSLASHVref] = ACTIONS(4845), - [anon_sym_BSLASHautoref] = ACTIONS(4845), - [anon_sym_BSLASHpageref] = ACTIONS(4845), - [anon_sym_BSLASHcref] = ACTIONS(4845), - [anon_sym_BSLASHCref] = ACTIONS(4845), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnameCref] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHlabelcref] = ACTIONS(4845), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCrefrange] = ACTIONS(4845), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnewlabel] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), - [anon_sym_BSLASHdef] = ACTIONS(4845), - [anon_sym_BSLASHlet] = ACTIONS(4845), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), - [anon_sym_BSLASHgls] = ACTIONS(4845), - [anon_sym_BSLASHGls] = ACTIONS(4845), - [anon_sym_BSLASHGLS] = ACTIONS(4845), - [anon_sym_BSLASHglspl] = ACTIONS(4845), - [anon_sym_BSLASHGlspl] = ACTIONS(4845), - [anon_sym_BSLASHGLSpl] = ACTIONS(4845), - [anon_sym_BSLASHglsdisp] = ACTIONS(4845), - [anon_sym_BSLASHglslink] = ACTIONS(4845), - [anon_sym_BSLASHglstext] = ACTIONS(4845), - [anon_sym_BSLASHGlstext] = ACTIONS(4845), - [anon_sym_BSLASHGLStext] = ACTIONS(4845), - [anon_sym_BSLASHglsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), - [anon_sym_BSLASHglsplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSplural] = ACTIONS(4845), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHglsname] = ACTIONS(4845), - [anon_sym_BSLASHGlsname] = ACTIONS(4845), - [anon_sym_BSLASHGLSname] = ACTIONS(4845), - [anon_sym_BSLASHglssymbol] = ACTIONS(4845), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), - [anon_sym_BSLASHglsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), - [anon_sym_BSLASHglsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), - [anon_sym_BSLASHglsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), - [anon_sym_BSLASHglsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), - [anon_sym_BSLASHglsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), - [anon_sym_BSLASHnewacronym] = ACTIONS(4845), - [anon_sym_BSLASHacrshort] = ACTIONS(4845), - [anon_sym_BSLASHAcrshort] = ACTIONS(4845), - [anon_sym_BSLASHACRshort] = ACTIONS(4845), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), - [anon_sym_BSLASHacrlong] = ACTIONS(4845), - [anon_sym_BSLASHAcrlong] = ACTIONS(4845), - [anon_sym_BSLASHACRlong] = ACTIONS(4845), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), - [anon_sym_BSLASHacrfull] = ACTIONS(4845), - [anon_sym_BSLASHAcrfull] = ACTIONS(4845), - [anon_sym_BSLASHACRfull] = ACTIONS(4845), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), - [anon_sym_BSLASHacs] = ACTIONS(4845), - [anon_sym_BSLASHAcs] = ACTIONS(4845), - [anon_sym_BSLASHacsp] = ACTIONS(4845), - [anon_sym_BSLASHAcsp] = ACTIONS(4845), - [anon_sym_BSLASHacl] = ACTIONS(4845), - [anon_sym_BSLASHAcl] = ACTIONS(4845), - [anon_sym_BSLASHaclp] = ACTIONS(4845), - [anon_sym_BSLASHAclp] = ACTIONS(4845), - [anon_sym_BSLASHacf] = ACTIONS(4845), - [anon_sym_BSLASHAcf] = ACTIONS(4845), - [anon_sym_BSLASHacfp] = ACTIONS(4845), - [anon_sym_BSLASHAcfp] = ACTIONS(4845), - [anon_sym_BSLASHac] = ACTIONS(4845), - [anon_sym_BSLASHAc] = ACTIONS(4845), - [anon_sym_BSLASHacp] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), - [anon_sym_BSLASHcolor] = ACTIONS(4845), - [anon_sym_BSLASHcolorbox] = ACTIONS(4845), - [anon_sym_BSLASHtextcolor] = ACTIONS(4845), - [anon_sym_BSLASHpagecolor] = ACTIONS(4845), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), - [anon_sym_BSLASHtext] = ACTIONS(4845), - [anon_sym_BSLASHintertext] = ACTIONS(4845), - [anon_sym_shortintertext] = ACTIONS(4845), + [sym_command_name] = ACTIONS(4924), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_BSLASHpart] = ACTIONS(4924), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddpart] = ACTIONS(4924), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHchapter] = ACTIONS(4924), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddchap] = ACTIONS(4924), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsection] = ACTIONS(4924), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddsec] = ACTIONS(4924), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHparagraph] = ACTIONS(4924), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4924), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHitem] = ACTIONS(4924), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4924), + [sym_placeholder] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym__] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4922), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4922), + [anon_sym_BSLASHbegin] = ACTIONS(4924), + [anon_sym_BSLASHusepackage] = ACTIONS(4924), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4924), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4924), + [anon_sym_BSLASHinclude] = ACTIONS(4924), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4924), + [anon_sym_BSLASHinput] = ACTIONS(4924), + [anon_sym_BSLASHsubfile] = ACTIONS(4924), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4924), + [anon_sym_BSLASHbibliography] = ACTIONS(4924), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4924), + [anon_sym_BSLASHincludesvg] = ACTIONS(4924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4924), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4924), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4924), + [anon_sym_BSLASHimport] = ACTIONS(4924), + [anon_sym_BSLASHsubimport] = ACTIONS(4924), + [anon_sym_BSLASHinputfrom] = ACTIONS(4924), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4924), + [anon_sym_BSLASHincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHcaption] = ACTIONS(4924), + [anon_sym_BSLASHcite] = ACTIONS(4924), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCite] = ACTIONS(4924), + [anon_sym_BSLASHnocite] = ACTIONS(4924), + [anon_sym_BSLASHcitet] = ACTIONS(4924), + [anon_sym_BSLASHcitep] = ACTIONS(4924), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteauthor] = ACTIONS(4924), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4924), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitetitle] = ACTIONS(4924), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteyear] = ACTIONS(4924), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitedate] = ACTIONS(4924), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteurl] = ACTIONS(4924), + [anon_sym_BSLASHfullcite] = ACTIONS(4924), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4924), + [anon_sym_BSLASHcitealt] = ACTIONS(4924), + [anon_sym_BSLASHcitealp] = ACTIONS(4924), + [anon_sym_BSLASHcitetext] = ACTIONS(4924), + [anon_sym_BSLASHparencite] = ACTIONS(4924), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHParencite] = ACTIONS(4924), + [anon_sym_BSLASHfootcite] = ACTIONS(4924), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4924), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4924), + [anon_sym_BSLASHtextcite] = ACTIONS(4924), + [anon_sym_BSLASHTextcite] = ACTIONS(4924), + [anon_sym_BSLASHsmartcite] = ACTIONS(4924), + [anon_sym_BSLASHSmartcite] = ACTIONS(4924), + [anon_sym_BSLASHsupercite] = ACTIONS(4924), + [anon_sym_BSLASHautocite] = ACTIONS(4924), + [anon_sym_BSLASHAutocite] = ACTIONS(4924), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHvolcite] = ACTIONS(4924), + [anon_sym_BSLASHVolcite] = ACTIONS(4924), + [anon_sym_BSLASHpvolcite] = ACTIONS(4924), + [anon_sym_BSLASHPvolcite] = ACTIONS(4924), + [anon_sym_BSLASHfvolcite] = ACTIONS(4924), + [anon_sym_BSLASHftvolcite] = ACTIONS(4924), + [anon_sym_BSLASHsvolcite] = ACTIONS(4924), + [anon_sym_BSLASHSvolcite] = ACTIONS(4924), + [anon_sym_BSLASHtvolcite] = ACTIONS(4924), + [anon_sym_BSLASHTvolcite] = ACTIONS(4924), + [anon_sym_BSLASHavolcite] = ACTIONS(4924), + [anon_sym_BSLASHAvolcite] = ACTIONS(4924), + [anon_sym_BSLASHnotecite] = ACTIONS(4924), + [anon_sym_BSLASHNotecite] = ACTIONS(4924), + [anon_sym_BSLASHpnotecite] = ACTIONS(4924), + [anon_sym_BSLASHPnotecite] = ACTIONS(4924), + [anon_sym_BSLASHfnotecite] = ACTIONS(4924), + [anon_sym_BSLASHlabel] = ACTIONS(4924), + [anon_sym_BSLASHref] = ACTIONS(4924), + [anon_sym_BSLASHeqref] = ACTIONS(4924), + [anon_sym_BSLASHvref] = ACTIONS(4924), + [anon_sym_BSLASHVref] = ACTIONS(4924), + [anon_sym_BSLASHautoref] = ACTIONS(4924), + [anon_sym_BSLASHpageref] = ACTIONS(4924), + [anon_sym_BSLASHcref] = ACTIONS(4924), + [anon_sym_BSLASHCref] = ACTIONS(4924), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnameCref] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHlabelcref] = ACTIONS(4924), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCrefrange] = ACTIONS(4924), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnewlabel] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4924), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4924), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4924), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdef] = ACTIONS(4924), + [anon_sym_BSLASHlet] = ACTIONS(4924), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4924), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4924), + [anon_sym_BSLASHgls] = ACTIONS(4924), + [anon_sym_BSLASHGls] = ACTIONS(4924), + [anon_sym_BSLASHGLS] = ACTIONS(4924), + [anon_sym_BSLASHglspl] = ACTIONS(4924), + [anon_sym_BSLASHGlspl] = ACTIONS(4924), + [anon_sym_BSLASHGLSpl] = ACTIONS(4924), + [anon_sym_BSLASHglsdisp] = ACTIONS(4924), + [anon_sym_BSLASHglslink] = ACTIONS(4924), + [anon_sym_BSLASHglstext] = ACTIONS(4924), + [anon_sym_BSLASHGlstext] = ACTIONS(4924), + [anon_sym_BSLASHGLStext] = ACTIONS(4924), + [anon_sym_BSLASHglsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4924), + [anon_sym_BSLASHglsplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSplural] = ACTIONS(4924), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHglsname] = ACTIONS(4924), + [anon_sym_BSLASHGlsname] = ACTIONS(4924), + [anon_sym_BSLASHGLSname] = ACTIONS(4924), + [anon_sym_BSLASHglssymbol] = ACTIONS(4924), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4924), + [anon_sym_BSLASHglsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4924), + [anon_sym_BSLASHglsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4924), + [anon_sym_BSLASHglsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4924), + [anon_sym_BSLASHglsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4924), + [anon_sym_BSLASHglsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4924), + [anon_sym_BSLASHnewacronym] = ACTIONS(4924), + [anon_sym_BSLASHacrshort] = ACTIONS(4924), + [anon_sym_BSLASHAcrshort] = ACTIONS(4924), + [anon_sym_BSLASHACRshort] = ACTIONS(4924), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4924), + [anon_sym_BSLASHacrlong] = ACTIONS(4924), + [anon_sym_BSLASHAcrlong] = ACTIONS(4924), + [anon_sym_BSLASHACRlong] = ACTIONS(4924), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4924), + [anon_sym_BSLASHacrfull] = ACTIONS(4924), + [anon_sym_BSLASHAcrfull] = ACTIONS(4924), + [anon_sym_BSLASHACRfull] = ACTIONS(4924), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4924), + [anon_sym_BSLASHacs] = ACTIONS(4924), + [anon_sym_BSLASHAcs] = ACTIONS(4924), + [anon_sym_BSLASHacsp] = ACTIONS(4924), + [anon_sym_BSLASHAcsp] = ACTIONS(4924), + [anon_sym_BSLASHacl] = ACTIONS(4924), + [anon_sym_BSLASHAcl] = ACTIONS(4924), + [anon_sym_BSLASHaclp] = ACTIONS(4924), + [anon_sym_BSLASHAclp] = ACTIONS(4924), + [anon_sym_BSLASHacf] = ACTIONS(4924), + [anon_sym_BSLASHAcf] = ACTIONS(4924), + [anon_sym_BSLASHacfp] = ACTIONS(4924), + [anon_sym_BSLASHAcfp] = ACTIONS(4924), + [anon_sym_BSLASHac] = ACTIONS(4924), + [anon_sym_BSLASHAc] = ACTIONS(4924), + [anon_sym_BSLASHacp] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4924), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4924), + [anon_sym_BSLASHcolor] = ACTIONS(4924), + [anon_sym_BSLASHcolorbox] = ACTIONS(4924), + [anon_sym_BSLASHtextcolor] = ACTIONS(4924), + [anon_sym_BSLASHpagecolor] = ACTIONS(4924), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4924), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4924), + [anon_sym_BSLASHtext] = ACTIONS(4924), + [anon_sym_BSLASHintertext] = ACTIONS(4924), + [anon_sym_shortintertext] = ACTIONS(4924), }, [756] = { [sym_curly_group] = STATE(1170), - [sym_command_name] = ACTIONS(4841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4839), - [anon_sym_BSLASHpart] = ACTIONS(4841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddpart] = ACTIONS(4841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHchapter] = ACTIONS(4841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddchap] = ACTIONS(4841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsection] = ACTIONS(4841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddsec] = ACTIONS(4841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHparagraph] = ACTIONS(4841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHitem] = ACTIONS(4841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4841), - [sym_placeholder] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym__] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), - [anon_sym_BSLASHbegin] = ACTIONS(4841), - [anon_sym_BSLASHusepackage] = ACTIONS(4841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), - [anon_sym_BSLASHinclude] = ACTIONS(4841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), - [anon_sym_BSLASHinput] = ACTIONS(4841), - [anon_sym_BSLASHsubfile] = ACTIONS(4841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), - [anon_sym_BSLASHbibliography] = ACTIONS(4841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), - [anon_sym_BSLASHincludesvg] = ACTIONS(4841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), - [anon_sym_BSLASHimport] = ACTIONS(4841), - [anon_sym_BSLASHsubimport] = ACTIONS(4841), - [anon_sym_BSLASHinputfrom] = ACTIONS(4841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), - [anon_sym_BSLASHincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHcaption] = ACTIONS(4841), - [anon_sym_BSLASHcite] = ACTIONS(4841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCite] = ACTIONS(4841), - [anon_sym_BSLASHnocite] = ACTIONS(4841), - [anon_sym_BSLASHcitet] = ACTIONS(4841), - [anon_sym_BSLASHcitep] = ACTIONS(4841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteauthor] = ACTIONS(4841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitetitle] = ACTIONS(4841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteyear] = ACTIONS(4841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitedate] = ACTIONS(4841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteurl] = ACTIONS(4841), - [anon_sym_BSLASHfullcite] = ACTIONS(4841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), - [anon_sym_BSLASHcitealt] = ACTIONS(4841), - [anon_sym_BSLASHcitealp] = ACTIONS(4841), - [anon_sym_BSLASHcitetext] = ACTIONS(4841), - [anon_sym_BSLASHparencite] = ACTIONS(4841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHParencite] = ACTIONS(4841), - [anon_sym_BSLASHfootcite] = ACTIONS(4841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), - [anon_sym_BSLASHtextcite] = ACTIONS(4841), - [anon_sym_BSLASHTextcite] = ACTIONS(4841), - [anon_sym_BSLASHsmartcite] = ACTIONS(4841), - [anon_sym_BSLASHSmartcite] = ACTIONS(4841), - [anon_sym_BSLASHsupercite] = ACTIONS(4841), - [anon_sym_BSLASHautocite] = ACTIONS(4841), - [anon_sym_BSLASHAutocite] = ACTIONS(4841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHvolcite] = ACTIONS(4841), - [anon_sym_BSLASHVolcite] = ACTIONS(4841), - [anon_sym_BSLASHpvolcite] = ACTIONS(4841), - [anon_sym_BSLASHPvolcite] = ACTIONS(4841), - [anon_sym_BSLASHfvolcite] = ACTIONS(4841), - [anon_sym_BSLASHftvolcite] = ACTIONS(4841), - [anon_sym_BSLASHsvolcite] = ACTIONS(4841), - [anon_sym_BSLASHSvolcite] = ACTIONS(4841), - [anon_sym_BSLASHtvolcite] = ACTIONS(4841), - [anon_sym_BSLASHTvolcite] = ACTIONS(4841), - [anon_sym_BSLASHavolcite] = ACTIONS(4841), - [anon_sym_BSLASHAvolcite] = ACTIONS(4841), - [anon_sym_BSLASHnotecite] = ACTIONS(4841), - [anon_sym_BSLASHNotecite] = ACTIONS(4841), - [anon_sym_BSLASHpnotecite] = ACTIONS(4841), - [anon_sym_BSLASHPnotecite] = ACTIONS(4841), - [anon_sym_BSLASHfnotecite] = ACTIONS(4841), - [anon_sym_BSLASHlabel] = ACTIONS(4841), - [anon_sym_BSLASHref] = ACTIONS(4841), - [anon_sym_BSLASHeqref] = ACTIONS(4841), - [anon_sym_BSLASHvref] = ACTIONS(4841), - [anon_sym_BSLASHVref] = ACTIONS(4841), - [anon_sym_BSLASHautoref] = ACTIONS(4841), - [anon_sym_BSLASHpageref] = ACTIONS(4841), - [anon_sym_BSLASHcref] = ACTIONS(4841), - [anon_sym_BSLASHCref] = ACTIONS(4841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnameCref] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHlabelcref] = ACTIONS(4841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCrefrange] = ACTIONS(4841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnewlabel] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), - [anon_sym_BSLASHdef] = ACTIONS(4841), - [anon_sym_BSLASHlet] = ACTIONS(4841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), - [anon_sym_BSLASHgls] = ACTIONS(4841), - [anon_sym_BSLASHGls] = ACTIONS(4841), - [anon_sym_BSLASHGLS] = ACTIONS(4841), - [anon_sym_BSLASHglspl] = ACTIONS(4841), - [anon_sym_BSLASHGlspl] = ACTIONS(4841), - [anon_sym_BSLASHGLSpl] = ACTIONS(4841), - [anon_sym_BSLASHglsdisp] = ACTIONS(4841), - [anon_sym_BSLASHglslink] = ACTIONS(4841), - [anon_sym_BSLASHglstext] = ACTIONS(4841), - [anon_sym_BSLASHGlstext] = ACTIONS(4841), - [anon_sym_BSLASHGLStext] = ACTIONS(4841), - [anon_sym_BSLASHglsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), - [anon_sym_BSLASHglsplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSplural] = ACTIONS(4841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHglsname] = ACTIONS(4841), - [anon_sym_BSLASHGlsname] = ACTIONS(4841), - [anon_sym_BSLASHGLSname] = ACTIONS(4841), - [anon_sym_BSLASHglssymbol] = ACTIONS(4841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), - [anon_sym_BSLASHglsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), - [anon_sym_BSLASHglsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), - [anon_sym_BSLASHglsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), - [anon_sym_BSLASHglsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), - [anon_sym_BSLASHglsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), - [anon_sym_BSLASHnewacronym] = ACTIONS(4841), - [anon_sym_BSLASHacrshort] = ACTIONS(4841), - [anon_sym_BSLASHAcrshort] = ACTIONS(4841), - [anon_sym_BSLASHACRshort] = ACTIONS(4841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), - [anon_sym_BSLASHacrlong] = ACTIONS(4841), - [anon_sym_BSLASHAcrlong] = ACTIONS(4841), - [anon_sym_BSLASHACRlong] = ACTIONS(4841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), - [anon_sym_BSLASHacrfull] = ACTIONS(4841), - [anon_sym_BSLASHAcrfull] = ACTIONS(4841), - [anon_sym_BSLASHACRfull] = ACTIONS(4841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), - [anon_sym_BSLASHacs] = ACTIONS(4841), - [anon_sym_BSLASHAcs] = ACTIONS(4841), - [anon_sym_BSLASHacsp] = ACTIONS(4841), - [anon_sym_BSLASHAcsp] = ACTIONS(4841), - [anon_sym_BSLASHacl] = ACTIONS(4841), - [anon_sym_BSLASHAcl] = ACTIONS(4841), - [anon_sym_BSLASHaclp] = ACTIONS(4841), - [anon_sym_BSLASHAclp] = ACTIONS(4841), - [anon_sym_BSLASHacf] = ACTIONS(4841), - [anon_sym_BSLASHAcf] = ACTIONS(4841), - [anon_sym_BSLASHacfp] = ACTIONS(4841), - [anon_sym_BSLASHAcfp] = ACTIONS(4841), - [anon_sym_BSLASHac] = ACTIONS(4841), - [anon_sym_BSLASHAc] = ACTIONS(4841), - [anon_sym_BSLASHacp] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), - [anon_sym_BSLASHcolor] = ACTIONS(4841), - [anon_sym_BSLASHcolorbox] = ACTIONS(4841), - [anon_sym_BSLASHtextcolor] = ACTIONS(4841), - [anon_sym_BSLASHpagecolor] = ACTIONS(4841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), - [anon_sym_BSLASHtext] = ACTIONS(4841), - [anon_sym_BSLASHintertext] = ACTIONS(4841), - [anon_sym_shortintertext] = ACTIONS(4841), + [sym_command_name] = ACTIONS(4920), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_BSLASHpart] = ACTIONS(4920), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddpart] = ACTIONS(4920), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHchapter] = ACTIONS(4920), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddchap] = ACTIONS(4920), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsection] = ACTIONS(4920), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddsec] = ACTIONS(4920), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHparagraph] = ACTIONS(4920), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4920), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHitem] = ACTIONS(4920), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4920), + [sym_placeholder] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym__] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4918), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4918), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4918), + [anon_sym_BSLASHbegin] = ACTIONS(4920), + [anon_sym_BSLASHusepackage] = ACTIONS(4920), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4920), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4920), + [anon_sym_BSLASHinclude] = ACTIONS(4920), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4920), + [anon_sym_BSLASHinput] = ACTIONS(4920), + [anon_sym_BSLASHsubfile] = ACTIONS(4920), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4920), + [anon_sym_BSLASHbibliography] = ACTIONS(4920), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4920), + [anon_sym_BSLASHincludesvg] = ACTIONS(4920), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4920), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4920), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4920), + [anon_sym_BSLASHimport] = ACTIONS(4920), + [anon_sym_BSLASHsubimport] = ACTIONS(4920), + [anon_sym_BSLASHinputfrom] = ACTIONS(4920), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4920), + [anon_sym_BSLASHincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHcaption] = ACTIONS(4920), + [anon_sym_BSLASHcite] = ACTIONS(4920), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCite] = ACTIONS(4920), + [anon_sym_BSLASHnocite] = ACTIONS(4920), + [anon_sym_BSLASHcitet] = ACTIONS(4920), + [anon_sym_BSLASHcitep] = ACTIONS(4920), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteauthor] = ACTIONS(4920), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4920), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitetitle] = ACTIONS(4920), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteyear] = ACTIONS(4920), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitedate] = ACTIONS(4920), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteurl] = ACTIONS(4920), + [anon_sym_BSLASHfullcite] = ACTIONS(4920), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4920), + [anon_sym_BSLASHcitealt] = ACTIONS(4920), + [anon_sym_BSLASHcitealp] = ACTIONS(4920), + [anon_sym_BSLASHcitetext] = ACTIONS(4920), + [anon_sym_BSLASHparencite] = ACTIONS(4920), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHParencite] = ACTIONS(4920), + [anon_sym_BSLASHfootcite] = ACTIONS(4920), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4920), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4920), + [anon_sym_BSLASHtextcite] = ACTIONS(4920), + [anon_sym_BSLASHTextcite] = ACTIONS(4920), + [anon_sym_BSLASHsmartcite] = ACTIONS(4920), + [anon_sym_BSLASHSmartcite] = ACTIONS(4920), + [anon_sym_BSLASHsupercite] = ACTIONS(4920), + [anon_sym_BSLASHautocite] = ACTIONS(4920), + [anon_sym_BSLASHAutocite] = ACTIONS(4920), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHvolcite] = ACTIONS(4920), + [anon_sym_BSLASHVolcite] = ACTIONS(4920), + [anon_sym_BSLASHpvolcite] = ACTIONS(4920), + [anon_sym_BSLASHPvolcite] = ACTIONS(4920), + [anon_sym_BSLASHfvolcite] = ACTIONS(4920), + [anon_sym_BSLASHftvolcite] = ACTIONS(4920), + [anon_sym_BSLASHsvolcite] = ACTIONS(4920), + [anon_sym_BSLASHSvolcite] = ACTIONS(4920), + [anon_sym_BSLASHtvolcite] = ACTIONS(4920), + [anon_sym_BSLASHTvolcite] = ACTIONS(4920), + [anon_sym_BSLASHavolcite] = ACTIONS(4920), + [anon_sym_BSLASHAvolcite] = ACTIONS(4920), + [anon_sym_BSLASHnotecite] = ACTIONS(4920), + [anon_sym_BSLASHNotecite] = ACTIONS(4920), + [anon_sym_BSLASHpnotecite] = ACTIONS(4920), + [anon_sym_BSLASHPnotecite] = ACTIONS(4920), + [anon_sym_BSLASHfnotecite] = ACTIONS(4920), + [anon_sym_BSLASHlabel] = ACTIONS(4920), + [anon_sym_BSLASHref] = ACTIONS(4920), + [anon_sym_BSLASHeqref] = ACTIONS(4920), + [anon_sym_BSLASHvref] = ACTIONS(4920), + [anon_sym_BSLASHVref] = ACTIONS(4920), + [anon_sym_BSLASHautoref] = ACTIONS(4920), + [anon_sym_BSLASHpageref] = ACTIONS(4920), + [anon_sym_BSLASHcref] = ACTIONS(4920), + [anon_sym_BSLASHCref] = ACTIONS(4920), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnameCref] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHlabelcref] = ACTIONS(4920), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCrefrange] = ACTIONS(4920), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnewlabel] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4920), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4920), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4920), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdef] = ACTIONS(4920), + [anon_sym_BSLASHlet] = ACTIONS(4920), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4920), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4920), + [anon_sym_BSLASHgls] = ACTIONS(4920), + [anon_sym_BSLASHGls] = ACTIONS(4920), + [anon_sym_BSLASHGLS] = ACTIONS(4920), + [anon_sym_BSLASHglspl] = ACTIONS(4920), + [anon_sym_BSLASHGlspl] = ACTIONS(4920), + [anon_sym_BSLASHGLSpl] = ACTIONS(4920), + [anon_sym_BSLASHglsdisp] = ACTIONS(4920), + [anon_sym_BSLASHglslink] = ACTIONS(4920), + [anon_sym_BSLASHglstext] = ACTIONS(4920), + [anon_sym_BSLASHGlstext] = ACTIONS(4920), + [anon_sym_BSLASHGLStext] = ACTIONS(4920), + [anon_sym_BSLASHglsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4920), + [anon_sym_BSLASHglsplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSplural] = ACTIONS(4920), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHglsname] = ACTIONS(4920), + [anon_sym_BSLASHGlsname] = ACTIONS(4920), + [anon_sym_BSLASHGLSname] = ACTIONS(4920), + [anon_sym_BSLASHglssymbol] = ACTIONS(4920), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4920), + [anon_sym_BSLASHglsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4920), + [anon_sym_BSLASHglsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4920), + [anon_sym_BSLASHglsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4920), + [anon_sym_BSLASHglsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4920), + [anon_sym_BSLASHglsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4920), + [anon_sym_BSLASHnewacronym] = ACTIONS(4920), + [anon_sym_BSLASHacrshort] = ACTIONS(4920), + [anon_sym_BSLASHAcrshort] = ACTIONS(4920), + [anon_sym_BSLASHACRshort] = ACTIONS(4920), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4920), + [anon_sym_BSLASHacrlong] = ACTIONS(4920), + [anon_sym_BSLASHAcrlong] = ACTIONS(4920), + [anon_sym_BSLASHACRlong] = ACTIONS(4920), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4920), + [anon_sym_BSLASHacrfull] = ACTIONS(4920), + [anon_sym_BSLASHAcrfull] = ACTIONS(4920), + [anon_sym_BSLASHACRfull] = ACTIONS(4920), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4920), + [anon_sym_BSLASHacs] = ACTIONS(4920), + [anon_sym_BSLASHAcs] = ACTIONS(4920), + [anon_sym_BSLASHacsp] = ACTIONS(4920), + [anon_sym_BSLASHAcsp] = ACTIONS(4920), + [anon_sym_BSLASHacl] = ACTIONS(4920), + [anon_sym_BSLASHAcl] = ACTIONS(4920), + [anon_sym_BSLASHaclp] = ACTIONS(4920), + [anon_sym_BSLASHAclp] = ACTIONS(4920), + [anon_sym_BSLASHacf] = ACTIONS(4920), + [anon_sym_BSLASHAcf] = ACTIONS(4920), + [anon_sym_BSLASHacfp] = ACTIONS(4920), + [anon_sym_BSLASHAcfp] = ACTIONS(4920), + [anon_sym_BSLASHac] = ACTIONS(4920), + [anon_sym_BSLASHAc] = ACTIONS(4920), + [anon_sym_BSLASHacp] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4920), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4920), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4920), + [anon_sym_BSLASHcolor] = ACTIONS(4920), + [anon_sym_BSLASHcolorbox] = ACTIONS(4920), + [anon_sym_BSLASHtextcolor] = ACTIONS(4920), + [anon_sym_BSLASHpagecolor] = ACTIONS(4920), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4920), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4920), + [anon_sym_BSLASHtext] = ACTIONS(4920), + [anon_sym_BSLASHintertext] = ACTIONS(4920), + [anon_sym_shortintertext] = ACTIONS(4920), }, [757] = { [sym_curly_group] = STATE(1171), - [sym_command_name] = ACTIONS(4837), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_BSLASHpart] = ACTIONS(4837), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddpart] = ACTIONS(4837), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHchapter] = ACTIONS(4837), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddchap] = ACTIONS(4837), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsection] = ACTIONS(4837), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddsec] = ACTIONS(4837), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHparagraph] = ACTIONS(4837), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHitem] = ACTIONS(4837), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4837), - [sym_placeholder] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym__] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), - [anon_sym_BSLASHbegin] = ACTIONS(4837), - [anon_sym_BSLASHusepackage] = ACTIONS(4837), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4837), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), - [anon_sym_BSLASHinput] = ACTIONS(4837), - [anon_sym_BSLASHsubfile] = ACTIONS(4837), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), - [anon_sym_BSLASHbibliography] = ACTIONS(4837), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), - [anon_sym_BSLASHincludesvg] = ACTIONS(4837), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), - [anon_sym_BSLASHimport] = ACTIONS(4837), - [anon_sym_BSLASHsubimport] = ACTIONS(4837), - [anon_sym_BSLASHinputfrom] = ACTIONS(4837), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), - [anon_sym_BSLASHincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHcaption] = ACTIONS(4837), - [anon_sym_BSLASHcite] = ACTIONS(4837), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCite] = ACTIONS(4837), - [anon_sym_BSLASHnocite] = ACTIONS(4837), - [anon_sym_BSLASHcitet] = ACTIONS(4837), - [anon_sym_BSLASHcitep] = ACTIONS(4837), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteauthor] = ACTIONS(4837), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitetitle] = ACTIONS(4837), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteyear] = ACTIONS(4837), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitedate] = ACTIONS(4837), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteurl] = ACTIONS(4837), - [anon_sym_BSLASHfullcite] = ACTIONS(4837), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), - [anon_sym_BSLASHcitealt] = ACTIONS(4837), - [anon_sym_BSLASHcitealp] = ACTIONS(4837), - [anon_sym_BSLASHcitetext] = ACTIONS(4837), - [anon_sym_BSLASHparencite] = ACTIONS(4837), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHParencite] = ACTIONS(4837), - [anon_sym_BSLASHfootcite] = ACTIONS(4837), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), - [anon_sym_BSLASHtextcite] = ACTIONS(4837), - [anon_sym_BSLASHTextcite] = ACTIONS(4837), - [anon_sym_BSLASHsmartcite] = ACTIONS(4837), - [anon_sym_BSLASHSmartcite] = ACTIONS(4837), - [anon_sym_BSLASHsupercite] = ACTIONS(4837), - [anon_sym_BSLASHautocite] = ACTIONS(4837), - [anon_sym_BSLASHAutocite] = ACTIONS(4837), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHvolcite] = ACTIONS(4837), - [anon_sym_BSLASHVolcite] = ACTIONS(4837), - [anon_sym_BSLASHpvolcite] = ACTIONS(4837), - [anon_sym_BSLASHPvolcite] = ACTIONS(4837), - [anon_sym_BSLASHfvolcite] = ACTIONS(4837), - [anon_sym_BSLASHftvolcite] = ACTIONS(4837), - [anon_sym_BSLASHsvolcite] = ACTIONS(4837), - [anon_sym_BSLASHSvolcite] = ACTIONS(4837), - [anon_sym_BSLASHtvolcite] = ACTIONS(4837), - [anon_sym_BSLASHTvolcite] = ACTIONS(4837), - [anon_sym_BSLASHavolcite] = ACTIONS(4837), - [anon_sym_BSLASHAvolcite] = ACTIONS(4837), - [anon_sym_BSLASHnotecite] = ACTIONS(4837), - [anon_sym_BSLASHNotecite] = ACTIONS(4837), - [anon_sym_BSLASHpnotecite] = ACTIONS(4837), - [anon_sym_BSLASHPnotecite] = ACTIONS(4837), - [anon_sym_BSLASHfnotecite] = ACTIONS(4837), - [anon_sym_BSLASHlabel] = ACTIONS(4837), - [anon_sym_BSLASHref] = ACTIONS(4837), - [anon_sym_BSLASHeqref] = ACTIONS(4837), - [anon_sym_BSLASHvref] = ACTIONS(4837), - [anon_sym_BSLASHVref] = ACTIONS(4837), - [anon_sym_BSLASHautoref] = ACTIONS(4837), - [anon_sym_BSLASHpageref] = ACTIONS(4837), - [anon_sym_BSLASHcref] = ACTIONS(4837), - [anon_sym_BSLASHCref] = ACTIONS(4837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnameCref] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHlabelcref] = ACTIONS(4837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCrefrange] = ACTIONS(4837), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnewlabel] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), - [anon_sym_BSLASHdef] = ACTIONS(4837), - [anon_sym_BSLASHlet] = ACTIONS(4837), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), - [anon_sym_BSLASHgls] = ACTIONS(4837), - [anon_sym_BSLASHGls] = ACTIONS(4837), - [anon_sym_BSLASHGLS] = ACTIONS(4837), - [anon_sym_BSLASHglspl] = ACTIONS(4837), - [anon_sym_BSLASHGlspl] = ACTIONS(4837), - [anon_sym_BSLASHGLSpl] = ACTIONS(4837), - [anon_sym_BSLASHglsdisp] = ACTIONS(4837), - [anon_sym_BSLASHglslink] = ACTIONS(4837), - [anon_sym_BSLASHglstext] = ACTIONS(4837), - [anon_sym_BSLASHGlstext] = ACTIONS(4837), - [anon_sym_BSLASHGLStext] = ACTIONS(4837), - [anon_sym_BSLASHglsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), - [anon_sym_BSLASHglsplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSplural] = ACTIONS(4837), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHglsname] = ACTIONS(4837), - [anon_sym_BSLASHGlsname] = ACTIONS(4837), - [anon_sym_BSLASHGLSname] = ACTIONS(4837), - [anon_sym_BSLASHglssymbol] = ACTIONS(4837), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), - [anon_sym_BSLASHglsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), - [anon_sym_BSLASHglsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), - [anon_sym_BSLASHglsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), - [anon_sym_BSLASHglsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), - [anon_sym_BSLASHglsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), - [anon_sym_BSLASHnewacronym] = ACTIONS(4837), - [anon_sym_BSLASHacrshort] = ACTIONS(4837), - [anon_sym_BSLASHAcrshort] = ACTIONS(4837), - [anon_sym_BSLASHACRshort] = ACTIONS(4837), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), - [anon_sym_BSLASHacrlong] = ACTIONS(4837), - [anon_sym_BSLASHAcrlong] = ACTIONS(4837), - [anon_sym_BSLASHACRlong] = ACTIONS(4837), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), - [anon_sym_BSLASHacrfull] = ACTIONS(4837), - [anon_sym_BSLASHAcrfull] = ACTIONS(4837), - [anon_sym_BSLASHACRfull] = ACTIONS(4837), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), - [anon_sym_BSLASHacs] = ACTIONS(4837), - [anon_sym_BSLASHAcs] = ACTIONS(4837), - [anon_sym_BSLASHacsp] = ACTIONS(4837), - [anon_sym_BSLASHAcsp] = ACTIONS(4837), - [anon_sym_BSLASHacl] = ACTIONS(4837), - [anon_sym_BSLASHAcl] = ACTIONS(4837), - [anon_sym_BSLASHaclp] = ACTIONS(4837), - [anon_sym_BSLASHAclp] = ACTIONS(4837), - [anon_sym_BSLASHacf] = ACTIONS(4837), - [anon_sym_BSLASHAcf] = ACTIONS(4837), - [anon_sym_BSLASHacfp] = ACTIONS(4837), - [anon_sym_BSLASHAcfp] = ACTIONS(4837), - [anon_sym_BSLASHac] = ACTIONS(4837), - [anon_sym_BSLASHAc] = ACTIONS(4837), - [anon_sym_BSLASHacp] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), - [anon_sym_BSLASHcolor] = ACTIONS(4837), - [anon_sym_BSLASHcolorbox] = ACTIONS(4837), - [anon_sym_BSLASHtextcolor] = ACTIONS(4837), - [anon_sym_BSLASHpagecolor] = ACTIONS(4837), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), - [anon_sym_BSLASHtext] = ACTIONS(4837), - [anon_sym_BSLASHintertext] = ACTIONS(4837), - [anon_sym_shortintertext] = ACTIONS(4837), + [sym_command_name] = ACTIONS(4916), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_BSLASHpart] = ACTIONS(4916), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddpart] = ACTIONS(4916), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHchapter] = ACTIONS(4916), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddchap] = ACTIONS(4916), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsection] = ACTIONS(4916), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddsec] = ACTIONS(4916), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHparagraph] = ACTIONS(4916), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4916), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHitem] = ACTIONS(4916), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4916), + [sym_placeholder] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym__] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4914), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4914), + [anon_sym_BSLASHbegin] = ACTIONS(4916), + [anon_sym_BSLASHusepackage] = ACTIONS(4916), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4916), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4916), + [anon_sym_BSLASHinclude] = ACTIONS(4916), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4916), + [anon_sym_BSLASHinput] = ACTIONS(4916), + [anon_sym_BSLASHsubfile] = ACTIONS(4916), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4916), + [anon_sym_BSLASHbibliography] = ACTIONS(4916), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4916), + [anon_sym_BSLASHincludesvg] = ACTIONS(4916), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4916), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4916), + [anon_sym_BSLASHimport] = ACTIONS(4916), + [anon_sym_BSLASHsubimport] = ACTIONS(4916), + [anon_sym_BSLASHinputfrom] = ACTIONS(4916), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4916), + [anon_sym_BSLASHincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHcaption] = ACTIONS(4916), + [anon_sym_BSLASHcite] = ACTIONS(4916), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCite] = ACTIONS(4916), + [anon_sym_BSLASHnocite] = ACTIONS(4916), + [anon_sym_BSLASHcitet] = ACTIONS(4916), + [anon_sym_BSLASHcitep] = ACTIONS(4916), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteauthor] = ACTIONS(4916), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4916), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitetitle] = ACTIONS(4916), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteyear] = ACTIONS(4916), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitedate] = ACTIONS(4916), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteurl] = ACTIONS(4916), + [anon_sym_BSLASHfullcite] = ACTIONS(4916), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4916), + [anon_sym_BSLASHcitealt] = ACTIONS(4916), + [anon_sym_BSLASHcitealp] = ACTIONS(4916), + [anon_sym_BSLASHcitetext] = ACTIONS(4916), + [anon_sym_BSLASHparencite] = ACTIONS(4916), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHParencite] = ACTIONS(4916), + [anon_sym_BSLASHfootcite] = ACTIONS(4916), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4916), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4916), + [anon_sym_BSLASHtextcite] = ACTIONS(4916), + [anon_sym_BSLASHTextcite] = ACTIONS(4916), + [anon_sym_BSLASHsmartcite] = ACTIONS(4916), + [anon_sym_BSLASHSmartcite] = ACTIONS(4916), + [anon_sym_BSLASHsupercite] = ACTIONS(4916), + [anon_sym_BSLASHautocite] = ACTIONS(4916), + [anon_sym_BSLASHAutocite] = ACTIONS(4916), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHvolcite] = ACTIONS(4916), + [anon_sym_BSLASHVolcite] = ACTIONS(4916), + [anon_sym_BSLASHpvolcite] = ACTIONS(4916), + [anon_sym_BSLASHPvolcite] = ACTIONS(4916), + [anon_sym_BSLASHfvolcite] = ACTIONS(4916), + [anon_sym_BSLASHftvolcite] = ACTIONS(4916), + [anon_sym_BSLASHsvolcite] = ACTIONS(4916), + [anon_sym_BSLASHSvolcite] = ACTIONS(4916), + [anon_sym_BSLASHtvolcite] = ACTIONS(4916), + [anon_sym_BSLASHTvolcite] = ACTIONS(4916), + [anon_sym_BSLASHavolcite] = ACTIONS(4916), + [anon_sym_BSLASHAvolcite] = ACTIONS(4916), + [anon_sym_BSLASHnotecite] = ACTIONS(4916), + [anon_sym_BSLASHNotecite] = ACTIONS(4916), + [anon_sym_BSLASHpnotecite] = ACTIONS(4916), + [anon_sym_BSLASHPnotecite] = ACTIONS(4916), + [anon_sym_BSLASHfnotecite] = ACTIONS(4916), + [anon_sym_BSLASHlabel] = ACTIONS(4916), + [anon_sym_BSLASHref] = ACTIONS(4916), + [anon_sym_BSLASHeqref] = ACTIONS(4916), + [anon_sym_BSLASHvref] = ACTIONS(4916), + [anon_sym_BSLASHVref] = ACTIONS(4916), + [anon_sym_BSLASHautoref] = ACTIONS(4916), + [anon_sym_BSLASHpageref] = ACTIONS(4916), + [anon_sym_BSLASHcref] = ACTIONS(4916), + [anon_sym_BSLASHCref] = ACTIONS(4916), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnameCref] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHlabelcref] = ACTIONS(4916), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCrefrange] = ACTIONS(4916), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnewlabel] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4916), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4916), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4916), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdef] = ACTIONS(4916), + [anon_sym_BSLASHlet] = ACTIONS(4916), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4916), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4916), + [anon_sym_BSLASHgls] = ACTIONS(4916), + [anon_sym_BSLASHGls] = ACTIONS(4916), + [anon_sym_BSLASHGLS] = ACTIONS(4916), + [anon_sym_BSLASHglspl] = ACTIONS(4916), + [anon_sym_BSLASHGlspl] = ACTIONS(4916), + [anon_sym_BSLASHGLSpl] = ACTIONS(4916), + [anon_sym_BSLASHglsdisp] = ACTIONS(4916), + [anon_sym_BSLASHglslink] = ACTIONS(4916), + [anon_sym_BSLASHglstext] = ACTIONS(4916), + [anon_sym_BSLASHGlstext] = ACTIONS(4916), + [anon_sym_BSLASHGLStext] = ACTIONS(4916), + [anon_sym_BSLASHglsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4916), + [anon_sym_BSLASHglsplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSplural] = ACTIONS(4916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHglsname] = ACTIONS(4916), + [anon_sym_BSLASHGlsname] = ACTIONS(4916), + [anon_sym_BSLASHGLSname] = ACTIONS(4916), + [anon_sym_BSLASHglssymbol] = ACTIONS(4916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4916), + [anon_sym_BSLASHglsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4916), + [anon_sym_BSLASHglsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4916), + [anon_sym_BSLASHglsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4916), + [anon_sym_BSLASHglsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4916), + [anon_sym_BSLASHglsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4916), + [anon_sym_BSLASHnewacronym] = ACTIONS(4916), + [anon_sym_BSLASHacrshort] = ACTIONS(4916), + [anon_sym_BSLASHAcrshort] = ACTIONS(4916), + [anon_sym_BSLASHACRshort] = ACTIONS(4916), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4916), + [anon_sym_BSLASHacrlong] = ACTIONS(4916), + [anon_sym_BSLASHAcrlong] = ACTIONS(4916), + [anon_sym_BSLASHACRlong] = ACTIONS(4916), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4916), + [anon_sym_BSLASHacrfull] = ACTIONS(4916), + [anon_sym_BSLASHAcrfull] = ACTIONS(4916), + [anon_sym_BSLASHACRfull] = ACTIONS(4916), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4916), + [anon_sym_BSLASHacs] = ACTIONS(4916), + [anon_sym_BSLASHAcs] = ACTIONS(4916), + [anon_sym_BSLASHacsp] = ACTIONS(4916), + [anon_sym_BSLASHAcsp] = ACTIONS(4916), + [anon_sym_BSLASHacl] = ACTIONS(4916), + [anon_sym_BSLASHAcl] = ACTIONS(4916), + [anon_sym_BSLASHaclp] = ACTIONS(4916), + [anon_sym_BSLASHAclp] = ACTIONS(4916), + [anon_sym_BSLASHacf] = ACTIONS(4916), + [anon_sym_BSLASHAcf] = ACTIONS(4916), + [anon_sym_BSLASHacfp] = ACTIONS(4916), + [anon_sym_BSLASHAcfp] = ACTIONS(4916), + [anon_sym_BSLASHac] = ACTIONS(4916), + [anon_sym_BSLASHAc] = ACTIONS(4916), + [anon_sym_BSLASHacp] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4916), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4916), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4916), + [anon_sym_BSLASHcolor] = ACTIONS(4916), + [anon_sym_BSLASHcolorbox] = ACTIONS(4916), + [anon_sym_BSLASHtextcolor] = ACTIONS(4916), + [anon_sym_BSLASHpagecolor] = ACTIONS(4916), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4916), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4916), + [anon_sym_BSLASHtext] = ACTIONS(4916), + [anon_sym_BSLASHintertext] = ACTIONS(4916), + [anon_sym_shortintertext] = ACTIONS(4916), }, [758] = { [sym_curly_group] = STATE(1172), - [sym_command_name] = ACTIONS(4833), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4831), - [anon_sym_BSLASHpart] = ACTIONS(4833), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddpart] = ACTIONS(4833), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHchapter] = ACTIONS(4833), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddchap] = ACTIONS(4833), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsection] = ACTIONS(4833), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddsec] = ACTIONS(4833), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHparagraph] = ACTIONS(4833), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHitem] = ACTIONS(4833), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4833), - [sym_placeholder] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym__] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), - [anon_sym_BSLASHbegin] = ACTIONS(4833), - [anon_sym_BSLASHusepackage] = ACTIONS(4833), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), - [anon_sym_BSLASHinclude] = ACTIONS(4833), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), - [anon_sym_BSLASHinput] = ACTIONS(4833), - [anon_sym_BSLASHsubfile] = ACTIONS(4833), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), - [anon_sym_BSLASHbibliography] = ACTIONS(4833), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), - [anon_sym_BSLASHincludesvg] = ACTIONS(4833), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), - [anon_sym_BSLASHimport] = ACTIONS(4833), - [anon_sym_BSLASHsubimport] = ACTIONS(4833), - [anon_sym_BSLASHinputfrom] = ACTIONS(4833), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), - [anon_sym_BSLASHincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHcaption] = ACTIONS(4833), - [anon_sym_BSLASHcite] = ACTIONS(4833), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCite] = ACTIONS(4833), - [anon_sym_BSLASHnocite] = ACTIONS(4833), - [anon_sym_BSLASHcitet] = ACTIONS(4833), - [anon_sym_BSLASHcitep] = ACTIONS(4833), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteauthor] = ACTIONS(4833), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitetitle] = ACTIONS(4833), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteyear] = ACTIONS(4833), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitedate] = ACTIONS(4833), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteurl] = ACTIONS(4833), - [anon_sym_BSLASHfullcite] = ACTIONS(4833), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), - [anon_sym_BSLASHcitealt] = ACTIONS(4833), - [anon_sym_BSLASHcitealp] = ACTIONS(4833), - [anon_sym_BSLASHcitetext] = ACTIONS(4833), - [anon_sym_BSLASHparencite] = ACTIONS(4833), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHParencite] = ACTIONS(4833), - [anon_sym_BSLASHfootcite] = ACTIONS(4833), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), - [anon_sym_BSLASHtextcite] = ACTIONS(4833), - [anon_sym_BSLASHTextcite] = ACTIONS(4833), - [anon_sym_BSLASHsmartcite] = ACTIONS(4833), - [anon_sym_BSLASHSmartcite] = ACTIONS(4833), - [anon_sym_BSLASHsupercite] = ACTIONS(4833), - [anon_sym_BSLASHautocite] = ACTIONS(4833), - [anon_sym_BSLASHAutocite] = ACTIONS(4833), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHvolcite] = ACTIONS(4833), - [anon_sym_BSLASHVolcite] = ACTIONS(4833), - [anon_sym_BSLASHpvolcite] = ACTIONS(4833), - [anon_sym_BSLASHPvolcite] = ACTIONS(4833), - [anon_sym_BSLASHfvolcite] = ACTIONS(4833), - [anon_sym_BSLASHftvolcite] = ACTIONS(4833), - [anon_sym_BSLASHsvolcite] = ACTIONS(4833), - [anon_sym_BSLASHSvolcite] = ACTIONS(4833), - [anon_sym_BSLASHtvolcite] = ACTIONS(4833), - [anon_sym_BSLASHTvolcite] = ACTIONS(4833), - [anon_sym_BSLASHavolcite] = ACTIONS(4833), - [anon_sym_BSLASHAvolcite] = ACTIONS(4833), - [anon_sym_BSLASHnotecite] = ACTIONS(4833), - [anon_sym_BSLASHNotecite] = ACTIONS(4833), - [anon_sym_BSLASHpnotecite] = ACTIONS(4833), - [anon_sym_BSLASHPnotecite] = ACTIONS(4833), - [anon_sym_BSLASHfnotecite] = ACTIONS(4833), - [anon_sym_BSLASHlabel] = ACTIONS(4833), - [anon_sym_BSLASHref] = ACTIONS(4833), - [anon_sym_BSLASHeqref] = ACTIONS(4833), - [anon_sym_BSLASHvref] = ACTIONS(4833), - [anon_sym_BSLASHVref] = ACTIONS(4833), - [anon_sym_BSLASHautoref] = ACTIONS(4833), - [anon_sym_BSLASHpageref] = ACTIONS(4833), - [anon_sym_BSLASHcref] = ACTIONS(4833), - [anon_sym_BSLASHCref] = ACTIONS(4833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnameCref] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHlabelcref] = ACTIONS(4833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCrefrange] = ACTIONS(4833), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnewlabel] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), - [anon_sym_BSLASHdef] = ACTIONS(4833), - [anon_sym_BSLASHlet] = ACTIONS(4833), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), - [anon_sym_BSLASHgls] = ACTIONS(4833), - [anon_sym_BSLASHGls] = ACTIONS(4833), - [anon_sym_BSLASHGLS] = ACTIONS(4833), - [anon_sym_BSLASHglspl] = ACTIONS(4833), - [anon_sym_BSLASHGlspl] = ACTIONS(4833), - [anon_sym_BSLASHGLSpl] = ACTIONS(4833), - [anon_sym_BSLASHglsdisp] = ACTIONS(4833), - [anon_sym_BSLASHglslink] = ACTIONS(4833), - [anon_sym_BSLASHglstext] = ACTIONS(4833), - [anon_sym_BSLASHGlstext] = ACTIONS(4833), - [anon_sym_BSLASHGLStext] = ACTIONS(4833), - [anon_sym_BSLASHglsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), - [anon_sym_BSLASHglsplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSplural] = ACTIONS(4833), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHglsname] = ACTIONS(4833), - [anon_sym_BSLASHGlsname] = ACTIONS(4833), - [anon_sym_BSLASHGLSname] = ACTIONS(4833), - [anon_sym_BSLASHglssymbol] = ACTIONS(4833), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), - [anon_sym_BSLASHglsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), - [anon_sym_BSLASHglsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), - [anon_sym_BSLASHglsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), - [anon_sym_BSLASHglsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), - [anon_sym_BSLASHglsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), - [anon_sym_BSLASHnewacronym] = ACTIONS(4833), - [anon_sym_BSLASHacrshort] = ACTIONS(4833), - [anon_sym_BSLASHAcrshort] = ACTIONS(4833), - [anon_sym_BSLASHACRshort] = ACTIONS(4833), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), - [anon_sym_BSLASHacrlong] = ACTIONS(4833), - [anon_sym_BSLASHAcrlong] = ACTIONS(4833), - [anon_sym_BSLASHACRlong] = ACTIONS(4833), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), - [anon_sym_BSLASHacrfull] = ACTIONS(4833), - [anon_sym_BSLASHAcrfull] = ACTIONS(4833), - [anon_sym_BSLASHACRfull] = ACTIONS(4833), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), - [anon_sym_BSLASHacs] = ACTIONS(4833), - [anon_sym_BSLASHAcs] = ACTIONS(4833), - [anon_sym_BSLASHacsp] = ACTIONS(4833), - [anon_sym_BSLASHAcsp] = ACTIONS(4833), - [anon_sym_BSLASHacl] = ACTIONS(4833), - [anon_sym_BSLASHAcl] = ACTIONS(4833), - [anon_sym_BSLASHaclp] = ACTIONS(4833), - [anon_sym_BSLASHAclp] = ACTIONS(4833), - [anon_sym_BSLASHacf] = ACTIONS(4833), - [anon_sym_BSLASHAcf] = ACTIONS(4833), - [anon_sym_BSLASHacfp] = ACTIONS(4833), - [anon_sym_BSLASHAcfp] = ACTIONS(4833), - [anon_sym_BSLASHac] = ACTIONS(4833), - [anon_sym_BSLASHAc] = ACTIONS(4833), - [anon_sym_BSLASHacp] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), - [anon_sym_BSLASHcolor] = ACTIONS(4833), - [anon_sym_BSLASHcolorbox] = ACTIONS(4833), - [anon_sym_BSLASHtextcolor] = ACTIONS(4833), - [anon_sym_BSLASHpagecolor] = ACTIONS(4833), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), - [anon_sym_BSLASHtext] = ACTIONS(4833), - [anon_sym_BSLASHintertext] = ACTIONS(4833), - [anon_sym_shortintertext] = ACTIONS(4833), + [sym_command_name] = ACTIONS(4912), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_BSLASHpart] = ACTIONS(4912), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddpart] = ACTIONS(4912), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHchapter] = ACTIONS(4912), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddchap] = ACTIONS(4912), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsection] = ACTIONS(4912), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddsec] = ACTIONS(4912), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHparagraph] = ACTIONS(4912), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4912), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHitem] = ACTIONS(4912), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4912), + [sym_placeholder] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_CARET] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4910), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4910), + [anon_sym_BSLASHbegin] = ACTIONS(4912), + [anon_sym_BSLASHusepackage] = ACTIONS(4912), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4912), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4912), + [anon_sym_BSLASHinclude] = ACTIONS(4912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4912), + [anon_sym_BSLASHinput] = ACTIONS(4912), + [anon_sym_BSLASHsubfile] = ACTIONS(4912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4912), + [anon_sym_BSLASHbibliography] = ACTIONS(4912), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4912), + [anon_sym_BSLASHincludesvg] = ACTIONS(4912), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4912), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4912), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4912), + [anon_sym_BSLASHimport] = ACTIONS(4912), + [anon_sym_BSLASHsubimport] = ACTIONS(4912), + [anon_sym_BSLASHinputfrom] = ACTIONS(4912), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4912), + [anon_sym_BSLASHincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHcaption] = ACTIONS(4912), + [anon_sym_BSLASHcite] = ACTIONS(4912), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCite] = ACTIONS(4912), + [anon_sym_BSLASHnocite] = ACTIONS(4912), + [anon_sym_BSLASHcitet] = ACTIONS(4912), + [anon_sym_BSLASHcitep] = ACTIONS(4912), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteauthor] = ACTIONS(4912), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4912), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitetitle] = ACTIONS(4912), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteyear] = ACTIONS(4912), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitedate] = ACTIONS(4912), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteurl] = ACTIONS(4912), + [anon_sym_BSLASHfullcite] = ACTIONS(4912), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4912), + [anon_sym_BSLASHcitealt] = ACTIONS(4912), + [anon_sym_BSLASHcitealp] = ACTIONS(4912), + [anon_sym_BSLASHcitetext] = ACTIONS(4912), + [anon_sym_BSLASHparencite] = ACTIONS(4912), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHParencite] = ACTIONS(4912), + [anon_sym_BSLASHfootcite] = ACTIONS(4912), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4912), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4912), + [anon_sym_BSLASHtextcite] = ACTIONS(4912), + [anon_sym_BSLASHTextcite] = ACTIONS(4912), + [anon_sym_BSLASHsmartcite] = ACTIONS(4912), + [anon_sym_BSLASHSmartcite] = ACTIONS(4912), + [anon_sym_BSLASHsupercite] = ACTIONS(4912), + [anon_sym_BSLASHautocite] = ACTIONS(4912), + [anon_sym_BSLASHAutocite] = ACTIONS(4912), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHvolcite] = ACTIONS(4912), + [anon_sym_BSLASHVolcite] = ACTIONS(4912), + [anon_sym_BSLASHpvolcite] = ACTIONS(4912), + [anon_sym_BSLASHPvolcite] = ACTIONS(4912), + [anon_sym_BSLASHfvolcite] = ACTIONS(4912), + [anon_sym_BSLASHftvolcite] = ACTIONS(4912), + [anon_sym_BSLASHsvolcite] = ACTIONS(4912), + [anon_sym_BSLASHSvolcite] = ACTIONS(4912), + [anon_sym_BSLASHtvolcite] = ACTIONS(4912), + [anon_sym_BSLASHTvolcite] = ACTIONS(4912), + [anon_sym_BSLASHavolcite] = ACTIONS(4912), + [anon_sym_BSLASHAvolcite] = ACTIONS(4912), + [anon_sym_BSLASHnotecite] = ACTIONS(4912), + [anon_sym_BSLASHNotecite] = ACTIONS(4912), + [anon_sym_BSLASHpnotecite] = ACTIONS(4912), + [anon_sym_BSLASHPnotecite] = ACTIONS(4912), + [anon_sym_BSLASHfnotecite] = ACTIONS(4912), + [anon_sym_BSLASHlabel] = ACTIONS(4912), + [anon_sym_BSLASHref] = ACTIONS(4912), + [anon_sym_BSLASHeqref] = ACTIONS(4912), + [anon_sym_BSLASHvref] = ACTIONS(4912), + [anon_sym_BSLASHVref] = ACTIONS(4912), + [anon_sym_BSLASHautoref] = ACTIONS(4912), + [anon_sym_BSLASHpageref] = ACTIONS(4912), + [anon_sym_BSLASHcref] = ACTIONS(4912), + [anon_sym_BSLASHCref] = ACTIONS(4912), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnameCref] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHlabelcref] = ACTIONS(4912), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCrefrange] = ACTIONS(4912), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnewlabel] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4912), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4912), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4912), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdef] = ACTIONS(4912), + [anon_sym_BSLASHlet] = ACTIONS(4912), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4912), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), + [anon_sym_BSLASHgls] = ACTIONS(4912), + [anon_sym_BSLASHGls] = ACTIONS(4912), + [anon_sym_BSLASHGLS] = ACTIONS(4912), + [anon_sym_BSLASHglspl] = ACTIONS(4912), + [anon_sym_BSLASHGlspl] = ACTIONS(4912), + [anon_sym_BSLASHGLSpl] = ACTIONS(4912), + [anon_sym_BSLASHglsdisp] = ACTIONS(4912), + [anon_sym_BSLASHglslink] = ACTIONS(4912), + [anon_sym_BSLASHglstext] = ACTIONS(4912), + [anon_sym_BSLASHGlstext] = ACTIONS(4912), + [anon_sym_BSLASHGLStext] = ACTIONS(4912), + [anon_sym_BSLASHglsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4912), + [anon_sym_BSLASHglsplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSplural] = ACTIONS(4912), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHglsname] = ACTIONS(4912), + [anon_sym_BSLASHGlsname] = ACTIONS(4912), + [anon_sym_BSLASHGLSname] = ACTIONS(4912), + [anon_sym_BSLASHglssymbol] = ACTIONS(4912), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4912), + [anon_sym_BSLASHglsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4912), + [anon_sym_BSLASHglsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4912), + [anon_sym_BSLASHglsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4912), + [anon_sym_BSLASHglsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4912), + [anon_sym_BSLASHglsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4912), + [anon_sym_BSLASHnewacronym] = ACTIONS(4912), + [anon_sym_BSLASHacrshort] = ACTIONS(4912), + [anon_sym_BSLASHAcrshort] = ACTIONS(4912), + [anon_sym_BSLASHACRshort] = ACTIONS(4912), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4912), + [anon_sym_BSLASHacrlong] = ACTIONS(4912), + [anon_sym_BSLASHAcrlong] = ACTIONS(4912), + [anon_sym_BSLASHACRlong] = ACTIONS(4912), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4912), + [anon_sym_BSLASHacrfull] = ACTIONS(4912), + [anon_sym_BSLASHAcrfull] = ACTIONS(4912), + [anon_sym_BSLASHACRfull] = ACTIONS(4912), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4912), + [anon_sym_BSLASHacs] = ACTIONS(4912), + [anon_sym_BSLASHAcs] = ACTIONS(4912), + [anon_sym_BSLASHacsp] = ACTIONS(4912), + [anon_sym_BSLASHAcsp] = ACTIONS(4912), + [anon_sym_BSLASHacl] = ACTIONS(4912), + [anon_sym_BSLASHAcl] = ACTIONS(4912), + [anon_sym_BSLASHaclp] = ACTIONS(4912), + [anon_sym_BSLASHAclp] = ACTIONS(4912), + [anon_sym_BSLASHacf] = ACTIONS(4912), + [anon_sym_BSLASHAcf] = ACTIONS(4912), + [anon_sym_BSLASHacfp] = ACTIONS(4912), + [anon_sym_BSLASHAcfp] = ACTIONS(4912), + [anon_sym_BSLASHac] = ACTIONS(4912), + [anon_sym_BSLASHAc] = ACTIONS(4912), + [anon_sym_BSLASHacp] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4912), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4912), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4912), + [anon_sym_BSLASHcolor] = ACTIONS(4912), + [anon_sym_BSLASHcolorbox] = ACTIONS(4912), + [anon_sym_BSLASHtextcolor] = ACTIONS(4912), + [anon_sym_BSLASHpagecolor] = ACTIONS(4912), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4912), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4912), + [anon_sym_BSLASHtext] = ACTIONS(4912), + [anon_sym_BSLASHintertext] = ACTIONS(4912), + [anon_sym_shortintertext] = ACTIONS(4912), }, [759] = { [sym_curly_group] = STATE(963), - [sym_command_name] = ACTIONS(4833), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4831), - [anon_sym_BSLASHpart] = ACTIONS(4833), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddpart] = ACTIONS(4833), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHchapter] = ACTIONS(4833), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddchap] = ACTIONS(4833), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsection] = ACTIONS(4833), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddsec] = ACTIONS(4833), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHparagraph] = ACTIONS(4833), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHitem] = ACTIONS(4833), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4833), - [sym_placeholder] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym__] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), - [anon_sym_BSLASHbegin] = ACTIONS(4833), - [anon_sym_BSLASHusepackage] = ACTIONS(4833), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), - [anon_sym_BSLASHinclude] = ACTIONS(4833), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), - [anon_sym_BSLASHinput] = ACTIONS(4833), - [anon_sym_BSLASHsubfile] = ACTIONS(4833), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), - [anon_sym_BSLASHbibliography] = ACTIONS(4833), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), - [anon_sym_BSLASHincludesvg] = ACTIONS(4833), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), - [anon_sym_BSLASHimport] = ACTIONS(4833), - [anon_sym_BSLASHsubimport] = ACTIONS(4833), - [anon_sym_BSLASHinputfrom] = ACTIONS(4833), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), - [anon_sym_BSLASHincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHcaption] = ACTIONS(4833), - [anon_sym_BSLASHcite] = ACTIONS(4833), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCite] = ACTIONS(4833), - [anon_sym_BSLASHnocite] = ACTIONS(4833), - [anon_sym_BSLASHcitet] = ACTIONS(4833), - [anon_sym_BSLASHcitep] = ACTIONS(4833), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteauthor] = ACTIONS(4833), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitetitle] = ACTIONS(4833), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteyear] = ACTIONS(4833), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitedate] = ACTIONS(4833), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteurl] = ACTIONS(4833), - [anon_sym_BSLASHfullcite] = ACTIONS(4833), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), - [anon_sym_BSLASHcitealt] = ACTIONS(4833), - [anon_sym_BSLASHcitealp] = ACTIONS(4833), - [anon_sym_BSLASHcitetext] = ACTIONS(4833), - [anon_sym_BSLASHparencite] = ACTIONS(4833), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHParencite] = ACTIONS(4833), - [anon_sym_BSLASHfootcite] = ACTIONS(4833), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), - [anon_sym_BSLASHtextcite] = ACTIONS(4833), - [anon_sym_BSLASHTextcite] = ACTIONS(4833), - [anon_sym_BSLASHsmartcite] = ACTIONS(4833), - [anon_sym_BSLASHSmartcite] = ACTIONS(4833), - [anon_sym_BSLASHsupercite] = ACTIONS(4833), - [anon_sym_BSLASHautocite] = ACTIONS(4833), - [anon_sym_BSLASHAutocite] = ACTIONS(4833), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHvolcite] = ACTIONS(4833), - [anon_sym_BSLASHVolcite] = ACTIONS(4833), - [anon_sym_BSLASHpvolcite] = ACTIONS(4833), - [anon_sym_BSLASHPvolcite] = ACTIONS(4833), - [anon_sym_BSLASHfvolcite] = ACTIONS(4833), - [anon_sym_BSLASHftvolcite] = ACTIONS(4833), - [anon_sym_BSLASHsvolcite] = ACTIONS(4833), - [anon_sym_BSLASHSvolcite] = ACTIONS(4833), - [anon_sym_BSLASHtvolcite] = ACTIONS(4833), - [anon_sym_BSLASHTvolcite] = ACTIONS(4833), - [anon_sym_BSLASHavolcite] = ACTIONS(4833), - [anon_sym_BSLASHAvolcite] = ACTIONS(4833), - [anon_sym_BSLASHnotecite] = ACTIONS(4833), - [anon_sym_BSLASHNotecite] = ACTIONS(4833), - [anon_sym_BSLASHpnotecite] = ACTIONS(4833), - [anon_sym_BSLASHPnotecite] = ACTIONS(4833), - [anon_sym_BSLASHfnotecite] = ACTIONS(4833), - [anon_sym_BSLASHlabel] = ACTIONS(4833), - [anon_sym_BSLASHref] = ACTIONS(4833), - [anon_sym_BSLASHeqref] = ACTIONS(4833), - [anon_sym_BSLASHvref] = ACTIONS(4833), - [anon_sym_BSLASHVref] = ACTIONS(4833), - [anon_sym_BSLASHautoref] = ACTIONS(4833), - [anon_sym_BSLASHpageref] = ACTIONS(4833), - [anon_sym_BSLASHcref] = ACTIONS(4833), - [anon_sym_BSLASHCref] = ACTIONS(4833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnameCref] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHlabelcref] = ACTIONS(4833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCrefrange] = ACTIONS(4833), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnewlabel] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), - [anon_sym_BSLASHdef] = ACTIONS(4833), - [anon_sym_BSLASHlet] = ACTIONS(4833), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), - [anon_sym_BSLASHgls] = ACTIONS(4833), - [anon_sym_BSLASHGls] = ACTIONS(4833), - [anon_sym_BSLASHGLS] = ACTIONS(4833), - [anon_sym_BSLASHglspl] = ACTIONS(4833), - [anon_sym_BSLASHGlspl] = ACTIONS(4833), - [anon_sym_BSLASHGLSpl] = ACTIONS(4833), - [anon_sym_BSLASHglsdisp] = ACTIONS(4833), - [anon_sym_BSLASHglslink] = ACTIONS(4833), - [anon_sym_BSLASHglstext] = ACTIONS(4833), - [anon_sym_BSLASHGlstext] = ACTIONS(4833), - [anon_sym_BSLASHGLStext] = ACTIONS(4833), - [anon_sym_BSLASHglsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), - [anon_sym_BSLASHglsplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSplural] = ACTIONS(4833), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHglsname] = ACTIONS(4833), - [anon_sym_BSLASHGlsname] = ACTIONS(4833), - [anon_sym_BSLASHGLSname] = ACTIONS(4833), - [anon_sym_BSLASHglssymbol] = ACTIONS(4833), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), - [anon_sym_BSLASHglsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), - [anon_sym_BSLASHglsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), - [anon_sym_BSLASHglsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), - [anon_sym_BSLASHglsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), - [anon_sym_BSLASHglsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), - [anon_sym_BSLASHnewacronym] = ACTIONS(4833), - [anon_sym_BSLASHacrshort] = ACTIONS(4833), - [anon_sym_BSLASHAcrshort] = ACTIONS(4833), - [anon_sym_BSLASHACRshort] = ACTIONS(4833), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), - [anon_sym_BSLASHacrlong] = ACTIONS(4833), - [anon_sym_BSLASHAcrlong] = ACTIONS(4833), - [anon_sym_BSLASHACRlong] = ACTIONS(4833), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), - [anon_sym_BSLASHacrfull] = ACTIONS(4833), - [anon_sym_BSLASHAcrfull] = ACTIONS(4833), - [anon_sym_BSLASHACRfull] = ACTIONS(4833), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), - [anon_sym_BSLASHacs] = ACTIONS(4833), - [anon_sym_BSLASHAcs] = ACTIONS(4833), - [anon_sym_BSLASHacsp] = ACTIONS(4833), - [anon_sym_BSLASHAcsp] = ACTIONS(4833), - [anon_sym_BSLASHacl] = ACTIONS(4833), - [anon_sym_BSLASHAcl] = ACTIONS(4833), - [anon_sym_BSLASHaclp] = ACTIONS(4833), - [anon_sym_BSLASHAclp] = ACTIONS(4833), - [anon_sym_BSLASHacf] = ACTIONS(4833), - [anon_sym_BSLASHAcf] = ACTIONS(4833), - [anon_sym_BSLASHacfp] = ACTIONS(4833), - [anon_sym_BSLASHAcfp] = ACTIONS(4833), - [anon_sym_BSLASHac] = ACTIONS(4833), - [anon_sym_BSLASHAc] = ACTIONS(4833), - [anon_sym_BSLASHacp] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), - [anon_sym_BSLASHcolor] = ACTIONS(4833), - [anon_sym_BSLASHcolorbox] = ACTIONS(4833), - [anon_sym_BSLASHtextcolor] = ACTIONS(4833), - [anon_sym_BSLASHpagecolor] = ACTIONS(4833), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), - [anon_sym_BSLASHtext] = ACTIONS(4833), - [anon_sym_BSLASHintertext] = ACTIONS(4833), - [anon_sym_shortintertext] = ACTIONS(4833), + [sym_command_name] = ACTIONS(4912), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_BSLASHpart] = ACTIONS(4912), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddpart] = ACTIONS(4912), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHchapter] = ACTIONS(4912), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddchap] = ACTIONS(4912), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsection] = ACTIONS(4912), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddsec] = ACTIONS(4912), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHparagraph] = ACTIONS(4912), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4912), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHitem] = ACTIONS(4912), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4912), + [sym_placeholder] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_CARET] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4910), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4910), + [anon_sym_BSLASHbegin] = ACTIONS(4912), + [anon_sym_BSLASHusepackage] = ACTIONS(4912), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4912), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4912), + [anon_sym_BSLASHinclude] = ACTIONS(4912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4912), + [anon_sym_BSLASHinput] = ACTIONS(4912), + [anon_sym_BSLASHsubfile] = ACTIONS(4912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4912), + [anon_sym_BSLASHbibliography] = ACTIONS(4912), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4912), + [anon_sym_BSLASHincludesvg] = ACTIONS(4912), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4912), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4912), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4912), + [anon_sym_BSLASHimport] = ACTIONS(4912), + [anon_sym_BSLASHsubimport] = ACTIONS(4912), + [anon_sym_BSLASHinputfrom] = ACTIONS(4912), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4912), + [anon_sym_BSLASHincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHcaption] = ACTIONS(4912), + [anon_sym_BSLASHcite] = ACTIONS(4912), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCite] = ACTIONS(4912), + [anon_sym_BSLASHnocite] = ACTIONS(4912), + [anon_sym_BSLASHcitet] = ACTIONS(4912), + [anon_sym_BSLASHcitep] = ACTIONS(4912), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteauthor] = ACTIONS(4912), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4912), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitetitle] = ACTIONS(4912), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteyear] = ACTIONS(4912), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitedate] = ACTIONS(4912), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteurl] = ACTIONS(4912), + [anon_sym_BSLASHfullcite] = ACTIONS(4912), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4912), + [anon_sym_BSLASHcitealt] = ACTIONS(4912), + [anon_sym_BSLASHcitealp] = ACTIONS(4912), + [anon_sym_BSLASHcitetext] = ACTIONS(4912), + [anon_sym_BSLASHparencite] = ACTIONS(4912), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHParencite] = ACTIONS(4912), + [anon_sym_BSLASHfootcite] = ACTIONS(4912), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4912), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4912), + [anon_sym_BSLASHtextcite] = ACTIONS(4912), + [anon_sym_BSLASHTextcite] = ACTIONS(4912), + [anon_sym_BSLASHsmartcite] = ACTIONS(4912), + [anon_sym_BSLASHSmartcite] = ACTIONS(4912), + [anon_sym_BSLASHsupercite] = ACTIONS(4912), + [anon_sym_BSLASHautocite] = ACTIONS(4912), + [anon_sym_BSLASHAutocite] = ACTIONS(4912), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHvolcite] = ACTIONS(4912), + [anon_sym_BSLASHVolcite] = ACTIONS(4912), + [anon_sym_BSLASHpvolcite] = ACTIONS(4912), + [anon_sym_BSLASHPvolcite] = ACTIONS(4912), + [anon_sym_BSLASHfvolcite] = ACTIONS(4912), + [anon_sym_BSLASHftvolcite] = ACTIONS(4912), + [anon_sym_BSLASHsvolcite] = ACTIONS(4912), + [anon_sym_BSLASHSvolcite] = ACTIONS(4912), + [anon_sym_BSLASHtvolcite] = ACTIONS(4912), + [anon_sym_BSLASHTvolcite] = ACTIONS(4912), + [anon_sym_BSLASHavolcite] = ACTIONS(4912), + [anon_sym_BSLASHAvolcite] = ACTIONS(4912), + [anon_sym_BSLASHnotecite] = ACTIONS(4912), + [anon_sym_BSLASHNotecite] = ACTIONS(4912), + [anon_sym_BSLASHpnotecite] = ACTIONS(4912), + [anon_sym_BSLASHPnotecite] = ACTIONS(4912), + [anon_sym_BSLASHfnotecite] = ACTIONS(4912), + [anon_sym_BSLASHlabel] = ACTIONS(4912), + [anon_sym_BSLASHref] = ACTIONS(4912), + [anon_sym_BSLASHeqref] = ACTIONS(4912), + [anon_sym_BSLASHvref] = ACTIONS(4912), + [anon_sym_BSLASHVref] = ACTIONS(4912), + [anon_sym_BSLASHautoref] = ACTIONS(4912), + [anon_sym_BSLASHpageref] = ACTIONS(4912), + [anon_sym_BSLASHcref] = ACTIONS(4912), + [anon_sym_BSLASHCref] = ACTIONS(4912), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnameCref] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHlabelcref] = ACTIONS(4912), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCrefrange] = ACTIONS(4912), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnewlabel] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4912), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4912), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4912), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdef] = ACTIONS(4912), + [anon_sym_BSLASHlet] = ACTIONS(4912), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4912), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), + [anon_sym_BSLASHgls] = ACTIONS(4912), + [anon_sym_BSLASHGls] = ACTIONS(4912), + [anon_sym_BSLASHGLS] = ACTIONS(4912), + [anon_sym_BSLASHglspl] = ACTIONS(4912), + [anon_sym_BSLASHGlspl] = ACTIONS(4912), + [anon_sym_BSLASHGLSpl] = ACTIONS(4912), + [anon_sym_BSLASHglsdisp] = ACTIONS(4912), + [anon_sym_BSLASHglslink] = ACTIONS(4912), + [anon_sym_BSLASHglstext] = ACTIONS(4912), + [anon_sym_BSLASHGlstext] = ACTIONS(4912), + [anon_sym_BSLASHGLStext] = ACTIONS(4912), + [anon_sym_BSLASHglsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4912), + [anon_sym_BSLASHglsplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSplural] = ACTIONS(4912), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHglsname] = ACTIONS(4912), + [anon_sym_BSLASHGlsname] = ACTIONS(4912), + [anon_sym_BSLASHGLSname] = ACTIONS(4912), + [anon_sym_BSLASHglssymbol] = ACTIONS(4912), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4912), + [anon_sym_BSLASHglsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4912), + [anon_sym_BSLASHglsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4912), + [anon_sym_BSLASHglsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4912), + [anon_sym_BSLASHglsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4912), + [anon_sym_BSLASHglsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4912), + [anon_sym_BSLASHnewacronym] = ACTIONS(4912), + [anon_sym_BSLASHacrshort] = ACTIONS(4912), + [anon_sym_BSLASHAcrshort] = ACTIONS(4912), + [anon_sym_BSLASHACRshort] = ACTIONS(4912), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4912), + [anon_sym_BSLASHacrlong] = ACTIONS(4912), + [anon_sym_BSLASHAcrlong] = ACTIONS(4912), + [anon_sym_BSLASHACRlong] = ACTIONS(4912), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4912), + [anon_sym_BSLASHacrfull] = ACTIONS(4912), + [anon_sym_BSLASHAcrfull] = ACTIONS(4912), + [anon_sym_BSLASHACRfull] = ACTIONS(4912), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4912), + [anon_sym_BSLASHacs] = ACTIONS(4912), + [anon_sym_BSLASHAcs] = ACTIONS(4912), + [anon_sym_BSLASHacsp] = ACTIONS(4912), + [anon_sym_BSLASHAcsp] = ACTIONS(4912), + [anon_sym_BSLASHacl] = ACTIONS(4912), + [anon_sym_BSLASHAcl] = ACTIONS(4912), + [anon_sym_BSLASHaclp] = ACTIONS(4912), + [anon_sym_BSLASHAclp] = ACTIONS(4912), + [anon_sym_BSLASHacf] = ACTIONS(4912), + [anon_sym_BSLASHAcf] = ACTIONS(4912), + [anon_sym_BSLASHacfp] = ACTIONS(4912), + [anon_sym_BSLASHAcfp] = ACTIONS(4912), + [anon_sym_BSLASHac] = ACTIONS(4912), + [anon_sym_BSLASHAc] = ACTIONS(4912), + [anon_sym_BSLASHacp] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4912), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4912), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4912), + [anon_sym_BSLASHcolor] = ACTIONS(4912), + [anon_sym_BSLASHcolorbox] = ACTIONS(4912), + [anon_sym_BSLASHtextcolor] = ACTIONS(4912), + [anon_sym_BSLASHpagecolor] = ACTIONS(4912), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4912), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4912), + [anon_sym_BSLASHtext] = ACTIONS(4912), + [anon_sym_BSLASHintertext] = ACTIONS(4912), + [anon_sym_shortintertext] = ACTIONS(4912), }, [760] = { [sym_curly_group] = STATE(1173), - [sym_command_name] = ACTIONS(4829), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_BSLASHpart] = ACTIONS(4829), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddpart] = ACTIONS(4829), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHchapter] = ACTIONS(4829), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddchap] = ACTIONS(4829), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsection] = ACTIONS(4829), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddsec] = ACTIONS(4829), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHparagraph] = ACTIONS(4829), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHitem] = ACTIONS(4829), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4829), - [sym_placeholder] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym__] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4829), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4829), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), - [anon_sym_BSLASHbegin] = ACTIONS(4829), - [anon_sym_BSLASHusepackage] = ACTIONS(4829), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), - [anon_sym_BSLASHinclude] = ACTIONS(4829), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), - [anon_sym_BSLASHinput] = ACTIONS(4829), - [anon_sym_BSLASHsubfile] = ACTIONS(4829), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), - [anon_sym_BSLASHbibliography] = ACTIONS(4829), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), - [anon_sym_BSLASHincludesvg] = ACTIONS(4829), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), - [anon_sym_BSLASHimport] = ACTIONS(4829), - [anon_sym_BSLASHsubimport] = ACTIONS(4829), - [anon_sym_BSLASHinputfrom] = ACTIONS(4829), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), - [anon_sym_BSLASHincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHcaption] = ACTIONS(4829), - [anon_sym_BSLASHcite] = ACTIONS(4829), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCite] = ACTIONS(4829), - [anon_sym_BSLASHnocite] = ACTIONS(4829), - [anon_sym_BSLASHcitet] = ACTIONS(4829), - [anon_sym_BSLASHcitep] = ACTIONS(4829), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteauthor] = ACTIONS(4829), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitetitle] = ACTIONS(4829), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteyear] = ACTIONS(4829), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitedate] = ACTIONS(4829), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteurl] = ACTIONS(4829), - [anon_sym_BSLASHfullcite] = ACTIONS(4829), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), - [anon_sym_BSLASHcitealt] = ACTIONS(4829), - [anon_sym_BSLASHcitealp] = ACTIONS(4829), - [anon_sym_BSLASHcitetext] = ACTIONS(4829), - [anon_sym_BSLASHparencite] = ACTIONS(4829), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHParencite] = ACTIONS(4829), - [anon_sym_BSLASHfootcite] = ACTIONS(4829), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), - [anon_sym_BSLASHtextcite] = ACTIONS(4829), - [anon_sym_BSLASHTextcite] = ACTIONS(4829), - [anon_sym_BSLASHsmartcite] = ACTIONS(4829), - [anon_sym_BSLASHSmartcite] = ACTIONS(4829), - [anon_sym_BSLASHsupercite] = ACTIONS(4829), - [anon_sym_BSLASHautocite] = ACTIONS(4829), - [anon_sym_BSLASHAutocite] = ACTIONS(4829), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHvolcite] = ACTIONS(4829), - [anon_sym_BSLASHVolcite] = ACTIONS(4829), - [anon_sym_BSLASHpvolcite] = ACTIONS(4829), - [anon_sym_BSLASHPvolcite] = ACTIONS(4829), - [anon_sym_BSLASHfvolcite] = ACTIONS(4829), - [anon_sym_BSLASHftvolcite] = ACTIONS(4829), - [anon_sym_BSLASHsvolcite] = ACTIONS(4829), - [anon_sym_BSLASHSvolcite] = ACTIONS(4829), - [anon_sym_BSLASHtvolcite] = ACTIONS(4829), - [anon_sym_BSLASHTvolcite] = ACTIONS(4829), - [anon_sym_BSLASHavolcite] = ACTIONS(4829), - [anon_sym_BSLASHAvolcite] = ACTIONS(4829), - [anon_sym_BSLASHnotecite] = ACTIONS(4829), - [anon_sym_BSLASHNotecite] = ACTIONS(4829), - [anon_sym_BSLASHpnotecite] = ACTIONS(4829), - [anon_sym_BSLASHPnotecite] = ACTIONS(4829), - [anon_sym_BSLASHfnotecite] = ACTIONS(4829), - [anon_sym_BSLASHlabel] = ACTIONS(4829), - [anon_sym_BSLASHref] = ACTIONS(4829), - [anon_sym_BSLASHeqref] = ACTIONS(4829), - [anon_sym_BSLASHvref] = ACTIONS(4829), - [anon_sym_BSLASHVref] = ACTIONS(4829), - [anon_sym_BSLASHautoref] = ACTIONS(4829), - [anon_sym_BSLASHpageref] = ACTIONS(4829), - [anon_sym_BSLASHcref] = ACTIONS(4829), - [anon_sym_BSLASHCref] = ACTIONS(4829), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnameCref] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHlabelcref] = ACTIONS(4829), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCrefrange] = ACTIONS(4829), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnewlabel] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), - [anon_sym_BSLASHdef] = ACTIONS(4829), - [anon_sym_BSLASHlet] = ACTIONS(4829), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), - [anon_sym_BSLASHgls] = ACTIONS(4829), - [anon_sym_BSLASHGls] = ACTIONS(4829), - [anon_sym_BSLASHGLS] = ACTIONS(4829), - [anon_sym_BSLASHglspl] = ACTIONS(4829), - [anon_sym_BSLASHGlspl] = ACTIONS(4829), - [anon_sym_BSLASHGLSpl] = ACTIONS(4829), - [anon_sym_BSLASHglsdisp] = ACTIONS(4829), - [anon_sym_BSLASHglslink] = ACTIONS(4829), - [anon_sym_BSLASHglstext] = ACTIONS(4829), - [anon_sym_BSLASHGlstext] = ACTIONS(4829), - [anon_sym_BSLASHGLStext] = ACTIONS(4829), - [anon_sym_BSLASHglsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), - [anon_sym_BSLASHglsplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSplural] = ACTIONS(4829), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHglsname] = ACTIONS(4829), - [anon_sym_BSLASHGlsname] = ACTIONS(4829), - [anon_sym_BSLASHGLSname] = ACTIONS(4829), - [anon_sym_BSLASHglssymbol] = ACTIONS(4829), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), - [anon_sym_BSLASHglsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), - [anon_sym_BSLASHglsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), - [anon_sym_BSLASHglsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), - [anon_sym_BSLASHglsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), - [anon_sym_BSLASHglsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), - [anon_sym_BSLASHnewacronym] = ACTIONS(4829), - [anon_sym_BSLASHacrshort] = ACTIONS(4829), - [anon_sym_BSLASHAcrshort] = ACTIONS(4829), - [anon_sym_BSLASHACRshort] = ACTIONS(4829), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), - [anon_sym_BSLASHacrlong] = ACTIONS(4829), - [anon_sym_BSLASHAcrlong] = ACTIONS(4829), - [anon_sym_BSLASHACRlong] = ACTIONS(4829), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), - [anon_sym_BSLASHacrfull] = ACTIONS(4829), - [anon_sym_BSLASHAcrfull] = ACTIONS(4829), - [anon_sym_BSLASHACRfull] = ACTIONS(4829), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), - [anon_sym_BSLASHacs] = ACTIONS(4829), - [anon_sym_BSLASHAcs] = ACTIONS(4829), - [anon_sym_BSLASHacsp] = ACTIONS(4829), - [anon_sym_BSLASHAcsp] = ACTIONS(4829), - [anon_sym_BSLASHacl] = ACTIONS(4829), - [anon_sym_BSLASHAcl] = ACTIONS(4829), - [anon_sym_BSLASHaclp] = ACTIONS(4829), - [anon_sym_BSLASHAclp] = ACTIONS(4829), - [anon_sym_BSLASHacf] = ACTIONS(4829), - [anon_sym_BSLASHAcf] = ACTIONS(4829), - [anon_sym_BSLASHacfp] = ACTIONS(4829), - [anon_sym_BSLASHAcfp] = ACTIONS(4829), - [anon_sym_BSLASHac] = ACTIONS(4829), - [anon_sym_BSLASHAc] = ACTIONS(4829), - [anon_sym_BSLASHacp] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), - [anon_sym_BSLASHcolor] = ACTIONS(4829), - [anon_sym_BSLASHcolorbox] = ACTIONS(4829), - [anon_sym_BSLASHtextcolor] = ACTIONS(4829), - [anon_sym_BSLASHpagecolor] = ACTIONS(4829), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), - [anon_sym_BSLASHtext] = ACTIONS(4829), - [anon_sym_BSLASHintertext] = ACTIONS(4829), - [anon_sym_shortintertext] = ACTIONS(4829), + [sym_command_name] = ACTIONS(4908), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_BSLASHpart] = ACTIONS(4908), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddpart] = ACTIONS(4908), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHchapter] = ACTIONS(4908), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddchap] = ACTIONS(4908), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsection] = ACTIONS(4908), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddsec] = ACTIONS(4908), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHparagraph] = ACTIONS(4908), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4908), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHitem] = ACTIONS(4908), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4908), + [sym_placeholder] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym__] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4906), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4906), + [anon_sym_BSLASHbegin] = ACTIONS(4908), + [anon_sym_BSLASHusepackage] = ACTIONS(4908), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4908), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4908), + [anon_sym_BSLASHinclude] = ACTIONS(4908), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4908), + [anon_sym_BSLASHinput] = ACTIONS(4908), + [anon_sym_BSLASHsubfile] = ACTIONS(4908), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4908), + [anon_sym_BSLASHbibliography] = ACTIONS(4908), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4908), + [anon_sym_BSLASHincludesvg] = ACTIONS(4908), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4908), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4908), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4908), + [anon_sym_BSLASHimport] = ACTIONS(4908), + [anon_sym_BSLASHsubimport] = ACTIONS(4908), + [anon_sym_BSLASHinputfrom] = ACTIONS(4908), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4908), + [anon_sym_BSLASHincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHcaption] = ACTIONS(4908), + [anon_sym_BSLASHcite] = ACTIONS(4908), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCite] = ACTIONS(4908), + [anon_sym_BSLASHnocite] = ACTIONS(4908), + [anon_sym_BSLASHcitet] = ACTIONS(4908), + [anon_sym_BSLASHcitep] = ACTIONS(4908), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteauthor] = ACTIONS(4908), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4908), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitetitle] = ACTIONS(4908), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteyear] = ACTIONS(4908), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitedate] = ACTIONS(4908), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteurl] = ACTIONS(4908), + [anon_sym_BSLASHfullcite] = ACTIONS(4908), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4908), + [anon_sym_BSLASHcitealt] = ACTIONS(4908), + [anon_sym_BSLASHcitealp] = ACTIONS(4908), + [anon_sym_BSLASHcitetext] = ACTIONS(4908), + [anon_sym_BSLASHparencite] = ACTIONS(4908), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHParencite] = ACTIONS(4908), + [anon_sym_BSLASHfootcite] = ACTIONS(4908), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4908), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4908), + [anon_sym_BSLASHtextcite] = ACTIONS(4908), + [anon_sym_BSLASHTextcite] = ACTIONS(4908), + [anon_sym_BSLASHsmartcite] = ACTIONS(4908), + [anon_sym_BSLASHSmartcite] = ACTIONS(4908), + [anon_sym_BSLASHsupercite] = ACTIONS(4908), + [anon_sym_BSLASHautocite] = ACTIONS(4908), + [anon_sym_BSLASHAutocite] = ACTIONS(4908), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHvolcite] = ACTIONS(4908), + [anon_sym_BSLASHVolcite] = ACTIONS(4908), + [anon_sym_BSLASHpvolcite] = ACTIONS(4908), + [anon_sym_BSLASHPvolcite] = ACTIONS(4908), + [anon_sym_BSLASHfvolcite] = ACTIONS(4908), + [anon_sym_BSLASHftvolcite] = ACTIONS(4908), + [anon_sym_BSLASHsvolcite] = ACTIONS(4908), + [anon_sym_BSLASHSvolcite] = ACTIONS(4908), + [anon_sym_BSLASHtvolcite] = ACTIONS(4908), + [anon_sym_BSLASHTvolcite] = ACTIONS(4908), + [anon_sym_BSLASHavolcite] = ACTIONS(4908), + [anon_sym_BSLASHAvolcite] = ACTIONS(4908), + [anon_sym_BSLASHnotecite] = ACTIONS(4908), + [anon_sym_BSLASHNotecite] = ACTIONS(4908), + [anon_sym_BSLASHpnotecite] = ACTIONS(4908), + [anon_sym_BSLASHPnotecite] = ACTIONS(4908), + [anon_sym_BSLASHfnotecite] = ACTIONS(4908), + [anon_sym_BSLASHlabel] = ACTIONS(4908), + [anon_sym_BSLASHref] = ACTIONS(4908), + [anon_sym_BSLASHeqref] = ACTIONS(4908), + [anon_sym_BSLASHvref] = ACTIONS(4908), + [anon_sym_BSLASHVref] = ACTIONS(4908), + [anon_sym_BSLASHautoref] = ACTIONS(4908), + [anon_sym_BSLASHpageref] = ACTIONS(4908), + [anon_sym_BSLASHcref] = ACTIONS(4908), + [anon_sym_BSLASHCref] = ACTIONS(4908), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnameCref] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHlabelcref] = ACTIONS(4908), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCrefrange] = ACTIONS(4908), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnewlabel] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4908), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4908), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4908), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdef] = ACTIONS(4908), + [anon_sym_BSLASHlet] = ACTIONS(4908), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4908), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4908), + [anon_sym_BSLASHgls] = ACTIONS(4908), + [anon_sym_BSLASHGls] = ACTIONS(4908), + [anon_sym_BSLASHGLS] = ACTIONS(4908), + [anon_sym_BSLASHglspl] = ACTIONS(4908), + [anon_sym_BSLASHGlspl] = ACTIONS(4908), + [anon_sym_BSLASHGLSpl] = ACTIONS(4908), + [anon_sym_BSLASHglsdisp] = ACTIONS(4908), + [anon_sym_BSLASHglslink] = ACTIONS(4908), + [anon_sym_BSLASHglstext] = ACTIONS(4908), + [anon_sym_BSLASHGlstext] = ACTIONS(4908), + [anon_sym_BSLASHGLStext] = ACTIONS(4908), + [anon_sym_BSLASHglsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4908), + [anon_sym_BSLASHglsplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSplural] = ACTIONS(4908), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHglsname] = ACTIONS(4908), + [anon_sym_BSLASHGlsname] = ACTIONS(4908), + [anon_sym_BSLASHGLSname] = ACTIONS(4908), + [anon_sym_BSLASHglssymbol] = ACTIONS(4908), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4908), + [anon_sym_BSLASHglsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4908), + [anon_sym_BSLASHglsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4908), + [anon_sym_BSLASHglsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4908), + [anon_sym_BSLASHglsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4908), + [anon_sym_BSLASHglsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4908), + [anon_sym_BSLASHnewacronym] = ACTIONS(4908), + [anon_sym_BSLASHacrshort] = ACTIONS(4908), + [anon_sym_BSLASHAcrshort] = ACTIONS(4908), + [anon_sym_BSLASHACRshort] = ACTIONS(4908), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4908), + [anon_sym_BSLASHacrlong] = ACTIONS(4908), + [anon_sym_BSLASHAcrlong] = ACTIONS(4908), + [anon_sym_BSLASHACRlong] = ACTIONS(4908), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4908), + [anon_sym_BSLASHacrfull] = ACTIONS(4908), + [anon_sym_BSLASHAcrfull] = ACTIONS(4908), + [anon_sym_BSLASHACRfull] = ACTIONS(4908), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4908), + [anon_sym_BSLASHacs] = ACTIONS(4908), + [anon_sym_BSLASHAcs] = ACTIONS(4908), + [anon_sym_BSLASHacsp] = ACTIONS(4908), + [anon_sym_BSLASHAcsp] = ACTIONS(4908), + [anon_sym_BSLASHacl] = ACTIONS(4908), + [anon_sym_BSLASHAcl] = ACTIONS(4908), + [anon_sym_BSLASHaclp] = ACTIONS(4908), + [anon_sym_BSLASHAclp] = ACTIONS(4908), + [anon_sym_BSLASHacf] = ACTIONS(4908), + [anon_sym_BSLASHAcf] = ACTIONS(4908), + [anon_sym_BSLASHacfp] = ACTIONS(4908), + [anon_sym_BSLASHAcfp] = ACTIONS(4908), + [anon_sym_BSLASHac] = ACTIONS(4908), + [anon_sym_BSLASHAc] = ACTIONS(4908), + [anon_sym_BSLASHacp] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4908), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4908), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4908), + [anon_sym_BSLASHcolor] = ACTIONS(4908), + [anon_sym_BSLASHcolorbox] = ACTIONS(4908), + [anon_sym_BSLASHtextcolor] = ACTIONS(4908), + [anon_sym_BSLASHpagecolor] = ACTIONS(4908), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4908), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4908), + [anon_sym_BSLASHtext] = ACTIONS(4908), + [anon_sym_BSLASHintertext] = ACTIONS(4908), + [anon_sym_shortintertext] = ACTIONS(4908), }, [761] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [ts_builtin_sym_end] = ACTIONS(5216), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_BSLASHpart] = ACTIONS(5218), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddpart] = ACTIONS(5218), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHchapter] = ACTIONS(5218), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddchap] = ACTIONS(5218), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsection] = ACTIONS(5218), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddsec] = ACTIONS(5218), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHparagraph] = ACTIONS(5218), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5218), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHitem] = ACTIONS(5218), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [anon_sym_RBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASHbegin] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [762] = { [sym_curly_group] = STATE(962), - [sym_command_name] = ACTIONS(4837), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_BSLASHpart] = ACTIONS(4837), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddpart] = ACTIONS(4837), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHchapter] = ACTIONS(4837), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddchap] = ACTIONS(4837), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsection] = ACTIONS(4837), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddsec] = ACTIONS(4837), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHparagraph] = ACTIONS(4837), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHitem] = ACTIONS(4837), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4837), - [sym_placeholder] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym__] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), - [anon_sym_BSLASHbegin] = ACTIONS(4837), - [anon_sym_BSLASHusepackage] = ACTIONS(4837), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4837), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), - [anon_sym_BSLASHinput] = ACTIONS(4837), - [anon_sym_BSLASHsubfile] = ACTIONS(4837), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), - [anon_sym_BSLASHbibliography] = ACTIONS(4837), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), - [anon_sym_BSLASHincludesvg] = ACTIONS(4837), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), - [anon_sym_BSLASHimport] = ACTIONS(4837), - [anon_sym_BSLASHsubimport] = ACTIONS(4837), - [anon_sym_BSLASHinputfrom] = ACTIONS(4837), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), - [anon_sym_BSLASHincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHcaption] = ACTIONS(4837), - [anon_sym_BSLASHcite] = ACTIONS(4837), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCite] = ACTIONS(4837), - [anon_sym_BSLASHnocite] = ACTIONS(4837), - [anon_sym_BSLASHcitet] = ACTIONS(4837), - [anon_sym_BSLASHcitep] = ACTIONS(4837), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteauthor] = ACTIONS(4837), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitetitle] = ACTIONS(4837), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteyear] = ACTIONS(4837), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitedate] = ACTIONS(4837), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteurl] = ACTIONS(4837), - [anon_sym_BSLASHfullcite] = ACTIONS(4837), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), - [anon_sym_BSLASHcitealt] = ACTIONS(4837), - [anon_sym_BSLASHcitealp] = ACTIONS(4837), - [anon_sym_BSLASHcitetext] = ACTIONS(4837), - [anon_sym_BSLASHparencite] = ACTIONS(4837), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHParencite] = ACTIONS(4837), - [anon_sym_BSLASHfootcite] = ACTIONS(4837), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), - [anon_sym_BSLASHtextcite] = ACTIONS(4837), - [anon_sym_BSLASHTextcite] = ACTIONS(4837), - [anon_sym_BSLASHsmartcite] = ACTIONS(4837), - [anon_sym_BSLASHSmartcite] = ACTIONS(4837), - [anon_sym_BSLASHsupercite] = ACTIONS(4837), - [anon_sym_BSLASHautocite] = ACTIONS(4837), - [anon_sym_BSLASHAutocite] = ACTIONS(4837), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHvolcite] = ACTIONS(4837), - [anon_sym_BSLASHVolcite] = ACTIONS(4837), - [anon_sym_BSLASHpvolcite] = ACTIONS(4837), - [anon_sym_BSLASHPvolcite] = ACTIONS(4837), - [anon_sym_BSLASHfvolcite] = ACTIONS(4837), - [anon_sym_BSLASHftvolcite] = ACTIONS(4837), - [anon_sym_BSLASHsvolcite] = ACTIONS(4837), - [anon_sym_BSLASHSvolcite] = ACTIONS(4837), - [anon_sym_BSLASHtvolcite] = ACTIONS(4837), - [anon_sym_BSLASHTvolcite] = ACTIONS(4837), - [anon_sym_BSLASHavolcite] = ACTIONS(4837), - [anon_sym_BSLASHAvolcite] = ACTIONS(4837), - [anon_sym_BSLASHnotecite] = ACTIONS(4837), - [anon_sym_BSLASHNotecite] = ACTIONS(4837), - [anon_sym_BSLASHpnotecite] = ACTIONS(4837), - [anon_sym_BSLASHPnotecite] = ACTIONS(4837), - [anon_sym_BSLASHfnotecite] = ACTIONS(4837), - [anon_sym_BSLASHlabel] = ACTIONS(4837), - [anon_sym_BSLASHref] = ACTIONS(4837), - [anon_sym_BSLASHeqref] = ACTIONS(4837), - [anon_sym_BSLASHvref] = ACTIONS(4837), - [anon_sym_BSLASHVref] = ACTIONS(4837), - [anon_sym_BSLASHautoref] = ACTIONS(4837), - [anon_sym_BSLASHpageref] = ACTIONS(4837), - [anon_sym_BSLASHcref] = ACTIONS(4837), - [anon_sym_BSLASHCref] = ACTIONS(4837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnameCref] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHlabelcref] = ACTIONS(4837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCrefrange] = ACTIONS(4837), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnewlabel] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), - [anon_sym_BSLASHdef] = ACTIONS(4837), - [anon_sym_BSLASHlet] = ACTIONS(4837), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), - [anon_sym_BSLASHgls] = ACTIONS(4837), - [anon_sym_BSLASHGls] = ACTIONS(4837), - [anon_sym_BSLASHGLS] = ACTIONS(4837), - [anon_sym_BSLASHglspl] = ACTIONS(4837), - [anon_sym_BSLASHGlspl] = ACTIONS(4837), - [anon_sym_BSLASHGLSpl] = ACTIONS(4837), - [anon_sym_BSLASHglsdisp] = ACTIONS(4837), - [anon_sym_BSLASHglslink] = ACTIONS(4837), - [anon_sym_BSLASHglstext] = ACTIONS(4837), - [anon_sym_BSLASHGlstext] = ACTIONS(4837), - [anon_sym_BSLASHGLStext] = ACTIONS(4837), - [anon_sym_BSLASHglsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), - [anon_sym_BSLASHglsplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSplural] = ACTIONS(4837), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHglsname] = ACTIONS(4837), - [anon_sym_BSLASHGlsname] = ACTIONS(4837), - [anon_sym_BSLASHGLSname] = ACTIONS(4837), - [anon_sym_BSLASHglssymbol] = ACTIONS(4837), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), - [anon_sym_BSLASHglsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), - [anon_sym_BSLASHglsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), - [anon_sym_BSLASHglsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), - [anon_sym_BSLASHglsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), - [anon_sym_BSLASHglsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), - [anon_sym_BSLASHnewacronym] = ACTIONS(4837), - [anon_sym_BSLASHacrshort] = ACTIONS(4837), - [anon_sym_BSLASHAcrshort] = ACTIONS(4837), - [anon_sym_BSLASHACRshort] = ACTIONS(4837), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), - [anon_sym_BSLASHacrlong] = ACTIONS(4837), - [anon_sym_BSLASHAcrlong] = ACTIONS(4837), - [anon_sym_BSLASHACRlong] = ACTIONS(4837), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), - [anon_sym_BSLASHacrfull] = ACTIONS(4837), - [anon_sym_BSLASHAcrfull] = ACTIONS(4837), - [anon_sym_BSLASHACRfull] = ACTIONS(4837), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), - [anon_sym_BSLASHacs] = ACTIONS(4837), - [anon_sym_BSLASHAcs] = ACTIONS(4837), - [anon_sym_BSLASHacsp] = ACTIONS(4837), - [anon_sym_BSLASHAcsp] = ACTIONS(4837), - [anon_sym_BSLASHacl] = ACTIONS(4837), - [anon_sym_BSLASHAcl] = ACTIONS(4837), - [anon_sym_BSLASHaclp] = ACTIONS(4837), - [anon_sym_BSLASHAclp] = ACTIONS(4837), - [anon_sym_BSLASHacf] = ACTIONS(4837), - [anon_sym_BSLASHAcf] = ACTIONS(4837), - [anon_sym_BSLASHacfp] = ACTIONS(4837), - [anon_sym_BSLASHAcfp] = ACTIONS(4837), - [anon_sym_BSLASHac] = ACTIONS(4837), - [anon_sym_BSLASHAc] = ACTIONS(4837), - [anon_sym_BSLASHacp] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), - [anon_sym_BSLASHcolor] = ACTIONS(4837), - [anon_sym_BSLASHcolorbox] = ACTIONS(4837), - [anon_sym_BSLASHtextcolor] = ACTIONS(4837), - [anon_sym_BSLASHpagecolor] = ACTIONS(4837), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), - [anon_sym_BSLASHtext] = ACTIONS(4837), - [anon_sym_BSLASHintertext] = ACTIONS(4837), - [anon_sym_shortintertext] = ACTIONS(4837), + [sym_command_name] = ACTIONS(4916), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_BSLASHpart] = ACTIONS(4916), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddpart] = ACTIONS(4916), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHchapter] = ACTIONS(4916), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddchap] = ACTIONS(4916), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsection] = ACTIONS(4916), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddsec] = ACTIONS(4916), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHparagraph] = ACTIONS(4916), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4916), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHitem] = ACTIONS(4916), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4916), + [sym_placeholder] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym__] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4914), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4914), + [anon_sym_BSLASHbegin] = ACTIONS(4916), + [anon_sym_BSLASHusepackage] = ACTIONS(4916), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4916), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4916), + [anon_sym_BSLASHinclude] = ACTIONS(4916), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4916), + [anon_sym_BSLASHinput] = ACTIONS(4916), + [anon_sym_BSLASHsubfile] = ACTIONS(4916), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4916), + [anon_sym_BSLASHbibliography] = ACTIONS(4916), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4916), + [anon_sym_BSLASHincludesvg] = ACTIONS(4916), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4916), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4916), + [anon_sym_BSLASHimport] = ACTIONS(4916), + [anon_sym_BSLASHsubimport] = ACTIONS(4916), + [anon_sym_BSLASHinputfrom] = ACTIONS(4916), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4916), + [anon_sym_BSLASHincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHcaption] = ACTIONS(4916), + [anon_sym_BSLASHcite] = ACTIONS(4916), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCite] = ACTIONS(4916), + [anon_sym_BSLASHnocite] = ACTIONS(4916), + [anon_sym_BSLASHcitet] = ACTIONS(4916), + [anon_sym_BSLASHcitep] = ACTIONS(4916), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteauthor] = ACTIONS(4916), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4916), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitetitle] = ACTIONS(4916), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteyear] = ACTIONS(4916), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitedate] = ACTIONS(4916), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteurl] = ACTIONS(4916), + [anon_sym_BSLASHfullcite] = ACTIONS(4916), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4916), + [anon_sym_BSLASHcitealt] = ACTIONS(4916), + [anon_sym_BSLASHcitealp] = ACTIONS(4916), + [anon_sym_BSLASHcitetext] = ACTIONS(4916), + [anon_sym_BSLASHparencite] = ACTIONS(4916), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHParencite] = ACTIONS(4916), + [anon_sym_BSLASHfootcite] = ACTIONS(4916), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4916), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4916), + [anon_sym_BSLASHtextcite] = ACTIONS(4916), + [anon_sym_BSLASHTextcite] = ACTIONS(4916), + [anon_sym_BSLASHsmartcite] = ACTIONS(4916), + [anon_sym_BSLASHSmartcite] = ACTIONS(4916), + [anon_sym_BSLASHsupercite] = ACTIONS(4916), + [anon_sym_BSLASHautocite] = ACTIONS(4916), + [anon_sym_BSLASHAutocite] = ACTIONS(4916), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHvolcite] = ACTIONS(4916), + [anon_sym_BSLASHVolcite] = ACTIONS(4916), + [anon_sym_BSLASHpvolcite] = ACTIONS(4916), + [anon_sym_BSLASHPvolcite] = ACTIONS(4916), + [anon_sym_BSLASHfvolcite] = ACTIONS(4916), + [anon_sym_BSLASHftvolcite] = ACTIONS(4916), + [anon_sym_BSLASHsvolcite] = ACTIONS(4916), + [anon_sym_BSLASHSvolcite] = ACTIONS(4916), + [anon_sym_BSLASHtvolcite] = ACTIONS(4916), + [anon_sym_BSLASHTvolcite] = ACTIONS(4916), + [anon_sym_BSLASHavolcite] = ACTIONS(4916), + [anon_sym_BSLASHAvolcite] = ACTIONS(4916), + [anon_sym_BSLASHnotecite] = ACTIONS(4916), + [anon_sym_BSLASHNotecite] = ACTIONS(4916), + [anon_sym_BSLASHpnotecite] = ACTIONS(4916), + [anon_sym_BSLASHPnotecite] = ACTIONS(4916), + [anon_sym_BSLASHfnotecite] = ACTIONS(4916), + [anon_sym_BSLASHlabel] = ACTIONS(4916), + [anon_sym_BSLASHref] = ACTIONS(4916), + [anon_sym_BSLASHeqref] = ACTIONS(4916), + [anon_sym_BSLASHvref] = ACTIONS(4916), + [anon_sym_BSLASHVref] = ACTIONS(4916), + [anon_sym_BSLASHautoref] = ACTIONS(4916), + [anon_sym_BSLASHpageref] = ACTIONS(4916), + [anon_sym_BSLASHcref] = ACTIONS(4916), + [anon_sym_BSLASHCref] = ACTIONS(4916), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnameCref] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHlabelcref] = ACTIONS(4916), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCrefrange] = ACTIONS(4916), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnewlabel] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4916), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4916), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4916), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdef] = ACTIONS(4916), + [anon_sym_BSLASHlet] = ACTIONS(4916), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4916), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4916), + [anon_sym_BSLASHgls] = ACTIONS(4916), + [anon_sym_BSLASHGls] = ACTIONS(4916), + [anon_sym_BSLASHGLS] = ACTIONS(4916), + [anon_sym_BSLASHglspl] = ACTIONS(4916), + [anon_sym_BSLASHGlspl] = ACTIONS(4916), + [anon_sym_BSLASHGLSpl] = ACTIONS(4916), + [anon_sym_BSLASHglsdisp] = ACTIONS(4916), + [anon_sym_BSLASHglslink] = ACTIONS(4916), + [anon_sym_BSLASHglstext] = ACTIONS(4916), + [anon_sym_BSLASHGlstext] = ACTIONS(4916), + [anon_sym_BSLASHGLStext] = ACTIONS(4916), + [anon_sym_BSLASHglsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4916), + [anon_sym_BSLASHglsplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSplural] = ACTIONS(4916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHglsname] = ACTIONS(4916), + [anon_sym_BSLASHGlsname] = ACTIONS(4916), + [anon_sym_BSLASHGLSname] = ACTIONS(4916), + [anon_sym_BSLASHglssymbol] = ACTIONS(4916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4916), + [anon_sym_BSLASHglsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4916), + [anon_sym_BSLASHglsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4916), + [anon_sym_BSLASHglsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4916), + [anon_sym_BSLASHglsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4916), + [anon_sym_BSLASHglsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4916), + [anon_sym_BSLASHnewacronym] = ACTIONS(4916), + [anon_sym_BSLASHacrshort] = ACTIONS(4916), + [anon_sym_BSLASHAcrshort] = ACTIONS(4916), + [anon_sym_BSLASHACRshort] = ACTIONS(4916), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4916), + [anon_sym_BSLASHacrlong] = ACTIONS(4916), + [anon_sym_BSLASHAcrlong] = ACTIONS(4916), + [anon_sym_BSLASHACRlong] = ACTIONS(4916), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4916), + [anon_sym_BSLASHacrfull] = ACTIONS(4916), + [anon_sym_BSLASHAcrfull] = ACTIONS(4916), + [anon_sym_BSLASHACRfull] = ACTIONS(4916), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4916), + [anon_sym_BSLASHacs] = ACTIONS(4916), + [anon_sym_BSLASHAcs] = ACTIONS(4916), + [anon_sym_BSLASHacsp] = ACTIONS(4916), + [anon_sym_BSLASHAcsp] = ACTIONS(4916), + [anon_sym_BSLASHacl] = ACTIONS(4916), + [anon_sym_BSLASHAcl] = ACTIONS(4916), + [anon_sym_BSLASHaclp] = ACTIONS(4916), + [anon_sym_BSLASHAclp] = ACTIONS(4916), + [anon_sym_BSLASHacf] = ACTIONS(4916), + [anon_sym_BSLASHAcf] = ACTIONS(4916), + [anon_sym_BSLASHacfp] = ACTIONS(4916), + [anon_sym_BSLASHAcfp] = ACTIONS(4916), + [anon_sym_BSLASHac] = ACTIONS(4916), + [anon_sym_BSLASHAc] = ACTIONS(4916), + [anon_sym_BSLASHacp] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4916), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4916), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4916), + [anon_sym_BSLASHcolor] = ACTIONS(4916), + [anon_sym_BSLASHcolorbox] = ACTIONS(4916), + [anon_sym_BSLASHtextcolor] = ACTIONS(4916), + [anon_sym_BSLASHpagecolor] = ACTIONS(4916), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4916), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4916), + [anon_sym_BSLASHtext] = ACTIONS(4916), + [anon_sym_BSLASHintertext] = ACTIONS(4916), + [anon_sym_shortintertext] = ACTIONS(4916), }, [763] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5141), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_BSLASHpart] = ACTIONS(4865), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddpart] = ACTIONS(4865), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHchapter] = ACTIONS(4865), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddchap] = ACTIONS(4865), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsection] = ACTIONS(4865), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddsec] = ACTIONS(4865), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHparagraph] = ACTIONS(4865), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHitem] = ACTIONS(4865), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4863), - [anon_sym_BSLASHbegin] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5220), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_BSLASHpart] = ACTIONS(4944), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddpart] = ACTIONS(4944), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHchapter] = ACTIONS(4944), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddchap] = ACTIONS(4944), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsection] = ACTIONS(4944), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddsec] = ACTIONS(4944), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHparagraph] = ACTIONS(4944), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4944), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHitem] = ACTIONS(4944), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4942), + [anon_sym_BSLASHbegin] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(5143), - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_BSLASHpart] = ACTIONS(5145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddpart] = ACTIONS(5145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHchapter] = ACTIONS(5145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddchap] = ACTIONS(5145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsection] = ACTIONS(5145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddsec] = ACTIONS(5145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHparagraph] = ACTIONS(5145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHitem] = ACTIONS(5145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [anon_sym_BSLASHbegin] = 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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [ts_builtin_sym_end] = ACTIONS(5222), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_BSLASHpart] = ACTIONS(5224), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddpart] = ACTIONS(5224), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHchapter] = ACTIONS(5224), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddchap] = ACTIONS(5224), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsection] = ACTIONS(5224), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddsec] = ACTIONS(5224), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHparagraph] = ACTIONS(5224), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5224), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHitem] = ACTIONS(5224), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASHbegin] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [765] = { [sym_curly_group] = STATE(1174), - [sym_command_name] = ACTIONS(4825), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_BSLASHpart] = ACTIONS(4825), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddpart] = ACTIONS(4825), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHchapter] = ACTIONS(4825), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddchap] = ACTIONS(4825), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsection] = ACTIONS(4825), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddsec] = ACTIONS(4825), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHparagraph] = ACTIONS(4825), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHitem] = ACTIONS(4825), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), - [anon_sym_LBRACE] = ACTIONS(789), - [sym_word] = ACTIONS(4825), - [sym_placeholder] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym__] = ACTIONS(4825), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4825), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), - [anon_sym_BSLASHbegin] = ACTIONS(4825), - [anon_sym_BSLASHusepackage] = ACTIONS(4825), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), - [anon_sym_BSLASHinclude] = ACTIONS(4825), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), - [anon_sym_BSLASHinput] = ACTIONS(4825), - [anon_sym_BSLASHsubfile] = ACTIONS(4825), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), - [anon_sym_BSLASHbibliography] = ACTIONS(4825), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), - [anon_sym_BSLASHincludesvg] = ACTIONS(4825), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), - [anon_sym_BSLASHimport] = ACTIONS(4825), - [anon_sym_BSLASHsubimport] = ACTIONS(4825), - [anon_sym_BSLASHinputfrom] = ACTIONS(4825), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), - [anon_sym_BSLASHincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHcaption] = ACTIONS(4825), - [anon_sym_BSLASHcite] = ACTIONS(4825), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCite] = ACTIONS(4825), - [anon_sym_BSLASHnocite] = ACTIONS(4825), - [anon_sym_BSLASHcitet] = ACTIONS(4825), - [anon_sym_BSLASHcitep] = ACTIONS(4825), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteauthor] = ACTIONS(4825), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitetitle] = ACTIONS(4825), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteyear] = ACTIONS(4825), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitedate] = ACTIONS(4825), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteurl] = ACTIONS(4825), - [anon_sym_BSLASHfullcite] = ACTIONS(4825), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), - [anon_sym_BSLASHcitealt] = ACTIONS(4825), - [anon_sym_BSLASHcitealp] = ACTIONS(4825), - [anon_sym_BSLASHcitetext] = ACTIONS(4825), - [anon_sym_BSLASHparencite] = ACTIONS(4825), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHParencite] = ACTIONS(4825), - [anon_sym_BSLASHfootcite] = ACTIONS(4825), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), - [anon_sym_BSLASHtextcite] = ACTIONS(4825), - [anon_sym_BSLASHTextcite] = ACTIONS(4825), - [anon_sym_BSLASHsmartcite] = ACTIONS(4825), - [anon_sym_BSLASHSmartcite] = ACTIONS(4825), - [anon_sym_BSLASHsupercite] = ACTIONS(4825), - [anon_sym_BSLASHautocite] = ACTIONS(4825), - [anon_sym_BSLASHAutocite] = ACTIONS(4825), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHvolcite] = ACTIONS(4825), - [anon_sym_BSLASHVolcite] = ACTIONS(4825), - [anon_sym_BSLASHpvolcite] = ACTIONS(4825), - [anon_sym_BSLASHPvolcite] = ACTIONS(4825), - [anon_sym_BSLASHfvolcite] = ACTIONS(4825), - [anon_sym_BSLASHftvolcite] = ACTIONS(4825), - [anon_sym_BSLASHsvolcite] = ACTIONS(4825), - [anon_sym_BSLASHSvolcite] = ACTIONS(4825), - [anon_sym_BSLASHtvolcite] = ACTIONS(4825), - [anon_sym_BSLASHTvolcite] = ACTIONS(4825), - [anon_sym_BSLASHavolcite] = ACTIONS(4825), - [anon_sym_BSLASHAvolcite] = ACTIONS(4825), - [anon_sym_BSLASHnotecite] = ACTIONS(4825), - [anon_sym_BSLASHNotecite] = ACTIONS(4825), - [anon_sym_BSLASHpnotecite] = ACTIONS(4825), - [anon_sym_BSLASHPnotecite] = ACTIONS(4825), - [anon_sym_BSLASHfnotecite] = ACTIONS(4825), - [anon_sym_BSLASHlabel] = ACTIONS(4825), - [anon_sym_BSLASHref] = ACTIONS(4825), - [anon_sym_BSLASHeqref] = ACTIONS(4825), - [anon_sym_BSLASHvref] = ACTIONS(4825), - [anon_sym_BSLASHVref] = ACTIONS(4825), - [anon_sym_BSLASHautoref] = ACTIONS(4825), - [anon_sym_BSLASHpageref] = ACTIONS(4825), - [anon_sym_BSLASHcref] = ACTIONS(4825), - [anon_sym_BSLASHCref] = ACTIONS(4825), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnameCref] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHlabelcref] = ACTIONS(4825), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCrefrange] = ACTIONS(4825), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnewlabel] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), - [anon_sym_BSLASHdef] = ACTIONS(4825), - [anon_sym_BSLASHlet] = ACTIONS(4825), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), - [anon_sym_BSLASHgls] = ACTIONS(4825), - [anon_sym_BSLASHGls] = ACTIONS(4825), - [anon_sym_BSLASHGLS] = ACTIONS(4825), - [anon_sym_BSLASHglspl] = ACTIONS(4825), - [anon_sym_BSLASHGlspl] = ACTIONS(4825), - [anon_sym_BSLASHGLSpl] = ACTIONS(4825), - [anon_sym_BSLASHglsdisp] = ACTIONS(4825), - [anon_sym_BSLASHglslink] = ACTIONS(4825), - [anon_sym_BSLASHglstext] = ACTIONS(4825), - [anon_sym_BSLASHGlstext] = ACTIONS(4825), - [anon_sym_BSLASHGLStext] = ACTIONS(4825), - [anon_sym_BSLASHglsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), - [anon_sym_BSLASHglsplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSplural] = ACTIONS(4825), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHglsname] = ACTIONS(4825), - [anon_sym_BSLASHGlsname] = ACTIONS(4825), - [anon_sym_BSLASHGLSname] = ACTIONS(4825), - [anon_sym_BSLASHglssymbol] = ACTIONS(4825), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), - [anon_sym_BSLASHglsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), - [anon_sym_BSLASHglsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), - [anon_sym_BSLASHglsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), - [anon_sym_BSLASHglsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), - [anon_sym_BSLASHglsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), - [anon_sym_BSLASHnewacronym] = ACTIONS(4825), - [anon_sym_BSLASHacrshort] = ACTIONS(4825), - [anon_sym_BSLASHAcrshort] = ACTIONS(4825), - [anon_sym_BSLASHACRshort] = ACTIONS(4825), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), - [anon_sym_BSLASHacrlong] = ACTIONS(4825), - [anon_sym_BSLASHAcrlong] = ACTIONS(4825), - [anon_sym_BSLASHACRlong] = ACTIONS(4825), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), - [anon_sym_BSLASHacrfull] = ACTIONS(4825), - [anon_sym_BSLASHAcrfull] = ACTIONS(4825), - [anon_sym_BSLASHACRfull] = ACTIONS(4825), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), - [anon_sym_BSLASHacs] = ACTIONS(4825), - [anon_sym_BSLASHAcs] = ACTIONS(4825), - [anon_sym_BSLASHacsp] = ACTIONS(4825), - [anon_sym_BSLASHAcsp] = ACTIONS(4825), - [anon_sym_BSLASHacl] = ACTIONS(4825), - [anon_sym_BSLASHAcl] = ACTIONS(4825), - [anon_sym_BSLASHaclp] = ACTIONS(4825), - [anon_sym_BSLASHAclp] = ACTIONS(4825), - [anon_sym_BSLASHacf] = ACTIONS(4825), - [anon_sym_BSLASHAcf] = ACTIONS(4825), - [anon_sym_BSLASHacfp] = ACTIONS(4825), - [anon_sym_BSLASHAcfp] = ACTIONS(4825), - [anon_sym_BSLASHac] = ACTIONS(4825), - [anon_sym_BSLASHAc] = ACTIONS(4825), - [anon_sym_BSLASHacp] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), - [anon_sym_BSLASHcolor] = ACTIONS(4825), - [anon_sym_BSLASHcolorbox] = ACTIONS(4825), - [anon_sym_BSLASHtextcolor] = ACTIONS(4825), - [anon_sym_BSLASHpagecolor] = ACTIONS(4825), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), - [anon_sym_BSLASHtext] = ACTIONS(4825), - [anon_sym_BSLASHintertext] = ACTIONS(4825), - [anon_sym_shortintertext] = ACTIONS(4825), + [sym_command_name] = ACTIONS(4904), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_BSLASHpart] = ACTIONS(4904), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddpart] = ACTIONS(4904), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHchapter] = ACTIONS(4904), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddchap] = ACTIONS(4904), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsection] = ACTIONS(4904), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddsec] = ACTIONS(4904), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHparagraph] = ACTIONS(4904), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4904), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHitem] = ACTIONS(4904), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(800), + [sym_word] = ACTIONS(4904), + [sym_placeholder] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym__] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4902), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4902), + [anon_sym_BSLASHbegin] = ACTIONS(4904), + [anon_sym_BSLASHusepackage] = ACTIONS(4904), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4904), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4904), + [anon_sym_BSLASHinclude] = ACTIONS(4904), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4904), + [anon_sym_BSLASHinput] = ACTIONS(4904), + [anon_sym_BSLASHsubfile] = ACTIONS(4904), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4904), + [anon_sym_BSLASHbibliography] = ACTIONS(4904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4904), + [anon_sym_BSLASHincludesvg] = ACTIONS(4904), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4904), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4904), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4904), + [anon_sym_BSLASHimport] = ACTIONS(4904), + [anon_sym_BSLASHsubimport] = ACTIONS(4904), + [anon_sym_BSLASHinputfrom] = ACTIONS(4904), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4904), + [anon_sym_BSLASHincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHcaption] = ACTIONS(4904), + [anon_sym_BSLASHcite] = ACTIONS(4904), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCite] = ACTIONS(4904), + [anon_sym_BSLASHnocite] = ACTIONS(4904), + [anon_sym_BSLASHcitet] = ACTIONS(4904), + [anon_sym_BSLASHcitep] = ACTIONS(4904), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteauthor] = ACTIONS(4904), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4904), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitetitle] = ACTIONS(4904), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteyear] = ACTIONS(4904), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitedate] = ACTIONS(4904), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteurl] = ACTIONS(4904), + [anon_sym_BSLASHfullcite] = ACTIONS(4904), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4904), + [anon_sym_BSLASHcitealt] = ACTIONS(4904), + [anon_sym_BSLASHcitealp] = ACTIONS(4904), + [anon_sym_BSLASHcitetext] = ACTIONS(4904), + [anon_sym_BSLASHparencite] = ACTIONS(4904), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHParencite] = ACTIONS(4904), + [anon_sym_BSLASHfootcite] = ACTIONS(4904), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4904), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4904), + [anon_sym_BSLASHtextcite] = ACTIONS(4904), + [anon_sym_BSLASHTextcite] = ACTIONS(4904), + [anon_sym_BSLASHsmartcite] = ACTIONS(4904), + [anon_sym_BSLASHSmartcite] = ACTIONS(4904), + [anon_sym_BSLASHsupercite] = ACTIONS(4904), + [anon_sym_BSLASHautocite] = ACTIONS(4904), + [anon_sym_BSLASHAutocite] = ACTIONS(4904), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHvolcite] = ACTIONS(4904), + [anon_sym_BSLASHVolcite] = ACTIONS(4904), + [anon_sym_BSLASHpvolcite] = ACTIONS(4904), + [anon_sym_BSLASHPvolcite] = ACTIONS(4904), + [anon_sym_BSLASHfvolcite] = ACTIONS(4904), + [anon_sym_BSLASHftvolcite] = ACTIONS(4904), + [anon_sym_BSLASHsvolcite] = ACTIONS(4904), + [anon_sym_BSLASHSvolcite] = ACTIONS(4904), + [anon_sym_BSLASHtvolcite] = ACTIONS(4904), + [anon_sym_BSLASHTvolcite] = ACTIONS(4904), + [anon_sym_BSLASHavolcite] = ACTIONS(4904), + [anon_sym_BSLASHAvolcite] = ACTIONS(4904), + [anon_sym_BSLASHnotecite] = ACTIONS(4904), + [anon_sym_BSLASHNotecite] = ACTIONS(4904), + [anon_sym_BSLASHpnotecite] = ACTIONS(4904), + [anon_sym_BSLASHPnotecite] = ACTIONS(4904), + [anon_sym_BSLASHfnotecite] = ACTIONS(4904), + [anon_sym_BSLASHlabel] = ACTIONS(4904), + [anon_sym_BSLASHref] = ACTIONS(4904), + [anon_sym_BSLASHeqref] = ACTIONS(4904), + [anon_sym_BSLASHvref] = ACTIONS(4904), + [anon_sym_BSLASHVref] = ACTIONS(4904), + [anon_sym_BSLASHautoref] = ACTIONS(4904), + [anon_sym_BSLASHpageref] = ACTIONS(4904), + [anon_sym_BSLASHcref] = ACTIONS(4904), + [anon_sym_BSLASHCref] = ACTIONS(4904), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnameCref] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHlabelcref] = ACTIONS(4904), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCrefrange] = ACTIONS(4904), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnewlabel] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4904), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4904), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4904), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdef] = ACTIONS(4904), + [anon_sym_BSLASHlet] = ACTIONS(4904), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4904), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4904), + [anon_sym_BSLASHgls] = ACTIONS(4904), + [anon_sym_BSLASHGls] = ACTIONS(4904), + [anon_sym_BSLASHGLS] = ACTIONS(4904), + [anon_sym_BSLASHglspl] = ACTIONS(4904), + [anon_sym_BSLASHGlspl] = ACTIONS(4904), + [anon_sym_BSLASHGLSpl] = ACTIONS(4904), + [anon_sym_BSLASHglsdisp] = ACTIONS(4904), + [anon_sym_BSLASHglslink] = ACTIONS(4904), + [anon_sym_BSLASHglstext] = ACTIONS(4904), + [anon_sym_BSLASHGlstext] = ACTIONS(4904), + [anon_sym_BSLASHGLStext] = ACTIONS(4904), + [anon_sym_BSLASHglsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4904), + [anon_sym_BSLASHglsplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSplural] = ACTIONS(4904), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHglsname] = ACTIONS(4904), + [anon_sym_BSLASHGlsname] = ACTIONS(4904), + [anon_sym_BSLASHGLSname] = ACTIONS(4904), + [anon_sym_BSLASHglssymbol] = ACTIONS(4904), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4904), + [anon_sym_BSLASHglsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4904), + [anon_sym_BSLASHglsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4904), + [anon_sym_BSLASHglsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4904), + [anon_sym_BSLASHglsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4904), + [anon_sym_BSLASHglsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4904), + [anon_sym_BSLASHnewacronym] = ACTIONS(4904), + [anon_sym_BSLASHacrshort] = ACTIONS(4904), + [anon_sym_BSLASHAcrshort] = ACTIONS(4904), + [anon_sym_BSLASHACRshort] = ACTIONS(4904), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4904), + [anon_sym_BSLASHacrlong] = ACTIONS(4904), + [anon_sym_BSLASHAcrlong] = ACTIONS(4904), + [anon_sym_BSLASHACRlong] = ACTIONS(4904), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4904), + [anon_sym_BSLASHacrfull] = ACTIONS(4904), + [anon_sym_BSLASHAcrfull] = ACTIONS(4904), + [anon_sym_BSLASHACRfull] = ACTIONS(4904), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4904), + [anon_sym_BSLASHacs] = ACTIONS(4904), + [anon_sym_BSLASHAcs] = ACTIONS(4904), + [anon_sym_BSLASHacsp] = ACTIONS(4904), + [anon_sym_BSLASHAcsp] = ACTIONS(4904), + [anon_sym_BSLASHacl] = ACTIONS(4904), + [anon_sym_BSLASHAcl] = ACTIONS(4904), + [anon_sym_BSLASHaclp] = ACTIONS(4904), + [anon_sym_BSLASHAclp] = ACTIONS(4904), + [anon_sym_BSLASHacf] = ACTIONS(4904), + [anon_sym_BSLASHAcf] = ACTIONS(4904), + [anon_sym_BSLASHacfp] = ACTIONS(4904), + [anon_sym_BSLASHAcfp] = ACTIONS(4904), + [anon_sym_BSLASHac] = ACTIONS(4904), + [anon_sym_BSLASHAc] = ACTIONS(4904), + [anon_sym_BSLASHacp] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4904), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4904), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4904), + [anon_sym_BSLASHcolor] = ACTIONS(4904), + [anon_sym_BSLASHcolorbox] = ACTIONS(4904), + [anon_sym_BSLASHtextcolor] = ACTIONS(4904), + [anon_sym_BSLASHpagecolor] = ACTIONS(4904), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4904), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4904), + [anon_sym_BSLASHtext] = ACTIONS(4904), + [anon_sym_BSLASHintertext] = ACTIONS(4904), + [anon_sym_shortintertext] = ACTIONS(4904), }, [766] = { [sym_curly_group] = STATE(961), - [sym_command_name] = ACTIONS(4841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4839), - [anon_sym_BSLASHpart] = ACTIONS(4841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddpart] = ACTIONS(4841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHchapter] = ACTIONS(4841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddchap] = ACTIONS(4841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsection] = ACTIONS(4841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddsec] = ACTIONS(4841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHparagraph] = ACTIONS(4841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHitem] = ACTIONS(4841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4841), - [sym_placeholder] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym__] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), - [anon_sym_BSLASHbegin] = ACTIONS(4841), - [anon_sym_BSLASHusepackage] = ACTIONS(4841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), - [anon_sym_BSLASHinclude] = ACTIONS(4841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), - [anon_sym_BSLASHinput] = ACTIONS(4841), - [anon_sym_BSLASHsubfile] = ACTIONS(4841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), - [anon_sym_BSLASHbibliography] = ACTIONS(4841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), - [anon_sym_BSLASHincludesvg] = ACTIONS(4841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), - [anon_sym_BSLASHimport] = ACTIONS(4841), - [anon_sym_BSLASHsubimport] = ACTIONS(4841), - [anon_sym_BSLASHinputfrom] = ACTIONS(4841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), - [anon_sym_BSLASHincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHcaption] = ACTIONS(4841), - [anon_sym_BSLASHcite] = ACTIONS(4841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCite] = ACTIONS(4841), - [anon_sym_BSLASHnocite] = ACTIONS(4841), - [anon_sym_BSLASHcitet] = ACTIONS(4841), - [anon_sym_BSLASHcitep] = ACTIONS(4841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteauthor] = ACTIONS(4841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitetitle] = ACTIONS(4841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteyear] = ACTIONS(4841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitedate] = ACTIONS(4841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteurl] = ACTIONS(4841), - [anon_sym_BSLASHfullcite] = ACTIONS(4841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), - [anon_sym_BSLASHcitealt] = ACTIONS(4841), - [anon_sym_BSLASHcitealp] = ACTIONS(4841), - [anon_sym_BSLASHcitetext] = ACTIONS(4841), - [anon_sym_BSLASHparencite] = ACTIONS(4841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHParencite] = ACTIONS(4841), - [anon_sym_BSLASHfootcite] = ACTIONS(4841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), - [anon_sym_BSLASHtextcite] = ACTIONS(4841), - [anon_sym_BSLASHTextcite] = ACTIONS(4841), - [anon_sym_BSLASHsmartcite] = ACTIONS(4841), - [anon_sym_BSLASHSmartcite] = ACTIONS(4841), - [anon_sym_BSLASHsupercite] = ACTIONS(4841), - [anon_sym_BSLASHautocite] = ACTIONS(4841), - [anon_sym_BSLASHAutocite] = ACTIONS(4841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHvolcite] = ACTIONS(4841), - [anon_sym_BSLASHVolcite] = ACTIONS(4841), - [anon_sym_BSLASHpvolcite] = ACTIONS(4841), - [anon_sym_BSLASHPvolcite] = ACTIONS(4841), - [anon_sym_BSLASHfvolcite] = ACTIONS(4841), - [anon_sym_BSLASHftvolcite] = ACTIONS(4841), - [anon_sym_BSLASHsvolcite] = ACTIONS(4841), - [anon_sym_BSLASHSvolcite] = ACTIONS(4841), - [anon_sym_BSLASHtvolcite] = ACTIONS(4841), - [anon_sym_BSLASHTvolcite] = ACTIONS(4841), - [anon_sym_BSLASHavolcite] = ACTIONS(4841), - [anon_sym_BSLASHAvolcite] = ACTIONS(4841), - [anon_sym_BSLASHnotecite] = ACTIONS(4841), - [anon_sym_BSLASHNotecite] = ACTIONS(4841), - [anon_sym_BSLASHpnotecite] = ACTIONS(4841), - [anon_sym_BSLASHPnotecite] = ACTIONS(4841), - [anon_sym_BSLASHfnotecite] = ACTIONS(4841), - [anon_sym_BSLASHlabel] = ACTIONS(4841), - [anon_sym_BSLASHref] = ACTIONS(4841), - [anon_sym_BSLASHeqref] = ACTIONS(4841), - [anon_sym_BSLASHvref] = ACTIONS(4841), - [anon_sym_BSLASHVref] = ACTIONS(4841), - [anon_sym_BSLASHautoref] = ACTIONS(4841), - [anon_sym_BSLASHpageref] = ACTIONS(4841), - [anon_sym_BSLASHcref] = ACTIONS(4841), - [anon_sym_BSLASHCref] = ACTIONS(4841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnameCref] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHlabelcref] = ACTIONS(4841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCrefrange] = ACTIONS(4841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnewlabel] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), - [anon_sym_BSLASHdef] = ACTIONS(4841), - [anon_sym_BSLASHlet] = ACTIONS(4841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), - [anon_sym_BSLASHgls] = ACTIONS(4841), - [anon_sym_BSLASHGls] = ACTIONS(4841), - [anon_sym_BSLASHGLS] = ACTIONS(4841), - [anon_sym_BSLASHglspl] = ACTIONS(4841), - [anon_sym_BSLASHGlspl] = ACTIONS(4841), - [anon_sym_BSLASHGLSpl] = ACTIONS(4841), - [anon_sym_BSLASHglsdisp] = ACTIONS(4841), - [anon_sym_BSLASHglslink] = ACTIONS(4841), - [anon_sym_BSLASHglstext] = ACTIONS(4841), - [anon_sym_BSLASHGlstext] = ACTIONS(4841), - [anon_sym_BSLASHGLStext] = ACTIONS(4841), - [anon_sym_BSLASHglsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), - [anon_sym_BSLASHglsplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSplural] = ACTIONS(4841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHglsname] = ACTIONS(4841), - [anon_sym_BSLASHGlsname] = ACTIONS(4841), - [anon_sym_BSLASHGLSname] = ACTIONS(4841), - [anon_sym_BSLASHglssymbol] = ACTIONS(4841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), - [anon_sym_BSLASHglsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), - [anon_sym_BSLASHglsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), - [anon_sym_BSLASHglsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), - [anon_sym_BSLASHglsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), - [anon_sym_BSLASHglsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), - [anon_sym_BSLASHnewacronym] = ACTIONS(4841), - [anon_sym_BSLASHacrshort] = ACTIONS(4841), - [anon_sym_BSLASHAcrshort] = ACTIONS(4841), - [anon_sym_BSLASHACRshort] = ACTIONS(4841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), - [anon_sym_BSLASHacrlong] = ACTIONS(4841), - [anon_sym_BSLASHAcrlong] = ACTIONS(4841), - [anon_sym_BSLASHACRlong] = ACTIONS(4841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), - [anon_sym_BSLASHacrfull] = ACTIONS(4841), - [anon_sym_BSLASHAcrfull] = ACTIONS(4841), - [anon_sym_BSLASHACRfull] = ACTIONS(4841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), - [anon_sym_BSLASHacs] = ACTIONS(4841), - [anon_sym_BSLASHAcs] = ACTIONS(4841), - [anon_sym_BSLASHacsp] = ACTIONS(4841), - [anon_sym_BSLASHAcsp] = ACTIONS(4841), - [anon_sym_BSLASHacl] = ACTIONS(4841), - [anon_sym_BSLASHAcl] = ACTIONS(4841), - [anon_sym_BSLASHaclp] = ACTIONS(4841), - [anon_sym_BSLASHAclp] = ACTIONS(4841), - [anon_sym_BSLASHacf] = ACTIONS(4841), - [anon_sym_BSLASHAcf] = ACTIONS(4841), - [anon_sym_BSLASHacfp] = ACTIONS(4841), - [anon_sym_BSLASHAcfp] = ACTIONS(4841), - [anon_sym_BSLASHac] = ACTIONS(4841), - [anon_sym_BSLASHAc] = ACTIONS(4841), - [anon_sym_BSLASHacp] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), - [anon_sym_BSLASHcolor] = ACTIONS(4841), - [anon_sym_BSLASHcolorbox] = ACTIONS(4841), - [anon_sym_BSLASHtextcolor] = ACTIONS(4841), - [anon_sym_BSLASHpagecolor] = ACTIONS(4841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), - [anon_sym_BSLASHtext] = ACTIONS(4841), - [anon_sym_BSLASHintertext] = ACTIONS(4841), - [anon_sym_shortintertext] = ACTIONS(4841), + [sym_command_name] = ACTIONS(4920), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_BSLASHpart] = ACTIONS(4920), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddpart] = ACTIONS(4920), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHchapter] = ACTIONS(4920), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddchap] = ACTIONS(4920), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsection] = ACTIONS(4920), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddsec] = ACTIONS(4920), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHparagraph] = ACTIONS(4920), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4920), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHitem] = ACTIONS(4920), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4920), + [sym_placeholder] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym__] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4918), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4918), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4918), + [anon_sym_BSLASHbegin] = ACTIONS(4920), + [anon_sym_BSLASHusepackage] = ACTIONS(4920), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4920), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4920), + [anon_sym_BSLASHinclude] = ACTIONS(4920), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4920), + [anon_sym_BSLASHinput] = ACTIONS(4920), + [anon_sym_BSLASHsubfile] = ACTIONS(4920), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4920), + [anon_sym_BSLASHbibliography] = ACTIONS(4920), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4920), + [anon_sym_BSLASHincludesvg] = ACTIONS(4920), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4920), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4920), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4920), + [anon_sym_BSLASHimport] = ACTIONS(4920), + [anon_sym_BSLASHsubimport] = ACTIONS(4920), + [anon_sym_BSLASHinputfrom] = ACTIONS(4920), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4920), + [anon_sym_BSLASHincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHcaption] = ACTIONS(4920), + [anon_sym_BSLASHcite] = ACTIONS(4920), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCite] = ACTIONS(4920), + [anon_sym_BSLASHnocite] = ACTIONS(4920), + [anon_sym_BSLASHcitet] = ACTIONS(4920), + [anon_sym_BSLASHcitep] = ACTIONS(4920), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteauthor] = ACTIONS(4920), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4920), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitetitle] = ACTIONS(4920), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteyear] = ACTIONS(4920), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitedate] = ACTIONS(4920), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteurl] = ACTIONS(4920), + [anon_sym_BSLASHfullcite] = ACTIONS(4920), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4920), + [anon_sym_BSLASHcitealt] = ACTIONS(4920), + [anon_sym_BSLASHcitealp] = ACTIONS(4920), + [anon_sym_BSLASHcitetext] = ACTIONS(4920), + [anon_sym_BSLASHparencite] = ACTIONS(4920), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHParencite] = ACTIONS(4920), + [anon_sym_BSLASHfootcite] = ACTIONS(4920), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4920), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4920), + [anon_sym_BSLASHtextcite] = ACTIONS(4920), + [anon_sym_BSLASHTextcite] = ACTIONS(4920), + [anon_sym_BSLASHsmartcite] = ACTIONS(4920), + [anon_sym_BSLASHSmartcite] = ACTIONS(4920), + [anon_sym_BSLASHsupercite] = ACTIONS(4920), + [anon_sym_BSLASHautocite] = ACTIONS(4920), + [anon_sym_BSLASHAutocite] = ACTIONS(4920), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHvolcite] = ACTIONS(4920), + [anon_sym_BSLASHVolcite] = ACTIONS(4920), + [anon_sym_BSLASHpvolcite] = ACTIONS(4920), + [anon_sym_BSLASHPvolcite] = ACTIONS(4920), + [anon_sym_BSLASHfvolcite] = ACTIONS(4920), + [anon_sym_BSLASHftvolcite] = ACTIONS(4920), + [anon_sym_BSLASHsvolcite] = ACTIONS(4920), + [anon_sym_BSLASHSvolcite] = ACTIONS(4920), + [anon_sym_BSLASHtvolcite] = ACTIONS(4920), + [anon_sym_BSLASHTvolcite] = ACTIONS(4920), + [anon_sym_BSLASHavolcite] = ACTIONS(4920), + [anon_sym_BSLASHAvolcite] = ACTIONS(4920), + [anon_sym_BSLASHnotecite] = ACTIONS(4920), + [anon_sym_BSLASHNotecite] = ACTIONS(4920), + [anon_sym_BSLASHpnotecite] = ACTIONS(4920), + [anon_sym_BSLASHPnotecite] = ACTIONS(4920), + [anon_sym_BSLASHfnotecite] = ACTIONS(4920), + [anon_sym_BSLASHlabel] = ACTIONS(4920), + [anon_sym_BSLASHref] = ACTIONS(4920), + [anon_sym_BSLASHeqref] = ACTIONS(4920), + [anon_sym_BSLASHvref] = ACTIONS(4920), + [anon_sym_BSLASHVref] = ACTIONS(4920), + [anon_sym_BSLASHautoref] = ACTIONS(4920), + [anon_sym_BSLASHpageref] = ACTIONS(4920), + [anon_sym_BSLASHcref] = ACTIONS(4920), + [anon_sym_BSLASHCref] = ACTIONS(4920), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnameCref] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHlabelcref] = ACTIONS(4920), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCrefrange] = ACTIONS(4920), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnewlabel] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4920), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4920), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4920), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdef] = ACTIONS(4920), + [anon_sym_BSLASHlet] = ACTIONS(4920), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4920), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4920), + [anon_sym_BSLASHgls] = ACTIONS(4920), + [anon_sym_BSLASHGls] = ACTIONS(4920), + [anon_sym_BSLASHGLS] = ACTIONS(4920), + [anon_sym_BSLASHglspl] = ACTIONS(4920), + [anon_sym_BSLASHGlspl] = ACTIONS(4920), + [anon_sym_BSLASHGLSpl] = ACTIONS(4920), + [anon_sym_BSLASHglsdisp] = ACTIONS(4920), + [anon_sym_BSLASHglslink] = ACTIONS(4920), + [anon_sym_BSLASHglstext] = ACTIONS(4920), + [anon_sym_BSLASHGlstext] = ACTIONS(4920), + [anon_sym_BSLASHGLStext] = ACTIONS(4920), + [anon_sym_BSLASHglsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4920), + [anon_sym_BSLASHglsplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSplural] = ACTIONS(4920), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHglsname] = ACTIONS(4920), + [anon_sym_BSLASHGlsname] = ACTIONS(4920), + [anon_sym_BSLASHGLSname] = ACTIONS(4920), + [anon_sym_BSLASHglssymbol] = ACTIONS(4920), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4920), + [anon_sym_BSLASHglsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4920), + [anon_sym_BSLASHglsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4920), + [anon_sym_BSLASHglsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4920), + [anon_sym_BSLASHglsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4920), + [anon_sym_BSLASHglsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4920), + [anon_sym_BSLASHnewacronym] = ACTIONS(4920), + [anon_sym_BSLASHacrshort] = ACTIONS(4920), + [anon_sym_BSLASHAcrshort] = ACTIONS(4920), + [anon_sym_BSLASHACRshort] = ACTIONS(4920), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4920), + [anon_sym_BSLASHacrlong] = ACTIONS(4920), + [anon_sym_BSLASHAcrlong] = ACTIONS(4920), + [anon_sym_BSLASHACRlong] = ACTIONS(4920), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4920), + [anon_sym_BSLASHacrfull] = ACTIONS(4920), + [anon_sym_BSLASHAcrfull] = ACTIONS(4920), + [anon_sym_BSLASHACRfull] = ACTIONS(4920), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4920), + [anon_sym_BSLASHacs] = ACTIONS(4920), + [anon_sym_BSLASHAcs] = ACTIONS(4920), + [anon_sym_BSLASHacsp] = ACTIONS(4920), + [anon_sym_BSLASHAcsp] = ACTIONS(4920), + [anon_sym_BSLASHacl] = ACTIONS(4920), + [anon_sym_BSLASHAcl] = ACTIONS(4920), + [anon_sym_BSLASHaclp] = ACTIONS(4920), + [anon_sym_BSLASHAclp] = ACTIONS(4920), + [anon_sym_BSLASHacf] = ACTIONS(4920), + [anon_sym_BSLASHAcf] = ACTIONS(4920), + [anon_sym_BSLASHacfp] = ACTIONS(4920), + [anon_sym_BSLASHAcfp] = ACTIONS(4920), + [anon_sym_BSLASHac] = ACTIONS(4920), + [anon_sym_BSLASHAc] = ACTIONS(4920), + [anon_sym_BSLASHacp] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4920), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4920), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4920), + [anon_sym_BSLASHcolor] = ACTIONS(4920), + [anon_sym_BSLASHcolorbox] = ACTIONS(4920), + [anon_sym_BSLASHtextcolor] = ACTIONS(4920), + [anon_sym_BSLASHpagecolor] = ACTIONS(4920), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4920), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4920), + [anon_sym_BSLASHtext] = ACTIONS(4920), + [anon_sym_BSLASHintertext] = ACTIONS(4920), + [anon_sym_shortintertext] = ACTIONS(4920), }, [767] = { - [ts_builtin_sym_end] = ACTIONS(5147), - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_BSLASHpart] = ACTIONS(5149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddpart] = ACTIONS(5149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHchapter] = ACTIONS(5149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddchap] = ACTIONS(5149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsection] = ACTIONS(5149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddsec] = ACTIONS(5149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHparagraph] = ACTIONS(5149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHitem] = ACTIONS(5149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [ts_builtin_sym_end] = ACTIONS(5226), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_BSLASHpart] = ACTIONS(5228), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddpart] = ACTIONS(5228), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHchapter] = ACTIONS(5228), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddchap] = ACTIONS(5228), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsection] = ACTIONS(5228), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddsec] = ACTIONS(5228), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHparagraph] = ACTIONS(5228), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5228), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHitem] = ACTIONS(5228), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASHbegin] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [768] = { - [ts_builtin_sym_end] = ACTIONS(5151), - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_BSLASHpart] = ACTIONS(5153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddpart] = ACTIONS(5153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHchapter] = ACTIONS(5153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddchap] = ACTIONS(5153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsection] = ACTIONS(5153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddsec] = ACTIONS(5153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHparagraph] = ACTIONS(5153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHitem] = ACTIONS(5153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASHbegin] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [ts_builtin_sym_end] = ACTIONS(5230), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_BSLASHpart] = ACTIONS(5232), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddpart] = ACTIONS(5232), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHchapter] = ACTIONS(5232), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddchap] = ACTIONS(5232), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsection] = ACTIONS(5232), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddsec] = ACTIONS(5232), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHparagraph] = ACTIONS(5232), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5232), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHitem] = ACTIONS(5232), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASHbegin] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [769] = { - [ts_builtin_sym_end] = ACTIONS(5155), - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_BSLASHpart] = ACTIONS(5157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddpart] = ACTIONS(5157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHchapter] = ACTIONS(5157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddchap] = ACTIONS(5157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsection] = ACTIONS(5157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddsec] = ACTIONS(5157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHparagraph] = ACTIONS(5157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHitem] = ACTIONS(5157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_RBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASHbegin] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [ts_builtin_sym_end] = ACTIONS(5234), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_BSLASHpart] = ACTIONS(5236), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddpart] = ACTIONS(5236), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHchapter] = ACTIONS(5236), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddchap] = ACTIONS(5236), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsection] = ACTIONS(5236), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddsec] = ACTIONS(5236), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHparagraph] = ACTIONS(5236), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5236), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHitem] = ACTIONS(5236), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASHbegin] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [770] = { - [ts_builtin_sym_end] = ACTIONS(5159), - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_BSLASHpart] = ACTIONS(5161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddpart] = ACTIONS(5161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHchapter] = ACTIONS(5161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddchap] = ACTIONS(5161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsection] = ACTIONS(5161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddsec] = ACTIONS(5161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHparagraph] = ACTIONS(5161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHitem] = ACTIONS(5161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASHbegin] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [ts_builtin_sym_end] = ACTIONS(5238), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_BSLASHpart] = ACTIONS(5240), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddpart] = ACTIONS(5240), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHchapter] = ACTIONS(5240), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddchap] = ACTIONS(5240), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsection] = ACTIONS(5240), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddsec] = ACTIONS(5240), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHparagraph] = ACTIONS(5240), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5240), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHitem] = ACTIONS(5240), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASHbegin] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [771] = { - [ts_builtin_sym_end] = ACTIONS(5163), - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_BSLASHpart] = ACTIONS(5165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddpart] = ACTIONS(5165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHchapter] = ACTIONS(5165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddchap] = ACTIONS(5165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsection] = ACTIONS(5165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddsec] = ACTIONS(5165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHparagraph] = ACTIONS(5165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHitem] = ACTIONS(5165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASHbegin] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [ts_builtin_sym_end] = ACTIONS(5242), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_BSLASHpart] = ACTIONS(5244), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddpart] = ACTIONS(5244), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHchapter] = ACTIONS(5244), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddchap] = ACTIONS(5244), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsection] = ACTIONS(5244), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddsec] = ACTIONS(5244), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHparagraph] = ACTIONS(5244), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5244), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHitem] = ACTIONS(5244), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASHbegin] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [772] = { - [ts_builtin_sym_end] = ACTIONS(5167), - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_BSLASHpart] = ACTIONS(5169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddpart] = ACTIONS(5169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHchapter] = ACTIONS(5169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddchap] = ACTIONS(5169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsection] = ACTIONS(5169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddsec] = ACTIONS(5169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHparagraph] = ACTIONS(5169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHitem] = ACTIONS(5169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASHbegin] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [ts_builtin_sym_end] = ACTIONS(5246), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_BSLASHpart] = ACTIONS(5248), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddpart] = ACTIONS(5248), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHchapter] = ACTIONS(5248), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddchap] = ACTIONS(5248), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsection] = ACTIONS(5248), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddsec] = ACTIONS(5248), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHparagraph] = ACTIONS(5248), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5248), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHitem] = ACTIONS(5248), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASHbegin] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [773] = { [sym_brack_group_text] = STATE(839), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_BSLASHpart] = ACTIONS(4879), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddpart] = ACTIONS(4879), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHchapter] = ACTIONS(4879), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddchap] = ACTIONS(4879), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsection] = ACTIONS(4879), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddsec] = ACTIONS(4879), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHparagraph] = ACTIONS(4879), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHitem] = ACTIONS(4879), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASHbegin] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_BSLASHpart] = ACTIONS(4958), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddpart] = ACTIONS(4958), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHchapter] = ACTIONS(4958), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddchap] = ACTIONS(4958), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsection] = ACTIONS(4958), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddsec] = ACTIONS(4958), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHparagraph] = ACTIONS(4958), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4958), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHitem] = ACTIONS(4958), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASHbegin] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [774] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5173), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_BSLASHpart] = ACTIONS(4865), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddpart] = ACTIONS(4865), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), - [anon_sym_BSLASHchapter] = ACTIONS(4865), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddchap] = ACTIONS(4865), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsection] = ACTIONS(4865), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHaddsec] = ACTIONS(4865), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), - [anon_sym_BSLASHparagraph] = ACTIONS(4865), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), - [anon_sym_BSLASHitem] = ACTIONS(4865), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASHbegin] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_BSLASHpart] = ACTIONS(4944), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddpart] = ACTIONS(4944), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4942), + [anon_sym_BSLASHchapter] = ACTIONS(4944), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddchap] = ACTIONS(4944), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsection] = ACTIONS(4944), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHaddsec] = ACTIONS(4944), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4944), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4942), + [anon_sym_BSLASHparagraph] = ACTIONS(4944), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4944), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4942), + [anon_sym_BSLASHitem] = ACTIONS(4944), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASHbegin] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [775] = { - [ts_builtin_sym_end] = ACTIONS(5175), - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_BSLASHpart] = ACTIONS(5177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddpart] = ACTIONS(5177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHchapter] = ACTIONS(5177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddchap] = ACTIONS(5177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsection] = ACTIONS(5177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddsec] = ACTIONS(5177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHparagraph] = ACTIONS(5177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHitem] = ACTIONS(5177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASHbegin] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [ts_builtin_sym_end] = ACTIONS(5254), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_BSLASHpart] = ACTIONS(5256), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddpart] = ACTIONS(5256), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHchapter] = ACTIONS(5256), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddchap] = ACTIONS(5256), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsection] = ACTIONS(5256), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddsec] = ACTIONS(5256), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHparagraph] = ACTIONS(5256), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5256), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHitem] = ACTIONS(5256), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASHbegin] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [776] = { - [ts_builtin_sym_end] = ACTIONS(5179), - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_BSLASHpart] = ACTIONS(5181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddpart] = ACTIONS(5181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHchapter] = ACTIONS(5181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddchap] = ACTIONS(5181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsection] = ACTIONS(5181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddsec] = ACTIONS(5181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHparagraph] = ACTIONS(5181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHitem] = ACTIONS(5181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASHbegin] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [ts_builtin_sym_end] = ACTIONS(5258), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_BSLASHpart] = ACTIONS(5260), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddpart] = ACTIONS(5260), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHchapter] = ACTIONS(5260), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddchap] = ACTIONS(5260), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsection] = ACTIONS(5260), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddsec] = ACTIONS(5260), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHparagraph] = ACTIONS(5260), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5260), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHitem] = ACTIONS(5260), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASHbegin] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [777] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [ts_builtin_sym_end] = ACTIONS(5262), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_BSLASHpart] = ACTIONS(5264), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddpart] = ACTIONS(5264), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHchapter] = ACTIONS(5264), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddchap] = ACTIONS(5264), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsection] = ACTIONS(5264), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddsec] = ACTIONS(5264), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHparagraph] = ACTIONS(5264), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5264), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHitem] = ACTIONS(5264), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASHbegin] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [778] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [ts_builtin_sym_end] = ACTIONS(5266), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_BSLASHpart] = ACTIONS(5268), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddpart] = ACTIONS(5268), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHchapter] = ACTIONS(5268), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddchap] = ACTIONS(5268), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsection] = ACTIONS(5268), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddsec] = ACTIONS(5268), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHparagraph] = ACTIONS(5268), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5268), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHitem] = ACTIONS(5268), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASHbegin] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [779] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [ts_builtin_sym_end] = ACTIONS(5270), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_BSLASHpart] = ACTIONS(5272), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddpart] = ACTIONS(5272), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHchapter] = ACTIONS(5272), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddchap] = ACTIONS(5272), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsection] = ACTIONS(5272), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddsec] = ACTIONS(5272), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHparagraph] = ACTIONS(5272), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5272), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHitem] = ACTIONS(5272), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASHbegin] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [780] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [ts_builtin_sym_end] = ACTIONS(5274), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_BSLASHpart] = ACTIONS(5276), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddpart] = ACTIONS(5276), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHchapter] = ACTIONS(5276), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddchap] = ACTIONS(5276), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsection] = ACTIONS(5276), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddsec] = ACTIONS(5276), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHparagraph] = ACTIONS(5276), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5276), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHitem] = ACTIONS(5276), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASHbegin] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [781] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [ts_builtin_sym_end] = ACTIONS(5278), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_BSLASHpart] = ACTIONS(5280), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddpart] = ACTIONS(5280), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHchapter] = ACTIONS(5280), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddchap] = ACTIONS(5280), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsection] = ACTIONS(5280), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddsec] = ACTIONS(5280), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHparagraph] = ACTIONS(5280), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5280), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHitem] = ACTIONS(5280), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASHbegin] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [782] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [ts_builtin_sym_end] = ACTIONS(5282), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_BSLASHpart] = ACTIONS(5284), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddpart] = ACTIONS(5284), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHchapter] = ACTIONS(5284), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddchap] = ACTIONS(5284), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsection] = ACTIONS(5284), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddsec] = ACTIONS(5284), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHparagraph] = ACTIONS(5284), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5284), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHitem] = ACTIONS(5284), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASHbegin] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [783] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [ts_builtin_sym_end] = ACTIONS(5286), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_BSLASHpart] = ACTIONS(5288), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddpart] = ACTIONS(5288), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHchapter] = ACTIONS(5288), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddchap] = ACTIONS(5288), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsection] = ACTIONS(5288), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddsec] = ACTIONS(5288), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHparagraph] = ACTIONS(5288), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5288), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHitem] = ACTIONS(5288), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASHbegin] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [784] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5213), - [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), + [ts_builtin_sym_end] = ACTIONS(5290), + [sym_command_name] = ACTIONS(5292), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_BSLASHpart] = ACTIONS(5292), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddpart] = ACTIONS(5292), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHchapter] = ACTIONS(5292), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddchap] = ACTIONS(5292), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsection] = ACTIONS(5292), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddsec] = ACTIONS(5292), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHparagraph] = ACTIONS(5292), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5292), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHitem] = ACTIONS(5292), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [sym_word] = ACTIONS(5292), + [sym_placeholder] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_SQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5290), + [anon_sym_BSLASHbegin] = ACTIONS(5292), + [anon_sym_BSLASHusepackage] = ACTIONS(5292), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5292), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5292), + [anon_sym_BSLASHinclude] = ACTIONS(5292), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5292), + [anon_sym_BSLASHinput] = ACTIONS(5292), + [anon_sym_BSLASHsubfile] = ACTIONS(5292), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5292), + [anon_sym_BSLASHbibliography] = ACTIONS(5292), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5292), + [anon_sym_BSLASHincludesvg] = ACTIONS(5292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5292), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5292), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5292), + [anon_sym_BSLASHimport] = ACTIONS(5292), + [anon_sym_BSLASHsubimport] = ACTIONS(5292), + [anon_sym_BSLASHinputfrom] = ACTIONS(5292), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5292), + [anon_sym_BSLASHincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHcaption] = ACTIONS(5292), + [anon_sym_BSLASHcite] = ACTIONS(5292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCite] = ACTIONS(5292), + [anon_sym_BSLASHnocite] = ACTIONS(5292), + [anon_sym_BSLASHcitet] = ACTIONS(5292), + [anon_sym_BSLASHcitep] = ACTIONS(5292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteauthor] = ACTIONS(5292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitetitle] = ACTIONS(5292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteyear] = ACTIONS(5292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitedate] = ACTIONS(5292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteurl] = ACTIONS(5292), + [anon_sym_BSLASHfullcite] = ACTIONS(5292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5292), + [anon_sym_BSLASHcitealt] = ACTIONS(5292), + [anon_sym_BSLASHcitealp] = ACTIONS(5292), + [anon_sym_BSLASHcitetext] = ACTIONS(5292), + [anon_sym_BSLASHparencite] = ACTIONS(5292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHParencite] = ACTIONS(5292), + [anon_sym_BSLASHfootcite] = ACTIONS(5292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5292), + [anon_sym_BSLASHtextcite] = ACTIONS(5292), + [anon_sym_BSLASHTextcite] = ACTIONS(5292), + [anon_sym_BSLASHsmartcite] = ACTIONS(5292), + [anon_sym_BSLASHSmartcite] = ACTIONS(5292), + [anon_sym_BSLASHsupercite] = ACTIONS(5292), + [anon_sym_BSLASHautocite] = ACTIONS(5292), + [anon_sym_BSLASHAutocite] = ACTIONS(5292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHvolcite] = ACTIONS(5292), + [anon_sym_BSLASHVolcite] = ACTIONS(5292), + [anon_sym_BSLASHpvolcite] = ACTIONS(5292), + [anon_sym_BSLASHPvolcite] = ACTIONS(5292), + [anon_sym_BSLASHfvolcite] = ACTIONS(5292), + [anon_sym_BSLASHftvolcite] = ACTIONS(5292), + [anon_sym_BSLASHsvolcite] = ACTIONS(5292), + [anon_sym_BSLASHSvolcite] = ACTIONS(5292), + [anon_sym_BSLASHtvolcite] = ACTIONS(5292), + [anon_sym_BSLASHTvolcite] = ACTIONS(5292), + [anon_sym_BSLASHavolcite] = ACTIONS(5292), + [anon_sym_BSLASHAvolcite] = ACTIONS(5292), + [anon_sym_BSLASHnotecite] = ACTIONS(5292), + [anon_sym_BSLASHNotecite] = ACTIONS(5292), + [anon_sym_BSLASHpnotecite] = ACTIONS(5292), + [anon_sym_BSLASHPnotecite] = ACTIONS(5292), + [anon_sym_BSLASHfnotecite] = ACTIONS(5292), + [anon_sym_BSLASHlabel] = ACTIONS(5292), + [anon_sym_BSLASHref] = ACTIONS(5292), + [anon_sym_BSLASHeqref] = ACTIONS(5292), + [anon_sym_BSLASHvref] = ACTIONS(5292), + [anon_sym_BSLASHVref] = ACTIONS(5292), + [anon_sym_BSLASHautoref] = ACTIONS(5292), + [anon_sym_BSLASHpageref] = ACTIONS(5292), + [anon_sym_BSLASHcref] = ACTIONS(5292), + [anon_sym_BSLASHCref] = ACTIONS(5292), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnameCref] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHlabelcref] = ACTIONS(5292), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCrefrange] = ACTIONS(5292), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnewlabel] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5292), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5292), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5292), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdef] = ACTIONS(5292), + [anon_sym_BSLASHlet] = ACTIONS(5292), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5292), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5292), + [anon_sym_BSLASHgls] = ACTIONS(5292), + [anon_sym_BSLASHGls] = ACTIONS(5292), + [anon_sym_BSLASHGLS] = ACTIONS(5292), + [anon_sym_BSLASHglspl] = ACTIONS(5292), + [anon_sym_BSLASHGlspl] = ACTIONS(5292), + [anon_sym_BSLASHGLSpl] = ACTIONS(5292), + [anon_sym_BSLASHglsdisp] = ACTIONS(5292), + [anon_sym_BSLASHglslink] = ACTIONS(5292), + [anon_sym_BSLASHglstext] = ACTIONS(5292), + [anon_sym_BSLASHGlstext] = ACTIONS(5292), + [anon_sym_BSLASHGLStext] = ACTIONS(5292), + [anon_sym_BSLASHglsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5292), + [anon_sym_BSLASHglsplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSplural] = ACTIONS(5292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHglsname] = ACTIONS(5292), + [anon_sym_BSLASHGlsname] = ACTIONS(5292), + [anon_sym_BSLASHGLSname] = ACTIONS(5292), + [anon_sym_BSLASHglssymbol] = ACTIONS(5292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5292), + [anon_sym_BSLASHglsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5292), + [anon_sym_BSLASHglsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5292), + [anon_sym_BSLASHglsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5292), + [anon_sym_BSLASHglsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5292), + [anon_sym_BSLASHglsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5292), + [anon_sym_BSLASHnewacronym] = ACTIONS(5292), + [anon_sym_BSLASHacrshort] = ACTIONS(5292), + [anon_sym_BSLASHAcrshort] = ACTIONS(5292), + [anon_sym_BSLASHACRshort] = ACTIONS(5292), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5292), + [anon_sym_BSLASHacrlong] = ACTIONS(5292), + [anon_sym_BSLASHAcrlong] = ACTIONS(5292), + [anon_sym_BSLASHACRlong] = ACTIONS(5292), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5292), + [anon_sym_BSLASHacrfull] = ACTIONS(5292), + [anon_sym_BSLASHAcrfull] = ACTIONS(5292), + [anon_sym_BSLASHACRfull] = ACTIONS(5292), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5292), + [anon_sym_BSLASHacs] = ACTIONS(5292), + [anon_sym_BSLASHAcs] = ACTIONS(5292), + [anon_sym_BSLASHacsp] = ACTIONS(5292), + [anon_sym_BSLASHAcsp] = ACTIONS(5292), + [anon_sym_BSLASHacl] = ACTIONS(5292), + [anon_sym_BSLASHAcl] = ACTIONS(5292), + [anon_sym_BSLASHaclp] = ACTIONS(5292), + [anon_sym_BSLASHAclp] = ACTIONS(5292), + [anon_sym_BSLASHacf] = ACTIONS(5292), + [anon_sym_BSLASHAcf] = ACTIONS(5292), + [anon_sym_BSLASHacfp] = ACTIONS(5292), + [anon_sym_BSLASHAcfp] = ACTIONS(5292), + [anon_sym_BSLASHac] = ACTIONS(5292), + [anon_sym_BSLASHAc] = ACTIONS(5292), + [anon_sym_BSLASHacp] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5292), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5292), + [anon_sym_BSLASHcolorbox] = ACTIONS(5292), + [anon_sym_BSLASHtextcolor] = ACTIONS(5292), + [anon_sym_BSLASHpagecolor] = ACTIONS(5292), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5292), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5292), + [anon_sym_BSLASHtext] = ACTIONS(5292), + [anon_sym_BSLASHintertext] = ACTIONS(5292), + [anon_sym_shortintertext] = ACTIONS(5292), }, [785] = { [sym_brack_group_text] = STATE(1226), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_BSLASHpart] = ACTIONS(4879), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddpart] = ACTIONS(4879), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), - [anon_sym_BSLASHchapter] = ACTIONS(4879), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddchap] = ACTIONS(4879), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsection] = ACTIONS(4879), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHaddsec] = ACTIONS(4879), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), - [anon_sym_BSLASHparagraph] = ACTIONS(4879), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), - [anon_sym_BSLASHitem] = ACTIONS(4879), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASHbegin] = ACTIONS(4879), - [anon_sym_BSLASHend] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_BSLASHpart] = ACTIONS(4958), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddpart] = ACTIONS(4958), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4956), + [anon_sym_BSLASHchapter] = ACTIONS(4958), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddchap] = ACTIONS(4958), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsection] = ACTIONS(4958), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHaddsec] = ACTIONS(4958), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4958), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4956), + [anon_sym_BSLASHparagraph] = ACTIONS(4958), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4958), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4956), + [anon_sym_BSLASHitem] = ACTIONS(4958), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASHbegin] = ACTIONS(4958), + [anon_sym_BSLASHend] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [786] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5217), - [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), + [ts_builtin_sym_end] = ACTIONS(5294), + [sym_command_name] = ACTIONS(5296), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5294), + [anon_sym_BSLASHpart] = ACTIONS(5296), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddpart] = ACTIONS(5296), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHchapter] = ACTIONS(5296), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddchap] = ACTIONS(5296), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsection] = ACTIONS(5296), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddsec] = ACTIONS(5296), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHparagraph] = ACTIONS(5296), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5296), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHitem] = ACTIONS(5296), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [anon_sym_RBRACE] = ACTIONS(5294), + [sym_word] = ACTIONS(5296), + [sym_placeholder] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_SQUOTE] = ACTIONS(5296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5294), + [anon_sym_BSLASHbegin] = ACTIONS(5296), + [anon_sym_BSLASHusepackage] = ACTIONS(5296), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5296), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5296), + [anon_sym_BSLASHinclude] = ACTIONS(5296), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5296), + [anon_sym_BSLASHinput] = ACTIONS(5296), + [anon_sym_BSLASHsubfile] = ACTIONS(5296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5296), + [anon_sym_BSLASHbibliography] = ACTIONS(5296), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5296), + [anon_sym_BSLASHincludesvg] = ACTIONS(5296), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5296), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5296), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5296), + [anon_sym_BSLASHimport] = ACTIONS(5296), + [anon_sym_BSLASHsubimport] = ACTIONS(5296), + [anon_sym_BSLASHinputfrom] = ACTIONS(5296), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5296), + [anon_sym_BSLASHincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHcaption] = ACTIONS(5296), + [anon_sym_BSLASHcite] = ACTIONS(5296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCite] = ACTIONS(5296), + [anon_sym_BSLASHnocite] = ACTIONS(5296), + [anon_sym_BSLASHcitet] = ACTIONS(5296), + [anon_sym_BSLASHcitep] = ACTIONS(5296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteauthor] = ACTIONS(5296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitetitle] = ACTIONS(5296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteyear] = ACTIONS(5296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitedate] = ACTIONS(5296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteurl] = ACTIONS(5296), + [anon_sym_BSLASHfullcite] = ACTIONS(5296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5296), + [anon_sym_BSLASHcitealt] = ACTIONS(5296), + [anon_sym_BSLASHcitealp] = ACTIONS(5296), + [anon_sym_BSLASHcitetext] = ACTIONS(5296), + [anon_sym_BSLASHparencite] = ACTIONS(5296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHParencite] = ACTIONS(5296), + [anon_sym_BSLASHfootcite] = ACTIONS(5296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5296), + [anon_sym_BSLASHtextcite] = ACTIONS(5296), + [anon_sym_BSLASHTextcite] = ACTIONS(5296), + [anon_sym_BSLASHsmartcite] = ACTIONS(5296), + [anon_sym_BSLASHSmartcite] = ACTIONS(5296), + [anon_sym_BSLASHsupercite] = ACTIONS(5296), + [anon_sym_BSLASHautocite] = ACTIONS(5296), + [anon_sym_BSLASHAutocite] = ACTIONS(5296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHvolcite] = ACTIONS(5296), + [anon_sym_BSLASHVolcite] = ACTIONS(5296), + [anon_sym_BSLASHpvolcite] = ACTIONS(5296), + [anon_sym_BSLASHPvolcite] = ACTIONS(5296), + [anon_sym_BSLASHfvolcite] = ACTIONS(5296), + [anon_sym_BSLASHftvolcite] = ACTIONS(5296), + [anon_sym_BSLASHsvolcite] = ACTIONS(5296), + [anon_sym_BSLASHSvolcite] = ACTIONS(5296), + [anon_sym_BSLASHtvolcite] = ACTIONS(5296), + [anon_sym_BSLASHTvolcite] = ACTIONS(5296), + [anon_sym_BSLASHavolcite] = ACTIONS(5296), + [anon_sym_BSLASHAvolcite] = ACTIONS(5296), + [anon_sym_BSLASHnotecite] = ACTIONS(5296), + [anon_sym_BSLASHNotecite] = ACTIONS(5296), + [anon_sym_BSLASHpnotecite] = ACTIONS(5296), + [anon_sym_BSLASHPnotecite] = ACTIONS(5296), + [anon_sym_BSLASHfnotecite] = ACTIONS(5296), + [anon_sym_BSLASHlabel] = ACTIONS(5296), + [anon_sym_BSLASHref] = ACTIONS(5296), + [anon_sym_BSLASHeqref] = ACTIONS(5296), + [anon_sym_BSLASHvref] = ACTIONS(5296), + [anon_sym_BSLASHVref] = ACTIONS(5296), + [anon_sym_BSLASHautoref] = ACTIONS(5296), + [anon_sym_BSLASHpageref] = ACTIONS(5296), + [anon_sym_BSLASHcref] = ACTIONS(5296), + [anon_sym_BSLASHCref] = ACTIONS(5296), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnameCref] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHlabelcref] = ACTIONS(5296), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCrefrange] = ACTIONS(5296), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnewlabel] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5296), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5296), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5296), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdef] = ACTIONS(5296), + [anon_sym_BSLASHlet] = ACTIONS(5296), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5296), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5296), + [anon_sym_BSLASHgls] = ACTIONS(5296), + [anon_sym_BSLASHGls] = ACTIONS(5296), + [anon_sym_BSLASHGLS] = ACTIONS(5296), + [anon_sym_BSLASHglspl] = ACTIONS(5296), + [anon_sym_BSLASHGlspl] = ACTIONS(5296), + [anon_sym_BSLASHGLSpl] = ACTIONS(5296), + [anon_sym_BSLASHglsdisp] = ACTIONS(5296), + [anon_sym_BSLASHglslink] = ACTIONS(5296), + [anon_sym_BSLASHglstext] = ACTIONS(5296), + [anon_sym_BSLASHGlstext] = ACTIONS(5296), + [anon_sym_BSLASHGLStext] = ACTIONS(5296), + [anon_sym_BSLASHglsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5296), + [anon_sym_BSLASHglsplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSplural] = ACTIONS(5296), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHglsname] = ACTIONS(5296), + [anon_sym_BSLASHGlsname] = ACTIONS(5296), + [anon_sym_BSLASHGLSname] = ACTIONS(5296), + [anon_sym_BSLASHglssymbol] = ACTIONS(5296), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5296), + [anon_sym_BSLASHglsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5296), + [anon_sym_BSLASHglsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5296), + [anon_sym_BSLASHglsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5296), + [anon_sym_BSLASHglsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5296), + [anon_sym_BSLASHglsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5296), + [anon_sym_BSLASHnewacronym] = ACTIONS(5296), + [anon_sym_BSLASHacrshort] = ACTIONS(5296), + [anon_sym_BSLASHAcrshort] = ACTIONS(5296), + [anon_sym_BSLASHACRshort] = ACTIONS(5296), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5296), + [anon_sym_BSLASHacrlong] = ACTIONS(5296), + [anon_sym_BSLASHAcrlong] = ACTIONS(5296), + [anon_sym_BSLASHACRlong] = ACTIONS(5296), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5296), + [anon_sym_BSLASHacrfull] = ACTIONS(5296), + [anon_sym_BSLASHAcrfull] = ACTIONS(5296), + [anon_sym_BSLASHACRfull] = ACTIONS(5296), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5296), + [anon_sym_BSLASHacs] = ACTIONS(5296), + [anon_sym_BSLASHAcs] = ACTIONS(5296), + [anon_sym_BSLASHacsp] = ACTIONS(5296), + [anon_sym_BSLASHAcsp] = ACTIONS(5296), + [anon_sym_BSLASHacl] = ACTIONS(5296), + [anon_sym_BSLASHAcl] = ACTIONS(5296), + [anon_sym_BSLASHaclp] = ACTIONS(5296), + [anon_sym_BSLASHAclp] = ACTIONS(5296), + [anon_sym_BSLASHacf] = ACTIONS(5296), + [anon_sym_BSLASHAcf] = ACTIONS(5296), + [anon_sym_BSLASHacfp] = ACTIONS(5296), + [anon_sym_BSLASHAcfp] = ACTIONS(5296), + [anon_sym_BSLASHac] = ACTIONS(5296), + [anon_sym_BSLASHAc] = ACTIONS(5296), + [anon_sym_BSLASHacp] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5296), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5296), + [anon_sym_BSLASHcolor] = ACTIONS(5296), + [anon_sym_BSLASHcolorbox] = ACTIONS(5296), + [anon_sym_BSLASHtextcolor] = ACTIONS(5296), + [anon_sym_BSLASHpagecolor] = ACTIONS(5296), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5296), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5296), + [anon_sym_BSLASHtext] = ACTIONS(5296), + [anon_sym_BSLASHintertext] = ACTIONS(5296), + [anon_sym_shortintertext] = ACTIONS(5296), }, [787] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [ts_builtin_sym_end] = ACTIONS(5298), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_BSLASHpart] = ACTIONS(5300), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddpart] = ACTIONS(5300), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHchapter] = ACTIONS(5300), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddchap] = ACTIONS(5300), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsection] = ACTIONS(5300), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddsec] = ACTIONS(5300), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHparagraph] = ACTIONS(5300), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5300), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHitem] = ACTIONS(5300), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASHbegin] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [788] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5225), - [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), + [ts_builtin_sym_end] = ACTIONS(5302), + [sym_command_name] = ACTIONS(5304), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_COMMA] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5302), + [anon_sym_BSLASHpart] = ACTIONS(5304), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddpart] = ACTIONS(5304), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHchapter] = ACTIONS(5304), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddchap] = ACTIONS(5304), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsection] = ACTIONS(5304), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddsec] = ACTIONS(5304), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHparagraph] = ACTIONS(5304), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5304), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHitem] = ACTIONS(5304), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_RBRACE] = ACTIONS(5302), + [sym_word] = ACTIONS(5304), + [sym_placeholder] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_SLASH] = ACTIONS(5304), + [anon_sym_CARET] = ACTIONS(5304), + [anon_sym__] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_BANG] = ACTIONS(5304), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_SQUOTE] = ACTIONS(5304), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5302), + [anon_sym_BSLASHbegin] = ACTIONS(5304), + [anon_sym_BSLASHusepackage] = ACTIONS(5304), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5304), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5304), + [anon_sym_BSLASHinclude] = ACTIONS(5304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5304), + [anon_sym_BSLASHinput] = ACTIONS(5304), + [anon_sym_BSLASHsubfile] = ACTIONS(5304), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5304), + [anon_sym_BSLASHbibliography] = ACTIONS(5304), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5304), + [anon_sym_BSLASHincludesvg] = ACTIONS(5304), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5304), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5304), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5304), + [anon_sym_BSLASHimport] = ACTIONS(5304), + [anon_sym_BSLASHsubimport] = ACTIONS(5304), + [anon_sym_BSLASHinputfrom] = ACTIONS(5304), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5304), + [anon_sym_BSLASHincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHcaption] = ACTIONS(5304), + [anon_sym_BSLASHcite] = ACTIONS(5304), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCite] = ACTIONS(5304), + [anon_sym_BSLASHnocite] = ACTIONS(5304), + [anon_sym_BSLASHcitet] = ACTIONS(5304), + [anon_sym_BSLASHcitep] = ACTIONS(5304), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteauthor] = ACTIONS(5304), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5304), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitetitle] = ACTIONS(5304), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteyear] = ACTIONS(5304), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitedate] = ACTIONS(5304), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteurl] = ACTIONS(5304), + [anon_sym_BSLASHfullcite] = ACTIONS(5304), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5304), + [anon_sym_BSLASHcitealt] = ACTIONS(5304), + [anon_sym_BSLASHcitealp] = ACTIONS(5304), + [anon_sym_BSLASHcitetext] = ACTIONS(5304), + [anon_sym_BSLASHparencite] = ACTIONS(5304), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHParencite] = ACTIONS(5304), + [anon_sym_BSLASHfootcite] = ACTIONS(5304), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5304), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5304), + [anon_sym_BSLASHtextcite] = ACTIONS(5304), + [anon_sym_BSLASHTextcite] = ACTIONS(5304), + [anon_sym_BSLASHsmartcite] = ACTIONS(5304), + [anon_sym_BSLASHSmartcite] = ACTIONS(5304), + [anon_sym_BSLASHsupercite] = ACTIONS(5304), + [anon_sym_BSLASHautocite] = ACTIONS(5304), + [anon_sym_BSLASHAutocite] = ACTIONS(5304), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHvolcite] = ACTIONS(5304), + [anon_sym_BSLASHVolcite] = ACTIONS(5304), + [anon_sym_BSLASHpvolcite] = ACTIONS(5304), + [anon_sym_BSLASHPvolcite] = ACTIONS(5304), + [anon_sym_BSLASHfvolcite] = ACTIONS(5304), + [anon_sym_BSLASHftvolcite] = ACTIONS(5304), + [anon_sym_BSLASHsvolcite] = ACTIONS(5304), + [anon_sym_BSLASHSvolcite] = ACTIONS(5304), + [anon_sym_BSLASHtvolcite] = ACTIONS(5304), + [anon_sym_BSLASHTvolcite] = ACTIONS(5304), + [anon_sym_BSLASHavolcite] = ACTIONS(5304), + [anon_sym_BSLASHAvolcite] = ACTIONS(5304), + [anon_sym_BSLASHnotecite] = ACTIONS(5304), + [anon_sym_BSLASHNotecite] = ACTIONS(5304), + [anon_sym_BSLASHpnotecite] = ACTIONS(5304), + [anon_sym_BSLASHPnotecite] = ACTIONS(5304), + [anon_sym_BSLASHfnotecite] = ACTIONS(5304), + [anon_sym_BSLASHlabel] = ACTIONS(5304), + [anon_sym_BSLASHref] = ACTIONS(5304), + [anon_sym_BSLASHeqref] = ACTIONS(5304), + [anon_sym_BSLASHvref] = ACTIONS(5304), + [anon_sym_BSLASHVref] = ACTIONS(5304), + [anon_sym_BSLASHautoref] = ACTIONS(5304), + [anon_sym_BSLASHpageref] = ACTIONS(5304), + [anon_sym_BSLASHcref] = ACTIONS(5304), + [anon_sym_BSLASHCref] = ACTIONS(5304), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnameCref] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHlabelcref] = ACTIONS(5304), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCrefrange] = ACTIONS(5304), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnewlabel] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5304), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5304), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5304), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdef] = ACTIONS(5304), + [anon_sym_BSLASHlet] = ACTIONS(5304), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5304), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5304), + [anon_sym_BSLASHgls] = ACTIONS(5304), + [anon_sym_BSLASHGls] = ACTIONS(5304), + [anon_sym_BSLASHGLS] = ACTIONS(5304), + [anon_sym_BSLASHglspl] = ACTIONS(5304), + [anon_sym_BSLASHGlspl] = ACTIONS(5304), + [anon_sym_BSLASHGLSpl] = ACTIONS(5304), + [anon_sym_BSLASHglsdisp] = ACTIONS(5304), + [anon_sym_BSLASHglslink] = ACTIONS(5304), + [anon_sym_BSLASHglstext] = ACTIONS(5304), + [anon_sym_BSLASHGlstext] = ACTIONS(5304), + [anon_sym_BSLASHGLStext] = ACTIONS(5304), + [anon_sym_BSLASHglsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5304), + [anon_sym_BSLASHglsplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSplural] = ACTIONS(5304), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHglsname] = ACTIONS(5304), + [anon_sym_BSLASHGlsname] = ACTIONS(5304), + [anon_sym_BSLASHGLSname] = ACTIONS(5304), + [anon_sym_BSLASHglssymbol] = ACTIONS(5304), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5304), + [anon_sym_BSLASHglsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5304), + [anon_sym_BSLASHglsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5304), + [anon_sym_BSLASHglsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5304), + [anon_sym_BSLASHglsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5304), + [anon_sym_BSLASHglsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5304), + [anon_sym_BSLASHnewacronym] = ACTIONS(5304), + [anon_sym_BSLASHacrshort] = ACTIONS(5304), + [anon_sym_BSLASHAcrshort] = ACTIONS(5304), + [anon_sym_BSLASHACRshort] = ACTIONS(5304), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5304), + [anon_sym_BSLASHacrlong] = ACTIONS(5304), + [anon_sym_BSLASHAcrlong] = ACTIONS(5304), + [anon_sym_BSLASHACRlong] = ACTIONS(5304), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5304), + [anon_sym_BSLASHacrfull] = ACTIONS(5304), + [anon_sym_BSLASHAcrfull] = ACTIONS(5304), + [anon_sym_BSLASHACRfull] = ACTIONS(5304), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5304), + [anon_sym_BSLASHacs] = ACTIONS(5304), + [anon_sym_BSLASHAcs] = ACTIONS(5304), + [anon_sym_BSLASHacsp] = ACTIONS(5304), + [anon_sym_BSLASHAcsp] = ACTIONS(5304), + [anon_sym_BSLASHacl] = ACTIONS(5304), + [anon_sym_BSLASHAcl] = ACTIONS(5304), + [anon_sym_BSLASHaclp] = ACTIONS(5304), + [anon_sym_BSLASHAclp] = ACTIONS(5304), + [anon_sym_BSLASHacf] = ACTIONS(5304), + [anon_sym_BSLASHAcf] = ACTIONS(5304), + [anon_sym_BSLASHacfp] = ACTIONS(5304), + [anon_sym_BSLASHAcfp] = ACTIONS(5304), + [anon_sym_BSLASHac] = ACTIONS(5304), + [anon_sym_BSLASHAc] = ACTIONS(5304), + [anon_sym_BSLASHacp] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5304), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5304), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5304), + [anon_sym_BSLASHcolor] = ACTIONS(5304), + [anon_sym_BSLASHcolorbox] = ACTIONS(5304), + [anon_sym_BSLASHtextcolor] = ACTIONS(5304), + [anon_sym_BSLASHpagecolor] = ACTIONS(5304), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5304), + [anon_sym_BSLASHtext] = ACTIONS(5304), + [anon_sym_BSLASHintertext] = ACTIONS(5304), + [anon_sym_shortintertext] = ACTIONS(5304), }, [789] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5229), - [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), + [ts_builtin_sym_end] = ACTIONS(5306), + [sym_command_name] = ACTIONS(5308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_BSLASHpart] = ACTIONS(5308), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddpart] = ACTIONS(5308), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHchapter] = ACTIONS(5308), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddchap] = ACTIONS(5308), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsection] = ACTIONS(5308), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddsec] = ACTIONS(5308), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHparagraph] = ACTIONS(5308), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5308), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHitem] = ACTIONS(5308), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [anon_sym_RBRACE] = ACTIONS(5306), + [sym_word] = ACTIONS(5308), + [sym_placeholder] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_SQUOTE] = ACTIONS(5308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5308), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5306), + [anon_sym_BSLASHbegin] = ACTIONS(5308), + [anon_sym_BSLASHusepackage] = ACTIONS(5308), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5308), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5308), + [anon_sym_BSLASHinclude] = ACTIONS(5308), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5308), + [anon_sym_BSLASHinput] = ACTIONS(5308), + [anon_sym_BSLASHsubfile] = ACTIONS(5308), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5308), + [anon_sym_BSLASHbibliography] = ACTIONS(5308), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5308), + [anon_sym_BSLASHincludesvg] = ACTIONS(5308), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5308), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5308), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5308), + [anon_sym_BSLASHimport] = ACTIONS(5308), + [anon_sym_BSLASHsubimport] = ACTIONS(5308), + [anon_sym_BSLASHinputfrom] = ACTIONS(5308), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5308), + [anon_sym_BSLASHincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHcaption] = ACTIONS(5308), + [anon_sym_BSLASHcite] = ACTIONS(5308), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCite] = ACTIONS(5308), + [anon_sym_BSLASHnocite] = ACTIONS(5308), + [anon_sym_BSLASHcitet] = ACTIONS(5308), + [anon_sym_BSLASHcitep] = ACTIONS(5308), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteauthor] = ACTIONS(5308), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5308), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitetitle] = ACTIONS(5308), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteyear] = ACTIONS(5308), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitedate] = ACTIONS(5308), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteurl] = ACTIONS(5308), + [anon_sym_BSLASHfullcite] = ACTIONS(5308), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5308), + [anon_sym_BSLASHcitealt] = ACTIONS(5308), + [anon_sym_BSLASHcitealp] = ACTIONS(5308), + [anon_sym_BSLASHcitetext] = ACTIONS(5308), + [anon_sym_BSLASHparencite] = ACTIONS(5308), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHParencite] = ACTIONS(5308), + [anon_sym_BSLASHfootcite] = ACTIONS(5308), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5308), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5308), + [anon_sym_BSLASHtextcite] = ACTIONS(5308), + [anon_sym_BSLASHTextcite] = ACTIONS(5308), + [anon_sym_BSLASHsmartcite] = ACTIONS(5308), + [anon_sym_BSLASHSmartcite] = ACTIONS(5308), + [anon_sym_BSLASHsupercite] = ACTIONS(5308), + [anon_sym_BSLASHautocite] = ACTIONS(5308), + [anon_sym_BSLASHAutocite] = ACTIONS(5308), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHvolcite] = ACTIONS(5308), + [anon_sym_BSLASHVolcite] = ACTIONS(5308), + [anon_sym_BSLASHpvolcite] = ACTIONS(5308), + [anon_sym_BSLASHPvolcite] = ACTIONS(5308), + [anon_sym_BSLASHfvolcite] = ACTIONS(5308), + [anon_sym_BSLASHftvolcite] = ACTIONS(5308), + [anon_sym_BSLASHsvolcite] = ACTIONS(5308), + [anon_sym_BSLASHSvolcite] = ACTIONS(5308), + [anon_sym_BSLASHtvolcite] = ACTIONS(5308), + [anon_sym_BSLASHTvolcite] = ACTIONS(5308), + [anon_sym_BSLASHavolcite] = ACTIONS(5308), + [anon_sym_BSLASHAvolcite] = ACTIONS(5308), + [anon_sym_BSLASHnotecite] = ACTIONS(5308), + [anon_sym_BSLASHNotecite] = ACTIONS(5308), + [anon_sym_BSLASHpnotecite] = ACTIONS(5308), + [anon_sym_BSLASHPnotecite] = ACTIONS(5308), + [anon_sym_BSLASHfnotecite] = ACTIONS(5308), + [anon_sym_BSLASHlabel] = ACTIONS(5308), + [anon_sym_BSLASHref] = ACTIONS(5308), + [anon_sym_BSLASHeqref] = ACTIONS(5308), + [anon_sym_BSLASHvref] = ACTIONS(5308), + [anon_sym_BSLASHVref] = ACTIONS(5308), + [anon_sym_BSLASHautoref] = ACTIONS(5308), + [anon_sym_BSLASHpageref] = ACTIONS(5308), + [anon_sym_BSLASHcref] = ACTIONS(5308), + [anon_sym_BSLASHCref] = ACTIONS(5308), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnameCref] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHlabelcref] = ACTIONS(5308), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCrefrange] = ACTIONS(5308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnewlabel] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5308), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5308), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5308), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdef] = ACTIONS(5308), + [anon_sym_BSLASHlet] = ACTIONS(5308), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5308), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5308), + [anon_sym_BSLASHgls] = ACTIONS(5308), + [anon_sym_BSLASHGls] = ACTIONS(5308), + [anon_sym_BSLASHGLS] = ACTIONS(5308), + [anon_sym_BSLASHglspl] = ACTIONS(5308), + [anon_sym_BSLASHGlspl] = ACTIONS(5308), + [anon_sym_BSLASHGLSpl] = ACTIONS(5308), + [anon_sym_BSLASHglsdisp] = ACTIONS(5308), + [anon_sym_BSLASHglslink] = ACTIONS(5308), + [anon_sym_BSLASHglstext] = ACTIONS(5308), + [anon_sym_BSLASHGlstext] = ACTIONS(5308), + [anon_sym_BSLASHGLStext] = ACTIONS(5308), + [anon_sym_BSLASHglsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5308), + [anon_sym_BSLASHglsplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSplural] = ACTIONS(5308), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHglsname] = ACTIONS(5308), + [anon_sym_BSLASHGlsname] = ACTIONS(5308), + [anon_sym_BSLASHGLSname] = ACTIONS(5308), + [anon_sym_BSLASHglssymbol] = ACTIONS(5308), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5308), + [anon_sym_BSLASHglsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5308), + [anon_sym_BSLASHglsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5308), + [anon_sym_BSLASHglsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5308), + [anon_sym_BSLASHglsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5308), + [anon_sym_BSLASHglsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5308), + [anon_sym_BSLASHnewacronym] = ACTIONS(5308), + [anon_sym_BSLASHacrshort] = ACTIONS(5308), + [anon_sym_BSLASHAcrshort] = ACTIONS(5308), + [anon_sym_BSLASHACRshort] = ACTIONS(5308), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5308), + [anon_sym_BSLASHacrlong] = ACTIONS(5308), + [anon_sym_BSLASHAcrlong] = ACTIONS(5308), + [anon_sym_BSLASHACRlong] = ACTIONS(5308), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5308), + [anon_sym_BSLASHacrfull] = ACTIONS(5308), + [anon_sym_BSLASHAcrfull] = ACTIONS(5308), + [anon_sym_BSLASHACRfull] = ACTIONS(5308), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5308), + [anon_sym_BSLASHacs] = ACTIONS(5308), + [anon_sym_BSLASHAcs] = ACTIONS(5308), + [anon_sym_BSLASHacsp] = ACTIONS(5308), + [anon_sym_BSLASHAcsp] = ACTIONS(5308), + [anon_sym_BSLASHacl] = ACTIONS(5308), + [anon_sym_BSLASHAcl] = ACTIONS(5308), + [anon_sym_BSLASHaclp] = ACTIONS(5308), + [anon_sym_BSLASHAclp] = ACTIONS(5308), + [anon_sym_BSLASHacf] = ACTIONS(5308), + [anon_sym_BSLASHAcf] = ACTIONS(5308), + [anon_sym_BSLASHacfp] = ACTIONS(5308), + [anon_sym_BSLASHAcfp] = ACTIONS(5308), + [anon_sym_BSLASHac] = ACTIONS(5308), + [anon_sym_BSLASHAc] = ACTIONS(5308), + [anon_sym_BSLASHacp] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5308), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5308), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5308), + [anon_sym_BSLASHcolor] = ACTIONS(5308), + [anon_sym_BSLASHcolorbox] = ACTIONS(5308), + [anon_sym_BSLASHtextcolor] = ACTIONS(5308), + [anon_sym_BSLASHpagecolor] = ACTIONS(5308), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5308), + [anon_sym_BSLASHtext] = ACTIONS(5308), + [anon_sym_BSLASHintertext] = ACTIONS(5308), + [anon_sym_shortintertext] = ACTIONS(5308), }, [790] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5233), - [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), + [ts_builtin_sym_end] = ACTIONS(5310), + [sym_command_name] = ACTIONS(5312), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_BSLASHpart] = ACTIONS(5312), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddpart] = ACTIONS(5312), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHchapter] = ACTIONS(5312), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddchap] = ACTIONS(5312), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsection] = ACTIONS(5312), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddsec] = ACTIONS(5312), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHparagraph] = ACTIONS(5312), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5312), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHitem] = ACTIONS(5312), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5312), + [sym_placeholder] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_SQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5310), + [anon_sym_BSLASHbegin] = ACTIONS(5312), + [anon_sym_BSLASHusepackage] = ACTIONS(5312), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5312), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5312), + [anon_sym_BSLASHinclude] = ACTIONS(5312), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5312), + [anon_sym_BSLASHinput] = ACTIONS(5312), + [anon_sym_BSLASHsubfile] = ACTIONS(5312), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5312), + [anon_sym_BSLASHbibliography] = ACTIONS(5312), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5312), + [anon_sym_BSLASHincludesvg] = ACTIONS(5312), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5312), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5312), + [anon_sym_BSLASHimport] = ACTIONS(5312), + [anon_sym_BSLASHsubimport] = ACTIONS(5312), + [anon_sym_BSLASHinputfrom] = ACTIONS(5312), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5312), + [anon_sym_BSLASHincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHcaption] = ACTIONS(5312), + [anon_sym_BSLASHcite] = ACTIONS(5312), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCite] = ACTIONS(5312), + [anon_sym_BSLASHnocite] = ACTIONS(5312), + [anon_sym_BSLASHcitet] = ACTIONS(5312), + [anon_sym_BSLASHcitep] = ACTIONS(5312), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteauthor] = ACTIONS(5312), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5312), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitetitle] = ACTIONS(5312), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteyear] = ACTIONS(5312), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitedate] = ACTIONS(5312), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteurl] = ACTIONS(5312), + [anon_sym_BSLASHfullcite] = ACTIONS(5312), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5312), + [anon_sym_BSLASHcitealt] = ACTIONS(5312), + [anon_sym_BSLASHcitealp] = ACTIONS(5312), + [anon_sym_BSLASHcitetext] = ACTIONS(5312), + [anon_sym_BSLASHparencite] = ACTIONS(5312), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHParencite] = ACTIONS(5312), + [anon_sym_BSLASHfootcite] = ACTIONS(5312), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5312), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5312), + [anon_sym_BSLASHtextcite] = ACTIONS(5312), + [anon_sym_BSLASHTextcite] = ACTIONS(5312), + [anon_sym_BSLASHsmartcite] = ACTIONS(5312), + [anon_sym_BSLASHSmartcite] = ACTIONS(5312), + [anon_sym_BSLASHsupercite] = ACTIONS(5312), + [anon_sym_BSLASHautocite] = ACTIONS(5312), + [anon_sym_BSLASHAutocite] = ACTIONS(5312), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHvolcite] = ACTIONS(5312), + [anon_sym_BSLASHVolcite] = ACTIONS(5312), + [anon_sym_BSLASHpvolcite] = ACTIONS(5312), + [anon_sym_BSLASHPvolcite] = ACTIONS(5312), + [anon_sym_BSLASHfvolcite] = ACTIONS(5312), + [anon_sym_BSLASHftvolcite] = ACTIONS(5312), + [anon_sym_BSLASHsvolcite] = ACTIONS(5312), + [anon_sym_BSLASHSvolcite] = ACTIONS(5312), + [anon_sym_BSLASHtvolcite] = ACTIONS(5312), + [anon_sym_BSLASHTvolcite] = ACTIONS(5312), + [anon_sym_BSLASHavolcite] = ACTIONS(5312), + [anon_sym_BSLASHAvolcite] = ACTIONS(5312), + [anon_sym_BSLASHnotecite] = ACTIONS(5312), + [anon_sym_BSLASHNotecite] = ACTIONS(5312), + [anon_sym_BSLASHpnotecite] = ACTIONS(5312), + [anon_sym_BSLASHPnotecite] = ACTIONS(5312), + [anon_sym_BSLASHfnotecite] = ACTIONS(5312), + [anon_sym_BSLASHlabel] = ACTIONS(5312), + [anon_sym_BSLASHref] = ACTIONS(5312), + [anon_sym_BSLASHeqref] = ACTIONS(5312), + [anon_sym_BSLASHvref] = ACTIONS(5312), + [anon_sym_BSLASHVref] = ACTIONS(5312), + [anon_sym_BSLASHautoref] = ACTIONS(5312), + [anon_sym_BSLASHpageref] = ACTIONS(5312), + [anon_sym_BSLASHcref] = ACTIONS(5312), + [anon_sym_BSLASHCref] = ACTIONS(5312), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnameCref] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHlabelcref] = ACTIONS(5312), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCrefrange] = ACTIONS(5312), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnewlabel] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5312), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5312), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5312), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdef] = ACTIONS(5312), + [anon_sym_BSLASHlet] = ACTIONS(5312), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5312), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5312), + [anon_sym_BSLASHgls] = ACTIONS(5312), + [anon_sym_BSLASHGls] = ACTIONS(5312), + [anon_sym_BSLASHGLS] = ACTIONS(5312), + [anon_sym_BSLASHglspl] = ACTIONS(5312), + [anon_sym_BSLASHGlspl] = ACTIONS(5312), + [anon_sym_BSLASHGLSpl] = ACTIONS(5312), + [anon_sym_BSLASHglsdisp] = ACTIONS(5312), + [anon_sym_BSLASHglslink] = ACTIONS(5312), + [anon_sym_BSLASHglstext] = ACTIONS(5312), + [anon_sym_BSLASHGlstext] = ACTIONS(5312), + [anon_sym_BSLASHGLStext] = ACTIONS(5312), + [anon_sym_BSLASHglsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5312), + [anon_sym_BSLASHglsplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSplural] = ACTIONS(5312), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHglsname] = ACTIONS(5312), + [anon_sym_BSLASHGlsname] = ACTIONS(5312), + [anon_sym_BSLASHGLSname] = ACTIONS(5312), + [anon_sym_BSLASHglssymbol] = ACTIONS(5312), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5312), + [anon_sym_BSLASHglsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5312), + [anon_sym_BSLASHglsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5312), + [anon_sym_BSLASHglsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5312), + [anon_sym_BSLASHglsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5312), + [anon_sym_BSLASHglsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5312), + [anon_sym_BSLASHnewacronym] = ACTIONS(5312), + [anon_sym_BSLASHacrshort] = ACTIONS(5312), + [anon_sym_BSLASHAcrshort] = ACTIONS(5312), + [anon_sym_BSLASHACRshort] = ACTIONS(5312), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5312), + [anon_sym_BSLASHacrlong] = ACTIONS(5312), + [anon_sym_BSLASHAcrlong] = ACTIONS(5312), + [anon_sym_BSLASHACRlong] = ACTIONS(5312), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5312), + [anon_sym_BSLASHacrfull] = ACTIONS(5312), + [anon_sym_BSLASHAcrfull] = ACTIONS(5312), + [anon_sym_BSLASHACRfull] = ACTIONS(5312), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5312), + [anon_sym_BSLASHacs] = ACTIONS(5312), + [anon_sym_BSLASHAcs] = ACTIONS(5312), + [anon_sym_BSLASHacsp] = ACTIONS(5312), + [anon_sym_BSLASHAcsp] = ACTIONS(5312), + [anon_sym_BSLASHacl] = ACTIONS(5312), + [anon_sym_BSLASHAcl] = ACTIONS(5312), + [anon_sym_BSLASHaclp] = ACTIONS(5312), + [anon_sym_BSLASHAclp] = ACTIONS(5312), + [anon_sym_BSLASHacf] = ACTIONS(5312), + [anon_sym_BSLASHAcf] = ACTIONS(5312), + [anon_sym_BSLASHacfp] = ACTIONS(5312), + [anon_sym_BSLASHAcfp] = ACTIONS(5312), + [anon_sym_BSLASHac] = ACTIONS(5312), + [anon_sym_BSLASHAc] = ACTIONS(5312), + [anon_sym_BSLASHacp] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5312), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5312), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5312), + [anon_sym_BSLASHcolor] = ACTIONS(5312), + [anon_sym_BSLASHcolorbox] = ACTIONS(5312), + [anon_sym_BSLASHtextcolor] = ACTIONS(5312), + [anon_sym_BSLASHpagecolor] = ACTIONS(5312), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5312), + [anon_sym_BSLASHtext] = ACTIONS(5312), + [anon_sym_BSLASHintertext] = ACTIONS(5312), + [anon_sym_shortintertext] = ACTIONS(5312), }, [791] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [ts_builtin_sym_end] = ACTIONS(5314), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_BSLASHpart] = ACTIONS(5316), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddpart] = ACTIONS(5316), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHchapter] = ACTIONS(5316), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddchap] = ACTIONS(5316), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsection] = ACTIONS(5316), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddsec] = ACTIONS(5316), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHparagraph] = ACTIONS(5316), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5316), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHitem] = ACTIONS(5316), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASHbegin] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [792] = { [sym_curly_group] = STATE(960), - [sym_command_name] = ACTIONS(4845), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4843), - [anon_sym_BSLASHpart] = ACTIONS(4845), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddpart] = ACTIONS(4845), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), - [anon_sym_BSLASHchapter] = ACTIONS(4845), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddchap] = ACTIONS(4845), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsection] = ACTIONS(4845), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHaddsec] = ACTIONS(4845), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), - [anon_sym_BSLASHparagraph] = ACTIONS(4845), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), - [anon_sym_BSLASHitem] = ACTIONS(4845), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4845), - [sym_placeholder] = ACTIONS(4843), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4845), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_CARET] = ACTIONS(4845), - [anon_sym__] = ACTIONS(4845), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_SQUOTE] = ACTIONS(4845), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4843), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), - [anon_sym_BSLASHbegin] = ACTIONS(4845), - [anon_sym_BSLASHusepackage] = ACTIONS(4845), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), - [anon_sym_BSLASHinclude] = ACTIONS(4845), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), - [anon_sym_BSLASHinput] = ACTIONS(4845), - [anon_sym_BSLASHsubfile] = ACTIONS(4845), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), - [anon_sym_BSLASHbibliography] = ACTIONS(4845), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), - [anon_sym_BSLASHincludesvg] = ACTIONS(4845), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), - [anon_sym_BSLASHimport] = ACTIONS(4845), - [anon_sym_BSLASHsubimport] = ACTIONS(4845), - [anon_sym_BSLASHinputfrom] = ACTIONS(4845), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), - [anon_sym_BSLASHincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), - [anon_sym_BSLASHcaption] = ACTIONS(4845), - [anon_sym_BSLASHcite] = ACTIONS(4845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCite] = ACTIONS(4845), - [anon_sym_BSLASHnocite] = ACTIONS(4845), - [anon_sym_BSLASHcitet] = ACTIONS(4845), - [anon_sym_BSLASHcitep] = ACTIONS(4845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteauthor] = ACTIONS(4845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitetitle] = ACTIONS(4845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteyear] = ACTIONS(4845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), - [anon_sym_BSLASHcitedate] = ACTIONS(4845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), - [anon_sym_BSLASHciteurl] = ACTIONS(4845), - [anon_sym_BSLASHfullcite] = ACTIONS(4845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), - [anon_sym_BSLASHcitealt] = ACTIONS(4845), - [anon_sym_BSLASHcitealp] = ACTIONS(4845), - [anon_sym_BSLASHcitetext] = ACTIONS(4845), - [anon_sym_BSLASHparencite] = ACTIONS(4845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHParencite] = ACTIONS(4845), - [anon_sym_BSLASHfootcite] = ACTIONS(4845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), - [anon_sym_BSLASHtextcite] = ACTIONS(4845), - [anon_sym_BSLASHTextcite] = ACTIONS(4845), - [anon_sym_BSLASHsmartcite] = ACTIONS(4845), - [anon_sym_BSLASHSmartcite] = ACTIONS(4845), - [anon_sym_BSLASHsupercite] = ACTIONS(4845), - [anon_sym_BSLASHautocite] = ACTIONS(4845), - [anon_sym_BSLASHAutocite] = ACTIONS(4845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), - [anon_sym_BSLASHvolcite] = ACTIONS(4845), - [anon_sym_BSLASHVolcite] = ACTIONS(4845), - [anon_sym_BSLASHpvolcite] = ACTIONS(4845), - [anon_sym_BSLASHPvolcite] = ACTIONS(4845), - [anon_sym_BSLASHfvolcite] = ACTIONS(4845), - [anon_sym_BSLASHftvolcite] = ACTIONS(4845), - [anon_sym_BSLASHsvolcite] = ACTIONS(4845), - [anon_sym_BSLASHSvolcite] = ACTIONS(4845), - [anon_sym_BSLASHtvolcite] = ACTIONS(4845), - [anon_sym_BSLASHTvolcite] = ACTIONS(4845), - [anon_sym_BSLASHavolcite] = ACTIONS(4845), - [anon_sym_BSLASHAvolcite] = ACTIONS(4845), - [anon_sym_BSLASHnotecite] = ACTIONS(4845), - [anon_sym_BSLASHNotecite] = ACTIONS(4845), - [anon_sym_BSLASHpnotecite] = ACTIONS(4845), - [anon_sym_BSLASHPnotecite] = ACTIONS(4845), - [anon_sym_BSLASHfnotecite] = ACTIONS(4845), - [anon_sym_BSLASHlabel] = ACTIONS(4845), - [anon_sym_BSLASHref] = ACTIONS(4845), - [anon_sym_BSLASHeqref] = ACTIONS(4845), - [anon_sym_BSLASHvref] = ACTIONS(4845), - [anon_sym_BSLASHVref] = ACTIONS(4845), - [anon_sym_BSLASHautoref] = ACTIONS(4845), - [anon_sym_BSLASHpageref] = ACTIONS(4845), - [anon_sym_BSLASHcref] = ACTIONS(4845), - [anon_sym_BSLASHCref] = ACTIONS(4845), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnameCref] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), - [anon_sym_BSLASHlabelcref] = ACTIONS(4845), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange] = ACTIONS(4845), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHCrefrange] = ACTIONS(4845), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), - [anon_sym_BSLASHnewlabel] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand] = ACTIONS(4845), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), - [anon_sym_BSLASHdef] = ACTIONS(4845), - [anon_sym_BSLASHlet] = ACTIONS(4845), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), - [anon_sym_BSLASHgls] = ACTIONS(4845), - [anon_sym_BSLASHGls] = ACTIONS(4845), - [anon_sym_BSLASHGLS] = ACTIONS(4845), - [anon_sym_BSLASHglspl] = ACTIONS(4845), - [anon_sym_BSLASHGlspl] = ACTIONS(4845), - [anon_sym_BSLASHGLSpl] = ACTIONS(4845), - [anon_sym_BSLASHglsdisp] = ACTIONS(4845), - [anon_sym_BSLASHglslink] = ACTIONS(4845), - [anon_sym_BSLASHglstext] = ACTIONS(4845), - [anon_sym_BSLASHGlstext] = ACTIONS(4845), - [anon_sym_BSLASHGLStext] = ACTIONS(4845), - [anon_sym_BSLASHglsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), - [anon_sym_BSLASHglsplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSplural] = ACTIONS(4845), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), - [anon_sym_BSLASHglsname] = ACTIONS(4845), - [anon_sym_BSLASHGlsname] = ACTIONS(4845), - [anon_sym_BSLASHGLSname] = ACTIONS(4845), - [anon_sym_BSLASHglssymbol] = ACTIONS(4845), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), - [anon_sym_BSLASHglsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), - [anon_sym_BSLASHglsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), - [anon_sym_BSLASHglsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), - [anon_sym_BSLASHglsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), - [anon_sym_BSLASHglsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), - [anon_sym_BSLASHnewacronym] = ACTIONS(4845), - [anon_sym_BSLASHacrshort] = ACTIONS(4845), - [anon_sym_BSLASHAcrshort] = ACTIONS(4845), - [anon_sym_BSLASHACRshort] = ACTIONS(4845), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), - [anon_sym_BSLASHacrlong] = ACTIONS(4845), - [anon_sym_BSLASHAcrlong] = ACTIONS(4845), - [anon_sym_BSLASHACRlong] = ACTIONS(4845), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), - [anon_sym_BSLASHacrfull] = ACTIONS(4845), - [anon_sym_BSLASHAcrfull] = ACTIONS(4845), - [anon_sym_BSLASHACRfull] = ACTIONS(4845), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), - [anon_sym_BSLASHacs] = ACTIONS(4845), - [anon_sym_BSLASHAcs] = ACTIONS(4845), - [anon_sym_BSLASHacsp] = ACTIONS(4845), - [anon_sym_BSLASHAcsp] = ACTIONS(4845), - [anon_sym_BSLASHacl] = ACTIONS(4845), - [anon_sym_BSLASHAcl] = ACTIONS(4845), - [anon_sym_BSLASHaclp] = ACTIONS(4845), - [anon_sym_BSLASHAclp] = ACTIONS(4845), - [anon_sym_BSLASHacf] = ACTIONS(4845), - [anon_sym_BSLASHAcf] = ACTIONS(4845), - [anon_sym_BSLASHacfp] = ACTIONS(4845), - [anon_sym_BSLASHAcfp] = ACTIONS(4845), - [anon_sym_BSLASHac] = ACTIONS(4845), - [anon_sym_BSLASHAc] = ACTIONS(4845), - [anon_sym_BSLASHacp] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), - [anon_sym_BSLASHcolor] = ACTIONS(4845), - [anon_sym_BSLASHcolorbox] = ACTIONS(4845), - [anon_sym_BSLASHtextcolor] = ACTIONS(4845), - [anon_sym_BSLASHpagecolor] = ACTIONS(4845), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), - [anon_sym_BSLASHtext] = ACTIONS(4845), - [anon_sym_BSLASHintertext] = ACTIONS(4845), - [anon_sym_shortintertext] = ACTIONS(4845), + [sym_command_name] = ACTIONS(4924), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_BSLASHpart] = ACTIONS(4924), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddpart] = ACTIONS(4924), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4922), + [anon_sym_BSLASHchapter] = ACTIONS(4924), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddchap] = ACTIONS(4924), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsection] = ACTIONS(4924), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHaddsec] = ACTIONS(4924), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4924), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4922), + [anon_sym_BSLASHparagraph] = ACTIONS(4924), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4924), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4922), + [anon_sym_BSLASHitem] = ACTIONS(4924), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4924), + [sym_placeholder] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym__] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4924), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4922), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4922), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4922), + [anon_sym_BSLASHbegin] = ACTIONS(4924), + [anon_sym_BSLASHusepackage] = ACTIONS(4924), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4924), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4924), + [anon_sym_BSLASHinclude] = ACTIONS(4924), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4924), + [anon_sym_BSLASHinput] = ACTIONS(4924), + [anon_sym_BSLASHsubfile] = ACTIONS(4924), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4924), + [anon_sym_BSLASHbibliography] = ACTIONS(4924), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4924), + [anon_sym_BSLASHincludesvg] = ACTIONS(4924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4924), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4924), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4924), + [anon_sym_BSLASHimport] = ACTIONS(4924), + [anon_sym_BSLASHsubimport] = ACTIONS(4924), + [anon_sym_BSLASHinputfrom] = ACTIONS(4924), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4924), + [anon_sym_BSLASHincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4924), + [anon_sym_BSLASHcaption] = ACTIONS(4924), + [anon_sym_BSLASHcite] = ACTIONS(4924), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCite] = ACTIONS(4924), + [anon_sym_BSLASHnocite] = ACTIONS(4924), + [anon_sym_BSLASHcitet] = ACTIONS(4924), + [anon_sym_BSLASHcitep] = ACTIONS(4924), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteauthor] = ACTIONS(4924), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4924), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitetitle] = ACTIONS(4924), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteyear] = ACTIONS(4924), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4922), + [anon_sym_BSLASHcitedate] = ACTIONS(4924), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4922), + [anon_sym_BSLASHciteurl] = ACTIONS(4924), + [anon_sym_BSLASHfullcite] = ACTIONS(4924), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4924), + [anon_sym_BSLASHcitealt] = ACTIONS(4924), + [anon_sym_BSLASHcitealp] = ACTIONS(4924), + [anon_sym_BSLASHcitetext] = ACTIONS(4924), + [anon_sym_BSLASHparencite] = ACTIONS(4924), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHParencite] = ACTIONS(4924), + [anon_sym_BSLASHfootcite] = ACTIONS(4924), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4924), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4924), + [anon_sym_BSLASHtextcite] = ACTIONS(4924), + [anon_sym_BSLASHTextcite] = ACTIONS(4924), + [anon_sym_BSLASHsmartcite] = ACTIONS(4924), + [anon_sym_BSLASHSmartcite] = ACTIONS(4924), + [anon_sym_BSLASHsupercite] = ACTIONS(4924), + [anon_sym_BSLASHautocite] = ACTIONS(4924), + [anon_sym_BSLASHAutocite] = ACTIONS(4924), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4922), + [anon_sym_BSLASHvolcite] = ACTIONS(4924), + [anon_sym_BSLASHVolcite] = ACTIONS(4924), + [anon_sym_BSLASHpvolcite] = ACTIONS(4924), + [anon_sym_BSLASHPvolcite] = ACTIONS(4924), + [anon_sym_BSLASHfvolcite] = ACTIONS(4924), + [anon_sym_BSLASHftvolcite] = ACTIONS(4924), + [anon_sym_BSLASHsvolcite] = ACTIONS(4924), + [anon_sym_BSLASHSvolcite] = ACTIONS(4924), + [anon_sym_BSLASHtvolcite] = ACTIONS(4924), + [anon_sym_BSLASHTvolcite] = ACTIONS(4924), + [anon_sym_BSLASHavolcite] = ACTIONS(4924), + [anon_sym_BSLASHAvolcite] = ACTIONS(4924), + [anon_sym_BSLASHnotecite] = ACTIONS(4924), + [anon_sym_BSLASHNotecite] = ACTIONS(4924), + [anon_sym_BSLASHpnotecite] = ACTIONS(4924), + [anon_sym_BSLASHPnotecite] = ACTIONS(4924), + [anon_sym_BSLASHfnotecite] = ACTIONS(4924), + [anon_sym_BSLASHlabel] = ACTIONS(4924), + [anon_sym_BSLASHref] = ACTIONS(4924), + [anon_sym_BSLASHeqref] = ACTIONS(4924), + [anon_sym_BSLASHvref] = ACTIONS(4924), + [anon_sym_BSLASHVref] = ACTIONS(4924), + [anon_sym_BSLASHautoref] = ACTIONS(4924), + [anon_sym_BSLASHpageref] = ACTIONS(4924), + [anon_sym_BSLASHcref] = ACTIONS(4924), + [anon_sym_BSLASHCref] = ACTIONS(4924), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnameCref] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4924), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4924), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4924), + [anon_sym_BSLASHlabelcref] = ACTIONS(4924), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange] = ACTIONS(4924), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHCrefrange] = ACTIONS(4924), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4922), + [anon_sym_BSLASHnewlabel] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand] = ACTIONS(4924), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4924), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4924), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4922), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4924), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdef] = ACTIONS(4924), + [anon_sym_BSLASHlet] = ACTIONS(4924), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4924), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4924), + [anon_sym_BSLASHgls] = ACTIONS(4924), + [anon_sym_BSLASHGls] = ACTIONS(4924), + [anon_sym_BSLASHGLS] = ACTIONS(4924), + [anon_sym_BSLASHglspl] = ACTIONS(4924), + [anon_sym_BSLASHGlspl] = ACTIONS(4924), + [anon_sym_BSLASHGLSpl] = ACTIONS(4924), + [anon_sym_BSLASHglsdisp] = ACTIONS(4924), + [anon_sym_BSLASHglslink] = ACTIONS(4924), + [anon_sym_BSLASHglstext] = ACTIONS(4924), + [anon_sym_BSLASHGlstext] = ACTIONS(4924), + [anon_sym_BSLASHGLStext] = ACTIONS(4924), + [anon_sym_BSLASHglsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4924), + [anon_sym_BSLASHglsplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSplural] = ACTIONS(4924), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4924), + [anon_sym_BSLASHglsname] = ACTIONS(4924), + [anon_sym_BSLASHGlsname] = ACTIONS(4924), + [anon_sym_BSLASHGLSname] = ACTIONS(4924), + [anon_sym_BSLASHglssymbol] = ACTIONS(4924), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4924), + [anon_sym_BSLASHglsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4924), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4924), + [anon_sym_BSLASHglsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4924), + [anon_sym_BSLASHglsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4924), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4924), + [anon_sym_BSLASHglsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4924), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4924), + [anon_sym_BSLASHglsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4924), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4924), + [anon_sym_BSLASHnewacronym] = ACTIONS(4924), + [anon_sym_BSLASHacrshort] = ACTIONS(4924), + [anon_sym_BSLASHAcrshort] = ACTIONS(4924), + [anon_sym_BSLASHACRshort] = ACTIONS(4924), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4924), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4924), + [anon_sym_BSLASHacrlong] = ACTIONS(4924), + [anon_sym_BSLASHAcrlong] = ACTIONS(4924), + [anon_sym_BSLASHACRlong] = ACTIONS(4924), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4924), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4924), + [anon_sym_BSLASHacrfull] = ACTIONS(4924), + [anon_sym_BSLASHAcrfull] = ACTIONS(4924), + [anon_sym_BSLASHACRfull] = ACTIONS(4924), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4924), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4924), + [anon_sym_BSLASHacs] = ACTIONS(4924), + [anon_sym_BSLASHAcs] = ACTIONS(4924), + [anon_sym_BSLASHacsp] = ACTIONS(4924), + [anon_sym_BSLASHAcsp] = ACTIONS(4924), + [anon_sym_BSLASHacl] = ACTIONS(4924), + [anon_sym_BSLASHAcl] = ACTIONS(4924), + [anon_sym_BSLASHaclp] = ACTIONS(4924), + [anon_sym_BSLASHAclp] = ACTIONS(4924), + [anon_sym_BSLASHacf] = ACTIONS(4924), + [anon_sym_BSLASHAcf] = ACTIONS(4924), + [anon_sym_BSLASHacfp] = ACTIONS(4924), + [anon_sym_BSLASHAcfp] = ACTIONS(4924), + [anon_sym_BSLASHac] = ACTIONS(4924), + [anon_sym_BSLASHAc] = ACTIONS(4924), + [anon_sym_BSLASHacp] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4924), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4924), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4924), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4922), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4924), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4924), + [anon_sym_BSLASHcolor] = ACTIONS(4924), + [anon_sym_BSLASHcolorbox] = ACTIONS(4924), + [anon_sym_BSLASHtextcolor] = ACTIONS(4924), + [anon_sym_BSLASHpagecolor] = ACTIONS(4924), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4924), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4924), + [anon_sym_BSLASHtext] = ACTIONS(4924), + [anon_sym_BSLASHintertext] = ACTIONS(4924), + [anon_sym_shortintertext] = ACTIONS(4924), }, [793] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [ts_builtin_sym_end] = ACTIONS(5318), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_BSLASHpart] = ACTIONS(5320), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddpart] = ACTIONS(5320), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHchapter] = ACTIONS(5320), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddchap] = ACTIONS(5320), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsection] = ACTIONS(5320), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddsec] = ACTIONS(5320), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHparagraph] = ACTIONS(5320), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5320), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHitem] = ACTIONS(5320), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASHbegin] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [794] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [ts_builtin_sym_end] = ACTIONS(5322), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_BSLASHpart] = ACTIONS(5324), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddpart] = ACTIONS(5324), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHchapter] = ACTIONS(5324), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddchap] = ACTIONS(5324), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsection] = ACTIONS(5324), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddsec] = ACTIONS(5324), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHparagraph] = ACTIONS(5324), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5324), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHitem] = ACTIONS(5324), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASHbegin] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [795] = { - [ts_builtin_sym_end] = ACTIONS(5247), - [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(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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [ts_builtin_sym_end] = ACTIONS(5326), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_BSLASHpart] = ACTIONS(5328), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddpart] = ACTIONS(5328), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHchapter] = ACTIONS(5328), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddchap] = ACTIONS(5328), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsection] = ACTIONS(5328), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddsec] = ACTIONS(5328), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHparagraph] = ACTIONS(5328), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5328), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHitem] = ACTIONS(5328), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASHbegin] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [796] = { - [ts_builtin_sym_end] = ACTIONS(5251), - [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), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [ts_builtin_sym_end] = ACTIONS(5330), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_BSLASHpart] = ACTIONS(5332), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddpart] = ACTIONS(5332), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHchapter] = ACTIONS(5332), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddchap] = ACTIONS(5332), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsection] = ACTIONS(5332), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddsec] = ACTIONS(5332), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHparagraph] = ACTIONS(5332), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5332), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHitem] = ACTIONS(5332), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_RBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASHbegin] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [797] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [ts_builtin_sym_end] = ACTIONS(5334), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_BSLASHpart] = ACTIONS(5336), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddpart] = ACTIONS(5336), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHchapter] = ACTIONS(5336), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddchap] = ACTIONS(5336), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsection] = ACTIONS(5336), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddsec] = ACTIONS(5336), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHparagraph] = ACTIONS(5336), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5336), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHitem] = ACTIONS(5336), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [anon_sym_RBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASHbegin] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [798] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [ts_builtin_sym_end] = ACTIONS(5338), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_BSLASHpart] = ACTIONS(5340), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddpart] = ACTIONS(5340), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHchapter] = ACTIONS(5340), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddchap] = ACTIONS(5340), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsection] = ACTIONS(5340), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddsec] = ACTIONS(5340), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHparagraph] = ACTIONS(5340), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5340), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHitem] = ACTIONS(5340), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_RBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASHbegin] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [799] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [ts_builtin_sym_end] = ACTIONS(5342), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_BSLASHpart] = ACTIONS(5344), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddpart] = ACTIONS(5344), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHchapter] = ACTIONS(5344), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddchap] = ACTIONS(5344), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsection] = ACTIONS(5344), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddsec] = ACTIONS(5344), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHparagraph] = ACTIONS(5344), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5344), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHitem] = ACTIONS(5344), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [anon_sym_RBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASHbegin] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [800] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [ts_builtin_sym_end] = ACTIONS(5346), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_BSLASHpart] = ACTIONS(5348), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddpart] = ACTIONS(5348), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHchapter] = ACTIONS(5348), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddchap] = ACTIONS(5348), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsection] = ACTIONS(5348), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddsec] = ACTIONS(5348), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHparagraph] = ACTIONS(5348), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5348), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHitem] = ACTIONS(5348), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [anon_sym_RBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASHbegin] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [801] = { - [ts_builtin_sym_end] = ACTIONS(5271), - [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), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [ts_builtin_sym_end] = ACTIONS(5350), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_BSLASHpart] = ACTIONS(5352), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddpart] = ACTIONS(5352), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHchapter] = ACTIONS(5352), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddchap] = ACTIONS(5352), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsection] = ACTIONS(5352), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddsec] = ACTIONS(5352), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHparagraph] = ACTIONS(5352), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5352), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHitem] = ACTIONS(5352), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASHbegin] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [802] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [ts_builtin_sym_end] = ACTIONS(5354), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_BSLASHpart] = ACTIONS(5356), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddpart] = ACTIONS(5356), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHchapter] = ACTIONS(5356), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddchap] = ACTIONS(5356), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsection] = ACTIONS(5356), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddsec] = ACTIONS(5356), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHparagraph] = ACTIONS(5356), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5356), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHitem] = ACTIONS(5356), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASHbegin] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [803] = { - [ts_builtin_sym_end] = ACTIONS(5279), - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_BSLASHpart] = ACTIONS(5281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddpart] = ACTIONS(5281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHchapter] = ACTIONS(5281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddchap] = ACTIONS(5281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsection] = ACTIONS(5281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddsec] = ACTIONS(5281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHparagraph] = ACTIONS(5281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHitem] = ACTIONS(5281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [anon_sym_RBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASHbegin] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [ts_builtin_sym_end] = ACTIONS(5358), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_BSLASHpart] = ACTIONS(5360), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddpart] = ACTIONS(5360), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHchapter] = ACTIONS(5360), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddchap] = ACTIONS(5360), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsection] = ACTIONS(5360), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddsec] = ACTIONS(5360), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHparagraph] = ACTIONS(5360), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5360), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHitem] = ACTIONS(5360), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_RBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASHbegin] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [804] = { [sym_curly_group] = STATE(959), - [sym_command_name] = ACTIONS(4849), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_BSLASHpart] = ACTIONS(4849), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddpart] = ACTIONS(4849), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHchapter] = ACTIONS(4849), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddchap] = ACTIONS(4849), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsection] = ACTIONS(4849), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddsec] = ACTIONS(4849), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHparagraph] = ACTIONS(4849), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHitem] = ACTIONS(4849), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(559), - [sym_word] = ACTIONS(4849), - [sym_placeholder] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4849), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4849), - [anon_sym__] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4849), - [anon_sym_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), - [anon_sym_DOLLAR] = ACTIONS(4849), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), - [anon_sym_BSLASHbegin] = ACTIONS(4849), - [anon_sym_BSLASHusepackage] = ACTIONS(4849), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), - [anon_sym_BSLASHinclude] = ACTIONS(4849), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), - [anon_sym_BSLASHinput] = ACTIONS(4849), - [anon_sym_BSLASHsubfile] = ACTIONS(4849), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), - [anon_sym_BSLASHbibliography] = ACTIONS(4849), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4849), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), - [anon_sym_BSLASHimport] = ACTIONS(4849), - [anon_sym_BSLASHsubimport] = ACTIONS(4849), - [anon_sym_BSLASHinputfrom] = ACTIONS(4849), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), - [anon_sym_BSLASHincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHcaption] = ACTIONS(4849), - [anon_sym_BSLASHcite] = ACTIONS(4849), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCite] = ACTIONS(4849), - [anon_sym_BSLASHnocite] = ACTIONS(4849), - [anon_sym_BSLASHcitet] = ACTIONS(4849), - [anon_sym_BSLASHcitep] = ACTIONS(4849), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteauthor] = ACTIONS(4849), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitetitle] = ACTIONS(4849), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteyear] = ACTIONS(4849), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitedate] = ACTIONS(4849), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteurl] = ACTIONS(4849), - [anon_sym_BSLASHfullcite] = ACTIONS(4849), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), - [anon_sym_BSLASHcitealt] = ACTIONS(4849), - [anon_sym_BSLASHcitealp] = ACTIONS(4849), - [anon_sym_BSLASHcitetext] = ACTIONS(4849), - [anon_sym_BSLASHparencite] = ACTIONS(4849), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHParencite] = ACTIONS(4849), - [anon_sym_BSLASHfootcite] = ACTIONS(4849), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), - [anon_sym_BSLASHtextcite] = ACTIONS(4849), - [anon_sym_BSLASHTextcite] = ACTIONS(4849), - [anon_sym_BSLASHsmartcite] = ACTIONS(4849), - [anon_sym_BSLASHSmartcite] = ACTIONS(4849), - [anon_sym_BSLASHsupercite] = ACTIONS(4849), - [anon_sym_BSLASHautocite] = ACTIONS(4849), - [anon_sym_BSLASHAutocite] = ACTIONS(4849), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHvolcite] = ACTIONS(4849), - [anon_sym_BSLASHVolcite] = ACTIONS(4849), - [anon_sym_BSLASHpvolcite] = ACTIONS(4849), - [anon_sym_BSLASHPvolcite] = ACTIONS(4849), - [anon_sym_BSLASHfvolcite] = ACTIONS(4849), - [anon_sym_BSLASHftvolcite] = ACTIONS(4849), - [anon_sym_BSLASHsvolcite] = ACTIONS(4849), - [anon_sym_BSLASHSvolcite] = ACTIONS(4849), - [anon_sym_BSLASHtvolcite] = ACTIONS(4849), - [anon_sym_BSLASHTvolcite] = ACTIONS(4849), - [anon_sym_BSLASHavolcite] = ACTIONS(4849), - [anon_sym_BSLASHAvolcite] = ACTIONS(4849), - [anon_sym_BSLASHnotecite] = ACTIONS(4849), - [anon_sym_BSLASHNotecite] = ACTIONS(4849), - [anon_sym_BSLASHpnotecite] = ACTIONS(4849), - [anon_sym_BSLASHPnotecite] = ACTIONS(4849), - [anon_sym_BSLASHfnotecite] = ACTIONS(4849), - [anon_sym_BSLASHlabel] = ACTIONS(4849), - [anon_sym_BSLASHref] = ACTIONS(4849), - [anon_sym_BSLASHeqref] = ACTIONS(4849), - [anon_sym_BSLASHvref] = ACTIONS(4849), - [anon_sym_BSLASHVref] = ACTIONS(4849), - [anon_sym_BSLASHautoref] = ACTIONS(4849), - [anon_sym_BSLASHpageref] = ACTIONS(4849), - [anon_sym_BSLASHcref] = ACTIONS(4849), - [anon_sym_BSLASHCref] = ACTIONS(4849), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnameCref] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHlabelcref] = ACTIONS(4849), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCrefrange] = ACTIONS(4849), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnewlabel] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), - [anon_sym_BSLASHdef] = ACTIONS(4849), - [anon_sym_BSLASHlet] = ACTIONS(4849), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), - [anon_sym_BSLASHgls] = ACTIONS(4849), - [anon_sym_BSLASHGls] = ACTIONS(4849), - [anon_sym_BSLASHGLS] = ACTIONS(4849), - [anon_sym_BSLASHglspl] = ACTIONS(4849), - [anon_sym_BSLASHGlspl] = ACTIONS(4849), - [anon_sym_BSLASHGLSpl] = ACTIONS(4849), - [anon_sym_BSLASHglsdisp] = ACTIONS(4849), - [anon_sym_BSLASHglslink] = ACTIONS(4849), - [anon_sym_BSLASHglstext] = ACTIONS(4849), - [anon_sym_BSLASHGlstext] = ACTIONS(4849), - [anon_sym_BSLASHGLStext] = ACTIONS(4849), - [anon_sym_BSLASHglsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), - [anon_sym_BSLASHglsplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSplural] = ACTIONS(4849), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHglsname] = ACTIONS(4849), - [anon_sym_BSLASHGlsname] = ACTIONS(4849), - [anon_sym_BSLASHGLSname] = ACTIONS(4849), - [anon_sym_BSLASHglssymbol] = ACTIONS(4849), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), - [anon_sym_BSLASHglsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), - [anon_sym_BSLASHglsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), - [anon_sym_BSLASHglsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), - [anon_sym_BSLASHglsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), - [anon_sym_BSLASHglsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), - [anon_sym_BSLASHnewacronym] = ACTIONS(4849), - [anon_sym_BSLASHacrshort] = ACTIONS(4849), - [anon_sym_BSLASHAcrshort] = ACTIONS(4849), - [anon_sym_BSLASHACRshort] = ACTIONS(4849), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), - [anon_sym_BSLASHacrlong] = ACTIONS(4849), - [anon_sym_BSLASHAcrlong] = ACTIONS(4849), - [anon_sym_BSLASHACRlong] = ACTIONS(4849), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), - [anon_sym_BSLASHacrfull] = ACTIONS(4849), - [anon_sym_BSLASHAcrfull] = ACTIONS(4849), - [anon_sym_BSLASHACRfull] = ACTIONS(4849), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), - [anon_sym_BSLASHacs] = ACTIONS(4849), - [anon_sym_BSLASHAcs] = ACTIONS(4849), - [anon_sym_BSLASHacsp] = ACTIONS(4849), - [anon_sym_BSLASHAcsp] = ACTIONS(4849), - [anon_sym_BSLASHacl] = ACTIONS(4849), - [anon_sym_BSLASHAcl] = ACTIONS(4849), - [anon_sym_BSLASHaclp] = ACTIONS(4849), - [anon_sym_BSLASHAclp] = ACTIONS(4849), - [anon_sym_BSLASHacf] = ACTIONS(4849), - [anon_sym_BSLASHAcf] = ACTIONS(4849), - [anon_sym_BSLASHacfp] = ACTIONS(4849), - [anon_sym_BSLASHAcfp] = ACTIONS(4849), - [anon_sym_BSLASHac] = ACTIONS(4849), - [anon_sym_BSLASHAc] = ACTIONS(4849), - [anon_sym_BSLASHacp] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), - [anon_sym_BSLASHcolor] = ACTIONS(4849), - [anon_sym_BSLASHcolorbox] = ACTIONS(4849), - [anon_sym_BSLASHtextcolor] = ACTIONS(4849), - [anon_sym_BSLASHpagecolor] = ACTIONS(4849), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), - [anon_sym_BSLASHtext] = ACTIONS(4849), - [anon_sym_BSLASHintertext] = ACTIONS(4849), - [anon_sym_shortintertext] = ACTIONS(4849), + [sym_command_name] = ACTIONS(4928), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_BSLASHpart] = ACTIONS(4928), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddpart] = ACTIONS(4928), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHchapter] = ACTIONS(4928), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddchap] = ACTIONS(4928), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsection] = ACTIONS(4928), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddsec] = ACTIONS(4928), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHparagraph] = ACTIONS(4928), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4928), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHitem] = ACTIONS(4928), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(566), + [sym_word] = ACTIONS(4928), + [sym_placeholder] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym__] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4926), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4926), + [anon_sym_BSLASHbegin] = ACTIONS(4928), + [anon_sym_BSLASHusepackage] = ACTIONS(4928), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4928), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4928), + [anon_sym_BSLASHinclude] = ACTIONS(4928), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4928), + [anon_sym_BSLASHinput] = ACTIONS(4928), + [anon_sym_BSLASHsubfile] = ACTIONS(4928), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4928), + [anon_sym_BSLASHbibliography] = ACTIONS(4928), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4928), + [anon_sym_BSLASHincludesvg] = ACTIONS(4928), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4928), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4928), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4928), + [anon_sym_BSLASHimport] = ACTIONS(4928), + [anon_sym_BSLASHsubimport] = ACTIONS(4928), + [anon_sym_BSLASHinputfrom] = ACTIONS(4928), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4928), + [anon_sym_BSLASHincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHcaption] = ACTIONS(4928), + [anon_sym_BSLASHcite] = ACTIONS(4928), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCite] = ACTIONS(4928), + [anon_sym_BSLASHnocite] = ACTIONS(4928), + [anon_sym_BSLASHcitet] = ACTIONS(4928), + [anon_sym_BSLASHcitep] = ACTIONS(4928), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteauthor] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitetitle] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteyear] = ACTIONS(4928), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitedate] = ACTIONS(4928), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteurl] = ACTIONS(4928), + [anon_sym_BSLASHfullcite] = ACTIONS(4928), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4928), + [anon_sym_BSLASHcitealt] = ACTIONS(4928), + [anon_sym_BSLASHcitealp] = ACTIONS(4928), + [anon_sym_BSLASHcitetext] = ACTIONS(4928), + [anon_sym_BSLASHparencite] = ACTIONS(4928), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHParencite] = ACTIONS(4928), + [anon_sym_BSLASHfootcite] = ACTIONS(4928), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4928), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4928), + [anon_sym_BSLASHtextcite] = ACTIONS(4928), + [anon_sym_BSLASHTextcite] = ACTIONS(4928), + [anon_sym_BSLASHsmartcite] = ACTIONS(4928), + [anon_sym_BSLASHSmartcite] = ACTIONS(4928), + [anon_sym_BSLASHsupercite] = ACTIONS(4928), + [anon_sym_BSLASHautocite] = ACTIONS(4928), + [anon_sym_BSLASHAutocite] = ACTIONS(4928), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHvolcite] = ACTIONS(4928), + [anon_sym_BSLASHVolcite] = ACTIONS(4928), + [anon_sym_BSLASHpvolcite] = ACTIONS(4928), + [anon_sym_BSLASHPvolcite] = ACTIONS(4928), + [anon_sym_BSLASHfvolcite] = ACTIONS(4928), + [anon_sym_BSLASHftvolcite] = ACTIONS(4928), + [anon_sym_BSLASHsvolcite] = ACTIONS(4928), + [anon_sym_BSLASHSvolcite] = ACTIONS(4928), + [anon_sym_BSLASHtvolcite] = ACTIONS(4928), + [anon_sym_BSLASHTvolcite] = ACTIONS(4928), + [anon_sym_BSLASHavolcite] = ACTIONS(4928), + [anon_sym_BSLASHAvolcite] = ACTIONS(4928), + [anon_sym_BSLASHnotecite] = ACTIONS(4928), + [anon_sym_BSLASHNotecite] = ACTIONS(4928), + [anon_sym_BSLASHpnotecite] = ACTIONS(4928), + [anon_sym_BSLASHPnotecite] = ACTIONS(4928), + [anon_sym_BSLASHfnotecite] = ACTIONS(4928), + [anon_sym_BSLASHlabel] = ACTIONS(4928), + [anon_sym_BSLASHref] = ACTIONS(4928), + [anon_sym_BSLASHeqref] = ACTIONS(4928), + [anon_sym_BSLASHvref] = ACTIONS(4928), + [anon_sym_BSLASHVref] = ACTIONS(4928), + [anon_sym_BSLASHautoref] = ACTIONS(4928), + [anon_sym_BSLASHpageref] = ACTIONS(4928), + [anon_sym_BSLASHcref] = ACTIONS(4928), + [anon_sym_BSLASHCref] = ACTIONS(4928), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnameCref] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHlabelcref] = ACTIONS(4928), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCrefrange] = ACTIONS(4928), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnewlabel] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4928), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4928), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4928), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdef] = ACTIONS(4928), + [anon_sym_BSLASHlet] = ACTIONS(4928), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4928), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4928), + [anon_sym_BSLASHgls] = ACTIONS(4928), + [anon_sym_BSLASHGls] = ACTIONS(4928), + [anon_sym_BSLASHGLS] = ACTIONS(4928), + [anon_sym_BSLASHglspl] = ACTIONS(4928), + [anon_sym_BSLASHGlspl] = ACTIONS(4928), + [anon_sym_BSLASHGLSpl] = ACTIONS(4928), + [anon_sym_BSLASHglsdisp] = ACTIONS(4928), + [anon_sym_BSLASHglslink] = ACTIONS(4928), + [anon_sym_BSLASHglstext] = ACTIONS(4928), + [anon_sym_BSLASHGlstext] = ACTIONS(4928), + [anon_sym_BSLASHGLStext] = ACTIONS(4928), + [anon_sym_BSLASHglsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4928), + [anon_sym_BSLASHglsplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSplural] = ACTIONS(4928), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHglsname] = ACTIONS(4928), + [anon_sym_BSLASHGlsname] = ACTIONS(4928), + [anon_sym_BSLASHGLSname] = ACTIONS(4928), + [anon_sym_BSLASHglssymbol] = ACTIONS(4928), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4928), + [anon_sym_BSLASHglsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4928), + [anon_sym_BSLASHglsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4928), + [anon_sym_BSLASHglsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4928), + [anon_sym_BSLASHglsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4928), + [anon_sym_BSLASHglsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4928), + [anon_sym_BSLASHnewacronym] = ACTIONS(4928), + [anon_sym_BSLASHacrshort] = ACTIONS(4928), + [anon_sym_BSLASHAcrshort] = ACTIONS(4928), + [anon_sym_BSLASHACRshort] = ACTIONS(4928), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4928), + [anon_sym_BSLASHacrlong] = ACTIONS(4928), + [anon_sym_BSLASHAcrlong] = ACTIONS(4928), + [anon_sym_BSLASHACRlong] = ACTIONS(4928), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4928), + [anon_sym_BSLASHacrfull] = ACTIONS(4928), + [anon_sym_BSLASHAcrfull] = ACTIONS(4928), + [anon_sym_BSLASHACRfull] = ACTIONS(4928), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4928), + [anon_sym_BSLASHacs] = ACTIONS(4928), + [anon_sym_BSLASHAcs] = ACTIONS(4928), + [anon_sym_BSLASHacsp] = ACTIONS(4928), + [anon_sym_BSLASHAcsp] = ACTIONS(4928), + [anon_sym_BSLASHacl] = ACTIONS(4928), + [anon_sym_BSLASHAcl] = ACTIONS(4928), + [anon_sym_BSLASHaclp] = ACTIONS(4928), + [anon_sym_BSLASHAclp] = ACTIONS(4928), + [anon_sym_BSLASHacf] = ACTIONS(4928), + [anon_sym_BSLASHAcf] = ACTIONS(4928), + [anon_sym_BSLASHacfp] = ACTIONS(4928), + [anon_sym_BSLASHAcfp] = ACTIONS(4928), + [anon_sym_BSLASHac] = ACTIONS(4928), + [anon_sym_BSLASHAc] = ACTIONS(4928), + [anon_sym_BSLASHacp] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4928), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4928), + [anon_sym_BSLASHcolor] = ACTIONS(4928), + [anon_sym_BSLASHcolorbox] = ACTIONS(4928), + [anon_sym_BSLASHtextcolor] = ACTIONS(4928), + [anon_sym_BSLASHpagecolor] = ACTIONS(4928), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4928), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4928), + [anon_sym_BSLASHtext] = ACTIONS(4928), + [anon_sym_BSLASHintertext] = ACTIONS(4928), + [anon_sym_shortintertext] = ACTIONS(4928), }, [805] = { [sym_brack_group_text] = STATE(958), - [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(5171), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4853), - [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), + [sym_command_name] = ACTIONS(4932), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_BSLASHpart] = ACTIONS(4932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddpart] = ACTIONS(4932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHchapter] = ACTIONS(4932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddchap] = ACTIONS(4932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsection] = ACTIONS(4932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddsec] = ACTIONS(4932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHparagraph] = ACTIONS(4932), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4932), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHitem] = ACTIONS(4932), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4930), + [sym_word] = ACTIONS(4932), + [sym_placeholder] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym__] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4930), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4930), + [anon_sym_BSLASHbegin] = ACTIONS(4932), + [anon_sym_BSLASHusepackage] = ACTIONS(4932), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4932), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4932), + [anon_sym_BSLASHinclude] = ACTIONS(4932), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4932), + [anon_sym_BSLASHinput] = ACTIONS(4932), + [anon_sym_BSLASHsubfile] = ACTIONS(4932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4932), + [anon_sym_BSLASHbibliography] = ACTIONS(4932), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4932), + [anon_sym_BSLASHincludesvg] = ACTIONS(4932), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4932), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4932), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4932), + [anon_sym_BSLASHimport] = ACTIONS(4932), + [anon_sym_BSLASHsubimport] = ACTIONS(4932), + [anon_sym_BSLASHinputfrom] = ACTIONS(4932), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4932), + [anon_sym_BSLASHincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHcaption] = ACTIONS(4932), + [anon_sym_BSLASHcite] = ACTIONS(4932), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCite] = ACTIONS(4932), + [anon_sym_BSLASHnocite] = ACTIONS(4932), + [anon_sym_BSLASHcitet] = ACTIONS(4932), + [anon_sym_BSLASHcitep] = ACTIONS(4932), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteauthor] = ACTIONS(4932), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4932), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitetitle] = ACTIONS(4932), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteyear] = ACTIONS(4932), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitedate] = ACTIONS(4932), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteurl] = ACTIONS(4932), + [anon_sym_BSLASHfullcite] = ACTIONS(4932), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4932), + [anon_sym_BSLASHcitealt] = ACTIONS(4932), + [anon_sym_BSLASHcitealp] = ACTIONS(4932), + [anon_sym_BSLASHcitetext] = ACTIONS(4932), + [anon_sym_BSLASHparencite] = ACTIONS(4932), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHParencite] = ACTIONS(4932), + [anon_sym_BSLASHfootcite] = ACTIONS(4932), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4932), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4932), + [anon_sym_BSLASHtextcite] = ACTIONS(4932), + [anon_sym_BSLASHTextcite] = ACTIONS(4932), + [anon_sym_BSLASHsmartcite] = ACTIONS(4932), + [anon_sym_BSLASHSmartcite] = ACTIONS(4932), + [anon_sym_BSLASHsupercite] = ACTIONS(4932), + [anon_sym_BSLASHautocite] = ACTIONS(4932), + [anon_sym_BSLASHAutocite] = ACTIONS(4932), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHvolcite] = ACTIONS(4932), + [anon_sym_BSLASHVolcite] = ACTIONS(4932), + [anon_sym_BSLASHpvolcite] = ACTIONS(4932), + [anon_sym_BSLASHPvolcite] = ACTIONS(4932), + [anon_sym_BSLASHfvolcite] = ACTIONS(4932), + [anon_sym_BSLASHftvolcite] = ACTIONS(4932), + [anon_sym_BSLASHsvolcite] = ACTIONS(4932), + [anon_sym_BSLASHSvolcite] = ACTIONS(4932), + [anon_sym_BSLASHtvolcite] = ACTIONS(4932), + [anon_sym_BSLASHTvolcite] = ACTIONS(4932), + [anon_sym_BSLASHavolcite] = ACTIONS(4932), + [anon_sym_BSLASHAvolcite] = ACTIONS(4932), + [anon_sym_BSLASHnotecite] = ACTIONS(4932), + [anon_sym_BSLASHNotecite] = ACTIONS(4932), + [anon_sym_BSLASHpnotecite] = ACTIONS(4932), + [anon_sym_BSLASHPnotecite] = ACTIONS(4932), + [anon_sym_BSLASHfnotecite] = ACTIONS(4932), + [anon_sym_BSLASHlabel] = ACTIONS(4932), + [anon_sym_BSLASHref] = ACTIONS(4932), + [anon_sym_BSLASHeqref] = ACTIONS(4932), + [anon_sym_BSLASHvref] = ACTIONS(4932), + [anon_sym_BSLASHVref] = ACTIONS(4932), + [anon_sym_BSLASHautoref] = ACTIONS(4932), + [anon_sym_BSLASHpageref] = ACTIONS(4932), + [anon_sym_BSLASHcref] = ACTIONS(4932), + [anon_sym_BSLASHCref] = ACTIONS(4932), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnameCref] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHlabelcref] = ACTIONS(4932), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCrefrange] = ACTIONS(4932), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnewlabel] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4932), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4932), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4932), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdef] = ACTIONS(4932), + [anon_sym_BSLASHlet] = ACTIONS(4932), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4932), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4932), + [anon_sym_BSLASHgls] = ACTIONS(4932), + [anon_sym_BSLASHGls] = ACTIONS(4932), + [anon_sym_BSLASHGLS] = ACTIONS(4932), + [anon_sym_BSLASHglspl] = ACTIONS(4932), + [anon_sym_BSLASHGlspl] = ACTIONS(4932), + [anon_sym_BSLASHGLSpl] = ACTIONS(4932), + [anon_sym_BSLASHglsdisp] = ACTIONS(4932), + [anon_sym_BSLASHglslink] = ACTIONS(4932), + [anon_sym_BSLASHglstext] = ACTIONS(4932), + [anon_sym_BSLASHGlstext] = ACTIONS(4932), + [anon_sym_BSLASHGLStext] = ACTIONS(4932), + [anon_sym_BSLASHglsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4932), + [anon_sym_BSLASHglsplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSplural] = ACTIONS(4932), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHglsname] = ACTIONS(4932), + [anon_sym_BSLASHGlsname] = ACTIONS(4932), + [anon_sym_BSLASHGLSname] = ACTIONS(4932), + [anon_sym_BSLASHglssymbol] = ACTIONS(4932), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4932), + [anon_sym_BSLASHglsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4932), + [anon_sym_BSLASHglsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4932), + [anon_sym_BSLASHglsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4932), + [anon_sym_BSLASHglsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4932), + [anon_sym_BSLASHglsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4932), + [anon_sym_BSLASHnewacronym] = ACTIONS(4932), + [anon_sym_BSLASHacrshort] = ACTIONS(4932), + [anon_sym_BSLASHAcrshort] = ACTIONS(4932), + [anon_sym_BSLASHACRshort] = ACTIONS(4932), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4932), + [anon_sym_BSLASHacrlong] = ACTIONS(4932), + [anon_sym_BSLASHAcrlong] = ACTIONS(4932), + [anon_sym_BSLASHACRlong] = ACTIONS(4932), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4932), + [anon_sym_BSLASHacrfull] = ACTIONS(4932), + [anon_sym_BSLASHAcrfull] = ACTIONS(4932), + [anon_sym_BSLASHACRfull] = ACTIONS(4932), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4932), + [anon_sym_BSLASHacs] = ACTIONS(4932), + [anon_sym_BSLASHAcs] = ACTIONS(4932), + [anon_sym_BSLASHacsp] = ACTIONS(4932), + [anon_sym_BSLASHAcsp] = ACTIONS(4932), + [anon_sym_BSLASHacl] = ACTIONS(4932), + [anon_sym_BSLASHAcl] = ACTIONS(4932), + [anon_sym_BSLASHaclp] = ACTIONS(4932), + [anon_sym_BSLASHAclp] = ACTIONS(4932), + [anon_sym_BSLASHacf] = ACTIONS(4932), + [anon_sym_BSLASHAcf] = ACTIONS(4932), + [anon_sym_BSLASHacfp] = ACTIONS(4932), + [anon_sym_BSLASHAcfp] = ACTIONS(4932), + [anon_sym_BSLASHac] = ACTIONS(4932), + [anon_sym_BSLASHAc] = ACTIONS(4932), + [anon_sym_BSLASHacp] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4932), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4932), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4932), + [anon_sym_BSLASHcolor] = ACTIONS(4932), + [anon_sym_BSLASHcolorbox] = ACTIONS(4932), + [anon_sym_BSLASHtextcolor] = ACTIONS(4932), + [anon_sym_BSLASHpagecolor] = ACTIONS(4932), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4932), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4932), + [anon_sym_BSLASHtext] = ACTIONS(4932), + [anon_sym_BSLASHintertext] = ACTIONS(4932), + [anon_sym_shortintertext] = ACTIONS(4932), }, [806] = { - [ts_builtin_sym_end] = ACTIONS(5283), - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_BSLASHpart] = ACTIONS(5285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddpart] = ACTIONS(5285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHchapter] = ACTIONS(5285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddchap] = ACTIONS(5285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsection] = ACTIONS(5285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddsec] = ACTIONS(5285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHparagraph] = ACTIONS(5285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHitem] = ACTIONS(5285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [anon_sym_RBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASHbegin] = ACTIONS(5285), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [ts_builtin_sym_end] = ACTIONS(5362), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_BSLASHpart] = ACTIONS(5364), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddpart] = ACTIONS(5364), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHchapter] = ACTIONS(5364), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddchap] = ACTIONS(5364), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsection] = ACTIONS(5364), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddsec] = ACTIONS(5364), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHparagraph] = ACTIONS(5364), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5364), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHitem] = ACTIONS(5364), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [anon_sym_RBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASHbegin] = ACTIONS(5364), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [807] = { - [ts_builtin_sym_end] = ACTIONS(5287), - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_BSLASHpart] = ACTIONS(5289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddpart] = ACTIONS(5289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHchapter] = ACTIONS(5289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddchap] = ACTIONS(5289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsection] = ACTIONS(5289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddsec] = ACTIONS(5289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHparagraph] = ACTIONS(5289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHitem] = ACTIONS(5289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [anon_sym_RBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASHbegin] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [ts_builtin_sym_end] = ACTIONS(5366), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_BSLASHpart] = ACTIONS(5368), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddpart] = ACTIONS(5368), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHchapter] = ACTIONS(5368), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddchap] = ACTIONS(5368), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsection] = ACTIONS(5368), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddsec] = ACTIONS(5368), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHparagraph] = ACTIONS(5368), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5368), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHitem] = ACTIONS(5368), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [anon_sym_RBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASHbegin] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [808] = { - [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(5293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), - [anon_sym_BSLASHaddpart] = ACTIONS(5293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [ts_builtin_sym_end] = ACTIONS(5370), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_BSLASHpart] = ACTIONS(5372), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddpart] = ACTIONS(5372), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHchapter] = ACTIONS(5372), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddchap] = ACTIONS(5372), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsection] = ACTIONS(5372), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddsec] = ACTIONS(5372), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHparagraph] = ACTIONS(5372), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5372), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHitem] = ACTIONS(5372), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASHbegin] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [809] = { - [ts_builtin_sym_end] = ACTIONS(5295), - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_BSLASHpart] = ACTIONS(5297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddpart] = ACTIONS(5297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHchapter] = ACTIONS(5297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddchap] = ACTIONS(5297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsection] = ACTIONS(5297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddsec] = ACTIONS(5297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHparagraph] = ACTIONS(5297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHitem] = ACTIONS(5297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [anon_sym_RBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASHbegin] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [ts_builtin_sym_end] = ACTIONS(5374), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_BSLASHpart] = ACTIONS(5376), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddpart] = ACTIONS(5376), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHchapter] = ACTIONS(5376), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddchap] = ACTIONS(5376), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsection] = ACTIONS(5376), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddsec] = ACTIONS(5376), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHparagraph] = ACTIONS(5376), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5376), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHitem] = ACTIONS(5376), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [anon_sym_RBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASHbegin] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [810] = { - [ts_builtin_sym_end] = ACTIONS(5299), - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_BSLASHpart] = ACTIONS(5301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddpart] = ACTIONS(5301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHchapter] = ACTIONS(5301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddchap] = ACTIONS(5301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsection] = ACTIONS(5301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddsec] = ACTIONS(5301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHparagraph] = ACTIONS(5301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHitem] = ACTIONS(5301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [anon_sym_RBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASHbegin] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [ts_builtin_sym_end] = ACTIONS(5378), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_BSLASHpart] = ACTIONS(5380), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddpart] = ACTIONS(5380), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHchapter] = ACTIONS(5380), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddchap] = ACTIONS(5380), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsection] = ACTIONS(5380), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddsec] = ACTIONS(5380), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHparagraph] = ACTIONS(5380), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5380), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHitem] = ACTIONS(5380), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASHbegin] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [811] = { - [ts_builtin_sym_end] = ACTIONS(5303), - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [ts_builtin_sym_end] = ACTIONS(5382), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_BSLASHpart] = ACTIONS(5384), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddpart] = ACTIONS(5384), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHchapter] = ACTIONS(5384), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddchap] = ACTIONS(5384), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsection] = ACTIONS(5384), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddsec] = ACTIONS(5384), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHparagraph] = ACTIONS(5384), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5384), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHitem] = ACTIONS(5384), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [anon_sym_RBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASHbegin] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [812] = { - [ts_builtin_sym_end] = ACTIONS(5307), - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_BSLASHpart] = ACTIONS(5309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddpart] = ACTIONS(5309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHchapter] = ACTIONS(5309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddchap] = ACTIONS(5309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsection] = ACTIONS(5309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddsec] = ACTIONS(5309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHparagraph] = ACTIONS(5309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHitem] = ACTIONS(5309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [anon_sym_RBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASHbegin] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [ts_builtin_sym_end] = ACTIONS(5386), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_BSLASHpart] = ACTIONS(5388), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddpart] = ACTIONS(5388), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHchapter] = ACTIONS(5388), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddchap] = ACTIONS(5388), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsection] = ACTIONS(5388), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddsec] = ACTIONS(5388), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHparagraph] = ACTIONS(5388), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5388), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHitem] = ACTIONS(5388), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASHbegin] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [813] = { [sym_brack_group_text] = STATE(891), - [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(4893), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4853), - [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), + [sym_command_name] = ACTIONS(4932), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_BSLASHpart] = ACTIONS(4932), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddpart] = ACTIONS(4932), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4930), + [anon_sym_BSLASHchapter] = ACTIONS(4932), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddchap] = ACTIONS(4932), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsection] = ACTIONS(4932), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHaddsec] = ACTIONS(4932), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4932), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4930), + [anon_sym_BSLASHparagraph] = ACTIONS(4932), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4932), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4930), + [anon_sym_BSLASHitem] = ACTIONS(4932), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4930), + [sym_word] = ACTIONS(4932), + [sym_placeholder] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym__] = ACTIONS(4932), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(4932), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4930), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4930), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4930), + [anon_sym_BSLASHbegin] = ACTIONS(4932), + [anon_sym_BSLASHusepackage] = ACTIONS(4932), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4932), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4932), + [anon_sym_BSLASHinclude] = ACTIONS(4932), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4932), + [anon_sym_BSLASHinput] = ACTIONS(4932), + [anon_sym_BSLASHsubfile] = ACTIONS(4932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4932), + [anon_sym_BSLASHbibliography] = ACTIONS(4932), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4932), + [anon_sym_BSLASHincludesvg] = ACTIONS(4932), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4932), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4932), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4932), + [anon_sym_BSLASHimport] = ACTIONS(4932), + [anon_sym_BSLASHsubimport] = ACTIONS(4932), + [anon_sym_BSLASHinputfrom] = ACTIONS(4932), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4932), + [anon_sym_BSLASHincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4932), + [anon_sym_BSLASHcaption] = ACTIONS(4932), + [anon_sym_BSLASHcite] = ACTIONS(4932), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCite] = ACTIONS(4932), + [anon_sym_BSLASHnocite] = ACTIONS(4932), + [anon_sym_BSLASHcitet] = ACTIONS(4932), + [anon_sym_BSLASHcitep] = ACTIONS(4932), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteauthor] = ACTIONS(4932), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4932), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitetitle] = ACTIONS(4932), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteyear] = ACTIONS(4932), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4930), + [anon_sym_BSLASHcitedate] = ACTIONS(4932), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4930), + [anon_sym_BSLASHciteurl] = ACTIONS(4932), + [anon_sym_BSLASHfullcite] = ACTIONS(4932), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4932), + [anon_sym_BSLASHcitealt] = ACTIONS(4932), + [anon_sym_BSLASHcitealp] = ACTIONS(4932), + [anon_sym_BSLASHcitetext] = ACTIONS(4932), + [anon_sym_BSLASHparencite] = ACTIONS(4932), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHParencite] = ACTIONS(4932), + [anon_sym_BSLASHfootcite] = ACTIONS(4932), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4932), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4932), + [anon_sym_BSLASHtextcite] = ACTIONS(4932), + [anon_sym_BSLASHTextcite] = ACTIONS(4932), + [anon_sym_BSLASHsmartcite] = ACTIONS(4932), + [anon_sym_BSLASHSmartcite] = ACTIONS(4932), + [anon_sym_BSLASHsupercite] = ACTIONS(4932), + [anon_sym_BSLASHautocite] = ACTIONS(4932), + [anon_sym_BSLASHAutocite] = ACTIONS(4932), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4930), + [anon_sym_BSLASHvolcite] = ACTIONS(4932), + [anon_sym_BSLASHVolcite] = ACTIONS(4932), + [anon_sym_BSLASHpvolcite] = ACTIONS(4932), + [anon_sym_BSLASHPvolcite] = ACTIONS(4932), + [anon_sym_BSLASHfvolcite] = ACTIONS(4932), + [anon_sym_BSLASHftvolcite] = ACTIONS(4932), + [anon_sym_BSLASHsvolcite] = ACTIONS(4932), + [anon_sym_BSLASHSvolcite] = ACTIONS(4932), + [anon_sym_BSLASHtvolcite] = ACTIONS(4932), + [anon_sym_BSLASHTvolcite] = ACTIONS(4932), + [anon_sym_BSLASHavolcite] = ACTIONS(4932), + [anon_sym_BSLASHAvolcite] = ACTIONS(4932), + [anon_sym_BSLASHnotecite] = ACTIONS(4932), + [anon_sym_BSLASHNotecite] = ACTIONS(4932), + [anon_sym_BSLASHpnotecite] = ACTIONS(4932), + [anon_sym_BSLASHPnotecite] = ACTIONS(4932), + [anon_sym_BSLASHfnotecite] = ACTIONS(4932), + [anon_sym_BSLASHlabel] = ACTIONS(4932), + [anon_sym_BSLASHref] = ACTIONS(4932), + [anon_sym_BSLASHeqref] = ACTIONS(4932), + [anon_sym_BSLASHvref] = ACTIONS(4932), + [anon_sym_BSLASHVref] = ACTIONS(4932), + [anon_sym_BSLASHautoref] = ACTIONS(4932), + [anon_sym_BSLASHpageref] = ACTIONS(4932), + [anon_sym_BSLASHcref] = ACTIONS(4932), + [anon_sym_BSLASHCref] = ACTIONS(4932), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnameCref] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4932), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4932), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4932), + [anon_sym_BSLASHlabelcref] = ACTIONS(4932), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange] = ACTIONS(4932), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHCrefrange] = ACTIONS(4932), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4930), + [anon_sym_BSLASHnewlabel] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand] = ACTIONS(4932), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4932), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4932), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4930), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4932), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdef] = ACTIONS(4932), + [anon_sym_BSLASHlet] = ACTIONS(4932), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4932), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4932), + [anon_sym_BSLASHgls] = ACTIONS(4932), + [anon_sym_BSLASHGls] = ACTIONS(4932), + [anon_sym_BSLASHGLS] = ACTIONS(4932), + [anon_sym_BSLASHglspl] = ACTIONS(4932), + [anon_sym_BSLASHGlspl] = ACTIONS(4932), + [anon_sym_BSLASHGLSpl] = ACTIONS(4932), + [anon_sym_BSLASHglsdisp] = ACTIONS(4932), + [anon_sym_BSLASHglslink] = ACTIONS(4932), + [anon_sym_BSLASHglstext] = ACTIONS(4932), + [anon_sym_BSLASHGlstext] = ACTIONS(4932), + [anon_sym_BSLASHGLStext] = ACTIONS(4932), + [anon_sym_BSLASHglsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4932), + [anon_sym_BSLASHglsplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSplural] = ACTIONS(4932), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4932), + [anon_sym_BSLASHglsname] = ACTIONS(4932), + [anon_sym_BSLASHGlsname] = ACTIONS(4932), + [anon_sym_BSLASHGLSname] = ACTIONS(4932), + [anon_sym_BSLASHglssymbol] = ACTIONS(4932), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4932), + [anon_sym_BSLASHglsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4932), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4932), + [anon_sym_BSLASHglsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4932), + [anon_sym_BSLASHglsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4932), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4932), + [anon_sym_BSLASHglsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4932), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4932), + [anon_sym_BSLASHglsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4932), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4932), + [anon_sym_BSLASHnewacronym] = ACTIONS(4932), + [anon_sym_BSLASHacrshort] = ACTIONS(4932), + [anon_sym_BSLASHAcrshort] = ACTIONS(4932), + [anon_sym_BSLASHACRshort] = ACTIONS(4932), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4932), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4932), + [anon_sym_BSLASHacrlong] = ACTIONS(4932), + [anon_sym_BSLASHAcrlong] = ACTIONS(4932), + [anon_sym_BSLASHACRlong] = ACTIONS(4932), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4932), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4932), + [anon_sym_BSLASHacrfull] = ACTIONS(4932), + [anon_sym_BSLASHAcrfull] = ACTIONS(4932), + [anon_sym_BSLASHACRfull] = ACTIONS(4932), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4932), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4932), + [anon_sym_BSLASHacs] = ACTIONS(4932), + [anon_sym_BSLASHAcs] = ACTIONS(4932), + [anon_sym_BSLASHacsp] = ACTIONS(4932), + [anon_sym_BSLASHAcsp] = ACTIONS(4932), + [anon_sym_BSLASHacl] = ACTIONS(4932), + [anon_sym_BSLASHAcl] = ACTIONS(4932), + [anon_sym_BSLASHaclp] = ACTIONS(4932), + [anon_sym_BSLASHAclp] = ACTIONS(4932), + [anon_sym_BSLASHacf] = ACTIONS(4932), + [anon_sym_BSLASHAcf] = ACTIONS(4932), + [anon_sym_BSLASHacfp] = ACTIONS(4932), + [anon_sym_BSLASHAcfp] = ACTIONS(4932), + [anon_sym_BSLASHac] = ACTIONS(4932), + [anon_sym_BSLASHAc] = ACTIONS(4932), + [anon_sym_BSLASHacp] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4932), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4932), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4932), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4932), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4932), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4930), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4932), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4932), + [anon_sym_BSLASHcolor] = ACTIONS(4932), + [anon_sym_BSLASHcolorbox] = ACTIONS(4932), + [anon_sym_BSLASHtextcolor] = ACTIONS(4932), + [anon_sym_BSLASHpagecolor] = ACTIONS(4932), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4932), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4932), + [anon_sym_BSLASHtext] = ACTIONS(4932), + [anon_sym_BSLASHintertext] = ACTIONS(4932), + [anon_sym_shortintertext] = ACTIONS(4932), }, [814] = { [sym_curly_group] = STATE(890), - [sym_command_name] = ACTIONS(4849), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_BSLASHpart] = ACTIONS(4849), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddpart] = ACTIONS(4849), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), - [anon_sym_BSLASHchapter] = ACTIONS(4849), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddchap] = ACTIONS(4849), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsection] = ACTIONS(4849), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHaddsec] = ACTIONS(4849), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), - [anon_sym_BSLASHparagraph] = ACTIONS(4849), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), - [anon_sym_BSLASHitem] = ACTIONS(4849), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4849), - [sym_placeholder] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4849), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4849), - [anon_sym__] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4849), - [anon_sym_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), - [anon_sym_DOLLAR] = ACTIONS(4849), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4847), - [anon_sym_BSLASHbegin] = ACTIONS(4849), - [anon_sym_BSLASHusepackage] = ACTIONS(4849), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), - [anon_sym_BSLASHinclude] = ACTIONS(4849), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), - [anon_sym_BSLASHinput] = ACTIONS(4849), - [anon_sym_BSLASHsubfile] = ACTIONS(4849), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), - [anon_sym_BSLASHbibliography] = ACTIONS(4849), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4849), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), - [anon_sym_BSLASHimport] = ACTIONS(4849), - [anon_sym_BSLASHsubimport] = ACTIONS(4849), - [anon_sym_BSLASHinputfrom] = ACTIONS(4849), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), - [anon_sym_BSLASHincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHcaption] = ACTIONS(4849), - [anon_sym_BSLASHcite] = ACTIONS(4849), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCite] = ACTIONS(4849), - [anon_sym_BSLASHnocite] = ACTIONS(4849), - [anon_sym_BSLASHcitet] = ACTIONS(4849), - [anon_sym_BSLASHcitep] = ACTIONS(4849), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteauthor] = ACTIONS(4849), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitetitle] = ACTIONS(4849), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteyear] = ACTIONS(4849), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), - [anon_sym_BSLASHcitedate] = ACTIONS(4849), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), - [anon_sym_BSLASHciteurl] = ACTIONS(4849), - [anon_sym_BSLASHfullcite] = ACTIONS(4849), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), - [anon_sym_BSLASHcitealt] = ACTIONS(4849), - [anon_sym_BSLASHcitealp] = ACTIONS(4849), - [anon_sym_BSLASHcitetext] = ACTIONS(4849), - [anon_sym_BSLASHparencite] = ACTIONS(4849), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHParencite] = ACTIONS(4849), - [anon_sym_BSLASHfootcite] = ACTIONS(4849), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), - [anon_sym_BSLASHtextcite] = ACTIONS(4849), - [anon_sym_BSLASHTextcite] = ACTIONS(4849), - [anon_sym_BSLASHsmartcite] = ACTIONS(4849), - [anon_sym_BSLASHSmartcite] = ACTIONS(4849), - [anon_sym_BSLASHsupercite] = ACTIONS(4849), - [anon_sym_BSLASHautocite] = ACTIONS(4849), - [anon_sym_BSLASHAutocite] = ACTIONS(4849), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), - [anon_sym_BSLASHvolcite] = ACTIONS(4849), - [anon_sym_BSLASHVolcite] = ACTIONS(4849), - [anon_sym_BSLASHpvolcite] = ACTIONS(4849), - [anon_sym_BSLASHPvolcite] = ACTIONS(4849), - [anon_sym_BSLASHfvolcite] = ACTIONS(4849), - [anon_sym_BSLASHftvolcite] = ACTIONS(4849), - [anon_sym_BSLASHsvolcite] = ACTIONS(4849), - [anon_sym_BSLASHSvolcite] = ACTIONS(4849), - [anon_sym_BSLASHtvolcite] = ACTIONS(4849), - [anon_sym_BSLASHTvolcite] = ACTIONS(4849), - [anon_sym_BSLASHavolcite] = ACTIONS(4849), - [anon_sym_BSLASHAvolcite] = ACTIONS(4849), - [anon_sym_BSLASHnotecite] = ACTIONS(4849), - [anon_sym_BSLASHNotecite] = ACTIONS(4849), - [anon_sym_BSLASHpnotecite] = ACTIONS(4849), - [anon_sym_BSLASHPnotecite] = ACTIONS(4849), - [anon_sym_BSLASHfnotecite] = ACTIONS(4849), - [anon_sym_BSLASHlabel] = ACTIONS(4849), - [anon_sym_BSLASHref] = ACTIONS(4849), - [anon_sym_BSLASHeqref] = ACTIONS(4849), - [anon_sym_BSLASHvref] = ACTIONS(4849), - [anon_sym_BSLASHVref] = ACTIONS(4849), - [anon_sym_BSLASHautoref] = ACTIONS(4849), - [anon_sym_BSLASHpageref] = ACTIONS(4849), - [anon_sym_BSLASHcref] = ACTIONS(4849), - [anon_sym_BSLASHCref] = ACTIONS(4849), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnameCref] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), - [anon_sym_BSLASHlabelcref] = ACTIONS(4849), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange] = ACTIONS(4849), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHCrefrange] = ACTIONS(4849), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), - [anon_sym_BSLASHnewlabel] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand] = ACTIONS(4849), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), - [anon_sym_BSLASHdef] = ACTIONS(4849), - [anon_sym_BSLASHlet] = ACTIONS(4849), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), - [anon_sym_BSLASHgls] = ACTIONS(4849), - [anon_sym_BSLASHGls] = ACTIONS(4849), - [anon_sym_BSLASHGLS] = ACTIONS(4849), - [anon_sym_BSLASHglspl] = ACTIONS(4849), - [anon_sym_BSLASHGlspl] = ACTIONS(4849), - [anon_sym_BSLASHGLSpl] = ACTIONS(4849), - [anon_sym_BSLASHglsdisp] = ACTIONS(4849), - [anon_sym_BSLASHglslink] = ACTIONS(4849), - [anon_sym_BSLASHglstext] = ACTIONS(4849), - [anon_sym_BSLASHGlstext] = ACTIONS(4849), - [anon_sym_BSLASHGLStext] = ACTIONS(4849), - [anon_sym_BSLASHglsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), - [anon_sym_BSLASHglsplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSplural] = ACTIONS(4849), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), - [anon_sym_BSLASHglsname] = ACTIONS(4849), - [anon_sym_BSLASHGlsname] = ACTIONS(4849), - [anon_sym_BSLASHGLSname] = ACTIONS(4849), - [anon_sym_BSLASHglssymbol] = ACTIONS(4849), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), - [anon_sym_BSLASHglsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), - [anon_sym_BSLASHglsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), - [anon_sym_BSLASHglsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), - [anon_sym_BSLASHglsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), - [anon_sym_BSLASHglsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), - [anon_sym_BSLASHnewacronym] = ACTIONS(4849), - [anon_sym_BSLASHacrshort] = ACTIONS(4849), - [anon_sym_BSLASHAcrshort] = ACTIONS(4849), - [anon_sym_BSLASHACRshort] = ACTIONS(4849), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), - [anon_sym_BSLASHacrlong] = ACTIONS(4849), - [anon_sym_BSLASHAcrlong] = ACTIONS(4849), - [anon_sym_BSLASHACRlong] = ACTIONS(4849), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), - [anon_sym_BSLASHacrfull] = ACTIONS(4849), - [anon_sym_BSLASHAcrfull] = ACTIONS(4849), - [anon_sym_BSLASHACRfull] = ACTIONS(4849), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), - [anon_sym_BSLASHacs] = ACTIONS(4849), - [anon_sym_BSLASHAcs] = ACTIONS(4849), - [anon_sym_BSLASHacsp] = ACTIONS(4849), - [anon_sym_BSLASHAcsp] = ACTIONS(4849), - [anon_sym_BSLASHacl] = ACTIONS(4849), - [anon_sym_BSLASHAcl] = ACTIONS(4849), - [anon_sym_BSLASHaclp] = ACTIONS(4849), - [anon_sym_BSLASHAclp] = ACTIONS(4849), - [anon_sym_BSLASHacf] = ACTIONS(4849), - [anon_sym_BSLASHAcf] = ACTIONS(4849), - [anon_sym_BSLASHacfp] = ACTIONS(4849), - [anon_sym_BSLASHAcfp] = ACTIONS(4849), - [anon_sym_BSLASHac] = ACTIONS(4849), - [anon_sym_BSLASHAc] = ACTIONS(4849), - [anon_sym_BSLASHacp] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), - [anon_sym_BSLASHcolor] = ACTIONS(4849), - [anon_sym_BSLASHcolorbox] = ACTIONS(4849), - [anon_sym_BSLASHtextcolor] = ACTIONS(4849), - [anon_sym_BSLASHpagecolor] = ACTIONS(4849), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), - [anon_sym_BSLASHtext] = ACTIONS(4849), - [anon_sym_BSLASHintertext] = ACTIONS(4849), - [anon_sym_shortintertext] = ACTIONS(4849), + [sym_command_name] = ACTIONS(4928), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_BSLASHpart] = ACTIONS(4928), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddpart] = ACTIONS(4928), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4926), + [anon_sym_BSLASHchapter] = ACTIONS(4928), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddchap] = ACTIONS(4928), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsection] = ACTIONS(4928), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHaddsec] = ACTIONS(4928), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4928), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4926), + [anon_sym_BSLASHparagraph] = ACTIONS(4928), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4928), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4926), + [anon_sym_BSLASHitem] = ACTIONS(4928), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4928), + [sym_placeholder] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym__] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4928), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4926), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4926), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4926), + [anon_sym_BSLASHbegin] = ACTIONS(4928), + [anon_sym_BSLASHusepackage] = ACTIONS(4928), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4928), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4928), + [anon_sym_BSLASHinclude] = ACTIONS(4928), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4928), + [anon_sym_BSLASHinput] = ACTIONS(4928), + [anon_sym_BSLASHsubfile] = ACTIONS(4928), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4928), + [anon_sym_BSLASHbibliography] = ACTIONS(4928), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4928), + [anon_sym_BSLASHincludesvg] = ACTIONS(4928), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4928), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4928), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4928), + [anon_sym_BSLASHimport] = ACTIONS(4928), + [anon_sym_BSLASHsubimport] = ACTIONS(4928), + [anon_sym_BSLASHinputfrom] = ACTIONS(4928), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4928), + [anon_sym_BSLASHincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4928), + [anon_sym_BSLASHcaption] = ACTIONS(4928), + [anon_sym_BSLASHcite] = ACTIONS(4928), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCite] = ACTIONS(4928), + [anon_sym_BSLASHnocite] = ACTIONS(4928), + [anon_sym_BSLASHcitet] = ACTIONS(4928), + [anon_sym_BSLASHcitep] = ACTIONS(4928), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteauthor] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitetitle] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteyear] = ACTIONS(4928), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4926), + [anon_sym_BSLASHcitedate] = ACTIONS(4928), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4926), + [anon_sym_BSLASHciteurl] = ACTIONS(4928), + [anon_sym_BSLASHfullcite] = ACTIONS(4928), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4928), + [anon_sym_BSLASHcitealt] = ACTIONS(4928), + [anon_sym_BSLASHcitealp] = ACTIONS(4928), + [anon_sym_BSLASHcitetext] = ACTIONS(4928), + [anon_sym_BSLASHparencite] = ACTIONS(4928), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHParencite] = ACTIONS(4928), + [anon_sym_BSLASHfootcite] = ACTIONS(4928), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4928), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4928), + [anon_sym_BSLASHtextcite] = ACTIONS(4928), + [anon_sym_BSLASHTextcite] = ACTIONS(4928), + [anon_sym_BSLASHsmartcite] = ACTIONS(4928), + [anon_sym_BSLASHSmartcite] = ACTIONS(4928), + [anon_sym_BSLASHsupercite] = ACTIONS(4928), + [anon_sym_BSLASHautocite] = ACTIONS(4928), + [anon_sym_BSLASHAutocite] = ACTIONS(4928), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4926), + [anon_sym_BSLASHvolcite] = ACTIONS(4928), + [anon_sym_BSLASHVolcite] = ACTIONS(4928), + [anon_sym_BSLASHpvolcite] = ACTIONS(4928), + [anon_sym_BSLASHPvolcite] = ACTIONS(4928), + [anon_sym_BSLASHfvolcite] = ACTIONS(4928), + [anon_sym_BSLASHftvolcite] = ACTIONS(4928), + [anon_sym_BSLASHsvolcite] = ACTIONS(4928), + [anon_sym_BSLASHSvolcite] = ACTIONS(4928), + [anon_sym_BSLASHtvolcite] = ACTIONS(4928), + [anon_sym_BSLASHTvolcite] = ACTIONS(4928), + [anon_sym_BSLASHavolcite] = ACTIONS(4928), + [anon_sym_BSLASHAvolcite] = ACTIONS(4928), + [anon_sym_BSLASHnotecite] = ACTIONS(4928), + [anon_sym_BSLASHNotecite] = ACTIONS(4928), + [anon_sym_BSLASHpnotecite] = ACTIONS(4928), + [anon_sym_BSLASHPnotecite] = ACTIONS(4928), + [anon_sym_BSLASHfnotecite] = ACTIONS(4928), + [anon_sym_BSLASHlabel] = ACTIONS(4928), + [anon_sym_BSLASHref] = ACTIONS(4928), + [anon_sym_BSLASHeqref] = ACTIONS(4928), + [anon_sym_BSLASHvref] = ACTIONS(4928), + [anon_sym_BSLASHVref] = ACTIONS(4928), + [anon_sym_BSLASHautoref] = ACTIONS(4928), + [anon_sym_BSLASHpageref] = ACTIONS(4928), + [anon_sym_BSLASHcref] = ACTIONS(4928), + [anon_sym_BSLASHCref] = ACTIONS(4928), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnameCref] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4928), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4928), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4928), + [anon_sym_BSLASHlabelcref] = ACTIONS(4928), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange] = ACTIONS(4928), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHCrefrange] = ACTIONS(4928), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4926), + [anon_sym_BSLASHnewlabel] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand] = ACTIONS(4928), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4928), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4928), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4926), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4928), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdef] = ACTIONS(4928), + [anon_sym_BSLASHlet] = ACTIONS(4928), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4928), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4928), + [anon_sym_BSLASHgls] = ACTIONS(4928), + [anon_sym_BSLASHGls] = ACTIONS(4928), + [anon_sym_BSLASHGLS] = ACTIONS(4928), + [anon_sym_BSLASHglspl] = ACTIONS(4928), + [anon_sym_BSLASHGlspl] = ACTIONS(4928), + [anon_sym_BSLASHGLSpl] = ACTIONS(4928), + [anon_sym_BSLASHglsdisp] = ACTIONS(4928), + [anon_sym_BSLASHglslink] = ACTIONS(4928), + [anon_sym_BSLASHglstext] = ACTIONS(4928), + [anon_sym_BSLASHGlstext] = ACTIONS(4928), + [anon_sym_BSLASHGLStext] = ACTIONS(4928), + [anon_sym_BSLASHglsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4928), + [anon_sym_BSLASHglsplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSplural] = ACTIONS(4928), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4928), + [anon_sym_BSLASHglsname] = ACTIONS(4928), + [anon_sym_BSLASHGlsname] = ACTIONS(4928), + [anon_sym_BSLASHGLSname] = ACTIONS(4928), + [anon_sym_BSLASHglssymbol] = ACTIONS(4928), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4928), + [anon_sym_BSLASHglsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4928), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4928), + [anon_sym_BSLASHglsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4928), + [anon_sym_BSLASHglsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4928), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4928), + [anon_sym_BSLASHglsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4928), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4928), + [anon_sym_BSLASHglsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4928), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4928), + [anon_sym_BSLASHnewacronym] = ACTIONS(4928), + [anon_sym_BSLASHacrshort] = ACTIONS(4928), + [anon_sym_BSLASHAcrshort] = ACTIONS(4928), + [anon_sym_BSLASHACRshort] = ACTIONS(4928), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4928), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4928), + [anon_sym_BSLASHacrlong] = ACTIONS(4928), + [anon_sym_BSLASHAcrlong] = ACTIONS(4928), + [anon_sym_BSLASHACRlong] = ACTIONS(4928), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4928), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4928), + [anon_sym_BSLASHacrfull] = ACTIONS(4928), + [anon_sym_BSLASHAcrfull] = ACTIONS(4928), + [anon_sym_BSLASHACRfull] = ACTIONS(4928), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4928), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4928), + [anon_sym_BSLASHacs] = ACTIONS(4928), + [anon_sym_BSLASHAcs] = ACTIONS(4928), + [anon_sym_BSLASHacsp] = ACTIONS(4928), + [anon_sym_BSLASHAcsp] = ACTIONS(4928), + [anon_sym_BSLASHacl] = ACTIONS(4928), + [anon_sym_BSLASHAcl] = ACTIONS(4928), + [anon_sym_BSLASHaclp] = ACTIONS(4928), + [anon_sym_BSLASHAclp] = ACTIONS(4928), + [anon_sym_BSLASHacf] = ACTIONS(4928), + [anon_sym_BSLASHAcf] = ACTIONS(4928), + [anon_sym_BSLASHacfp] = ACTIONS(4928), + [anon_sym_BSLASHAcfp] = ACTIONS(4928), + [anon_sym_BSLASHac] = ACTIONS(4928), + [anon_sym_BSLASHAc] = ACTIONS(4928), + [anon_sym_BSLASHacp] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4928), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4928), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4928), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4928), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4928), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4926), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4928), + [anon_sym_BSLASHcolor] = ACTIONS(4928), + [anon_sym_BSLASHcolorbox] = ACTIONS(4928), + [anon_sym_BSLASHtextcolor] = ACTIONS(4928), + [anon_sym_BSLASHpagecolor] = ACTIONS(4928), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4928), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4928), + [anon_sym_BSLASHtext] = ACTIONS(4928), + [anon_sym_BSLASHintertext] = ACTIONS(4928), + [anon_sym_shortintertext] = ACTIONS(4928), }, [815] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [ts_builtin_sym_end] = ACTIONS(5390), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_BSLASHpart] = ACTIONS(5392), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddpart] = ACTIONS(5392), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHchapter] = ACTIONS(5392), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddchap] = ACTIONS(5392), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsection] = ACTIONS(5392), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddsec] = ACTIONS(5392), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHparagraph] = ACTIONS(5392), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5392), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHitem] = ACTIONS(5392), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [anon_sym_RBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASHbegin] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [816] = { [sym_curly_group] = STATE(884), - [sym_command_name] = ACTIONS(4825), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_BSLASHpart] = ACTIONS(4825), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddpart] = ACTIONS(4825), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), - [anon_sym_BSLASHchapter] = ACTIONS(4825), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddchap] = ACTIONS(4825), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsection] = ACTIONS(4825), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHaddsec] = ACTIONS(4825), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), - [anon_sym_BSLASHparagraph] = ACTIONS(4825), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), - [anon_sym_BSLASHitem] = ACTIONS(4825), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4825), - [sym_placeholder] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym__] = ACTIONS(4825), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4825), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4823), - [anon_sym_BSLASHbegin] = ACTIONS(4825), - [anon_sym_BSLASHusepackage] = ACTIONS(4825), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), - [anon_sym_BSLASHinclude] = ACTIONS(4825), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), - [anon_sym_BSLASHinput] = ACTIONS(4825), - [anon_sym_BSLASHsubfile] = ACTIONS(4825), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), - [anon_sym_BSLASHbibliography] = ACTIONS(4825), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), - [anon_sym_BSLASHincludesvg] = ACTIONS(4825), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), - [anon_sym_BSLASHimport] = ACTIONS(4825), - [anon_sym_BSLASHsubimport] = ACTIONS(4825), - [anon_sym_BSLASHinputfrom] = ACTIONS(4825), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), - [anon_sym_BSLASHincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), - [anon_sym_BSLASHcaption] = ACTIONS(4825), - [anon_sym_BSLASHcite] = ACTIONS(4825), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCite] = ACTIONS(4825), - [anon_sym_BSLASHnocite] = ACTIONS(4825), - [anon_sym_BSLASHcitet] = ACTIONS(4825), - [anon_sym_BSLASHcitep] = ACTIONS(4825), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteauthor] = ACTIONS(4825), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitetitle] = ACTIONS(4825), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteyear] = ACTIONS(4825), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), - [anon_sym_BSLASHcitedate] = ACTIONS(4825), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), - [anon_sym_BSLASHciteurl] = ACTIONS(4825), - [anon_sym_BSLASHfullcite] = ACTIONS(4825), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), - [anon_sym_BSLASHcitealt] = ACTIONS(4825), - [anon_sym_BSLASHcitealp] = ACTIONS(4825), - [anon_sym_BSLASHcitetext] = ACTIONS(4825), - [anon_sym_BSLASHparencite] = ACTIONS(4825), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHParencite] = ACTIONS(4825), - [anon_sym_BSLASHfootcite] = ACTIONS(4825), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), - [anon_sym_BSLASHtextcite] = ACTIONS(4825), - [anon_sym_BSLASHTextcite] = ACTIONS(4825), - [anon_sym_BSLASHsmartcite] = ACTIONS(4825), - [anon_sym_BSLASHSmartcite] = ACTIONS(4825), - [anon_sym_BSLASHsupercite] = ACTIONS(4825), - [anon_sym_BSLASHautocite] = ACTIONS(4825), - [anon_sym_BSLASHAutocite] = ACTIONS(4825), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), - [anon_sym_BSLASHvolcite] = ACTIONS(4825), - [anon_sym_BSLASHVolcite] = ACTIONS(4825), - [anon_sym_BSLASHpvolcite] = ACTIONS(4825), - [anon_sym_BSLASHPvolcite] = ACTIONS(4825), - [anon_sym_BSLASHfvolcite] = ACTIONS(4825), - [anon_sym_BSLASHftvolcite] = ACTIONS(4825), - [anon_sym_BSLASHsvolcite] = ACTIONS(4825), - [anon_sym_BSLASHSvolcite] = ACTIONS(4825), - [anon_sym_BSLASHtvolcite] = ACTIONS(4825), - [anon_sym_BSLASHTvolcite] = ACTIONS(4825), - [anon_sym_BSLASHavolcite] = ACTIONS(4825), - [anon_sym_BSLASHAvolcite] = ACTIONS(4825), - [anon_sym_BSLASHnotecite] = ACTIONS(4825), - [anon_sym_BSLASHNotecite] = ACTIONS(4825), - [anon_sym_BSLASHpnotecite] = ACTIONS(4825), - [anon_sym_BSLASHPnotecite] = ACTIONS(4825), - [anon_sym_BSLASHfnotecite] = ACTIONS(4825), - [anon_sym_BSLASHlabel] = ACTIONS(4825), - [anon_sym_BSLASHref] = ACTIONS(4825), - [anon_sym_BSLASHeqref] = ACTIONS(4825), - [anon_sym_BSLASHvref] = ACTIONS(4825), - [anon_sym_BSLASHVref] = ACTIONS(4825), - [anon_sym_BSLASHautoref] = ACTIONS(4825), - [anon_sym_BSLASHpageref] = ACTIONS(4825), - [anon_sym_BSLASHcref] = ACTIONS(4825), - [anon_sym_BSLASHCref] = ACTIONS(4825), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnameCref] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), - [anon_sym_BSLASHlabelcref] = ACTIONS(4825), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange] = ACTIONS(4825), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHCrefrange] = ACTIONS(4825), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), - [anon_sym_BSLASHnewlabel] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand] = ACTIONS(4825), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), - [anon_sym_BSLASHdef] = ACTIONS(4825), - [anon_sym_BSLASHlet] = ACTIONS(4825), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), - [anon_sym_BSLASHgls] = ACTIONS(4825), - [anon_sym_BSLASHGls] = ACTIONS(4825), - [anon_sym_BSLASHGLS] = ACTIONS(4825), - [anon_sym_BSLASHglspl] = ACTIONS(4825), - [anon_sym_BSLASHGlspl] = ACTIONS(4825), - [anon_sym_BSLASHGLSpl] = ACTIONS(4825), - [anon_sym_BSLASHglsdisp] = ACTIONS(4825), - [anon_sym_BSLASHglslink] = ACTIONS(4825), - [anon_sym_BSLASHglstext] = ACTIONS(4825), - [anon_sym_BSLASHGlstext] = ACTIONS(4825), - [anon_sym_BSLASHGLStext] = ACTIONS(4825), - [anon_sym_BSLASHglsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), - [anon_sym_BSLASHglsplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSplural] = ACTIONS(4825), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), - [anon_sym_BSLASHglsname] = ACTIONS(4825), - [anon_sym_BSLASHGlsname] = ACTIONS(4825), - [anon_sym_BSLASHGLSname] = ACTIONS(4825), - [anon_sym_BSLASHglssymbol] = ACTIONS(4825), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), - [anon_sym_BSLASHglsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), - [anon_sym_BSLASHglsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), - [anon_sym_BSLASHglsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), - [anon_sym_BSLASHglsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), - [anon_sym_BSLASHglsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), - [anon_sym_BSLASHnewacronym] = ACTIONS(4825), - [anon_sym_BSLASHacrshort] = ACTIONS(4825), - [anon_sym_BSLASHAcrshort] = ACTIONS(4825), - [anon_sym_BSLASHACRshort] = ACTIONS(4825), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), - [anon_sym_BSLASHacrlong] = ACTIONS(4825), - [anon_sym_BSLASHAcrlong] = ACTIONS(4825), - [anon_sym_BSLASHACRlong] = ACTIONS(4825), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), - [anon_sym_BSLASHacrfull] = ACTIONS(4825), - [anon_sym_BSLASHAcrfull] = ACTIONS(4825), - [anon_sym_BSLASHACRfull] = ACTIONS(4825), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), - [anon_sym_BSLASHacs] = ACTIONS(4825), - [anon_sym_BSLASHAcs] = ACTIONS(4825), - [anon_sym_BSLASHacsp] = ACTIONS(4825), - [anon_sym_BSLASHAcsp] = ACTIONS(4825), - [anon_sym_BSLASHacl] = ACTIONS(4825), - [anon_sym_BSLASHAcl] = ACTIONS(4825), - [anon_sym_BSLASHaclp] = ACTIONS(4825), - [anon_sym_BSLASHAclp] = ACTIONS(4825), - [anon_sym_BSLASHacf] = ACTIONS(4825), - [anon_sym_BSLASHAcf] = ACTIONS(4825), - [anon_sym_BSLASHacfp] = ACTIONS(4825), - [anon_sym_BSLASHAcfp] = ACTIONS(4825), - [anon_sym_BSLASHac] = ACTIONS(4825), - [anon_sym_BSLASHAc] = ACTIONS(4825), - [anon_sym_BSLASHacp] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), - [anon_sym_BSLASHcolor] = ACTIONS(4825), - [anon_sym_BSLASHcolorbox] = ACTIONS(4825), - [anon_sym_BSLASHtextcolor] = ACTIONS(4825), - [anon_sym_BSLASHpagecolor] = ACTIONS(4825), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), - [anon_sym_BSLASHtext] = ACTIONS(4825), - [anon_sym_BSLASHintertext] = ACTIONS(4825), - [anon_sym_shortintertext] = ACTIONS(4825), + [sym_command_name] = ACTIONS(4904), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_BSLASHpart] = ACTIONS(4904), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddpart] = ACTIONS(4904), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4902), + [anon_sym_BSLASHchapter] = ACTIONS(4904), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddchap] = ACTIONS(4904), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsection] = ACTIONS(4904), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHaddsec] = ACTIONS(4904), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4904), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4902), + [anon_sym_BSLASHparagraph] = ACTIONS(4904), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4904), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4902), + [anon_sym_BSLASHitem] = ACTIONS(4904), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4904), + [sym_placeholder] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym__] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4902), + [anon_sym_DOLLAR] = ACTIONS(4904), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4902), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4902), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4902), + [anon_sym_BSLASHbegin] = ACTIONS(4904), + [anon_sym_BSLASHusepackage] = ACTIONS(4904), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4904), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4904), + [anon_sym_BSLASHinclude] = ACTIONS(4904), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4904), + [anon_sym_BSLASHinput] = ACTIONS(4904), + [anon_sym_BSLASHsubfile] = ACTIONS(4904), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4904), + [anon_sym_BSLASHbibliography] = ACTIONS(4904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4904), + [anon_sym_BSLASHincludesvg] = ACTIONS(4904), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4904), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4904), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4904), + [anon_sym_BSLASHimport] = ACTIONS(4904), + [anon_sym_BSLASHsubimport] = ACTIONS(4904), + [anon_sym_BSLASHinputfrom] = ACTIONS(4904), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4904), + [anon_sym_BSLASHincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4904), + [anon_sym_BSLASHcaption] = ACTIONS(4904), + [anon_sym_BSLASHcite] = ACTIONS(4904), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCite] = ACTIONS(4904), + [anon_sym_BSLASHnocite] = ACTIONS(4904), + [anon_sym_BSLASHcitet] = ACTIONS(4904), + [anon_sym_BSLASHcitep] = ACTIONS(4904), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteauthor] = ACTIONS(4904), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4904), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitetitle] = ACTIONS(4904), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteyear] = ACTIONS(4904), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4902), + [anon_sym_BSLASHcitedate] = ACTIONS(4904), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4902), + [anon_sym_BSLASHciteurl] = ACTIONS(4904), + [anon_sym_BSLASHfullcite] = ACTIONS(4904), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4904), + [anon_sym_BSLASHcitealt] = ACTIONS(4904), + [anon_sym_BSLASHcitealp] = ACTIONS(4904), + [anon_sym_BSLASHcitetext] = ACTIONS(4904), + [anon_sym_BSLASHparencite] = ACTIONS(4904), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHParencite] = ACTIONS(4904), + [anon_sym_BSLASHfootcite] = ACTIONS(4904), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4904), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4904), + [anon_sym_BSLASHtextcite] = ACTIONS(4904), + [anon_sym_BSLASHTextcite] = ACTIONS(4904), + [anon_sym_BSLASHsmartcite] = ACTIONS(4904), + [anon_sym_BSLASHSmartcite] = ACTIONS(4904), + [anon_sym_BSLASHsupercite] = ACTIONS(4904), + [anon_sym_BSLASHautocite] = ACTIONS(4904), + [anon_sym_BSLASHAutocite] = ACTIONS(4904), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4902), + [anon_sym_BSLASHvolcite] = ACTIONS(4904), + [anon_sym_BSLASHVolcite] = ACTIONS(4904), + [anon_sym_BSLASHpvolcite] = ACTIONS(4904), + [anon_sym_BSLASHPvolcite] = ACTIONS(4904), + [anon_sym_BSLASHfvolcite] = ACTIONS(4904), + [anon_sym_BSLASHftvolcite] = ACTIONS(4904), + [anon_sym_BSLASHsvolcite] = ACTIONS(4904), + [anon_sym_BSLASHSvolcite] = ACTIONS(4904), + [anon_sym_BSLASHtvolcite] = ACTIONS(4904), + [anon_sym_BSLASHTvolcite] = ACTIONS(4904), + [anon_sym_BSLASHavolcite] = ACTIONS(4904), + [anon_sym_BSLASHAvolcite] = ACTIONS(4904), + [anon_sym_BSLASHnotecite] = ACTIONS(4904), + [anon_sym_BSLASHNotecite] = ACTIONS(4904), + [anon_sym_BSLASHpnotecite] = ACTIONS(4904), + [anon_sym_BSLASHPnotecite] = ACTIONS(4904), + [anon_sym_BSLASHfnotecite] = ACTIONS(4904), + [anon_sym_BSLASHlabel] = ACTIONS(4904), + [anon_sym_BSLASHref] = ACTIONS(4904), + [anon_sym_BSLASHeqref] = ACTIONS(4904), + [anon_sym_BSLASHvref] = ACTIONS(4904), + [anon_sym_BSLASHVref] = ACTIONS(4904), + [anon_sym_BSLASHautoref] = ACTIONS(4904), + [anon_sym_BSLASHpageref] = ACTIONS(4904), + [anon_sym_BSLASHcref] = ACTIONS(4904), + [anon_sym_BSLASHCref] = ACTIONS(4904), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnameCref] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4904), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4904), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4904), + [anon_sym_BSLASHlabelcref] = ACTIONS(4904), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange] = ACTIONS(4904), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHCrefrange] = ACTIONS(4904), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4902), + [anon_sym_BSLASHnewlabel] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand] = ACTIONS(4904), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4904), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4904), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4902), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4904), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdef] = ACTIONS(4904), + [anon_sym_BSLASHlet] = ACTIONS(4904), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4904), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4904), + [anon_sym_BSLASHgls] = ACTIONS(4904), + [anon_sym_BSLASHGls] = ACTIONS(4904), + [anon_sym_BSLASHGLS] = ACTIONS(4904), + [anon_sym_BSLASHglspl] = ACTIONS(4904), + [anon_sym_BSLASHGlspl] = ACTIONS(4904), + [anon_sym_BSLASHGLSpl] = ACTIONS(4904), + [anon_sym_BSLASHglsdisp] = ACTIONS(4904), + [anon_sym_BSLASHglslink] = ACTIONS(4904), + [anon_sym_BSLASHglstext] = ACTIONS(4904), + [anon_sym_BSLASHGlstext] = ACTIONS(4904), + [anon_sym_BSLASHGLStext] = ACTIONS(4904), + [anon_sym_BSLASHglsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4904), + [anon_sym_BSLASHglsplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSplural] = ACTIONS(4904), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4904), + [anon_sym_BSLASHglsname] = ACTIONS(4904), + [anon_sym_BSLASHGlsname] = ACTIONS(4904), + [anon_sym_BSLASHGLSname] = ACTIONS(4904), + [anon_sym_BSLASHglssymbol] = ACTIONS(4904), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4904), + [anon_sym_BSLASHglsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4904), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4904), + [anon_sym_BSLASHglsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4904), + [anon_sym_BSLASHglsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4904), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4904), + [anon_sym_BSLASHglsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4904), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4904), + [anon_sym_BSLASHglsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4904), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4904), + [anon_sym_BSLASHnewacronym] = ACTIONS(4904), + [anon_sym_BSLASHacrshort] = ACTIONS(4904), + [anon_sym_BSLASHAcrshort] = ACTIONS(4904), + [anon_sym_BSLASHACRshort] = ACTIONS(4904), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4904), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4904), + [anon_sym_BSLASHacrlong] = ACTIONS(4904), + [anon_sym_BSLASHAcrlong] = ACTIONS(4904), + [anon_sym_BSLASHACRlong] = ACTIONS(4904), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4904), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4904), + [anon_sym_BSLASHacrfull] = ACTIONS(4904), + [anon_sym_BSLASHAcrfull] = ACTIONS(4904), + [anon_sym_BSLASHACRfull] = ACTIONS(4904), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4904), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4904), + [anon_sym_BSLASHacs] = ACTIONS(4904), + [anon_sym_BSLASHAcs] = ACTIONS(4904), + [anon_sym_BSLASHacsp] = ACTIONS(4904), + [anon_sym_BSLASHAcsp] = ACTIONS(4904), + [anon_sym_BSLASHacl] = ACTIONS(4904), + [anon_sym_BSLASHAcl] = ACTIONS(4904), + [anon_sym_BSLASHaclp] = ACTIONS(4904), + [anon_sym_BSLASHAclp] = ACTIONS(4904), + [anon_sym_BSLASHacf] = ACTIONS(4904), + [anon_sym_BSLASHAcf] = ACTIONS(4904), + [anon_sym_BSLASHacfp] = ACTIONS(4904), + [anon_sym_BSLASHAcfp] = ACTIONS(4904), + [anon_sym_BSLASHac] = ACTIONS(4904), + [anon_sym_BSLASHAc] = ACTIONS(4904), + [anon_sym_BSLASHacp] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4904), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4904), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4904), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4904), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4904), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4902), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4904), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4904), + [anon_sym_BSLASHcolor] = ACTIONS(4904), + [anon_sym_BSLASHcolorbox] = ACTIONS(4904), + [anon_sym_BSLASHtextcolor] = ACTIONS(4904), + [anon_sym_BSLASHpagecolor] = ACTIONS(4904), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4904), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4904), + [anon_sym_BSLASHtext] = ACTIONS(4904), + [anon_sym_BSLASHintertext] = ACTIONS(4904), + [anon_sym_shortintertext] = ACTIONS(4904), }, [817] = { [sym_brack_group_text] = STATE(854), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_BSLASHpart] = ACTIONS(4857), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddpart] = ACTIONS(4857), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), - [anon_sym_BSLASHchapter] = ACTIONS(4857), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddchap] = ACTIONS(4857), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsection] = ACTIONS(4857), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHaddsec] = ACTIONS(4857), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), - [anon_sym_BSLASHparagraph] = ACTIONS(4857), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), - [anon_sym_BSLASHitem] = ACTIONS(4857), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASHbegin] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BSLASHpart] = ACTIONS(4936), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddpart] = ACTIONS(4936), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4934), + [anon_sym_BSLASHchapter] = ACTIONS(4936), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddchap] = ACTIONS(4936), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsection] = ACTIONS(4936), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHaddsec] = ACTIONS(4936), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4936), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4934), + [anon_sym_BSLASHparagraph] = ACTIONS(4936), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4936), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4934), + [anon_sym_BSLASHitem] = ACTIONS(4936), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASHbegin] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [818] = { [sym_curly_group] = STATE(885), - [sym_command_name] = ACTIONS(4829), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_BSLASHpart] = ACTIONS(4829), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddpart] = ACTIONS(4829), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), - [anon_sym_BSLASHchapter] = ACTIONS(4829), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddchap] = ACTIONS(4829), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsection] = ACTIONS(4829), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHaddsec] = ACTIONS(4829), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), - [anon_sym_BSLASHparagraph] = ACTIONS(4829), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), - [anon_sym_BSLASHitem] = ACTIONS(4829), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4829), - [sym_placeholder] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym__] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4829), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4829), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4827), - [anon_sym_BSLASHbegin] = ACTIONS(4829), - [anon_sym_BSLASHusepackage] = ACTIONS(4829), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), - [anon_sym_BSLASHinclude] = ACTIONS(4829), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), - [anon_sym_BSLASHinput] = ACTIONS(4829), - [anon_sym_BSLASHsubfile] = ACTIONS(4829), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), - [anon_sym_BSLASHbibliography] = ACTIONS(4829), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), - [anon_sym_BSLASHincludesvg] = ACTIONS(4829), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), - [anon_sym_BSLASHimport] = ACTIONS(4829), - [anon_sym_BSLASHsubimport] = ACTIONS(4829), - [anon_sym_BSLASHinputfrom] = ACTIONS(4829), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), - [anon_sym_BSLASHincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), - [anon_sym_BSLASHcaption] = ACTIONS(4829), - [anon_sym_BSLASHcite] = ACTIONS(4829), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCite] = ACTIONS(4829), - [anon_sym_BSLASHnocite] = ACTIONS(4829), - [anon_sym_BSLASHcitet] = ACTIONS(4829), - [anon_sym_BSLASHcitep] = ACTIONS(4829), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteauthor] = ACTIONS(4829), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitetitle] = ACTIONS(4829), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteyear] = ACTIONS(4829), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), - [anon_sym_BSLASHcitedate] = ACTIONS(4829), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), - [anon_sym_BSLASHciteurl] = ACTIONS(4829), - [anon_sym_BSLASHfullcite] = ACTIONS(4829), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), - [anon_sym_BSLASHcitealt] = ACTIONS(4829), - [anon_sym_BSLASHcitealp] = ACTIONS(4829), - [anon_sym_BSLASHcitetext] = ACTIONS(4829), - [anon_sym_BSLASHparencite] = ACTIONS(4829), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHParencite] = ACTIONS(4829), - [anon_sym_BSLASHfootcite] = ACTIONS(4829), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), - [anon_sym_BSLASHtextcite] = ACTIONS(4829), - [anon_sym_BSLASHTextcite] = ACTIONS(4829), - [anon_sym_BSLASHsmartcite] = ACTIONS(4829), - [anon_sym_BSLASHSmartcite] = ACTIONS(4829), - [anon_sym_BSLASHsupercite] = ACTIONS(4829), - [anon_sym_BSLASHautocite] = ACTIONS(4829), - [anon_sym_BSLASHAutocite] = ACTIONS(4829), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), - [anon_sym_BSLASHvolcite] = ACTIONS(4829), - [anon_sym_BSLASHVolcite] = ACTIONS(4829), - [anon_sym_BSLASHpvolcite] = ACTIONS(4829), - [anon_sym_BSLASHPvolcite] = ACTIONS(4829), - [anon_sym_BSLASHfvolcite] = ACTIONS(4829), - [anon_sym_BSLASHftvolcite] = ACTIONS(4829), - [anon_sym_BSLASHsvolcite] = ACTIONS(4829), - [anon_sym_BSLASHSvolcite] = ACTIONS(4829), - [anon_sym_BSLASHtvolcite] = ACTIONS(4829), - [anon_sym_BSLASHTvolcite] = ACTIONS(4829), - [anon_sym_BSLASHavolcite] = ACTIONS(4829), - [anon_sym_BSLASHAvolcite] = ACTIONS(4829), - [anon_sym_BSLASHnotecite] = ACTIONS(4829), - [anon_sym_BSLASHNotecite] = ACTIONS(4829), - [anon_sym_BSLASHpnotecite] = ACTIONS(4829), - [anon_sym_BSLASHPnotecite] = ACTIONS(4829), - [anon_sym_BSLASHfnotecite] = ACTIONS(4829), - [anon_sym_BSLASHlabel] = ACTIONS(4829), - [anon_sym_BSLASHref] = ACTIONS(4829), - [anon_sym_BSLASHeqref] = ACTIONS(4829), - [anon_sym_BSLASHvref] = ACTIONS(4829), - [anon_sym_BSLASHVref] = ACTIONS(4829), - [anon_sym_BSLASHautoref] = ACTIONS(4829), - [anon_sym_BSLASHpageref] = ACTIONS(4829), - [anon_sym_BSLASHcref] = ACTIONS(4829), - [anon_sym_BSLASHCref] = ACTIONS(4829), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnameCref] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), - [anon_sym_BSLASHlabelcref] = ACTIONS(4829), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange] = ACTIONS(4829), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHCrefrange] = ACTIONS(4829), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), - [anon_sym_BSLASHnewlabel] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand] = ACTIONS(4829), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), - [anon_sym_BSLASHdef] = ACTIONS(4829), - [anon_sym_BSLASHlet] = ACTIONS(4829), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), - [anon_sym_BSLASHgls] = ACTIONS(4829), - [anon_sym_BSLASHGls] = ACTIONS(4829), - [anon_sym_BSLASHGLS] = ACTIONS(4829), - [anon_sym_BSLASHglspl] = ACTIONS(4829), - [anon_sym_BSLASHGlspl] = ACTIONS(4829), - [anon_sym_BSLASHGLSpl] = ACTIONS(4829), - [anon_sym_BSLASHglsdisp] = ACTIONS(4829), - [anon_sym_BSLASHglslink] = ACTIONS(4829), - [anon_sym_BSLASHglstext] = ACTIONS(4829), - [anon_sym_BSLASHGlstext] = ACTIONS(4829), - [anon_sym_BSLASHGLStext] = ACTIONS(4829), - [anon_sym_BSLASHglsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), - [anon_sym_BSLASHglsplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSplural] = ACTIONS(4829), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), - [anon_sym_BSLASHglsname] = ACTIONS(4829), - [anon_sym_BSLASHGlsname] = ACTIONS(4829), - [anon_sym_BSLASHGLSname] = ACTIONS(4829), - [anon_sym_BSLASHglssymbol] = ACTIONS(4829), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), - [anon_sym_BSLASHglsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), - [anon_sym_BSLASHglsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), - [anon_sym_BSLASHglsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), - [anon_sym_BSLASHglsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), - [anon_sym_BSLASHglsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), - [anon_sym_BSLASHnewacronym] = ACTIONS(4829), - [anon_sym_BSLASHacrshort] = ACTIONS(4829), - [anon_sym_BSLASHAcrshort] = ACTIONS(4829), - [anon_sym_BSLASHACRshort] = ACTIONS(4829), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), - [anon_sym_BSLASHacrlong] = ACTIONS(4829), - [anon_sym_BSLASHAcrlong] = ACTIONS(4829), - [anon_sym_BSLASHACRlong] = ACTIONS(4829), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), - [anon_sym_BSLASHacrfull] = ACTIONS(4829), - [anon_sym_BSLASHAcrfull] = ACTIONS(4829), - [anon_sym_BSLASHACRfull] = ACTIONS(4829), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), - [anon_sym_BSLASHacs] = ACTIONS(4829), - [anon_sym_BSLASHAcs] = ACTIONS(4829), - [anon_sym_BSLASHacsp] = ACTIONS(4829), - [anon_sym_BSLASHAcsp] = ACTIONS(4829), - [anon_sym_BSLASHacl] = ACTIONS(4829), - [anon_sym_BSLASHAcl] = ACTIONS(4829), - [anon_sym_BSLASHaclp] = ACTIONS(4829), - [anon_sym_BSLASHAclp] = ACTIONS(4829), - [anon_sym_BSLASHacf] = ACTIONS(4829), - [anon_sym_BSLASHAcf] = ACTIONS(4829), - [anon_sym_BSLASHacfp] = ACTIONS(4829), - [anon_sym_BSLASHAcfp] = ACTIONS(4829), - [anon_sym_BSLASHac] = ACTIONS(4829), - [anon_sym_BSLASHAc] = ACTIONS(4829), - [anon_sym_BSLASHacp] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), - [anon_sym_BSLASHcolor] = ACTIONS(4829), - [anon_sym_BSLASHcolorbox] = ACTIONS(4829), - [anon_sym_BSLASHtextcolor] = ACTIONS(4829), - [anon_sym_BSLASHpagecolor] = ACTIONS(4829), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), - [anon_sym_BSLASHtext] = ACTIONS(4829), - [anon_sym_BSLASHintertext] = ACTIONS(4829), - [anon_sym_shortintertext] = ACTIONS(4829), + [sym_command_name] = ACTIONS(4908), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_BSLASHpart] = ACTIONS(4908), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddpart] = ACTIONS(4908), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4906), + [anon_sym_BSLASHchapter] = ACTIONS(4908), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddchap] = ACTIONS(4908), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsection] = ACTIONS(4908), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHaddsec] = ACTIONS(4908), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4908), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4906), + [anon_sym_BSLASHparagraph] = ACTIONS(4908), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4908), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4906), + [anon_sym_BSLASHitem] = ACTIONS(4908), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4908), + [sym_placeholder] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym__] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4908), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4906), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4906), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4906), + [anon_sym_BSLASHbegin] = ACTIONS(4908), + [anon_sym_BSLASHusepackage] = ACTIONS(4908), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4908), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4908), + [anon_sym_BSLASHinclude] = ACTIONS(4908), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4908), + [anon_sym_BSLASHinput] = ACTIONS(4908), + [anon_sym_BSLASHsubfile] = ACTIONS(4908), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4908), + [anon_sym_BSLASHbibliography] = ACTIONS(4908), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4908), + [anon_sym_BSLASHincludesvg] = ACTIONS(4908), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4908), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4908), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4908), + [anon_sym_BSLASHimport] = ACTIONS(4908), + [anon_sym_BSLASHsubimport] = ACTIONS(4908), + [anon_sym_BSLASHinputfrom] = ACTIONS(4908), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4908), + [anon_sym_BSLASHincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4908), + [anon_sym_BSLASHcaption] = ACTIONS(4908), + [anon_sym_BSLASHcite] = ACTIONS(4908), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCite] = ACTIONS(4908), + [anon_sym_BSLASHnocite] = ACTIONS(4908), + [anon_sym_BSLASHcitet] = ACTIONS(4908), + [anon_sym_BSLASHcitep] = ACTIONS(4908), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteauthor] = ACTIONS(4908), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4908), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitetitle] = ACTIONS(4908), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteyear] = ACTIONS(4908), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4906), + [anon_sym_BSLASHcitedate] = ACTIONS(4908), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4906), + [anon_sym_BSLASHciteurl] = ACTIONS(4908), + [anon_sym_BSLASHfullcite] = ACTIONS(4908), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4908), + [anon_sym_BSLASHcitealt] = ACTIONS(4908), + [anon_sym_BSLASHcitealp] = ACTIONS(4908), + [anon_sym_BSLASHcitetext] = ACTIONS(4908), + [anon_sym_BSLASHparencite] = ACTIONS(4908), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHParencite] = ACTIONS(4908), + [anon_sym_BSLASHfootcite] = ACTIONS(4908), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4908), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4908), + [anon_sym_BSLASHtextcite] = ACTIONS(4908), + [anon_sym_BSLASHTextcite] = ACTIONS(4908), + [anon_sym_BSLASHsmartcite] = ACTIONS(4908), + [anon_sym_BSLASHSmartcite] = ACTIONS(4908), + [anon_sym_BSLASHsupercite] = ACTIONS(4908), + [anon_sym_BSLASHautocite] = ACTIONS(4908), + [anon_sym_BSLASHAutocite] = ACTIONS(4908), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4906), + [anon_sym_BSLASHvolcite] = ACTIONS(4908), + [anon_sym_BSLASHVolcite] = ACTIONS(4908), + [anon_sym_BSLASHpvolcite] = ACTIONS(4908), + [anon_sym_BSLASHPvolcite] = ACTIONS(4908), + [anon_sym_BSLASHfvolcite] = ACTIONS(4908), + [anon_sym_BSLASHftvolcite] = ACTIONS(4908), + [anon_sym_BSLASHsvolcite] = ACTIONS(4908), + [anon_sym_BSLASHSvolcite] = ACTIONS(4908), + [anon_sym_BSLASHtvolcite] = ACTIONS(4908), + [anon_sym_BSLASHTvolcite] = ACTIONS(4908), + [anon_sym_BSLASHavolcite] = ACTIONS(4908), + [anon_sym_BSLASHAvolcite] = ACTIONS(4908), + [anon_sym_BSLASHnotecite] = ACTIONS(4908), + [anon_sym_BSLASHNotecite] = ACTIONS(4908), + [anon_sym_BSLASHpnotecite] = ACTIONS(4908), + [anon_sym_BSLASHPnotecite] = ACTIONS(4908), + [anon_sym_BSLASHfnotecite] = ACTIONS(4908), + [anon_sym_BSLASHlabel] = ACTIONS(4908), + [anon_sym_BSLASHref] = ACTIONS(4908), + [anon_sym_BSLASHeqref] = ACTIONS(4908), + [anon_sym_BSLASHvref] = ACTIONS(4908), + [anon_sym_BSLASHVref] = ACTIONS(4908), + [anon_sym_BSLASHautoref] = ACTIONS(4908), + [anon_sym_BSLASHpageref] = ACTIONS(4908), + [anon_sym_BSLASHcref] = ACTIONS(4908), + [anon_sym_BSLASHCref] = ACTIONS(4908), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnameCref] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4908), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4908), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4908), + [anon_sym_BSLASHlabelcref] = ACTIONS(4908), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange] = ACTIONS(4908), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHCrefrange] = ACTIONS(4908), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4906), + [anon_sym_BSLASHnewlabel] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand] = ACTIONS(4908), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4908), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4908), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4906), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4908), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdef] = ACTIONS(4908), + [anon_sym_BSLASHlet] = ACTIONS(4908), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4908), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4908), + [anon_sym_BSLASHgls] = ACTIONS(4908), + [anon_sym_BSLASHGls] = ACTIONS(4908), + [anon_sym_BSLASHGLS] = ACTIONS(4908), + [anon_sym_BSLASHglspl] = ACTIONS(4908), + [anon_sym_BSLASHGlspl] = ACTIONS(4908), + [anon_sym_BSLASHGLSpl] = ACTIONS(4908), + [anon_sym_BSLASHglsdisp] = ACTIONS(4908), + [anon_sym_BSLASHglslink] = ACTIONS(4908), + [anon_sym_BSLASHglstext] = ACTIONS(4908), + [anon_sym_BSLASHGlstext] = ACTIONS(4908), + [anon_sym_BSLASHGLStext] = ACTIONS(4908), + [anon_sym_BSLASHglsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4908), + [anon_sym_BSLASHglsplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSplural] = ACTIONS(4908), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4908), + [anon_sym_BSLASHglsname] = ACTIONS(4908), + [anon_sym_BSLASHGlsname] = ACTIONS(4908), + [anon_sym_BSLASHGLSname] = ACTIONS(4908), + [anon_sym_BSLASHglssymbol] = ACTIONS(4908), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4908), + [anon_sym_BSLASHglsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4908), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4908), + [anon_sym_BSLASHglsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4908), + [anon_sym_BSLASHglsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4908), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4908), + [anon_sym_BSLASHglsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4908), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4908), + [anon_sym_BSLASHglsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4908), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4908), + [anon_sym_BSLASHnewacronym] = ACTIONS(4908), + [anon_sym_BSLASHacrshort] = ACTIONS(4908), + [anon_sym_BSLASHAcrshort] = ACTIONS(4908), + [anon_sym_BSLASHACRshort] = ACTIONS(4908), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4908), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4908), + [anon_sym_BSLASHacrlong] = ACTIONS(4908), + [anon_sym_BSLASHAcrlong] = ACTIONS(4908), + [anon_sym_BSLASHACRlong] = ACTIONS(4908), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4908), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4908), + [anon_sym_BSLASHacrfull] = ACTIONS(4908), + [anon_sym_BSLASHAcrfull] = ACTIONS(4908), + [anon_sym_BSLASHACRfull] = ACTIONS(4908), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4908), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4908), + [anon_sym_BSLASHacs] = ACTIONS(4908), + [anon_sym_BSLASHAcs] = ACTIONS(4908), + [anon_sym_BSLASHacsp] = ACTIONS(4908), + [anon_sym_BSLASHAcsp] = ACTIONS(4908), + [anon_sym_BSLASHacl] = ACTIONS(4908), + [anon_sym_BSLASHAcl] = ACTIONS(4908), + [anon_sym_BSLASHaclp] = ACTIONS(4908), + [anon_sym_BSLASHAclp] = ACTIONS(4908), + [anon_sym_BSLASHacf] = ACTIONS(4908), + [anon_sym_BSLASHAcf] = ACTIONS(4908), + [anon_sym_BSLASHacfp] = ACTIONS(4908), + [anon_sym_BSLASHAcfp] = ACTIONS(4908), + [anon_sym_BSLASHac] = ACTIONS(4908), + [anon_sym_BSLASHAc] = ACTIONS(4908), + [anon_sym_BSLASHacp] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4908), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4908), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4908), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4908), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4908), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4906), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4908), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4908), + [anon_sym_BSLASHcolor] = ACTIONS(4908), + [anon_sym_BSLASHcolorbox] = ACTIONS(4908), + [anon_sym_BSLASHtextcolor] = ACTIONS(4908), + [anon_sym_BSLASHpagecolor] = ACTIONS(4908), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4908), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4908), + [anon_sym_BSLASHtext] = ACTIONS(4908), + [anon_sym_BSLASHintertext] = ACTIONS(4908), + [anon_sym_shortintertext] = ACTIONS(4908), }, [819] = { [sym_curly_group] = STATE(886), - [sym_command_name] = ACTIONS(4833), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4831), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_RBRACK] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(4831), - [anon_sym_BSLASHpart] = ACTIONS(4833), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddpart] = ACTIONS(4833), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), - [anon_sym_BSLASHchapter] = ACTIONS(4833), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddchap] = ACTIONS(4833), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsection] = ACTIONS(4833), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHaddsec] = ACTIONS(4833), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), - [anon_sym_BSLASHparagraph] = ACTIONS(4833), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), - [anon_sym_BSLASHitem] = ACTIONS(4833), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4833), - [sym_placeholder] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym__] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4833), - [anon_sym_GT] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4833), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4833), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4831), - [anon_sym_BSLASHbegin] = ACTIONS(4833), - [anon_sym_BSLASHusepackage] = ACTIONS(4833), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), - [anon_sym_BSLASHinclude] = ACTIONS(4833), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), - [anon_sym_BSLASHinput] = ACTIONS(4833), - [anon_sym_BSLASHsubfile] = ACTIONS(4833), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), - [anon_sym_BSLASHbibliography] = ACTIONS(4833), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), - [anon_sym_BSLASHincludesvg] = ACTIONS(4833), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), - [anon_sym_BSLASHimport] = ACTIONS(4833), - [anon_sym_BSLASHsubimport] = ACTIONS(4833), - [anon_sym_BSLASHinputfrom] = ACTIONS(4833), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), - [anon_sym_BSLASHincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), - [anon_sym_BSLASHcaption] = ACTIONS(4833), - [anon_sym_BSLASHcite] = ACTIONS(4833), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCite] = ACTIONS(4833), - [anon_sym_BSLASHnocite] = ACTIONS(4833), - [anon_sym_BSLASHcitet] = ACTIONS(4833), - [anon_sym_BSLASHcitep] = ACTIONS(4833), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteauthor] = ACTIONS(4833), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitetitle] = ACTIONS(4833), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteyear] = ACTIONS(4833), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), - [anon_sym_BSLASHcitedate] = ACTIONS(4833), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), - [anon_sym_BSLASHciteurl] = ACTIONS(4833), - [anon_sym_BSLASHfullcite] = ACTIONS(4833), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), - [anon_sym_BSLASHcitealt] = ACTIONS(4833), - [anon_sym_BSLASHcitealp] = ACTIONS(4833), - [anon_sym_BSLASHcitetext] = ACTIONS(4833), - [anon_sym_BSLASHparencite] = ACTIONS(4833), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHParencite] = ACTIONS(4833), - [anon_sym_BSLASHfootcite] = ACTIONS(4833), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), - [anon_sym_BSLASHtextcite] = ACTIONS(4833), - [anon_sym_BSLASHTextcite] = ACTIONS(4833), - [anon_sym_BSLASHsmartcite] = ACTIONS(4833), - [anon_sym_BSLASHSmartcite] = ACTIONS(4833), - [anon_sym_BSLASHsupercite] = ACTIONS(4833), - [anon_sym_BSLASHautocite] = ACTIONS(4833), - [anon_sym_BSLASHAutocite] = ACTIONS(4833), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), - [anon_sym_BSLASHvolcite] = ACTIONS(4833), - [anon_sym_BSLASHVolcite] = ACTIONS(4833), - [anon_sym_BSLASHpvolcite] = ACTIONS(4833), - [anon_sym_BSLASHPvolcite] = ACTIONS(4833), - [anon_sym_BSLASHfvolcite] = ACTIONS(4833), - [anon_sym_BSLASHftvolcite] = ACTIONS(4833), - [anon_sym_BSLASHsvolcite] = ACTIONS(4833), - [anon_sym_BSLASHSvolcite] = ACTIONS(4833), - [anon_sym_BSLASHtvolcite] = ACTIONS(4833), - [anon_sym_BSLASHTvolcite] = ACTIONS(4833), - [anon_sym_BSLASHavolcite] = ACTIONS(4833), - [anon_sym_BSLASHAvolcite] = ACTIONS(4833), - [anon_sym_BSLASHnotecite] = ACTIONS(4833), - [anon_sym_BSLASHNotecite] = ACTIONS(4833), - [anon_sym_BSLASHpnotecite] = ACTIONS(4833), - [anon_sym_BSLASHPnotecite] = ACTIONS(4833), - [anon_sym_BSLASHfnotecite] = ACTIONS(4833), - [anon_sym_BSLASHlabel] = ACTIONS(4833), - [anon_sym_BSLASHref] = ACTIONS(4833), - [anon_sym_BSLASHeqref] = ACTIONS(4833), - [anon_sym_BSLASHvref] = ACTIONS(4833), - [anon_sym_BSLASHVref] = ACTIONS(4833), - [anon_sym_BSLASHautoref] = ACTIONS(4833), - [anon_sym_BSLASHpageref] = ACTIONS(4833), - [anon_sym_BSLASHcref] = ACTIONS(4833), - [anon_sym_BSLASHCref] = ACTIONS(4833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnameCref] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), - [anon_sym_BSLASHlabelcref] = ACTIONS(4833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange] = ACTIONS(4833), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHCrefrange] = ACTIONS(4833), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), - [anon_sym_BSLASHnewlabel] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand] = ACTIONS(4833), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), - [anon_sym_BSLASHdef] = ACTIONS(4833), - [anon_sym_BSLASHlet] = ACTIONS(4833), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), - [anon_sym_BSLASHgls] = ACTIONS(4833), - [anon_sym_BSLASHGls] = ACTIONS(4833), - [anon_sym_BSLASHGLS] = ACTIONS(4833), - [anon_sym_BSLASHglspl] = ACTIONS(4833), - [anon_sym_BSLASHGlspl] = ACTIONS(4833), - [anon_sym_BSLASHGLSpl] = ACTIONS(4833), - [anon_sym_BSLASHglsdisp] = ACTIONS(4833), - [anon_sym_BSLASHglslink] = ACTIONS(4833), - [anon_sym_BSLASHglstext] = ACTIONS(4833), - [anon_sym_BSLASHGlstext] = ACTIONS(4833), - [anon_sym_BSLASHGLStext] = ACTIONS(4833), - [anon_sym_BSLASHglsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), - [anon_sym_BSLASHglsplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSplural] = ACTIONS(4833), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), - [anon_sym_BSLASHglsname] = ACTIONS(4833), - [anon_sym_BSLASHGlsname] = ACTIONS(4833), - [anon_sym_BSLASHGLSname] = ACTIONS(4833), - [anon_sym_BSLASHglssymbol] = ACTIONS(4833), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), - [anon_sym_BSLASHglsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), - [anon_sym_BSLASHglsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), - [anon_sym_BSLASHglsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), - [anon_sym_BSLASHglsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), - [anon_sym_BSLASHglsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), - [anon_sym_BSLASHnewacronym] = ACTIONS(4833), - [anon_sym_BSLASHacrshort] = ACTIONS(4833), - [anon_sym_BSLASHAcrshort] = ACTIONS(4833), - [anon_sym_BSLASHACRshort] = ACTIONS(4833), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), - [anon_sym_BSLASHacrlong] = ACTIONS(4833), - [anon_sym_BSLASHAcrlong] = ACTIONS(4833), - [anon_sym_BSLASHACRlong] = ACTIONS(4833), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), - [anon_sym_BSLASHacrfull] = ACTIONS(4833), - [anon_sym_BSLASHAcrfull] = ACTIONS(4833), - [anon_sym_BSLASHACRfull] = ACTIONS(4833), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), - [anon_sym_BSLASHacs] = ACTIONS(4833), - [anon_sym_BSLASHAcs] = ACTIONS(4833), - [anon_sym_BSLASHacsp] = ACTIONS(4833), - [anon_sym_BSLASHAcsp] = ACTIONS(4833), - [anon_sym_BSLASHacl] = ACTIONS(4833), - [anon_sym_BSLASHAcl] = ACTIONS(4833), - [anon_sym_BSLASHaclp] = ACTIONS(4833), - [anon_sym_BSLASHAclp] = ACTIONS(4833), - [anon_sym_BSLASHacf] = ACTIONS(4833), - [anon_sym_BSLASHAcf] = ACTIONS(4833), - [anon_sym_BSLASHacfp] = ACTIONS(4833), - [anon_sym_BSLASHAcfp] = ACTIONS(4833), - [anon_sym_BSLASHac] = ACTIONS(4833), - [anon_sym_BSLASHAc] = ACTIONS(4833), - [anon_sym_BSLASHacp] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), - [anon_sym_BSLASHcolor] = ACTIONS(4833), - [anon_sym_BSLASHcolorbox] = ACTIONS(4833), - [anon_sym_BSLASHtextcolor] = ACTIONS(4833), - [anon_sym_BSLASHpagecolor] = ACTIONS(4833), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), - [anon_sym_BSLASHtext] = ACTIONS(4833), - [anon_sym_BSLASHintertext] = ACTIONS(4833), - [anon_sym_shortintertext] = ACTIONS(4833), + [sym_command_name] = ACTIONS(4912), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_BSLASHpart] = ACTIONS(4912), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddpart] = ACTIONS(4912), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4910), + [anon_sym_BSLASHchapter] = ACTIONS(4912), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddchap] = ACTIONS(4912), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsection] = ACTIONS(4912), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHaddsec] = ACTIONS(4912), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4912), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4910), + [anon_sym_BSLASHparagraph] = ACTIONS(4912), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4912), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4910), + [anon_sym_BSLASHitem] = ACTIONS(4912), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4912), + [sym_placeholder] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_CARET] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4912), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4912), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4910), + [anon_sym_DOLLAR] = ACTIONS(4912), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4910), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4910), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4910), + [anon_sym_BSLASHbegin] = ACTIONS(4912), + [anon_sym_BSLASHusepackage] = ACTIONS(4912), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4912), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4912), + [anon_sym_BSLASHinclude] = ACTIONS(4912), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4912), + [anon_sym_BSLASHinput] = ACTIONS(4912), + [anon_sym_BSLASHsubfile] = ACTIONS(4912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4912), + [anon_sym_BSLASHbibliography] = ACTIONS(4912), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4912), + [anon_sym_BSLASHincludesvg] = ACTIONS(4912), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4912), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4912), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4912), + [anon_sym_BSLASHimport] = ACTIONS(4912), + [anon_sym_BSLASHsubimport] = ACTIONS(4912), + [anon_sym_BSLASHinputfrom] = ACTIONS(4912), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4912), + [anon_sym_BSLASHincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4912), + [anon_sym_BSLASHcaption] = ACTIONS(4912), + [anon_sym_BSLASHcite] = ACTIONS(4912), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCite] = ACTIONS(4912), + [anon_sym_BSLASHnocite] = ACTIONS(4912), + [anon_sym_BSLASHcitet] = ACTIONS(4912), + [anon_sym_BSLASHcitep] = ACTIONS(4912), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteauthor] = ACTIONS(4912), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4912), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitetitle] = ACTIONS(4912), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteyear] = ACTIONS(4912), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4910), + [anon_sym_BSLASHcitedate] = ACTIONS(4912), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4910), + [anon_sym_BSLASHciteurl] = ACTIONS(4912), + [anon_sym_BSLASHfullcite] = ACTIONS(4912), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4912), + [anon_sym_BSLASHcitealt] = ACTIONS(4912), + [anon_sym_BSLASHcitealp] = ACTIONS(4912), + [anon_sym_BSLASHcitetext] = ACTIONS(4912), + [anon_sym_BSLASHparencite] = ACTIONS(4912), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHParencite] = ACTIONS(4912), + [anon_sym_BSLASHfootcite] = ACTIONS(4912), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4912), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4912), + [anon_sym_BSLASHtextcite] = ACTIONS(4912), + [anon_sym_BSLASHTextcite] = ACTIONS(4912), + [anon_sym_BSLASHsmartcite] = ACTIONS(4912), + [anon_sym_BSLASHSmartcite] = ACTIONS(4912), + [anon_sym_BSLASHsupercite] = ACTIONS(4912), + [anon_sym_BSLASHautocite] = ACTIONS(4912), + [anon_sym_BSLASHAutocite] = ACTIONS(4912), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4910), + [anon_sym_BSLASHvolcite] = ACTIONS(4912), + [anon_sym_BSLASHVolcite] = ACTIONS(4912), + [anon_sym_BSLASHpvolcite] = ACTIONS(4912), + [anon_sym_BSLASHPvolcite] = ACTIONS(4912), + [anon_sym_BSLASHfvolcite] = ACTIONS(4912), + [anon_sym_BSLASHftvolcite] = ACTIONS(4912), + [anon_sym_BSLASHsvolcite] = ACTIONS(4912), + [anon_sym_BSLASHSvolcite] = ACTIONS(4912), + [anon_sym_BSLASHtvolcite] = ACTIONS(4912), + [anon_sym_BSLASHTvolcite] = ACTIONS(4912), + [anon_sym_BSLASHavolcite] = ACTIONS(4912), + [anon_sym_BSLASHAvolcite] = ACTIONS(4912), + [anon_sym_BSLASHnotecite] = ACTIONS(4912), + [anon_sym_BSLASHNotecite] = ACTIONS(4912), + [anon_sym_BSLASHpnotecite] = ACTIONS(4912), + [anon_sym_BSLASHPnotecite] = ACTIONS(4912), + [anon_sym_BSLASHfnotecite] = ACTIONS(4912), + [anon_sym_BSLASHlabel] = ACTIONS(4912), + [anon_sym_BSLASHref] = ACTIONS(4912), + [anon_sym_BSLASHeqref] = ACTIONS(4912), + [anon_sym_BSLASHvref] = ACTIONS(4912), + [anon_sym_BSLASHVref] = ACTIONS(4912), + [anon_sym_BSLASHautoref] = ACTIONS(4912), + [anon_sym_BSLASHpageref] = ACTIONS(4912), + [anon_sym_BSLASHcref] = ACTIONS(4912), + [anon_sym_BSLASHCref] = ACTIONS(4912), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnameCref] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4912), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4912), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4912), + [anon_sym_BSLASHlabelcref] = ACTIONS(4912), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange] = ACTIONS(4912), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHCrefrange] = ACTIONS(4912), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4910), + [anon_sym_BSLASHnewlabel] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand] = ACTIONS(4912), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4912), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4912), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4910), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4912), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdef] = ACTIONS(4912), + [anon_sym_BSLASHlet] = ACTIONS(4912), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4912), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), + [anon_sym_BSLASHgls] = ACTIONS(4912), + [anon_sym_BSLASHGls] = ACTIONS(4912), + [anon_sym_BSLASHGLS] = ACTIONS(4912), + [anon_sym_BSLASHglspl] = ACTIONS(4912), + [anon_sym_BSLASHGlspl] = ACTIONS(4912), + [anon_sym_BSLASHGLSpl] = ACTIONS(4912), + [anon_sym_BSLASHglsdisp] = ACTIONS(4912), + [anon_sym_BSLASHglslink] = ACTIONS(4912), + [anon_sym_BSLASHglstext] = ACTIONS(4912), + [anon_sym_BSLASHGlstext] = ACTIONS(4912), + [anon_sym_BSLASHGLStext] = ACTIONS(4912), + [anon_sym_BSLASHglsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4912), + [anon_sym_BSLASHglsplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSplural] = ACTIONS(4912), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4912), + [anon_sym_BSLASHglsname] = ACTIONS(4912), + [anon_sym_BSLASHGlsname] = ACTIONS(4912), + [anon_sym_BSLASHGLSname] = ACTIONS(4912), + [anon_sym_BSLASHglssymbol] = ACTIONS(4912), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4912), + [anon_sym_BSLASHglsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4912), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4912), + [anon_sym_BSLASHglsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4912), + [anon_sym_BSLASHglsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4912), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4912), + [anon_sym_BSLASHglsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4912), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4912), + [anon_sym_BSLASHglsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4912), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4912), + [anon_sym_BSLASHnewacronym] = ACTIONS(4912), + [anon_sym_BSLASHacrshort] = ACTIONS(4912), + [anon_sym_BSLASHAcrshort] = ACTIONS(4912), + [anon_sym_BSLASHACRshort] = ACTIONS(4912), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4912), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4912), + [anon_sym_BSLASHacrlong] = ACTIONS(4912), + [anon_sym_BSLASHAcrlong] = ACTIONS(4912), + [anon_sym_BSLASHACRlong] = ACTIONS(4912), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4912), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4912), + [anon_sym_BSLASHacrfull] = ACTIONS(4912), + [anon_sym_BSLASHAcrfull] = ACTIONS(4912), + [anon_sym_BSLASHACRfull] = ACTIONS(4912), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4912), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4912), + [anon_sym_BSLASHacs] = ACTIONS(4912), + [anon_sym_BSLASHAcs] = ACTIONS(4912), + [anon_sym_BSLASHacsp] = ACTIONS(4912), + [anon_sym_BSLASHAcsp] = ACTIONS(4912), + [anon_sym_BSLASHacl] = ACTIONS(4912), + [anon_sym_BSLASHAcl] = ACTIONS(4912), + [anon_sym_BSLASHaclp] = ACTIONS(4912), + [anon_sym_BSLASHAclp] = ACTIONS(4912), + [anon_sym_BSLASHacf] = ACTIONS(4912), + [anon_sym_BSLASHAcf] = ACTIONS(4912), + [anon_sym_BSLASHacfp] = ACTIONS(4912), + [anon_sym_BSLASHAcfp] = ACTIONS(4912), + [anon_sym_BSLASHac] = ACTIONS(4912), + [anon_sym_BSLASHAc] = ACTIONS(4912), + [anon_sym_BSLASHacp] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4912), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4912), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4912), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4912), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4912), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4910), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4912), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4912), + [anon_sym_BSLASHcolor] = ACTIONS(4912), + [anon_sym_BSLASHcolorbox] = ACTIONS(4912), + [anon_sym_BSLASHtextcolor] = ACTIONS(4912), + [anon_sym_BSLASHpagecolor] = ACTIONS(4912), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4912), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4912), + [anon_sym_BSLASHtext] = ACTIONS(4912), + [anon_sym_BSLASHintertext] = ACTIONS(4912), + [anon_sym_shortintertext] = ACTIONS(4912), }, [820] = { [sym_curly_group] = STATE(887), - [sym_command_name] = ACTIONS(4837), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_BSLASHpart] = ACTIONS(4837), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddpart] = ACTIONS(4837), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), - [anon_sym_BSLASHchapter] = ACTIONS(4837), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddchap] = ACTIONS(4837), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsection] = ACTIONS(4837), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHaddsec] = ACTIONS(4837), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), - [anon_sym_BSLASHparagraph] = ACTIONS(4837), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), - [anon_sym_BSLASHitem] = ACTIONS(4837), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4837), - [sym_placeholder] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym__] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4837), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4835), - [anon_sym_BSLASHbegin] = ACTIONS(4837), - [anon_sym_BSLASHusepackage] = ACTIONS(4837), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4837), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), - [anon_sym_BSLASHinput] = ACTIONS(4837), - [anon_sym_BSLASHsubfile] = ACTIONS(4837), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), - [anon_sym_BSLASHbibliography] = ACTIONS(4837), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), - [anon_sym_BSLASHincludesvg] = ACTIONS(4837), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), - [anon_sym_BSLASHimport] = ACTIONS(4837), - [anon_sym_BSLASHsubimport] = ACTIONS(4837), - [anon_sym_BSLASHinputfrom] = ACTIONS(4837), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), - [anon_sym_BSLASHincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), - [anon_sym_BSLASHcaption] = ACTIONS(4837), - [anon_sym_BSLASHcite] = ACTIONS(4837), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCite] = ACTIONS(4837), - [anon_sym_BSLASHnocite] = ACTIONS(4837), - [anon_sym_BSLASHcitet] = ACTIONS(4837), - [anon_sym_BSLASHcitep] = ACTIONS(4837), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteauthor] = ACTIONS(4837), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitetitle] = ACTIONS(4837), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteyear] = ACTIONS(4837), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), - [anon_sym_BSLASHcitedate] = ACTIONS(4837), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), - [anon_sym_BSLASHciteurl] = ACTIONS(4837), - [anon_sym_BSLASHfullcite] = ACTIONS(4837), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), - [anon_sym_BSLASHcitealt] = ACTIONS(4837), - [anon_sym_BSLASHcitealp] = ACTIONS(4837), - [anon_sym_BSLASHcitetext] = ACTIONS(4837), - [anon_sym_BSLASHparencite] = ACTIONS(4837), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHParencite] = ACTIONS(4837), - [anon_sym_BSLASHfootcite] = ACTIONS(4837), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), - [anon_sym_BSLASHtextcite] = ACTIONS(4837), - [anon_sym_BSLASHTextcite] = ACTIONS(4837), - [anon_sym_BSLASHsmartcite] = ACTIONS(4837), - [anon_sym_BSLASHSmartcite] = ACTIONS(4837), - [anon_sym_BSLASHsupercite] = ACTIONS(4837), - [anon_sym_BSLASHautocite] = ACTIONS(4837), - [anon_sym_BSLASHAutocite] = ACTIONS(4837), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), - [anon_sym_BSLASHvolcite] = ACTIONS(4837), - [anon_sym_BSLASHVolcite] = ACTIONS(4837), - [anon_sym_BSLASHpvolcite] = ACTIONS(4837), - [anon_sym_BSLASHPvolcite] = ACTIONS(4837), - [anon_sym_BSLASHfvolcite] = ACTIONS(4837), - [anon_sym_BSLASHftvolcite] = ACTIONS(4837), - [anon_sym_BSLASHsvolcite] = ACTIONS(4837), - [anon_sym_BSLASHSvolcite] = ACTIONS(4837), - [anon_sym_BSLASHtvolcite] = ACTIONS(4837), - [anon_sym_BSLASHTvolcite] = ACTIONS(4837), - [anon_sym_BSLASHavolcite] = ACTIONS(4837), - [anon_sym_BSLASHAvolcite] = ACTIONS(4837), - [anon_sym_BSLASHnotecite] = ACTIONS(4837), - [anon_sym_BSLASHNotecite] = ACTIONS(4837), - [anon_sym_BSLASHpnotecite] = ACTIONS(4837), - [anon_sym_BSLASHPnotecite] = ACTIONS(4837), - [anon_sym_BSLASHfnotecite] = ACTIONS(4837), - [anon_sym_BSLASHlabel] = ACTIONS(4837), - [anon_sym_BSLASHref] = ACTIONS(4837), - [anon_sym_BSLASHeqref] = ACTIONS(4837), - [anon_sym_BSLASHvref] = ACTIONS(4837), - [anon_sym_BSLASHVref] = ACTIONS(4837), - [anon_sym_BSLASHautoref] = ACTIONS(4837), - [anon_sym_BSLASHpageref] = ACTIONS(4837), - [anon_sym_BSLASHcref] = ACTIONS(4837), - [anon_sym_BSLASHCref] = ACTIONS(4837), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnameCref] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), - [anon_sym_BSLASHlabelcref] = ACTIONS(4837), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange] = ACTIONS(4837), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHCrefrange] = ACTIONS(4837), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), - [anon_sym_BSLASHnewlabel] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand] = ACTIONS(4837), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), - [anon_sym_BSLASHdef] = ACTIONS(4837), - [anon_sym_BSLASHlet] = ACTIONS(4837), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), - [anon_sym_BSLASHgls] = ACTIONS(4837), - [anon_sym_BSLASHGls] = ACTIONS(4837), - [anon_sym_BSLASHGLS] = ACTIONS(4837), - [anon_sym_BSLASHglspl] = ACTIONS(4837), - [anon_sym_BSLASHGlspl] = ACTIONS(4837), - [anon_sym_BSLASHGLSpl] = ACTIONS(4837), - [anon_sym_BSLASHglsdisp] = ACTIONS(4837), - [anon_sym_BSLASHglslink] = ACTIONS(4837), - [anon_sym_BSLASHglstext] = ACTIONS(4837), - [anon_sym_BSLASHGlstext] = ACTIONS(4837), - [anon_sym_BSLASHGLStext] = ACTIONS(4837), - [anon_sym_BSLASHglsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), - [anon_sym_BSLASHglsplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSplural] = ACTIONS(4837), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), - [anon_sym_BSLASHglsname] = ACTIONS(4837), - [anon_sym_BSLASHGlsname] = ACTIONS(4837), - [anon_sym_BSLASHGLSname] = ACTIONS(4837), - [anon_sym_BSLASHglssymbol] = ACTIONS(4837), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), - [anon_sym_BSLASHglsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), - [anon_sym_BSLASHglsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), - [anon_sym_BSLASHglsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), - [anon_sym_BSLASHglsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), - [anon_sym_BSLASHglsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), - [anon_sym_BSLASHnewacronym] = ACTIONS(4837), - [anon_sym_BSLASHacrshort] = ACTIONS(4837), - [anon_sym_BSLASHAcrshort] = ACTIONS(4837), - [anon_sym_BSLASHACRshort] = ACTIONS(4837), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), - [anon_sym_BSLASHacrlong] = ACTIONS(4837), - [anon_sym_BSLASHAcrlong] = ACTIONS(4837), - [anon_sym_BSLASHACRlong] = ACTIONS(4837), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), - [anon_sym_BSLASHacrfull] = ACTIONS(4837), - [anon_sym_BSLASHAcrfull] = ACTIONS(4837), - [anon_sym_BSLASHACRfull] = ACTIONS(4837), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), - [anon_sym_BSLASHacs] = ACTIONS(4837), - [anon_sym_BSLASHAcs] = ACTIONS(4837), - [anon_sym_BSLASHacsp] = ACTIONS(4837), - [anon_sym_BSLASHAcsp] = ACTIONS(4837), - [anon_sym_BSLASHacl] = ACTIONS(4837), - [anon_sym_BSLASHAcl] = ACTIONS(4837), - [anon_sym_BSLASHaclp] = ACTIONS(4837), - [anon_sym_BSLASHAclp] = ACTIONS(4837), - [anon_sym_BSLASHacf] = ACTIONS(4837), - [anon_sym_BSLASHAcf] = ACTIONS(4837), - [anon_sym_BSLASHacfp] = ACTIONS(4837), - [anon_sym_BSLASHAcfp] = ACTIONS(4837), - [anon_sym_BSLASHac] = ACTIONS(4837), - [anon_sym_BSLASHAc] = ACTIONS(4837), - [anon_sym_BSLASHacp] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), - [anon_sym_BSLASHcolor] = ACTIONS(4837), - [anon_sym_BSLASHcolorbox] = ACTIONS(4837), - [anon_sym_BSLASHtextcolor] = ACTIONS(4837), - [anon_sym_BSLASHpagecolor] = ACTIONS(4837), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), - [anon_sym_BSLASHtext] = ACTIONS(4837), - [anon_sym_BSLASHintertext] = ACTIONS(4837), - [anon_sym_shortintertext] = ACTIONS(4837), + [sym_command_name] = ACTIONS(4916), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_BSLASHpart] = ACTIONS(4916), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddpart] = ACTIONS(4916), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4914), + [anon_sym_BSLASHchapter] = ACTIONS(4916), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddchap] = ACTIONS(4916), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsection] = ACTIONS(4916), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHaddsec] = ACTIONS(4916), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4916), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4914), + [anon_sym_BSLASHparagraph] = ACTIONS(4916), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4916), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4914), + [anon_sym_BSLASHitem] = ACTIONS(4916), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4916), + [sym_placeholder] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym__] = ACTIONS(4916), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4916), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4914), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4914), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4914), + [anon_sym_BSLASHbegin] = ACTIONS(4916), + [anon_sym_BSLASHusepackage] = ACTIONS(4916), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4916), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4916), + [anon_sym_BSLASHinclude] = ACTIONS(4916), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4916), + [anon_sym_BSLASHinput] = ACTIONS(4916), + [anon_sym_BSLASHsubfile] = ACTIONS(4916), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4916), + [anon_sym_BSLASHbibliography] = ACTIONS(4916), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4916), + [anon_sym_BSLASHincludesvg] = ACTIONS(4916), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4916), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4916), + [anon_sym_BSLASHimport] = ACTIONS(4916), + [anon_sym_BSLASHsubimport] = ACTIONS(4916), + [anon_sym_BSLASHinputfrom] = ACTIONS(4916), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4916), + [anon_sym_BSLASHincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4916), + [anon_sym_BSLASHcaption] = ACTIONS(4916), + [anon_sym_BSLASHcite] = ACTIONS(4916), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCite] = ACTIONS(4916), + [anon_sym_BSLASHnocite] = ACTIONS(4916), + [anon_sym_BSLASHcitet] = ACTIONS(4916), + [anon_sym_BSLASHcitep] = ACTIONS(4916), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteauthor] = ACTIONS(4916), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4916), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitetitle] = ACTIONS(4916), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteyear] = ACTIONS(4916), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4914), + [anon_sym_BSLASHcitedate] = ACTIONS(4916), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4914), + [anon_sym_BSLASHciteurl] = ACTIONS(4916), + [anon_sym_BSLASHfullcite] = ACTIONS(4916), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4916), + [anon_sym_BSLASHcitealt] = ACTIONS(4916), + [anon_sym_BSLASHcitealp] = ACTIONS(4916), + [anon_sym_BSLASHcitetext] = ACTIONS(4916), + [anon_sym_BSLASHparencite] = ACTIONS(4916), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHParencite] = ACTIONS(4916), + [anon_sym_BSLASHfootcite] = ACTIONS(4916), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4916), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4916), + [anon_sym_BSLASHtextcite] = ACTIONS(4916), + [anon_sym_BSLASHTextcite] = ACTIONS(4916), + [anon_sym_BSLASHsmartcite] = ACTIONS(4916), + [anon_sym_BSLASHSmartcite] = ACTIONS(4916), + [anon_sym_BSLASHsupercite] = ACTIONS(4916), + [anon_sym_BSLASHautocite] = ACTIONS(4916), + [anon_sym_BSLASHAutocite] = ACTIONS(4916), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4914), + [anon_sym_BSLASHvolcite] = ACTIONS(4916), + [anon_sym_BSLASHVolcite] = ACTIONS(4916), + [anon_sym_BSLASHpvolcite] = ACTIONS(4916), + [anon_sym_BSLASHPvolcite] = ACTIONS(4916), + [anon_sym_BSLASHfvolcite] = ACTIONS(4916), + [anon_sym_BSLASHftvolcite] = ACTIONS(4916), + [anon_sym_BSLASHsvolcite] = ACTIONS(4916), + [anon_sym_BSLASHSvolcite] = ACTIONS(4916), + [anon_sym_BSLASHtvolcite] = ACTIONS(4916), + [anon_sym_BSLASHTvolcite] = ACTIONS(4916), + [anon_sym_BSLASHavolcite] = ACTIONS(4916), + [anon_sym_BSLASHAvolcite] = ACTIONS(4916), + [anon_sym_BSLASHnotecite] = ACTIONS(4916), + [anon_sym_BSLASHNotecite] = ACTIONS(4916), + [anon_sym_BSLASHpnotecite] = ACTIONS(4916), + [anon_sym_BSLASHPnotecite] = ACTIONS(4916), + [anon_sym_BSLASHfnotecite] = ACTIONS(4916), + [anon_sym_BSLASHlabel] = ACTIONS(4916), + [anon_sym_BSLASHref] = ACTIONS(4916), + [anon_sym_BSLASHeqref] = ACTIONS(4916), + [anon_sym_BSLASHvref] = ACTIONS(4916), + [anon_sym_BSLASHVref] = ACTIONS(4916), + [anon_sym_BSLASHautoref] = ACTIONS(4916), + [anon_sym_BSLASHpageref] = ACTIONS(4916), + [anon_sym_BSLASHcref] = ACTIONS(4916), + [anon_sym_BSLASHCref] = ACTIONS(4916), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnameCref] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4916), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4916), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4916), + [anon_sym_BSLASHlabelcref] = ACTIONS(4916), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange] = ACTIONS(4916), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHCrefrange] = ACTIONS(4916), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4914), + [anon_sym_BSLASHnewlabel] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand] = ACTIONS(4916), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4916), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4916), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4914), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4916), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdef] = ACTIONS(4916), + [anon_sym_BSLASHlet] = ACTIONS(4916), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4916), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4916), + [anon_sym_BSLASHgls] = ACTIONS(4916), + [anon_sym_BSLASHGls] = ACTIONS(4916), + [anon_sym_BSLASHGLS] = ACTIONS(4916), + [anon_sym_BSLASHglspl] = ACTIONS(4916), + [anon_sym_BSLASHGlspl] = ACTIONS(4916), + [anon_sym_BSLASHGLSpl] = ACTIONS(4916), + [anon_sym_BSLASHglsdisp] = ACTIONS(4916), + [anon_sym_BSLASHglslink] = ACTIONS(4916), + [anon_sym_BSLASHglstext] = ACTIONS(4916), + [anon_sym_BSLASHGlstext] = ACTIONS(4916), + [anon_sym_BSLASHGLStext] = ACTIONS(4916), + [anon_sym_BSLASHglsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4916), + [anon_sym_BSLASHglsplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSplural] = ACTIONS(4916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4916), + [anon_sym_BSLASHglsname] = ACTIONS(4916), + [anon_sym_BSLASHGlsname] = ACTIONS(4916), + [anon_sym_BSLASHGLSname] = ACTIONS(4916), + [anon_sym_BSLASHglssymbol] = ACTIONS(4916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4916), + [anon_sym_BSLASHglsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4916), + [anon_sym_BSLASHglsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4916), + [anon_sym_BSLASHglsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4916), + [anon_sym_BSLASHglsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4916), + [anon_sym_BSLASHglsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4916), + [anon_sym_BSLASHnewacronym] = ACTIONS(4916), + [anon_sym_BSLASHacrshort] = ACTIONS(4916), + [anon_sym_BSLASHAcrshort] = ACTIONS(4916), + [anon_sym_BSLASHACRshort] = ACTIONS(4916), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4916), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4916), + [anon_sym_BSLASHacrlong] = ACTIONS(4916), + [anon_sym_BSLASHAcrlong] = ACTIONS(4916), + [anon_sym_BSLASHACRlong] = ACTIONS(4916), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4916), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4916), + [anon_sym_BSLASHacrfull] = ACTIONS(4916), + [anon_sym_BSLASHAcrfull] = ACTIONS(4916), + [anon_sym_BSLASHACRfull] = ACTIONS(4916), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4916), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4916), + [anon_sym_BSLASHacs] = ACTIONS(4916), + [anon_sym_BSLASHAcs] = ACTIONS(4916), + [anon_sym_BSLASHacsp] = ACTIONS(4916), + [anon_sym_BSLASHAcsp] = ACTIONS(4916), + [anon_sym_BSLASHacl] = ACTIONS(4916), + [anon_sym_BSLASHAcl] = ACTIONS(4916), + [anon_sym_BSLASHaclp] = ACTIONS(4916), + [anon_sym_BSLASHAclp] = ACTIONS(4916), + [anon_sym_BSLASHacf] = ACTIONS(4916), + [anon_sym_BSLASHAcf] = ACTIONS(4916), + [anon_sym_BSLASHacfp] = ACTIONS(4916), + [anon_sym_BSLASHAcfp] = ACTIONS(4916), + [anon_sym_BSLASHac] = ACTIONS(4916), + [anon_sym_BSLASHAc] = ACTIONS(4916), + [anon_sym_BSLASHacp] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4916), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4916), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4916), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4916), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4916), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4914), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4916), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4916), + [anon_sym_BSLASHcolor] = ACTIONS(4916), + [anon_sym_BSLASHcolorbox] = ACTIONS(4916), + [anon_sym_BSLASHtextcolor] = ACTIONS(4916), + [anon_sym_BSLASHpagecolor] = ACTIONS(4916), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4916), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4916), + [anon_sym_BSLASHtext] = ACTIONS(4916), + [anon_sym_BSLASHintertext] = ACTIONS(4916), + [anon_sym_shortintertext] = ACTIONS(4916), }, [821] = { [sym_curly_group] = STATE(888), - [sym_command_name] = ACTIONS(4841), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4839), - [anon_sym_BSLASHpart] = ACTIONS(4841), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddpart] = ACTIONS(4841), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), - [anon_sym_BSLASHchapter] = ACTIONS(4841), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddchap] = ACTIONS(4841), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsection] = ACTIONS(4841), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHaddsec] = ACTIONS(4841), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), - [anon_sym_BSLASHparagraph] = ACTIONS(4841), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), - [anon_sym_BSLASHitem] = ACTIONS(4841), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), - [anon_sym_LBRACE] = ACTIONS(683), - [sym_word] = ACTIONS(4841), - [sym_placeholder] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym__] = ACTIONS(4841), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4839), - [anon_sym_BSLASHbegin] = ACTIONS(4841), - [anon_sym_BSLASHusepackage] = ACTIONS(4841), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), - [anon_sym_BSLASHinclude] = ACTIONS(4841), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), - [anon_sym_BSLASHinput] = ACTIONS(4841), - [anon_sym_BSLASHsubfile] = ACTIONS(4841), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), - [anon_sym_BSLASHbibliography] = ACTIONS(4841), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), - [anon_sym_BSLASHincludesvg] = ACTIONS(4841), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), - [anon_sym_BSLASHimport] = ACTIONS(4841), - [anon_sym_BSLASHsubimport] = ACTIONS(4841), - [anon_sym_BSLASHinputfrom] = ACTIONS(4841), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), - [anon_sym_BSLASHincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), - [anon_sym_BSLASHcaption] = ACTIONS(4841), - [anon_sym_BSLASHcite] = ACTIONS(4841), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCite] = ACTIONS(4841), - [anon_sym_BSLASHnocite] = ACTIONS(4841), - [anon_sym_BSLASHcitet] = ACTIONS(4841), - [anon_sym_BSLASHcitep] = ACTIONS(4841), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteauthor] = ACTIONS(4841), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitetitle] = ACTIONS(4841), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteyear] = ACTIONS(4841), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), - [anon_sym_BSLASHcitedate] = ACTIONS(4841), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), - [anon_sym_BSLASHciteurl] = ACTIONS(4841), - [anon_sym_BSLASHfullcite] = ACTIONS(4841), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), - [anon_sym_BSLASHcitealt] = ACTIONS(4841), - [anon_sym_BSLASHcitealp] = ACTIONS(4841), - [anon_sym_BSLASHcitetext] = ACTIONS(4841), - [anon_sym_BSLASHparencite] = ACTIONS(4841), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHParencite] = ACTIONS(4841), - [anon_sym_BSLASHfootcite] = ACTIONS(4841), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), - [anon_sym_BSLASHtextcite] = ACTIONS(4841), - [anon_sym_BSLASHTextcite] = ACTIONS(4841), - [anon_sym_BSLASHsmartcite] = ACTIONS(4841), - [anon_sym_BSLASHSmartcite] = ACTIONS(4841), - [anon_sym_BSLASHsupercite] = ACTIONS(4841), - [anon_sym_BSLASHautocite] = ACTIONS(4841), - [anon_sym_BSLASHAutocite] = ACTIONS(4841), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), - [anon_sym_BSLASHvolcite] = ACTIONS(4841), - [anon_sym_BSLASHVolcite] = ACTIONS(4841), - [anon_sym_BSLASHpvolcite] = ACTIONS(4841), - [anon_sym_BSLASHPvolcite] = ACTIONS(4841), - [anon_sym_BSLASHfvolcite] = ACTIONS(4841), - [anon_sym_BSLASHftvolcite] = ACTIONS(4841), - [anon_sym_BSLASHsvolcite] = ACTIONS(4841), - [anon_sym_BSLASHSvolcite] = ACTIONS(4841), - [anon_sym_BSLASHtvolcite] = ACTIONS(4841), - [anon_sym_BSLASHTvolcite] = ACTIONS(4841), - [anon_sym_BSLASHavolcite] = ACTIONS(4841), - [anon_sym_BSLASHAvolcite] = ACTIONS(4841), - [anon_sym_BSLASHnotecite] = ACTIONS(4841), - [anon_sym_BSLASHNotecite] = ACTIONS(4841), - [anon_sym_BSLASHpnotecite] = ACTIONS(4841), - [anon_sym_BSLASHPnotecite] = ACTIONS(4841), - [anon_sym_BSLASHfnotecite] = ACTIONS(4841), - [anon_sym_BSLASHlabel] = ACTIONS(4841), - [anon_sym_BSLASHref] = ACTIONS(4841), - [anon_sym_BSLASHeqref] = ACTIONS(4841), - [anon_sym_BSLASHvref] = ACTIONS(4841), - [anon_sym_BSLASHVref] = ACTIONS(4841), - [anon_sym_BSLASHautoref] = ACTIONS(4841), - [anon_sym_BSLASHpageref] = ACTIONS(4841), - [anon_sym_BSLASHcref] = ACTIONS(4841), - [anon_sym_BSLASHCref] = ACTIONS(4841), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnameCref] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), - [anon_sym_BSLASHlabelcref] = ACTIONS(4841), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange] = ACTIONS(4841), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHCrefrange] = ACTIONS(4841), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), - [anon_sym_BSLASHnewlabel] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand] = ACTIONS(4841), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), - [anon_sym_BSLASHdef] = ACTIONS(4841), - [anon_sym_BSLASHlet] = ACTIONS(4841), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), - [anon_sym_BSLASHgls] = ACTIONS(4841), - [anon_sym_BSLASHGls] = ACTIONS(4841), - [anon_sym_BSLASHGLS] = ACTIONS(4841), - [anon_sym_BSLASHglspl] = ACTIONS(4841), - [anon_sym_BSLASHGlspl] = ACTIONS(4841), - [anon_sym_BSLASHGLSpl] = ACTIONS(4841), - [anon_sym_BSLASHglsdisp] = ACTIONS(4841), - [anon_sym_BSLASHglslink] = ACTIONS(4841), - [anon_sym_BSLASHglstext] = ACTIONS(4841), - [anon_sym_BSLASHGlstext] = ACTIONS(4841), - [anon_sym_BSLASHGLStext] = ACTIONS(4841), - [anon_sym_BSLASHglsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), - [anon_sym_BSLASHglsplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSplural] = ACTIONS(4841), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), - [anon_sym_BSLASHglsname] = ACTIONS(4841), - [anon_sym_BSLASHGlsname] = ACTIONS(4841), - [anon_sym_BSLASHGLSname] = ACTIONS(4841), - [anon_sym_BSLASHglssymbol] = ACTIONS(4841), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), - [anon_sym_BSLASHglsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), - [anon_sym_BSLASHglsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), - [anon_sym_BSLASHglsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), - [anon_sym_BSLASHglsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), - [anon_sym_BSLASHglsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), - [anon_sym_BSLASHnewacronym] = ACTIONS(4841), - [anon_sym_BSLASHacrshort] = ACTIONS(4841), - [anon_sym_BSLASHAcrshort] = ACTIONS(4841), - [anon_sym_BSLASHACRshort] = ACTIONS(4841), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), - [anon_sym_BSLASHacrlong] = ACTIONS(4841), - [anon_sym_BSLASHAcrlong] = ACTIONS(4841), - [anon_sym_BSLASHACRlong] = ACTIONS(4841), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), - [anon_sym_BSLASHacrfull] = ACTIONS(4841), - [anon_sym_BSLASHAcrfull] = ACTIONS(4841), - [anon_sym_BSLASHACRfull] = ACTIONS(4841), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), - [anon_sym_BSLASHacs] = ACTIONS(4841), - [anon_sym_BSLASHAcs] = ACTIONS(4841), - [anon_sym_BSLASHacsp] = ACTIONS(4841), - [anon_sym_BSLASHAcsp] = ACTIONS(4841), - [anon_sym_BSLASHacl] = ACTIONS(4841), - [anon_sym_BSLASHAcl] = ACTIONS(4841), - [anon_sym_BSLASHaclp] = ACTIONS(4841), - [anon_sym_BSLASHAclp] = ACTIONS(4841), - [anon_sym_BSLASHacf] = ACTIONS(4841), - [anon_sym_BSLASHAcf] = ACTIONS(4841), - [anon_sym_BSLASHacfp] = ACTIONS(4841), - [anon_sym_BSLASHAcfp] = ACTIONS(4841), - [anon_sym_BSLASHac] = ACTIONS(4841), - [anon_sym_BSLASHAc] = ACTIONS(4841), - [anon_sym_BSLASHacp] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), - [anon_sym_BSLASHcolor] = ACTIONS(4841), - [anon_sym_BSLASHcolorbox] = ACTIONS(4841), - [anon_sym_BSLASHtextcolor] = ACTIONS(4841), - [anon_sym_BSLASHpagecolor] = ACTIONS(4841), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), - [anon_sym_BSLASHtext] = ACTIONS(4841), - [anon_sym_BSLASHintertext] = ACTIONS(4841), - [anon_sym_shortintertext] = ACTIONS(4841), + [sym_command_name] = ACTIONS(4920), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_BSLASHpart] = ACTIONS(4920), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddpart] = ACTIONS(4920), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4918), + [anon_sym_BSLASHchapter] = ACTIONS(4920), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddchap] = ACTIONS(4920), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsection] = ACTIONS(4920), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHaddsec] = ACTIONS(4920), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4920), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4918), + [anon_sym_BSLASHparagraph] = ACTIONS(4920), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4920), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4918), + [anon_sym_BSLASHitem] = ACTIONS(4920), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(692), + [sym_word] = ACTIONS(4920), + [sym_placeholder] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym__] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4918), + [anon_sym_DOLLAR] = ACTIONS(4920), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4918), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4918), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4918), + [anon_sym_BSLASHbegin] = ACTIONS(4920), + [anon_sym_BSLASHusepackage] = ACTIONS(4920), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4920), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4920), + [anon_sym_BSLASHinclude] = ACTIONS(4920), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4920), + [anon_sym_BSLASHinput] = ACTIONS(4920), + [anon_sym_BSLASHsubfile] = ACTIONS(4920), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4920), + [anon_sym_BSLASHbibliography] = ACTIONS(4920), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4920), + [anon_sym_BSLASHincludesvg] = ACTIONS(4920), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4920), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4920), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4920), + [anon_sym_BSLASHimport] = ACTIONS(4920), + [anon_sym_BSLASHsubimport] = ACTIONS(4920), + [anon_sym_BSLASHinputfrom] = ACTIONS(4920), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4920), + [anon_sym_BSLASHincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4920), + [anon_sym_BSLASHcaption] = ACTIONS(4920), + [anon_sym_BSLASHcite] = ACTIONS(4920), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCite] = ACTIONS(4920), + [anon_sym_BSLASHnocite] = ACTIONS(4920), + [anon_sym_BSLASHcitet] = ACTIONS(4920), + [anon_sym_BSLASHcitep] = ACTIONS(4920), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteauthor] = ACTIONS(4920), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4920), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitetitle] = ACTIONS(4920), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteyear] = ACTIONS(4920), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4918), + [anon_sym_BSLASHcitedate] = ACTIONS(4920), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4918), + [anon_sym_BSLASHciteurl] = ACTIONS(4920), + [anon_sym_BSLASHfullcite] = ACTIONS(4920), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4920), + [anon_sym_BSLASHcitealt] = ACTIONS(4920), + [anon_sym_BSLASHcitealp] = ACTIONS(4920), + [anon_sym_BSLASHcitetext] = ACTIONS(4920), + [anon_sym_BSLASHparencite] = ACTIONS(4920), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHParencite] = ACTIONS(4920), + [anon_sym_BSLASHfootcite] = ACTIONS(4920), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4920), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4920), + [anon_sym_BSLASHtextcite] = ACTIONS(4920), + [anon_sym_BSLASHTextcite] = ACTIONS(4920), + [anon_sym_BSLASHsmartcite] = ACTIONS(4920), + [anon_sym_BSLASHSmartcite] = ACTIONS(4920), + [anon_sym_BSLASHsupercite] = ACTIONS(4920), + [anon_sym_BSLASHautocite] = ACTIONS(4920), + [anon_sym_BSLASHAutocite] = ACTIONS(4920), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4918), + [anon_sym_BSLASHvolcite] = ACTIONS(4920), + [anon_sym_BSLASHVolcite] = ACTIONS(4920), + [anon_sym_BSLASHpvolcite] = ACTIONS(4920), + [anon_sym_BSLASHPvolcite] = ACTIONS(4920), + [anon_sym_BSLASHfvolcite] = ACTIONS(4920), + [anon_sym_BSLASHftvolcite] = ACTIONS(4920), + [anon_sym_BSLASHsvolcite] = ACTIONS(4920), + [anon_sym_BSLASHSvolcite] = ACTIONS(4920), + [anon_sym_BSLASHtvolcite] = ACTIONS(4920), + [anon_sym_BSLASHTvolcite] = ACTIONS(4920), + [anon_sym_BSLASHavolcite] = ACTIONS(4920), + [anon_sym_BSLASHAvolcite] = ACTIONS(4920), + [anon_sym_BSLASHnotecite] = ACTIONS(4920), + [anon_sym_BSLASHNotecite] = ACTIONS(4920), + [anon_sym_BSLASHpnotecite] = ACTIONS(4920), + [anon_sym_BSLASHPnotecite] = ACTIONS(4920), + [anon_sym_BSLASHfnotecite] = ACTIONS(4920), + [anon_sym_BSLASHlabel] = ACTIONS(4920), + [anon_sym_BSLASHref] = ACTIONS(4920), + [anon_sym_BSLASHeqref] = ACTIONS(4920), + [anon_sym_BSLASHvref] = ACTIONS(4920), + [anon_sym_BSLASHVref] = ACTIONS(4920), + [anon_sym_BSLASHautoref] = ACTIONS(4920), + [anon_sym_BSLASHpageref] = ACTIONS(4920), + [anon_sym_BSLASHcref] = ACTIONS(4920), + [anon_sym_BSLASHCref] = ACTIONS(4920), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnameCref] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4920), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4920), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4920), + [anon_sym_BSLASHlabelcref] = ACTIONS(4920), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange] = ACTIONS(4920), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHCrefrange] = ACTIONS(4920), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4918), + [anon_sym_BSLASHnewlabel] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand] = ACTIONS(4920), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4920), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4920), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4918), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4920), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdef] = ACTIONS(4920), + [anon_sym_BSLASHlet] = ACTIONS(4920), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4920), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4920), + [anon_sym_BSLASHgls] = ACTIONS(4920), + [anon_sym_BSLASHGls] = ACTIONS(4920), + [anon_sym_BSLASHGLS] = ACTIONS(4920), + [anon_sym_BSLASHglspl] = ACTIONS(4920), + [anon_sym_BSLASHGlspl] = ACTIONS(4920), + [anon_sym_BSLASHGLSpl] = ACTIONS(4920), + [anon_sym_BSLASHglsdisp] = ACTIONS(4920), + [anon_sym_BSLASHglslink] = ACTIONS(4920), + [anon_sym_BSLASHglstext] = ACTIONS(4920), + [anon_sym_BSLASHGlstext] = ACTIONS(4920), + [anon_sym_BSLASHGLStext] = ACTIONS(4920), + [anon_sym_BSLASHglsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4920), + [anon_sym_BSLASHglsplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSplural] = ACTIONS(4920), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4920), + [anon_sym_BSLASHglsname] = ACTIONS(4920), + [anon_sym_BSLASHGlsname] = ACTIONS(4920), + [anon_sym_BSLASHGLSname] = ACTIONS(4920), + [anon_sym_BSLASHglssymbol] = ACTIONS(4920), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4920), + [anon_sym_BSLASHglsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4920), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4920), + [anon_sym_BSLASHglsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4920), + [anon_sym_BSLASHglsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4920), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4920), + [anon_sym_BSLASHglsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4920), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4920), + [anon_sym_BSLASHglsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4920), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4920), + [anon_sym_BSLASHnewacronym] = ACTIONS(4920), + [anon_sym_BSLASHacrshort] = ACTIONS(4920), + [anon_sym_BSLASHAcrshort] = ACTIONS(4920), + [anon_sym_BSLASHACRshort] = ACTIONS(4920), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4920), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4920), + [anon_sym_BSLASHacrlong] = ACTIONS(4920), + [anon_sym_BSLASHAcrlong] = ACTIONS(4920), + [anon_sym_BSLASHACRlong] = ACTIONS(4920), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4920), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4920), + [anon_sym_BSLASHacrfull] = ACTIONS(4920), + [anon_sym_BSLASHAcrfull] = ACTIONS(4920), + [anon_sym_BSLASHACRfull] = ACTIONS(4920), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4920), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4920), + [anon_sym_BSLASHacs] = ACTIONS(4920), + [anon_sym_BSLASHAcs] = ACTIONS(4920), + [anon_sym_BSLASHacsp] = ACTIONS(4920), + [anon_sym_BSLASHAcsp] = ACTIONS(4920), + [anon_sym_BSLASHacl] = ACTIONS(4920), + [anon_sym_BSLASHAcl] = ACTIONS(4920), + [anon_sym_BSLASHaclp] = ACTIONS(4920), + [anon_sym_BSLASHAclp] = ACTIONS(4920), + [anon_sym_BSLASHacf] = ACTIONS(4920), + [anon_sym_BSLASHAcf] = ACTIONS(4920), + [anon_sym_BSLASHacfp] = ACTIONS(4920), + [anon_sym_BSLASHAcfp] = ACTIONS(4920), + [anon_sym_BSLASHac] = ACTIONS(4920), + [anon_sym_BSLASHAc] = ACTIONS(4920), + [anon_sym_BSLASHacp] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4920), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4920), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4920), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4920), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4920), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4918), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4920), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4920), + [anon_sym_BSLASHcolor] = ACTIONS(4920), + [anon_sym_BSLASHcolorbox] = ACTIONS(4920), + [anon_sym_BSLASHtextcolor] = ACTIONS(4920), + [anon_sym_BSLASHpagecolor] = ACTIONS(4920), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4920), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4920), + [anon_sym_BSLASHtext] = ACTIONS(4920), + [anon_sym_BSLASHintertext] = ACTIONS(4920), + [anon_sym_shortintertext] = ACTIONS(4920), }, [822] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_BSLASHpart] = ACTIONS(5280), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddpart] = ACTIONS(5280), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHchapter] = ACTIONS(5280), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddchap] = ACTIONS(5280), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsection] = ACTIONS(5280), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddsec] = ACTIONS(5280), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHparagraph] = ACTIONS(5280), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5280), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHitem] = ACTIONS(5280), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASHbegin] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [823] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHend] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(5084), + [anon_sym_BSLASHpart] = ACTIONS(5086), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddpart] = ACTIONS(5086), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHchapter] = ACTIONS(5086), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddchap] = ACTIONS(5086), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsection] = ACTIONS(5086), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddsec] = ACTIONS(5086), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHparagraph] = ACTIONS(5086), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5086), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHitem] = ACTIONS(5086), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASHbegin] = ACTIONS(5086), + [anon_sym_BSLASHend] = ACTIONS(5086), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [824] = { - [sym_command_name] = ACTIONS(5131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_BSLASHpart] = ACTIONS(5131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddpart] = ACTIONS(5131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHchapter] = ACTIONS(5131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddchap] = ACTIONS(5131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsection] = ACTIONS(5131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddsec] = ACTIONS(5131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHparagraph] = ACTIONS(5131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHitem] = ACTIONS(5131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5129), - [sym_word] = ACTIONS(5131), - [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_DOLLAR_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), - [anon_sym_BSLASHbegin] = ACTIONS(5131), - [anon_sym_BSLASHusepackage] = ACTIONS(5131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), - [anon_sym_BSLASHinclude] = ACTIONS(5131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), - [anon_sym_BSLASHinput] = ACTIONS(5131), - [anon_sym_BSLASHsubfile] = ACTIONS(5131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), - [anon_sym_BSLASHbibliography] = ACTIONS(5131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), - [anon_sym_BSLASHincludesvg] = ACTIONS(5131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), - [anon_sym_BSLASHimport] = ACTIONS(5131), - [anon_sym_BSLASHsubimport] = ACTIONS(5131), - [anon_sym_BSLASHinputfrom] = ACTIONS(5131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), - [anon_sym_BSLASHincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHcaption] = ACTIONS(5131), - [anon_sym_BSLASHcite] = ACTIONS(5131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCite] = ACTIONS(5131), - [anon_sym_BSLASHnocite] = ACTIONS(5131), - [anon_sym_BSLASHcitet] = ACTIONS(5131), - [anon_sym_BSLASHcitep] = ACTIONS(5131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor] = ACTIONS(5131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle] = ACTIONS(5131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteyear] = ACTIONS(5131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitedate] = ACTIONS(5131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteurl] = ACTIONS(5131), - [anon_sym_BSLASHfullcite] = ACTIONS(5131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), - [anon_sym_BSLASHcitealt] = ACTIONS(5131), - [anon_sym_BSLASHcitealp] = ACTIONS(5131), - [anon_sym_BSLASHcitetext] = ACTIONS(5131), - [anon_sym_BSLASHparencite] = ACTIONS(5131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHParencite] = ACTIONS(5131), - [anon_sym_BSLASHfootcite] = ACTIONS(5131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), - [anon_sym_BSLASHtextcite] = ACTIONS(5131), - [anon_sym_BSLASHTextcite] = ACTIONS(5131), - [anon_sym_BSLASHsmartcite] = ACTIONS(5131), - [anon_sym_BSLASHSmartcite] = ACTIONS(5131), - [anon_sym_BSLASHsupercite] = ACTIONS(5131), - [anon_sym_BSLASHautocite] = ACTIONS(5131), - [anon_sym_BSLASHAutocite] = ACTIONS(5131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHvolcite] = ACTIONS(5131), - [anon_sym_BSLASHVolcite] = ACTIONS(5131), - [anon_sym_BSLASHpvolcite] = ACTIONS(5131), - [anon_sym_BSLASHPvolcite] = ACTIONS(5131), - [anon_sym_BSLASHfvolcite] = ACTIONS(5131), - [anon_sym_BSLASHftvolcite] = ACTIONS(5131), - [anon_sym_BSLASHsvolcite] = ACTIONS(5131), - [anon_sym_BSLASHSvolcite] = ACTIONS(5131), - [anon_sym_BSLASHtvolcite] = ACTIONS(5131), - [anon_sym_BSLASHTvolcite] = ACTIONS(5131), - [anon_sym_BSLASHavolcite] = ACTIONS(5131), - [anon_sym_BSLASHAvolcite] = ACTIONS(5131), - [anon_sym_BSLASHnotecite] = ACTIONS(5131), - [anon_sym_BSLASHNotecite] = ACTIONS(5131), - [anon_sym_BSLASHpnotecite] = ACTIONS(5131), - [anon_sym_BSLASHPnotecite] = ACTIONS(5131), - [anon_sym_BSLASHfnotecite] = ACTIONS(5131), - [anon_sym_BSLASHlabel] = ACTIONS(5131), - [anon_sym_BSLASHref] = ACTIONS(5131), - [anon_sym_BSLASHeqref] = ACTIONS(5131), - [anon_sym_BSLASHvref] = ACTIONS(5131), - [anon_sym_BSLASHVref] = ACTIONS(5131), - [anon_sym_BSLASHautoref] = ACTIONS(5131), - [anon_sym_BSLASHpageref] = ACTIONS(5131), - [anon_sym_BSLASHcref] = ACTIONS(5131), - [anon_sym_BSLASHCref] = ACTIONS(5131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnameCref] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHlabelcref] = ACTIONS(5131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange] = ACTIONS(5131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnewlabel] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), - [anon_sym_BSLASHdef] = ACTIONS(5131), - [anon_sym_BSLASHlet] = ACTIONS(5131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), - [anon_sym_BSLASHgls] = ACTIONS(5131), - [anon_sym_BSLASHGls] = ACTIONS(5131), - [anon_sym_BSLASHGLS] = ACTIONS(5131), - [anon_sym_BSLASHglspl] = ACTIONS(5131), - [anon_sym_BSLASHGlspl] = ACTIONS(5131), - [anon_sym_BSLASHGLSpl] = ACTIONS(5131), - [anon_sym_BSLASHglsdisp] = ACTIONS(5131), - [anon_sym_BSLASHglslink] = ACTIONS(5131), - [anon_sym_BSLASHglstext] = ACTIONS(5131), - [anon_sym_BSLASHGlstext] = ACTIONS(5131), - [anon_sym_BSLASHGLStext] = ACTIONS(5131), - [anon_sym_BSLASHglsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), - [anon_sym_BSLASHglsplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSplural] = ACTIONS(5131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHglsname] = ACTIONS(5131), - [anon_sym_BSLASHGlsname] = ACTIONS(5131), - [anon_sym_BSLASHGLSname] = ACTIONS(5131), - [anon_sym_BSLASHglssymbol] = ACTIONS(5131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), - [anon_sym_BSLASHglsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), - [anon_sym_BSLASHglsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), - [anon_sym_BSLASHglsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), - [anon_sym_BSLASHglsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), - [anon_sym_BSLASHglsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), - [anon_sym_BSLASHnewacronym] = ACTIONS(5131), - [anon_sym_BSLASHacrshort] = ACTIONS(5131), - [anon_sym_BSLASHAcrshort] = ACTIONS(5131), - [anon_sym_BSLASHACRshort] = ACTIONS(5131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), - [anon_sym_BSLASHacrlong] = ACTIONS(5131), - [anon_sym_BSLASHAcrlong] = ACTIONS(5131), - [anon_sym_BSLASHACRlong] = ACTIONS(5131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), - [anon_sym_BSLASHacrfull] = ACTIONS(5131), - [anon_sym_BSLASHAcrfull] = ACTIONS(5131), - [anon_sym_BSLASHACRfull] = ACTIONS(5131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), - [anon_sym_BSLASHacs] = ACTIONS(5131), - [anon_sym_BSLASHAcs] = ACTIONS(5131), - [anon_sym_BSLASHacsp] = ACTIONS(5131), - [anon_sym_BSLASHAcsp] = ACTIONS(5131), - [anon_sym_BSLASHacl] = ACTIONS(5131), - [anon_sym_BSLASHAcl] = ACTIONS(5131), - [anon_sym_BSLASHaclp] = ACTIONS(5131), - [anon_sym_BSLASHAclp] = ACTIONS(5131), - [anon_sym_BSLASHacf] = ACTIONS(5131), - [anon_sym_BSLASHAcf] = ACTIONS(5131), - [anon_sym_BSLASHacfp] = ACTIONS(5131), - [anon_sym_BSLASHAcfp] = ACTIONS(5131), - [anon_sym_BSLASHac] = ACTIONS(5131), - [anon_sym_BSLASHAc] = ACTIONS(5131), - [anon_sym_BSLASHacp] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), - [anon_sym_BSLASHcolor] = ACTIONS(5131), - [anon_sym_BSLASHcolorbox] = ACTIONS(5131), - [anon_sym_BSLASHtextcolor] = ACTIONS(5131), - [anon_sym_BSLASHpagecolor] = ACTIONS(5131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), - [anon_sym_BSLASHtext] = ACTIONS(5131), - [anon_sym_BSLASHintertext] = ACTIONS(5131), - [anon_sym_shortintertext] = ACTIONS(5131), + [sym_command_name] = ACTIONS(5210), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_BSLASHpart] = ACTIONS(5210), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddpart] = ACTIONS(5210), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHchapter] = ACTIONS(5210), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddchap] = ACTIONS(5210), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsection] = ACTIONS(5210), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddsec] = ACTIONS(5210), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHparagraph] = ACTIONS(5210), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5210), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHitem] = ACTIONS(5210), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5208), + [sym_word] = ACTIONS(5210), + [sym_placeholder] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym__] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_SQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5208), + [anon_sym_BSLASHbegin] = ACTIONS(5210), + [anon_sym_BSLASHusepackage] = ACTIONS(5210), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5210), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5210), + [anon_sym_BSLASHinclude] = ACTIONS(5210), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5210), + [anon_sym_BSLASHinput] = ACTIONS(5210), + [anon_sym_BSLASHsubfile] = ACTIONS(5210), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5210), + [anon_sym_BSLASHbibliography] = ACTIONS(5210), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5210), + [anon_sym_BSLASHincludesvg] = ACTIONS(5210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5210), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5210), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5210), + [anon_sym_BSLASHimport] = ACTIONS(5210), + [anon_sym_BSLASHsubimport] = ACTIONS(5210), + [anon_sym_BSLASHinputfrom] = ACTIONS(5210), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5210), + [anon_sym_BSLASHincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHcaption] = ACTIONS(5210), + [anon_sym_BSLASHcite] = ACTIONS(5210), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCite] = ACTIONS(5210), + [anon_sym_BSLASHnocite] = ACTIONS(5210), + [anon_sym_BSLASHcitet] = ACTIONS(5210), + [anon_sym_BSLASHcitep] = ACTIONS(5210), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteauthor] = ACTIONS(5210), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5210), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitetitle] = ACTIONS(5210), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteyear] = ACTIONS(5210), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitedate] = ACTIONS(5210), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteurl] = ACTIONS(5210), + [anon_sym_BSLASHfullcite] = ACTIONS(5210), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5210), + [anon_sym_BSLASHcitealt] = ACTIONS(5210), + [anon_sym_BSLASHcitealp] = ACTIONS(5210), + [anon_sym_BSLASHcitetext] = ACTIONS(5210), + [anon_sym_BSLASHparencite] = ACTIONS(5210), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHParencite] = ACTIONS(5210), + [anon_sym_BSLASHfootcite] = ACTIONS(5210), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5210), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5210), + [anon_sym_BSLASHtextcite] = ACTIONS(5210), + [anon_sym_BSLASHTextcite] = ACTIONS(5210), + [anon_sym_BSLASHsmartcite] = ACTIONS(5210), + [anon_sym_BSLASHSmartcite] = ACTIONS(5210), + [anon_sym_BSLASHsupercite] = ACTIONS(5210), + [anon_sym_BSLASHautocite] = ACTIONS(5210), + [anon_sym_BSLASHAutocite] = ACTIONS(5210), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHvolcite] = ACTIONS(5210), + [anon_sym_BSLASHVolcite] = ACTIONS(5210), + [anon_sym_BSLASHpvolcite] = ACTIONS(5210), + [anon_sym_BSLASHPvolcite] = ACTIONS(5210), + [anon_sym_BSLASHfvolcite] = ACTIONS(5210), + [anon_sym_BSLASHftvolcite] = ACTIONS(5210), + [anon_sym_BSLASHsvolcite] = ACTIONS(5210), + [anon_sym_BSLASHSvolcite] = ACTIONS(5210), + [anon_sym_BSLASHtvolcite] = ACTIONS(5210), + [anon_sym_BSLASHTvolcite] = ACTIONS(5210), + [anon_sym_BSLASHavolcite] = ACTIONS(5210), + [anon_sym_BSLASHAvolcite] = ACTIONS(5210), + [anon_sym_BSLASHnotecite] = ACTIONS(5210), + [anon_sym_BSLASHNotecite] = ACTIONS(5210), + [anon_sym_BSLASHpnotecite] = ACTIONS(5210), + [anon_sym_BSLASHPnotecite] = ACTIONS(5210), + [anon_sym_BSLASHfnotecite] = ACTIONS(5210), + [anon_sym_BSLASHlabel] = ACTIONS(5210), + [anon_sym_BSLASHref] = ACTIONS(5210), + [anon_sym_BSLASHeqref] = ACTIONS(5210), + [anon_sym_BSLASHvref] = ACTIONS(5210), + [anon_sym_BSLASHVref] = ACTIONS(5210), + [anon_sym_BSLASHautoref] = ACTIONS(5210), + [anon_sym_BSLASHpageref] = ACTIONS(5210), + [anon_sym_BSLASHcref] = ACTIONS(5210), + [anon_sym_BSLASHCref] = ACTIONS(5210), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnameCref] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHlabelcref] = ACTIONS(5210), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCrefrange] = ACTIONS(5210), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnewlabel] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdef] = ACTIONS(5210), + [anon_sym_BSLASHlet] = ACTIONS(5210), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5210), + [anon_sym_BSLASHgls] = ACTIONS(5210), + [anon_sym_BSLASHGls] = ACTIONS(5210), + [anon_sym_BSLASHGLS] = ACTIONS(5210), + [anon_sym_BSLASHglspl] = ACTIONS(5210), + [anon_sym_BSLASHGlspl] = ACTIONS(5210), + [anon_sym_BSLASHGLSpl] = ACTIONS(5210), + [anon_sym_BSLASHglsdisp] = ACTIONS(5210), + [anon_sym_BSLASHglslink] = ACTIONS(5210), + [anon_sym_BSLASHglstext] = ACTIONS(5210), + [anon_sym_BSLASHGlstext] = ACTIONS(5210), + [anon_sym_BSLASHGLStext] = ACTIONS(5210), + [anon_sym_BSLASHglsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5210), + [anon_sym_BSLASHglsplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSplural] = ACTIONS(5210), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHglsname] = ACTIONS(5210), + [anon_sym_BSLASHGlsname] = ACTIONS(5210), + [anon_sym_BSLASHGLSname] = ACTIONS(5210), + [anon_sym_BSLASHglssymbol] = ACTIONS(5210), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5210), + [anon_sym_BSLASHglsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5210), + [anon_sym_BSLASHglsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5210), + [anon_sym_BSLASHglsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5210), + [anon_sym_BSLASHglsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5210), + [anon_sym_BSLASHglsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5210), + [anon_sym_BSLASHnewacronym] = ACTIONS(5210), + [anon_sym_BSLASHacrshort] = ACTIONS(5210), + [anon_sym_BSLASHAcrshort] = ACTIONS(5210), + [anon_sym_BSLASHACRshort] = ACTIONS(5210), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5210), + [anon_sym_BSLASHacrlong] = ACTIONS(5210), + [anon_sym_BSLASHAcrlong] = ACTIONS(5210), + [anon_sym_BSLASHACRlong] = ACTIONS(5210), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5210), + [anon_sym_BSLASHacrfull] = ACTIONS(5210), + [anon_sym_BSLASHAcrfull] = ACTIONS(5210), + [anon_sym_BSLASHACRfull] = ACTIONS(5210), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5210), + [anon_sym_BSLASHacs] = ACTIONS(5210), + [anon_sym_BSLASHAcs] = ACTIONS(5210), + [anon_sym_BSLASHacsp] = ACTIONS(5210), + [anon_sym_BSLASHAcsp] = ACTIONS(5210), + [anon_sym_BSLASHacl] = ACTIONS(5210), + [anon_sym_BSLASHAcl] = ACTIONS(5210), + [anon_sym_BSLASHaclp] = ACTIONS(5210), + [anon_sym_BSLASHAclp] = ACTIONS(5210), + [anon_sym_BSLASHacf] = ACTIONS(5210), + [anon_sym_BSLASHAcf] = ACTIONS(5210), + [anon_sym_BSLASHacfp] = ACTIONS(5210), + [anon_sym_BSLASHAcfp] = ACTIONS(5210), + [anon_sym_BSLASHac] = ACTIONS(5210), + [anon_sym_BSLASHAc] = ACTIONS(5210), + [anon_sym_BSLASHacp] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5210), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5210), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5210), + [anon_sym_BSLASHcolor] = ACTIONS(5210), + [anon_sym_BSLASHcolorbox] = ACTIONS(5210), + [anon_sym_BSLASHtextcolor] = ACTIONS(5210), + [anon_sym_BSLASHpagecolor] = ACTIONS(5210), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5210), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5210), + [anon_sym_BSLASHtext] = ACTIONS(5210), + [anon_sym_BSLASHintertext] = ACTIONS(5210), + [anon_sym_shortintertext] = ACTIONS(5210), }, [825] = { - [sym_command_name] = ACTIONS(4935), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4933), - [anon_sym_BSLASHpart] = ACTIONS(4935), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddpart] = ACTIONS(4935), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHchapter] = ACTIONS(4935), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddchap] = ACTIONS(4935), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsection] = ACTIONS(4935), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddsec] = ACTIONS(4935), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHparagraph] = ACTIONS(4935), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHitem] = ACTIONS(4935), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4933), - [sym_word] = ACTIONS(4935), - [sym_placeholder] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_CARET] = ACTIONS(4935), - [anon_sym__] = ACTIONS(4935), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4935), - [anon_sym_COLON] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4933), - [anon_sym_DOLLAR] = ACTIONS(4935), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), - [anon_sym_BSLASHbegin] = ACTIONS(4935), - [anon_sym_BSLASHusepackage] = ACTIONS(4935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), - [anon_sym_BSLASHinclude] = ACTIONS(4935), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), - [anon_sym_BSLASHinput] = ACTIONS(4935), - [anon_sym_BSLASHsubfile] = ACTIONS(4935), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), - [anon_sym_BSLASHbibliography] = ACTIONS(4935), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), - [anon_sym_BSLASHincludesvg] = ACTIONS(4935), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), - [anon_sym_BSLASHimport] = ACTIONS(4935), - [anon_sym_BSLASHsubimport] = ACTIONS(4935), - [anon_sym_BSLASHinputfrom] = ACTIONS(4935), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), - [anon_sym_BSLASHincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHcaption] = ACTIONS(4935), - [anon_sym_BSLASHcite] = ACTIONS(4935), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCite] = ACTIONS(4935), - [anon_sym_BSLASHnocite] = ACTIONS(4935), - [anon_sym_BSLASHcitet] = ACTIONS(4935), - [anon_sym_BSLASHcitep] = ACTIONS(4935), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteauthor] = ACTIONS(4935), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitetitle] = ACTIONS(4935), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteyear] = ACTIONS(4935), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitedate] = ACTIONS(4935), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteurl] = ACTIONS(4935), - [anon_sym_BSLASHfullcite] = ACTIONS(4935), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), - [anon_sym_BSLASHcitealt] = ACTIONS(4935), - [anon_sym_BSLASHcitealp] = ACTIONS(4935), - [anon_sym_BSLASHcitetext] = ACTIONS(4935), - [anon_sym_BSLASHparencite] = ACTIONS(4935), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHParencite] = ACTIONS(4935), - [anon_sym_BSLASHfootcite] = ACTIONS(4935), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), - [anon_sym_BSLASHtextcite] = ACTIONS(4935), - [anon_sym_BSLASHTextcite] = ACTIONS(4935), - [anon_sym_BSLASHsmartcite] = ACTIONS(4935), - [anon_sym_BSLASHSmartcite] = ACTIONS(4935), - [anon_sym_BSLASHsupercite] = ACTIONS(4935), - [anon_sym_BSLASHautocite] = ACTIONS(4935), - [anon_sym_BSLASHAutocite] = ACTIONS(4935), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHvolcite] = ACTIONS(4935), - [anon_sym_BSLASHVolcite] = ACTIONS(4935), - [anon_sym_BSLASHpvolcite] = ACTIONS(4935), - [anon_sym_BSLASHPvolcite] = ACTIONS(4935), - [anon_sym_BSLASHfvolcite] = ACTIONS(4935), - [anon_sym_BSLASHftvolcite] = ACTIONS(4935), - [anon_sym_BSLASHsvolcite] = ACTIONS(4935), - [anon_sym_BSLASHSvolcite] = ACTIONS(4935), - [anon_sym_BSLASHtvolcite] = ACTIONS(4935), - [anon_sym_BSLASHTvolcite] = ACTIONS(4935), - [anon_sym_BSLASHavolcite] = ACTIONS(4935), - [anon_sym_BSLASHAvolcite] = ACTIONS(4935), - [anon_sym_BSLASHnotecite] = ACTIONS(4935), - [anon_sym_BSLASHNotecite] = ACTIONS(4935), - [anon_sym_BSLASHpnotecite] = ACTIONS(4935), - [anon_sym_BSLASHPnotecite] = ACTIONS(4935), - [anon_sym_BSLASHfnotecite] = ACTIONS(4935), - [anon_sym_BSLASHlabel] = ACTIONS(4935), - [anon_sym_BSLASHref] = ACTIONS(4935), - [anon_sym_BSLASHeqref] = ACTIONS(4935), - [anon_sym_BSLASHvref] = ACTIONS(4935), - [anon_sym_BSLASHVref] = ACTIONS(4935), - [anon_sym_BSLASHautoref] = ACTIONS(4935), - [anon_sym_BSLASHpageref] = ACTIONS(4935), - [anon_sym_BSLASHcref] = ACTIONS(4935), - [anon_sym_BSLASHCref] = ACTIONS(4935), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnameCref] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHlabelcref] = ACTIONS(4935), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCrefrange] = ACTIONS(4935), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnewlabel] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), - [anon_sym_BSLASHdef] = ACTIONS(4935), - [anon_sym_BSLASHlet] = ACTIONS(4935), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), - [anon_sym_BSLASHgls] = ACTIONS(4935), - [anon_sym_BSLASHGls] = ACTIONS(4935), - [anon_sym_BSLASHGLS] = ACTIONS(4935), - [anon_sym_BSLASHglspl] = ACTIONS(4935), - [anon_sym_BSLASHGlspl] = ACTIONS(4935), - [anon_sym_BSLASHGLSpl] = ACTIONS(4935), - [anon_sym_BSLASHglsdisp] = ACTIONS(4935), - [anon_sym_BSLASHglslink] = ACTIONS(4935), - [anon_sym_BSLASHglstext] = ACTIONS(4935), - [anon_sym_BSLASHGlstext] = ACTIONS(4935), - [anon_sym_BSLASHGLStext] = ACTIONS(4935), - [anon_sym_BSLASHglsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), - [anon_sym_BSLASHglsplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSplural] = ACTIONS(4935), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHglsname] = ACTIONS(4935), - [anon_sym_BSLASHGlsname] = ACTIONS(4935), - [anon_sym_BSLASHGLSname] = ACTIONS(4935), - [anon_sym_BSLASHglssymbol] = ACTIONS(4935), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), - [anon_sym_BSLASHglsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), - [anon_sym_BSLASHglsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), - [anon_sym_BSLASHglsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), - [anon_sym_BSLASHglsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), - [anon_sym_BSLASHglsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), - [anon_sym_BSLASHnewacronym] = ACTIONS(4935), - [anon_sym_BSLASHacrshort] = ACTIONS(4935), - [anon_sym_BSLASHAcrshort] = ACTIONS(4935), - [anon_sym_BSLASHACRshort] = ACTIONS(4935), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), - [anon_sym_BSLASHacrlong] = ACTIONS(4935), - [anon_sym_BSLASHAcrlong] = ACTIONS(4935), - [anon_sym_BSLASHACRlong] = ACTIONS(4935), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), - [anon_sym_BSLASHacrfull] = ACTIONS(4935), - [anon_sym_BSLASHAcrfull] = ACTIONS(4935), - [anon_sym_BSLASHACRfull] = ACTIONS(4935), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), - [anon_sym_BSLASHacs] = ACTIONS(4935), - [anon_sym_BSLASHAcs] = ACTIONS(4935), - [anon_sym_BSLASHacsp] = ACTIONS(4935), - [anon_sym_BSLASHAcsp] = ACTIONS(4935), - [anon_sym_BSLASHacl] = ACTIONS(4935), - [anon_sym_BSLASHAcl] = ACTIONS(4935), - [anon_sym_BSLASHaclp] = ACTIONS(4935), - [anon_sym_BSLASHAclp] = ACTIONS(4935), - [anon_sym_BSLASHacf] = ACTIONS(4935), - [anon_sym_BSLASHAcf] = ACTIONS(4935), - [anon_sym_BSLASHacfp] = ACTIONS(4935), - [anon_sym_BSLASHAcfp] = ACTIONS(4935), - [anon_sym_BSLASHac] = ACTIONS(4935), - [anon_sym_BSLASHAc] = ACTIONS(4935), - [anon_sym_BSLASHacp] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), - [anon_sym_BSLASHcolor] = ACTIONS(4935), - [anon_sym_BSLASHcolorbox] = ACTIONS(4935), - [anon_sym_BSLASHtextcolor] = ACTIONS(4935), - [anon_sym_BSLASHpagecolor] = ACTIONS(4935), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - [anon_sym_BSLASHtext] = ACTIONS(4935), - [anon_sym_BSLASHintertext] = ACTIONS(4935), - [anon_sym_shortintertext] = ACTIONS(4935), + [sym_command_name] = ACTIONS(5014), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_BSLASHpart] = ACTIONS(5014), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddpart] = ACTIONS(5014), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHchapter] = ACTIONS(5014), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddchap] = ACTIONS(5014), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsection] = ACTIONS(5014), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddsec] = ACTIONS(5014), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHparagraph] = ACTIONS(5014), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5014), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHitem] = ACTIONS(5014), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [sym_word] = ACTIONS(5014), + [sym_placeholder] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5012), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5012), + [anon_sym_BSLASHbegin] = ACTIONS(5014), + [anon_sym_BSLASHusepackage] = ACTIONS(5014), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5014), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5014), + [anon_sym_BSLASHinclude] = ACTIONS(5014), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5014), + [anon_sym_BSLASHinput] = ACTIONS(5014), + [anon_sym_BSLASHsubfile] = ACTIONS(5014), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5014), + [anon_sym_BSLASHbibliography] = ACTIONS(5014), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5014), + [anon_sym_BSLASHincludesvg] = ACTIONS(5014), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5014), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5014), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5014), + [anon_sym_BSLASHimport] = ACTIONS(5014), + [anon_sym_BSLASHsubimport] = ACTIONS(5014), + [anon_sym_BSLASHinputfrom] = ACTIONS(5014), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5014), + [anon_sym_BSLASHincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHcaption] = ACTIONS(5014), + [anon_sym_BSLASHcite] = ACTIONS(5014), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCite] = ACTIONS(5014), + [anon_sym_BSLASHnocite] = ACTIONS(5014), + [anon_sym_BSLASHcitet] = ACTIONS(5014), + [anon_sym_BSLASHcitep] = ACTIONS(5014), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteauthor] = ACTIONS(5014), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5014), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitetitle] = ACTIONS(5014), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteyear] = ACTIONS(5014), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitedate] = ACTIONS(5014), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteurl] = ACTIONS(5014), + [anon_sym_BSLASHfullcite] = ACTIONS(5014), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5014), + [anon_sym_BSLASHcitealt] = ACTIONS(5014), + [anon_sym_BSLASHcitealp] = ACTIONS(5014), + [anon_sym_BSLASHcitetext] = ACTIONS(5014), + [anon_sym_BSLASHparencite] = ACTIONS(5014), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHParencite] = ACTIONS(5014), + [anon_sym_BSLASHfootcite] = ACTIONS(5014), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5014), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5014), + [anon_sym_BSLASHtextcite] = ACTIONS(5014), + [anon_sym_BSLASHTextcite] = ACTIONS(5014), + [anon_sym_BSLASHsmartcite] = ACTIONS(5014), + [anon_sym_BSLASHSmartcite] = ACTIONS(5014), + [anon_sym_BSLASHsupercite] = ACTIONS(5014), + [anon_sym_BSLASHautocite] = ACTIONS(5014), + [anon_sym_BSLASHAutocite] = ACTIONS(5014), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHvolcite] = ACTIONS(5014), + [anon_sym_BSLASHVolcite] = ACTIONS(5014), + [anon_sym_BSLASHpvolcite] = ACTIONS(5014), + [anon_sym_BSLASHPvolcite] = ACTIONS(5014), + [anon_sym_BSLASHfvolcite] = ACTIONS(5014), + [anon_sym_BSLASHftvolcite] = ACTIONS(5014), + [anon_sym_BSLASHsvolcite] = ACTIONS(5014), + [anon_sym_BSLASHSvolcite] = ACTIONS(5014), + [anon_sym_BSLASHtvolcite] = ACTIONS(5014), + [anon_sym_BSLASHTvolcite] = ACTIONS(5014), + [anon_sym_BSLASHavolcite] = ACTIONS(5014), + [anon_sym_BSLASHAvolcite] = ACTIONS(5014), + [anon_sym_BSLASHnotecite] = ACTIONS(5014), + [anon_sym_BSLASHNotecite] = ACTIONS(5014), + [anon_sym_BSLASHpnotecite] = ACTIONS(5014), + [anon_sym_BSLASHPnotecite] = ACTIONS(5014), + [anon_sym_BSLASHfnotecite] = ACTIONS(5014), + [anon_sym_BSLASHlabel] = ACTIONS(5014), + [anon_sym_BSLASHref] = ACTIONS(5014), + [anon_sym_BSLASHeqref] = ACTIONS(5014), + [anon_sym_BSLASHvref] = ACTIONS(5014), + [anon_sym_BSLASHVref] = ACTIONS(5014), + [anon_sym_BSLASHautoref] = ACTIONS(5014), + [anon_sym_BSLASHpageref] = ACTIONS(5014), + [anon_sym_BSLASHcref] = ACTIONS(5014), + [anon_sym_BSLASHCref] = ACTIONS(5014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnameCref] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHlabelcref] = ACTIONS(5014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCrefrange] = ACTIONS(5014), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnewlabel] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5014), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5014), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5014), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdef] = ACTIONS(5014), + [anon_sym_BSLASHlet] = ACTIONS(5014), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5014), + [anon_sym_BSLASHgls] = ACTIONS(5014), + [anon_sym_BSLASHGls] = ACTIONS(5014), + [anon_sym_BSLASHGLS] = ACTIONS(5014), + [anon_sym_BSLASHglspl] = ACTIONS(5014), + [anon_sym_BSLASHGlspl] = ACTIONS(5014), + [anon_sym_BSLASHGLSpl] = ACTIONS(5014), + [anon_sym_BSLASHglsdisp] = ACTIONS(5014), + [anon_sym_BSLASHglslink] = ACTIONS(5014), + [anon_sym_BSLASHglstext] = ACTIONS(5014), + [anon_sym_BSLASHGlstext] = ACTIONS(5014), + [anon_sym_BSLASHGLStext] = ACTIONS(5014), + [anon_sym_BSLASHglsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5014), + [anon_sym_BSLASHglsplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSplural] = ACTIONS(5014), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHglsname] = ACTIONS(5014), + [anon_sym_BSLASHGlsname] = ACTIONS(5014), + [anon_sym_BSLASHGLSname] = ACTIONS(5014), + [anon_sym_BSLASHglssymbol] = ACTIONS(5014), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5014), + [anon_sym_BSLASHglsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5014), + [anon_sym_BSLASHglsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5014), + [anon_sym_BSLASHglsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5014), + [anon_sym_BSLASHglsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5014), + [anon_sym_BSLASHglsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5014), + [anon_sym_BSLASHnewacronym] = ACTIONS(5014), + [anon_sym_BSLASHacrshort] = ACTIONS(5014), + [anon_sym_BSLASHAcrshort] = ACTIONS(5014), + [anon_sym_BSLASHACRshort] = ACTIONS(5014), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5014), + [anon_sym_BSLASHacrlong] = ACTIONS(5014), + [anon_sym_BSLASHAcrlong] = ACTIONS(5014), + [anon_sym_BSLASHACRlong] = ACTIONS(5014), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5014), + [anon_sym_BSLASHacrfull] = ACTIONS(5014), + [anon_sym_BSLASHAcrfull] = ACTIONS(5014), + [anon_sym_BSLASHACRfull] = ACTIONS(5014), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5014), + [anon_sym_BSLASHacs] = ACTIONS(5014), + [anon_sym_BSLASHAcs] = ACTIONS(5014), + [anon_sym_BSLASHacsp] = ACTIONS(5014), + [anon_sym_BSLASHAcsp] = ACTIONS(5014), + [anon_sym_BSLASHacl] = ACTIONS(5014), + [anon_sym_BSLASHAcl] = ACTIONS(5014), + [anon_sym_BSLASHaclp] = ACTIONS(5014), + [anon_sym_BSLASHAclp] = ACTIONS(5014), + [anon_sym_BSLASHacf] = ACTIONS(5014), + [anon_sym_BSLASHAcf] = ACTIONS(5014), + [anon_sym_BSLASHacfp] = ACTIONS(5014), + [anon_sym_BSLASHAcfp] = ACTIONS(5014), + [anon_sym_BSLASHac] = ACTIONS(5014), + [anon_sym_BSLASHAc] = ACTIONS(5014), + [anon_sym_BSLASHacp] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5014), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5014), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5014), + [anon_sym_BSLASHcolor] = ACTIONS(5014), + [anon_sym_BSLASHcolorbox] = ACTIONS(5014), + [anon_sym_BSLASHtextcolor] = ACTIONS(5014), + [anon_sym_BSLASHpagecolor] = ACTIONS(5014), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5014), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5014), + [anon_sym_BSLASHtext] = ACTIONS(5014), + [anon_sym_BSLASHintertext] = ACTIONS(5014), + [anon_sym_shortintertext] = ACTIONS(5014), }, [826] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_BSLASHpart] = ACTIONS(5214), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddpart] = ACTIONS(5214), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHchapter] = ACTIONS(5214), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddchap] = ACTIONS(5214), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsection] = ACTIONS(5214), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddsec] = ACTIONS(5214), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHparagraph] = ACTIONS(5214), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5214), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHitem] = ACTIONS(5214), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASHbegin] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [827] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_BSLASHpart] = ACTIONS(5157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddpart] = ACTIONS(5157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHchapter] = ACTIONS(5157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddchap] = ACTIONS(5157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsection] = ACTIONS(5157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddsec] = ACTIONS(5157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHparagraph] = ACTIONS(5157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHitem] = ACTIONS(5157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASHbegin] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_BSLASHpart] = ACTIONS(5236), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddpart] = ACTIONS(5236), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHchapter] = ACTIONS(5236), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddchap] = ACTIONS(5236), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsection] = ACTIONS(5236), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddsec] = ACTIONS(5236), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHparagraph] = ACTIONS(5236), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5236), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHitem] = ACTIONS(5236), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASHbegin] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [828] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_BSLASHpart] = ACTIONS(5309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddpart] = ACTIONS(5309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHchapter] = ACTIONS(5309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddchap] = ACTIONS(5309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsection] = ACTIONS(5309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddsec] = ACTIONS(5309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHparagraph] = ACTIONS(5309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHitem] = ACTIONS(5309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASHbegin] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_BSLASHpart] = ACTIONS(5388), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddpart] = ACTIONS(5388), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHchapter] = ACTIONS(5388), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddchap] = ACTIONS(5388), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsection] = ACTIONS(5388), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddsec] = ACTIONS(5388), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHparagraph] = ACTIONS(5388), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5388), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHitem] = ACTIONS(5388), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASHbegin] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [829] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_BSLASHpart] = ACTIONS(5281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddpart] = ACTIONS(5281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHchapter] = ACTIONS(5281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddchap] = ACTIONS(5281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsection] = ACTIONS(5281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddsec] = ACTIONS(5281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHparagraph] = ACTIONS(5281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHitem] = ACTIONS(5281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASHbegin] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_BSLASHpart] = ACTIONS(5360), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddpart] = ACTIONS(5360), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHchapter] = ACTIONS(5360), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddchap] = ACTIONS(5360), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsection] = ACTIONS(5360), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddsec] = ACTIONS(5360), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHparagraph] = ACTIONS(5360), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5360), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHitem] = ACTIONS(5360), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASHbegin] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [830] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_BSLASHpart] = ACTIONS(5214), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddpart] = ACTIONS(5214), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHchapter] = ACTIONS(5214), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddchap] = ACTIONS(5214), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsection] = ACTIONS(5214), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddsec] = ACTIONS(5214), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHparagraph] = ACTIONS(5214), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5214), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHitem] = ACTIONS(5214), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASHbegin] = ACTIONS(5214), + [anon_sym_BSLASHend] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [831] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_BSLASHpart] = ACTIONS(5356), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddpart] = ACTIONS(5356), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHchapter] = ACTIONS(5356), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddchap] = ACTIONS(5356), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsection] = ACTIONS(5356), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddsec] = ACTIONS(5356), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHparagraph] = ACTIONS(5356), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5356), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHitem] = ACTIONS(5356), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASHbegin] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [832] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_BSLASHpart] = ACTIONS(5352), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddpart] = ACTIONS(5352), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHchapter] = ACTIONS(5352), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddchap] = ACTIONS(5352), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsection] = ACTIONS(5352), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddsec] = ACTIONS(5352), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHparagraph] = ACTIONS(5352), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5352), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHitem] = ACTIONS(5352), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASHbegin] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [833] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_BSLASHpart] = ACTIONS(5348), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddpart] = ACTIONS(5348), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHchapter] = ACTIONS(5348), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddchap] = ACTIONS(5348), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsection] = ACTIONS(5348), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddsec] = ACTIONS(5348), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHparagraph] = ACTIONS(5348), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5348), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHitem] = ACTIONS(5348), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASHbegin] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [834] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_BSLASHpart] = ACTIONS(5344), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddpart] = ACTIONS(5344), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHchapter] = ACTIONS(5344), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddchap] = ACTIONS(5344), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsection] = ACTIONS(5344), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddsec] = ACTIONS(5344), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHparagraph] = ACTIONS(5344), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5344), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHitem] = ACTIONS(5344), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASHbegin] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [835] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_BSLASHpart] = ACTIONS(5340), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddpart] = ACTIONS(5340), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHchapter] = ACTIONS(5340), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddchap] = ACTIONS(5340), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsection] = ACTIONS(5340), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddsec] = ACTIONS(5340), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHparagraph] = ACTIONS(5340), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5340), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHitem] = ACTIONS(5340), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASHbegin] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [836] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_BSLASHpart] = ACTIONS(5336), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddpart] = ACTIONS(5336), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHchapter] = ACTIONS(5336), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddchap] = ACTIONS(5336), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsection] = ACTIONS(5336), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddsec] = ACTIONS(5336), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHparagraph] = ACTIONS(5336), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5336), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHitem] = ACTIONS(5336), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASHbegin] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [837] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_BSLASHpart] = ACTIONS(5332), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddpart] = ACTIONS(5332), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHchapter] = ACTIONS(5332), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddchap] = ACTIONS(5332), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsection] = ACTIONS(5332), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddsec] = ACTIONS(5332), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHparagraph] = ACTIONS(5332), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5332), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHitem] = ACTIONS(5332), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASHbegin] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [838] = { - [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(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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_BSLASHpart] = ACTIONS(5328), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddpart] = ACTIONS(5328), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHchapter] = ACTIONS(5328), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddchap] = ACTIONS(5328), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsection] = ACTIONS(5328), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddsec] = ACTIONS(5328), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHparagraph] = ACTIONS(5328), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5328), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHitem] = ACTIONS(5328), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASHbegin] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [839] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_BSLASHpart] = ACTIONS(5324), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddpart] = ACTIONS(5324), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHchapter] = ACTIONS(5324), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddchap] = ACTIONS(5324), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsection] = ACTIONS(5324), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddsec] = ACTIONS(5324), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHparagraph] = ACTIONS(5324), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5324), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHitem] = ACTIONS(5324), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASHbegin] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [840] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_BSLASHpart] = ACTIONS(5320), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddpart] = ACTIONS(5320), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHchapter] = ACTIONS(5320), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddchap] = ACTIONS(5320), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsection] = ACTIONS(5320), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddsec] = ACTIONS(5320), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHparagraph] = ACTIONS(5320), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5320), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHitem] = ACTIONS(5320), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASHbegin] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [841] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_BSLASHpart] = ACTIONS(5316), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddpart] = ACTIONS(5316), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHchapter] = ACTIONS(5316), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddchap] = ACTIONS(5316), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsection] = ACTIONS(5316), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddsec] = ACTIONS(5316), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHparagraph] = ACTIONS(5316), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5316), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHitem] = ACTIONS(5316), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASHbegin] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [842] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5233), - [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), + [sym_command_name] = ACTIONS(5312), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_BSLASHpart] = ACTIONS(5312), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddpart] = ACTIONS(5312), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHchapter] = ACTIONS(5312), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddchap] = ACTIONS(5312), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsection] = ACTIONS(5312), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddsec] = ACTIONS(5312), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHparagraph] = ACTIONS(5312), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5312), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHitem] = ACTIONS(5312), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5312), + [sym_placeholder] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_SQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5310), + [anon_sym_BSLASHbegin] = ACTIONS(5312), + [anon_sym_BSLASHusepackage] = ACTIONS(5312), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5312), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5312), + [anon_sym_BSLASHinclude] = ACTIONS(5312), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5312), + [anon_sym_BSLASHinput] = ACTIONS(5312), + [anon_sym_BSLASHsubfile] = ACTIONS(5312), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5312), + [anon_sym_BSLASHbibliography] = ACTIONS(5312), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5312), + [anon_sym_BSLASHincludesvg] = ACTIONS(5312), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5312), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5312), + [anon_sym_BSLASHimport] = ACTIONS(5312), + [anon_sym_BSLASHsubimport] = ACTIONS(5312), + [anon_sym_BSLASHinputfrom] = ACTIONS(5312), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5312), + [anon_sym_BSLASHincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHcaption] = ACTIONS(5312), + [anon_sym_BSLASHcite] = ACTIONS(5312), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCite] = ACTIONS(5312), + [anon_sym_BSLASHnocite] = ACTIONS(5312), + [anon_sym_BSLASHcitet] = ACTIONS(5312), + [anon_sym_BSLASHcitep] = ACTIONS(5312), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteauthor] = ACTIONS(5312), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5312), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitetitle] = ACTIONS(5312), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteyear] = ACTIONS(5312), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitedate] = ACTIONS(5312), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteurl] = ACTIONS(5312), + [anon_sym_BSLASHfullcite] = ACTIONS(5312), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5312), + [anon_sym_BSLASHcitealt] = ACTIONS(5312), + [anon_sym_BSLASHcitealp] = ACTIONS(5312), + [anon_sym_BSLASHcitetext] = ACTIONS(5312), + [anon_sym_BSLASHparencite] = ACTIONS(5312), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHParencite] = ACTIONS(5312), + [anon_sym_BSLASHfootcite] = ACTIONS(5312), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5312), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5312), + [anon_sym_BSLASHtextcite] = ACTIONS(5312), + [anon_sym_BSLASHTextcite] = ACTIONS(5312), + [anon_sym_BSLASHsmartcite] = ACTIONS(5312), + [anon_sym_BSLASHSmartcite] = ACTIONS(5312), + [anon_sym_BSLASHsupercite] = ACTIONS(5312), + [anon_sym_BSLASHautocite] = ACTIONS(5312), + [anon_sym_BSLASHAutocite] = ACTIONS(5312), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHvolcite] = ACTIONS(5312), + [anon_sym_BSLASHVolcite] = ACTIONS(5312), + [anon_sym_BSLASHpvolcite] = ACTIONS(5312), + [anon_sym_BSLASHPvolcite] = ACTIONS(5312), + [anon_sym_BSLASHfvolcite] = ACTIONS(5312), + [anon_sym_BSLASHftvolcite] = ACTIONS(5312), + [anon_sym_BSLASHsvolcite] = ACTIONS(5312), + [anon_sym_BSLASHSvolcite] = ACTIONS(5312), + [anon_sym_BSLASHtvolcite] = ACTIONS(5312), + [anon_sym_BSLASHTvolcite] = ACTIONS(5312), + [anon_sym_BSLASHavolcite] = ACTIONS(5312), + [anon_sym_BSLASHAvolcite] = ACTIONS(5312), + [anon_sym_BSLASHnotecite] = ACTIONS(5312), + [anon_sym_BSLASHNotecite] = ACTIONS(5312), + [anon_sym_BSLASHpnotecite] = ACTIONS(5312), + [anon_sym_BSLASHPnotecite] = ACTIONS(5312), + [anon_sym_BSLASHfnotecite] = ACTIONS(5312), + [anon_sym_BSLASHlabel] = ACTIONS(5312), + [anon_sym_BSLASHref] = ACTIONS(5312), + [anon_sym_BSLASHeqref] = ACTIONS(5312), + [anon_sym_BSLASHvref] = ACTIONS(5312), + [anon_sym_BSLASHVref] = ACTIONS(5312), + [anon_sym_BSLASHautoref] = ACTIONS(5312), + [anon_sym_BSLASHpageref] = ACTIONS(5312), + [anon_sym_BSLASHcref] = ACTIONS(5312), + [anon_sym_BSLASHCref] = ACTIONS(5312), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnameCref] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHlabelcref] = ACTIONS(5312), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCrefrange] = ACTIONS(5312), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnewlabel] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5312), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5312), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5312), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdef] = ACTIONS(5312), + [anon_sym_BSLASHlet] = ACTIONS(5312), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5312), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5312), + [anon_sym_BSLASHgls] = ACTIONS(5312), + [anon_sym_BSLASHGls] = ACTIONS(5312), + [anon_sym_BSLASHGLS] = ACTIONS(5312), + [anon_sym_BSLASHglspl] = ACTIONS(5312), + [anon_sym_BSLASHGlspl] = ACTIONS(5312), + [anon_sym_BSLASHGLSpl] = ACTIONS(5312), + [anon_sym_BSLASHglsdisp] = ACTIONS(5312), + [anon_sym_BSLASHglslink] = ACTIONS(5312), + [anon_sym_BSLASHglstext] = ACTIONS(5312), + [anon_sym_BSLASHGlstext] = ACTIONS(5312), + [anon_sym_BSLASHGLStext] = ACTIONS(5312), + [anon_sym_BSLASHglsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5312), + [anon_sym_BSLASHglsplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSplural] = ACTIONS(5312), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHglsname] = ACTIONS(5312), + [anon_sym_BSLASHGlsname] = ACTIONS(5312), + [anon_sym_BSLASHGLSname] = ACTIONS(5312), + [anon_sym_BSLASHglssymbol] = ACTIONS(5312), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5312), + [anon_sym_BSLASHglsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5312), + [anon_sym_BSLASHglsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5312), + [anon_sym_BSLASHglsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5312), + [anon_sym_BSLASHglsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5312), + [anon_sym_BSLASHglsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5312), + [anon_sym_BSLASHnewacronym] = ACTIONS(5312), + [anon_sym_BSLASHacrshort] = ACTIONS(5312), + [anon_sym_BSLASHAcrshort] = ACTIONS(5312), + [anon_sym_BSLASHACRshort] = ACTIONS(5312), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5312), + [anon_sym_BSLASHacrlong] = ACTIONS(5312), + [anon_sym_BSLASHAcrlong] = ACTIONS(5312), + [anon_sym_BSLASHACRlong] = ACTIONS(5312), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5312), + [anon_sym_BSLASHacrfull] = ACTIONS(5312), + [anon_sym_BSLASHAcrfull] = ACTIONS(5312), + [anon_sym_BSLASHACRfull] = ACTIONS(5312), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5312), + [anon_sym_BSLASHacs] = ACTIONS(5312), + [anon_sym_BSLASHAcs] = ACTIONS(5312), + [anon_sym_BSLASHacsp] = ACTIONS(5312), + [anon_sym_BSLASHAcsp] = ACTIONS(5312), + [anon_sym_BSLASHacl] = ACTIONS(5312), + [anon_sym_BSLASHAcl] = ACTIONS(5312), + [anon_sym_BSLASHaclp] = ACTIONS(5312), + [anon_sym_BSLASHAclp] = ACTIONS(5312), + [anon_sym_BSLASHacf] = ACTIONS(5312), + [anon_sym_BSLASHAcf] = ACTIONS(5312), + [anon_sym_BSLASHacfp] = ACTIONS(5312), + [anon_sym_BSLASHAcfp] = ACTIONS(5312), + [anon_sym_BSLASHac] = ACTIONS(5312), + [anon_sym_BSLASHAc] = ACTIONS(5312), + [anon_sym_BSLASHacp] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5312), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5312), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5312), + [anon_sym_BSLASHcolor] = ACTIONS(5312), + [anon_sym_BSLASHcolorbox] = ACTIONS(5312), + [anon_sym_BSLASHtextcolor] = ACTIONS(5312), + [anon_sym_BSLASHpagecolor] = ACTIONS(5312), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5312), + [anon_sym_BSLASHtext] = ACTIONS(5312), + [anon_sym_BSLASHintertext] = ACTIONS(5312), + [anon_sym_shortintertext] = ACTIONS(5312), }, [843] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5229), - [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), + [sym_command_name] = ACTIONS(5308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_BSLASHpart] = ACTIONS(5308), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddpart] = ACTIONS(5308), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHchapter] = ACTIONS(5308), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddchap] = ACTIONS(5308), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsection] = ACTIONS(5308), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddsec] = ACTIONS(5308), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHparagraph] = ACTIONS(5308), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5308), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHitem] = ACTIONS(5308), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [sym_word] = ACTIONS(5308), + [sym_placeholder] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_SQUOTE] = ACTIONS(5308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5308), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5306), + [anon_sym_BSLASHbegin] = ACTIONS(5308), + [anon_sym_BSLASHusepackage] = ACTIONS(5308), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5308), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5308), + [anon_sym_BSLASHinclude] = ACTIONS(5308), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5308), + [anon_sym_BSLASHinput] = ACTIONS(5308), + [anon_sym_BSLASHsubfile] = ACTIONS(5308), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5308), + [anon_sym_BSLASHbibliography] = ACTIONS(5308), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5308), + [anon_sym_BSLASHincludesvg] = ACTIONS(5308), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5308), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5308), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5308), + [anon_sym_BSLASHimport] = ACTIONS(5308), + [anon_sym_BSLASHsubimport] = ACTIONS(5308), + [anon_sym_BSLASHinputfrom] = ACTIONS(5308), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5308), + [anon_sym_BSLASHincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHcaption] = ACTIONS(5308), + [anon_sym_BSLASHcite] = ACTIONS(5308), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCite] = ACTIONS(5308), + [anon_sym_BSLASHnocite] = ACTIONS(5308), + [anon_sym_BSLASHcitet] = ACTIONS(5308), + [anon_sym_BSLASHcitep] = ACTIONS(5308), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteauthor] = ACTIONS(5308), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5308), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitetitle] = ACTIONS(5308), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteyear] = ACTIONS(5308), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitedate] = ACTIONS(5308), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteurl] = ACTIONS(5308), + [anon_sym_BSLASHfullcite] = ACTIONS(5308), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5308), + [anon_sym_BSLASHcitealt] = ACTIONS(5308), + [anon_sym_BSLASHcitealp] = ACTIONS(5308), + [anon_sym_BSLASHcitetext] = ACTIONS(5308), + [anon_sym_BSLASHparencite] = ACTIONS(5308), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHParencite] = ACTIONS(5308), + [anon_sym_BSLASHfootcite] = ACTIONS(5308), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5308), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5308), + [anon_sym_BSLASHtextcite] = ACTIONS(5308), + [anon_sym_BSLASHTextcite] = ACTIONS(5308), + [anon_sym_BSLASHsmartcite] = ACTIONS(5308), + [anon_sym_BSLASHSmartcite] = ACTIONS(5308), + [anon_sym_BSLASHsupercite] = ACTIONS(5308), + [anon_sym_BSLASHautocite] = ACTIONS(5308), + [anon_sym_BSLASHAutocite] = ACTIONS(5308), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHvolcite] = ACTIONS(5308), + [anon_sym_BSLASHVolcite] = ACTIONS(5308), + [anon_sym_BSLASHpvolcite] = ACTIONS(5308), + [anon_sym_BSLASHPvolcite] = ACTIONS(5308), + [anon_sym_BSLASHfvolcite] = ACTIONS(5308), + [anon_sym_BSLASHftvolcite] = ACTIONS(5308), + [anon_sym_BSLASHsvolcite] = ACTIONS(5308), + [anon_sym_BSLASHSvolcite] = ACTIONS(5308), + [anon_sym_BSLASHtvolcite] = ACTIONS(5308), + [anon_sym_BSLASHTvolcite] = ACTIONS(5308), + [anon_sym_BSLASHavolcite] = ACTIONS(5308), + [anon_sym_BSLASHAvolcite] = ACTIONS(5308), + [anon_sym_BSLASHnotecite] = ACTIONS(5308), + [anon_sym_BSLASHNotecite] = ACTIONS(5308), + [anon_sym_BSLASHpnotecite] = ACTIONS(5308), + [anon_sym_BSLASHPnotecite] = ACTIONS(5308), + [anon_sym_BSLASHfnotecite] = ACTIONS(5308), + [anon_sym_BSLASHlabel] = ACTIONS(5308), + [anon_sym_BSLASHref] = ACTIONS(5308), + [anon_sym_BSLASHeqref] = ACTIONS(5308), + [anon_sym_BSLASHvref] = ACTIONS(5308), + [anon_sym_BSLASHVref] = ACTIONS(5308), + [anon_sym_BSLASHautoref] = ACTIONS(5308), + [anon_sym_BSLASHpageref] = ACTIONS(5308), + [anon_sym_BSLASHcref] = ACTIONS(5308), + [anon_sym_BSLASHCref] = ACTIONS(5308), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnameCref] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHlabelcref] = ACTIONS(5308), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCrefrange] = ACTIONS(5308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnewlabel] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5308), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5308), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5308), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdef] = ACTIONS(5308), + [anon_sym_BSLASHlet] = ACTIONS(5308), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5308), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5308), + [anon_sym_BSLASHgls] = ACTIONS(5308), + [anon_sym_BSLASHGls] = ACTIONS(5308), + [anon_sym_BSLASHGLS] = ACTIONS(5308), + [anon_sym_BSLASHglspl] = ACTIONS(5308), + [anon_sym_BSLASHGlspl] = ACTIONS(5308), + [anon_sym_BSLASHGLSpl] = ACTIONS(5308), + [anon_sym_BSLASHglsdisp] = ACTIONS(5308), + [anon_sym_BSLASHglslink] = ACTIONS(5308), + [anon_sym_BSLASHglstext] = ACTIONS(5308), + [anon_sym_BSLASHGlstext] = ACTIONS(5308), + [anon_sym_BSLASHGLStext] = ACTIONS(5308), + [anon_sym_BSLASHglsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5308), + [anon_sym_BSLASHglsplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSplural] = ACTIONS(5308), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHglsname] = ACTIONS(5308), + [anon_sym_BSLASHGlsname] = ACTIONS(5308), + [anon_sym_BSLASHGLSname] = ACTIONS(5308), + [anon_sym_BSLASHglssymbol] = ACTIONS(5308), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5308), + [anon_sym_BSLASHglsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5308), + [anon_sym_BSLASHglsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5308), + [anon_sym_BSLASHglsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5308), + [anon_sym_BSLASHglsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5308), + [anon_sym_BSLASHglsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5308), + [anon_sym_BSLASHnewacronym] = ACTIONS(5308), + [anon_sym_BSLASHacrshort] = ACTIONS(5308), + [anon_sym_BSLASHAcrshort] = ACTIONS(5308), + [anon_sym_BSLASHACRshort] = ACTIONS(5308), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5308), + [anon_sym_BSLASHacrlong] = ACTIONS(5308), + [anon_sym_BSLASHAcrlong] = ACTIONS(5308), + [anon_sym_BSLASHACRlong] = ACTIONS(5308), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5308), + [anon_sym_BSLASHacrfull] = ACTIONS(5308), + [anon_sym_BSLASHAcrfull] = ACTIONS(5308), + [anon_sym_BSLASHACRfull] = ACTIONS(5308), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5308), + [anon_sym_BSLASHacs] = ACTIONS(5308), + [anon_sym_BSLASHAcs] = ACTIONS(5308), + [anon_sym_BSLASHacsp] = ACTIONS(5308), + [anon_sym_BSLASHAcsp] = ACTIONS(5308), + [anon_sym_BSLASHacl] = ACTIONS(5308), + [anon_sym_BSLASHAcl] = ACTIONS(5308), + [anon_sym_BSLASHaclp] = ACTIONS(5308), + [anon_sym_BSLASHAclp] = ACTIONS(5308), + [anon_sym_BSLASHacf] = ACTIONS(5308), + [anon_sym_BSLASHAcf] = ACTIONS(5308), + [anon_sym_BSLASHacfp] = ACTIONS(5308), + [anon_sym_BSLASHAcfp] = ACTIONS(5308), + [anon_sym_BSLASHac] = ACTIONS(5308), + [anon_sym_BSLASHAc] = ACTIONS(5308), + [anon_sym_BSLASHacp] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5308), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5308), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5308), + [anon_sym_BSLASHcolor] = ACTIONS(5308), + [anon_sym_BSLASHcolorbox] = ACTIONS(5308), + [anon_sym_BSLASHtextcolor] = ACTIONS(5308), + [anon_sym_BSLASHpagecolor] = ACTIONS(5308), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5308), + [anon_sym_BSLASHtext] = ACTIONS(5308), + [anon_sym_BSLASHintertext] = ACTIONS(5308), + [anon_sym_shortintertext] = ACTIONS(5308), }, [844] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5225), - [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), + [sym_command_name] = ACTIONS(5304), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_COMMA] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5302), + [anon_sym_BSLASHpart] = ACTIONS(5304), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddpart] = ACTIONS(5304), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHchapter] = ACTIONS(5304), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddchap] = ACTIONS(5304), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsection] = ACTIONS(5304), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddsec] = ACTIONS(5304), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHparagraph] = ACTIONS(5304), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5304), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHitem] = ACTIONS(5304), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5302), + [sym_word] = ACTIONS(5304), + [sym_placeholder] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_SLASH] = ACTIONS(5304), + [anon_sym_CARET] = ACTIONS(5304), + [anon_sym__] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_BANG] = ACTIONS(5304), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_SQUOTE] = ACTIONS(5304), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5302), + [anon_sym_BSLASHbegin] = ACTIONS(5304), + [anon_sym_BSLASHusepackage] = ACTIONS(5304), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5304), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5304), + [anon_sym_BSLASHinclude] = ACTIONS(5304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5304), + [anon_sym_BSLASHinput] = ACTIONS(5304), + [anon_sym_BSLASHsubfile] = ACTIONS(5304), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5304), + [anon_sym_BSLASHbibliography] = ACTIONS(5304), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5304), + [anon_sym_BSLASHincludesvg] = ACTIONS(5304), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5304), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5304), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5304), + [anon_sym_BSLASHimport] = ACTIONS(5304), + [anon_sym_BSLASHsubimport] = ACTIONS(5304), + [anon_sym_BSLASHinputfrom] = ACTIONS(5304), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5304), + [anon_sym_BSLASHincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHcaption] = ACTIONS(5304), + [anon_sym_BSLASHcite] = ACTIONS(5304), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCite] = ACTIONS(5304), + [anon_sym_BSLASHnocite] = ACTIONS(5304), + [anon_sym_BSLASHcitet] = ACTIONS(5304), + [anon_sym_BSLASHcitep] = ACTIONS(5304), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteauthor] = ACTIONS(5304), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5304), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitetitle] = ACTIONS(5304), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteyear] = ACTIONS(5304), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitedate] = ACTIONS(5304), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteurl] = ACTIONS(5304), + [anon_sym_BSLASHfullcite] = ACTIONS(5304), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5304), + [anon_sym_BSLASHcitealt] = ACTIONS(5304), + [anon_sym_BSLASHcitealp] = ACTIONS(5304), + [anon_sym_BSLASHcitetext] = ACTIONS(5304), + [anon_sym_BSLASHparencite] = ACTIONS(5304), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHParencite] = ACTIONS(5304), + [anon_sym_BSLASHfootcite] = ACTIONS(5304), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5304), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5304), + [anon_sym_BSLASHtextcite] = ACTIONS(5304), + [anon_sym_BSLASHTextcite] = ACTIONS(5304), + [anon_sym_BSLASHsmartcite] = ACTIONS(5304), + [anon_sym_BSLASHSmartcite] = ACTIONS(5304), + [anon_sym_BSLASHsupercite] = ACTIONS(5304), + [anon_sym_BSLASHautocite] = ACTIONS(5304), + [anon_sym_BSLASHAutocite] = ACTIONS(5304), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHvolcite] = ACTIONS(5304), + [anon_sym_BSLASHVolcite] = ACTIONS(5304), + [anon_sym_BSLASHpvolcite] = ACTIONS(5304), + [anon_sym_BSLASHPvolcite] = ACTIONS(5304), + [anon_sym_BSLASHfvolcite] = ACTIONS(5304), + [anon_sym_BSLASHftvolcite] = ACTIONS(5304), + [anon_sym_BSLASHsvolcite] = ACTIONS(5304), + [anon_sym_BSLASHSvolcite] = ACTIONS(5304), + [anon_sym_BSLASHtvolcite] = ACTIONS(5304), + [anon_sym_BSLASHTvolcite] = ACTIONS(5304), + [anon_sym_BSLASHavolcite] = ACTIONS(5304), + [anon_sym_BSLASHAvolcite] = ACTIONS(5304), + [anon_sym_BSLASHnotecite] = ACTIONS(5304), + [anon_sym_BSLASHNotecite] = ACTIONS(5304), + [anon_sym_BSLASHpnotecite] = ACTIONS(5304), + [anon_sym_BSLASHPnotecite] = ACTIONS(5304), + [anon_sym_BSLASHfnotecite] = ACTIONS(5304), + [anon_sym_BSLASHlabel] = ACTIONS(5304), + [anon_sym_BSLASHref] = ACTIONS(5304), + [anon_sym_BSLASHeqref] = ACTIONS(5304), + [anon_sym_BSLASHvref] = ACTIONS(5304), + [anon_sym_BSLASHVref] = ACTIONS(5304), + [anon_sym_BSLASHautoref] = ACTIONS(5304), + [anon_sym_BSLASHpageref] = ACTIONS(5304), + [anon_sym_BSLASHcref] = ACTIONS(5304), + [anon_sym_BSLASHCref] = ACTIONS(5304), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnameCref] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHlabelcref] = ACTIONS(5304), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCrefrange] = ACTIONS(5304), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnewlabel] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5304), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5304), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5304), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdef] = ACTIONS(5304), + [anon_sym_BSLASHlet] = ACTIONS(5304), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5304), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5304), + [anon_sym_BSLASHgls] = ACTIONS(5304), + [anon_sym_BSLASHGls] = ACTIONS(5304), + [anon_sym_BSLASHGLS] = ACTIONS(5304), + [anon_sym_BSLASHglspl] = ACTIONS(5304), + [anon_sym_BSLASHGlspl] = ACTIONS(5304), + [anon_sym_BSLASHGLSpl] = ACTIONS(5304), + [anon_sym_BSLASHglsdisp] = ACTIONS(5304), + [anon_sym_BSLASHglslink] = ACTIONS(5304), + [anon_sym_BSLASHglstext] = ACTIONS(5304), + [anon_sym_BSLASHGlstext] = ACTIONS(5304), + [anon_sym_BSLASHGLStext] = ACTIONS(5304), + [anon_sym_BSLASHglsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5304), + [anon_sym_BSLASHglsplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSplural] = ACTIONS(5304), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHglsname] = ACTIONS(5304), + [anon_sym_BSLASHGlsname] = ACTIONS(5304), + [anon_sym_BSLASHGLSname] = ACTIONS(5304), + [anon_sym_BSLASHglssymbol] = ACTIONS(5304), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5304), + [anon_sym_BSLASHglsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5304), + [anon_sym_BSLASHglsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5304), + [anon_sym_BSLASHglsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5304), + [anon_sym_BSLASHglsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5304), + [anon_sym_BSLASHglsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5304), + [anon_sym_BSLASHnewacronym] = ACTIONS(5304), + [anon_sym_BSLASHacrshort] = ACTIONS(5304), + [anon_sym_BSLASHAcrshort] = ACTIONS(5304), + [anon_sym_BSLASHACRshort] = ACTIONS(5304), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5304), + [anon_sym_BSLASHacrlong] = ACTIONS(5304), + [anon_sym_BSLASHAcrlong] = ACTIONS(5304), + [anon_sym_BSLASHACRlong] = ACTIONS(5304), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5304), + [anon_sym_BSLASHacrfull] = ACTIONS(5304), + [anon_sym_BSLASHAcrfull] = ACTIONS(5304), + [anon_sym_BSLASHACRfull] = ACTIONS(5304), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5304), + [anon_sym_BSLASHacs] = ACTIONS(5304), + [anon_sym_BSLASHAcs] = ACTIONS(5304), + [anon_sym_BSLASHacsp] = ACTIONS(5304), + [anon_sym_BSLASHAcsp] = ACTIONS(5304), + [anon_sym_BSLASHacl] = ACTIONS(5304), + [anon_sym_BSLASHAcl] = ACTIONS(5304), + [anon_sym_BSLASHaclp] = ACTIONS(5304), + [anon_sym_BSLASHAclp] = ACTIONS(5304), + [anon_sym_BSLASHacf] = ACTIONS(5304), + [anon_sym_BSLASHAcf] = ACTIONS(5304), + [anon_sym_BSLASHacfp] = ACTIONS(5304), + [anon_sym_BSLASHAcfp] = ACTIONS(5304), + [anon_sym_BSLASHac] = ACTIONS(5304), + [anon_sym_BSLASHAc] = ACTIONS(5304), + [anon_sym_BSLASHacp] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5304), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5304), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5304), + [anon_sym_BSLASHcolor] = ACTIONS(5304), + [anon_sym_BSLASHcolorbox] = ACTIONS(5304), + [anon_sym_BSLASHtextcolor] = ACTIONS(5304), + [anon_sym_BSLASHpagecolor] = ACTIONS(5304), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5304), + [anon_sym_BSLASHtext] = ACTIONS(5304), + [anon_sym_BSLASHintertext] = ACTIONS(5304), + [anon_sym_shortintertext] = ACTIONS(5304), }, [845] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5217), - [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), + [sym_command_name] = ACTIONS(5296), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5294), + [anon_sym_BSLASHpart] = ACTIONS(5296), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddpart] = ACTIONS(5296), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHchapter] = ACTIONS(5296), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddchap] = ACTIONS(5296), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsection] = ACTIONS(5296), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddsec] = ACTIONS(5296), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHparagraph] = ACTIONS(5296), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5296), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHitem] = ACTIONS(5296), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [sym_word] = ACTIONS(5296), + [sym_placeholder] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_SQUOTE] = ACTIONS(5296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5294), + [anon_sym_BSLASHbegin] = ACTIONS(5296), + [anon_sym_BSLASHusepackage] = ACTIONS(5296), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5296), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5296), + [anon_sym_BSLASHinclude] = ACTIONS(5296), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5296), + [anon_sym_BSLASHinput] = ACTIONS(5296), + [anon_sym_BSLASHsubfile] = ACTIONS(5296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5296), + [anon_sym_BSLASHbibliography] = ACTIONS(5296), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5296), + [anon_sym_BSLASHincludesvg] = ACTIONS(5296), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5296), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5296), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5296), + [anon_sym_BSLASHimport] = ACTIONS(5296), + [anon_sym_BSLASHsubimport] = ACTIONS(5296), + [anon_sym_BSLASHinputfrom] = ACTIONS(5296), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5296), + [anon_sym_BSLASHincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHcaption] = ACTIONS(5296), + [anon_sym_BSLASHcite] = ACTIONS(5296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCite] = ACTIONS(5296), + [anon_sym_BSLASHnocite] = ACTIONS(5296), + [anon_sym_BSLASHcitet] = ACTIONS(5296), + [anon_sym_BSLASHcitep] = ACTIONS(5296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteauthor] = ACTIONS(5296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitetitle] = ACTIONS(5296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteyear] = ACTIONS(5296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitedate] = ACTIONS(5296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteurl] = ACTIONS(5296), + [anon_sym_BSLASHfullcite] = ACTIONS(5296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5296), + [anon_sym_BSLASHcitealt] = ACTIONS(5296), + [anon_sym_BSLASHcitealp] = ACTIONS(5296), + [anon_sym_BSLASHcitetext] = ACTIONS(5296), + [anon_sym_BSLASHparencite] = ACTIONS(5296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHParencite] = ACTIONS(5296), + [anon_sym_BSLASHfootcite] = ACTIONS(5296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5296), + [anon_sym_BSLASHtextcite] = ACTIONS(5296), + [anon_sym_BSLASHTextcite] = ACTIONS(5296), + [anon_sym_BSLASHsmartcite] = ACTIONS(5296), + [anon_sym_BSLASHSmartcite] = ACTIONS(5296), + [anon_sym_BSLASHsupercite] = ACTIONS(5296), + [anon_sym_BSLASHautocite] = ACTIONS(5296), + [anon_sym_BSLASHAutocite] = ACTIONS(5296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHvolcite] = ACTIONS(5296), + [anon_sym_BSLASHVolcite] = ACTIONS(5296), + [anon_sym_BSLASHpvolcite] = ACTIONS(5296), + [anon_sym_BSLASHPvolcite] = ACTIONS(5296), + [anon_sym_BSLASHfvolcite] = ACTIONS(5296), + [anon_sym_BSLASHftvolcite] = ACTIONS(5296), + [anon_sym_BSLASHsvolcite] = ACTIONS(5296), + [anon_sym_BSLASHSvolcite] = ACTIONS(5296), + [anon_sym_BSLASHtvolcite] = ACTIONS(5296), + [anon_sym_BSLASHTvolcite] = ACTIONS(5296), + [anon_sym_BSLASHavolcite] = ACTIONS(5296), + [anon_sym_BSLASHAvolcite] = ACTIONS(5296), + [anon_sym_BSLASHnotecite] = ACTIONS(5296), + [anon_sym_BSLASHNotecite] = ACTIONS(5296), + [anon_sym_BSLASHpnotecite] = ACTIONS(5296), + [anon_sym_BSLASHPnotecite] = ACTIONS(5296), + [anon_sym_BSLASHfnotecite] = ACTIONS(5296), + [anon_sym_BSLASHlabel] = ACTIONS(5296), + [anon_sym_BSLASHref] = ACTIONS(5296), + [anon_sym_BSLASHeqref] = ACTIONS(5296), + [anon_sym_BSLASHvref] = ACTIONS(5296), + [anon_sym_BSLASHVref] = ACTIONS(5296), + [anon_sym_BSLASHautoref] = ACTIONS(5296), + [anon_sym_BSLASHpageref] = ACTIONS(5296), + [anon_sym_BSLASHcref] = ACTIONS(5296), + [anon_sym_BSLASHCref] = ACTIONS(5296), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnameCref] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHlabelcref] = ACTIONS(5296), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCrefrange] = ACTIONS(5296), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnewlabel] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5296), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5296), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5296), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdef] = ACTIONS(5296), + [anon_sym_BSLASHlet] = ACTIONS(5296), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5296), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5296), + [anon_sym_BSLASHgls] = ACTIONS(5296), + [anon_sym_BSLASHGls] = ACTIONS(5296), + [anon_sym_BSLASHGLS] = ACTIONS(5296), + [anon_sym_BSLASHglspl] = ACTIONS(5296), + [anon_sym_BSLASHGlspl] = ACTIONS(5296), + [anon_sym_BSLASHGLSpl] = ACTIONS(5296), + [anon_sym_BSLASHglsdisp] = ACTIONS(5296), + [anon_sym_BSLASHglslink] = ACTIONS(5296), + [anon_sym_BSLASHglstext] = ACTIONS(5296), + [anon_sym_BSLASHGlstext] = ACTIONS(5296), + [anon_sym_BSLASHGLStext] = ACTIONS(5296), + [anon_sym_BSLASHglsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5296), + [anon_sym_BSLASHglsplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSplural] = ACTIONS(5296), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHglsname] = ACTIONS(5296), + [anon_sym_BSLASHGlsname] = ACTIONS(5296), + [anon_sym_BSLASHGLSname] = ACTIONS(5296), + [anon_sym_BSLASHglssymbol] = ACTIONS(5296), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5296), + [anon_sym_BSLASHglsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5296), + [anon_sym_BSLASHglsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5296), + [anon_sym_BSLASHglsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5296), + [anon_sym_BSLASHglsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5296), + [anon_sym_BSLASHglsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5296), + [anon_sym_BSLASHnewacronym] = ACTIONS(5296), + [anon_sym_BSLASHacrshort] = ACTIONS(5296), + [anon_sym_BSLASHAcrshort] = ACTIONS(5296), + [anon_sym_BSLASHACRshort] = ACTIONS(5296), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5296), + [anon_sym_BSLASHacrlong] = ACTIONS(5296), + [anon_sym_BSLASHAcrlong] = ACTIONS(5296), + [anon_sym_BSLASHACRlong] = ACTIONS(5296), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5296), + [anon_sym_BSLASHacrfull] = ACTIONS(5296), + [anon_sym_BSLASHAcrfull] = ACTIONS(5296), + [anon_sym_BSLASHACRfull] = ACTIONS(5296), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5296), + [anon_sym_BSLASHacs] = ACTIONS(5296), + [anon_sym_BSLASHAcs] = ACTIONS(5296), + [anon_sym_BSLASHacsp] = ACTIONS(5296), + [anon_sym_BSLASHAcsp] = ACTIONS(5296), + [anon_sym_BSLASHacl] = ACTIONS(5296), + [anon_sym_BSLASHAcl] = ACTIONS(5296), + [anon_sym_BSLASHaclp] = ACTIONS(5296), + [anon_sym_BSLASHAclp] = ACTIONS(5296), + [anon_sym_BSLASHacf] = ACTIONS(5296), + [anon_sym_BSLASHAcf] = ACTIONS(5296), + [anon_sym_BSLASHacfp] = ACTIONS(5296), + [anon_sym_BSLASHAcfp] = ACTIONS(5296), + [anon_sym_BSLASHac] = ACTIONS(5296), + [anon_sym_BSLASHAc] = ACTIONS(5296), + [anon_sym_BSLASHacp] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5296), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5296), + [anon_sym_BSLASHcolor] = ACTIONS(5296), + [anon_sym_BSLASHcolorbox] = ACTIONS(5296), + [anon_sym_BSLASHtextcolor] = ACTIONS(5296), + [anon_sym_BSLASHpagecolor] = ACTIONS(5296), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5296), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5296), + [anon_sym_BSLASHtext] = ACTIONS(5296), + [anon_sym_BSLASHintertext] = ACTIONS(5296), + [anon_sym_shortintertext] = ACTIONS(5296), }, [846] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5213), - [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), + [sym_command_name] = ACTIONS(5292), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_BSLASHpart] = ACTIONS(5292), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddpart] = ACTIONS(5292), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHchapter] = ACTIONS(5292), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddchap] = ACTIONS(5292), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsection] = ACTIONS(5292), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddsec] = ACTIONS(5292), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHparagraph] = ACTIONS(5292), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5292), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHitem] = ACTIONS(5292), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [sym_word] = ACTIONS(5292), + [sym_placeholder] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_SQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5290), + [anon_sym_BSLASHbegin] = ACTIONS(5292), + [anon_sym_BSLASHusepackage] = ACTIONS(5292), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5292), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5292), + [anon_sym_BSLASHinclude] = ACTIONS(5292), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5292), + [anon_sym_BSLASHinput] = ACTIONS(5292), + [anon_sym_BSLASHsubfile] = ACTIONS(5292), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5292), + [anon_sym_BSLASHbibliography] = ACTIONS(5292), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5292), + [anon_sym_BSLASHincludesvg] = ACTIONS(5292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5292), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5292), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5292), + [anon_sym_BSLASHimport] = ACTIONS(5292), + [anon_sym_BSLASHsubimport] = ACTIONS(5292), + [anon_sym_BSLASHinputfrom] = ACTIONS(5292), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5292), + [anon_sym_BSLASHincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHcaption] = ACTIONS(5292), + [anon_sym_BSLASHcite] = ACTIONS(5292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCite] = ACTIONS(5292), + [anon_sym_BSLASHnocite] = ACTIONS(5292), + [anon_sym_BSLASHcitet] = ACTIONS(5292), + [anon_sym_BSLASHcitep] = ACTIONS(5292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteauthor] = ACTIONS(5292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitetitle] = ACTIONS(5292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteyear] = ACTIONS(5292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitedate] = ACTIONS(5292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteurl] = ACTIONS(5292), + [anon_sym_BSLASHfullcite] = ACTIONS(5292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5292), + [anon_sym_BSLASHcitealt] = ACTIONS(5292), + [anon_sym_BSLASHcitealp] = ACTIONS(5292), + [anon_sym_BSLASHcitetext] = ACTIONS(5292), + [anon_sym_BSLASHparencite] = ACTIONS(5292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHParencite] = ACTIONS(5292), + [anon_sym_BSLASHfootcite] = ACTIONS(5292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5292), + [anon_sym_BSLASHtextcite] = ACTIONS(5292), + [anon_sym_BSLASHTextcite] = ACTIONS(5292), + [anon_sym_BSLASHsmartcite] = ACTIONS(5292), + [anon_sym_BSLASHSmartcite] = ACTIONS(5292), + [anon_sym_BSLASHsupercite] = ACTIONS(5292), + [anon_sym_BSLASHautocite] = ACTIONS(5292), + [anon_sym_BSLASHAutocite] = ACTIONS(5292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHvolcite] = ACTIONS(5292), + [anon_sym_BSLASHVolcite] = ACTIONS(5292), + [anon_sym_BSLASHpvolcite] = ACTIONS(5292), + [anon_sym_BSLASHPvolcite] = ACTIONS(5292), + [anon_sym_BSLASHfvolcite] = ACTIONS(5292), + [anon_sym_BSLASHftvolcite] = ACTIONS(5292), + [anon_sym_BSLASHsvolcite] = ACTIONS(5292), + [anon_sym_BSLASHSvolcite] = ACTIONS(5292), + [anon_sym_BSLASHtvolcite] = ACTIONS(5292), + [anon_sym_BSLASHTvolcite] = ACTIONS(5292), + [anon_sym_BSLASHavolcite] = ACTIONS(5292), + [anon_sym_BSLASHAvolcite] = ACTIONS(5292), + [anon_sym_BSLASHnotecite] = ACTIONS(5292), + [anon_sym_BSLASHNotecite] = ACTIONS(5292), + [anon_sym_BSLASHpnotecite] = ACTIONS(5292), + [anon_sym_BSLASHPnotecite] = ACTIONS(5292), + [anon_sym_BSLASHfnotecite] = ACTIONS(5292), + [anon_sym_BSLASHlabel] = ACTIONS(5292), + [anon_sym_BSLASHref] = ACTIONS(5292), + [anon_sym_BSLASHeqref] = ACTIONS(5292), + [anon_sym_BSLASHvref] = ACTIONS(5292), + [anon_sym_BSLASHVref] = ACTIONS(5292), + [anon_sym_BSLASHautoref] = ACTIONS(5292), + [anon_sym_BSLASHpageref] = ACTIONS(5292), + [anon_sym_BSLASHcref] = ACTIONS(5292), + [anon_sym_BSLASHCref] = ACTIONS(5292), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnameCref] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHlabelcref] = ACTIONS(5292), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCrefrange] = ACTIONS(5292), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnewlabel] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5292), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5292), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5292), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdef] = ACTIONS(5292), + [anon_sym_BSLASHlet] = ACTIONS(5292), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5292), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5292), + [anon_sym_BSLASHgls] = ACTIONS(5292), + [anon_sym_BSLASHGls] = ACTIONS(5292), + [anon_sym_BSLASHGLS] = ACTIONS(5292), + [anon_sym_BSLASHglspl] = ACTIONS(5292), + [anon_sym_BSLASHGlspl] = ACTIONS(5292), + [anon_sym_BSLASHGLSpl] = ACTIONS(5292), + [anon_sym_BSLASHglsdisp] = ACTIONS(5292), + [anon_sym_BSLASHglslink] = ACTIONS(5292), + [anon_sym_BSLASHglstext] = ACTIONS(5292), + [anon_sym_BSLASHGlstext] = ACTIONS(5292), + [anon_sym_BSLASHGLStext] = ACTIONS(5292), + [anon_sym_BSLASHglsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5292), + [anon_sym_BSLASHglsplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSplural] = ACTIONS(5292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHglsname] = ACTIONS(5292), + [anon_sym_BSLASHGlsname] = ACTIONS(5292), + [anon_sym_BSLASHGLSname] = ACTIONS(5292), + [anon_sym_BSLASHglssymbol] = ACTIONS(5292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5292), + [anon_sym_BSLASHglsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5292), + [anon_sym_BSLASHglsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5292), + [anon_sym_BSLASHglsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5292), + [anon_sym_BSLASHglsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5292), + [anon_sym_BSLASHglsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5292), + [anon_sym_BSLASHnewacronym] = ACTIONS(5292), + [anon_sym_BSLASHacrshort] = ACTIONS(5292), + [anon_sym_BSLASHAcrshort] = ACTIONS(5292), + [anon_sym_BSLASHACRshort] = ACTIONS(5292), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5292), + [anon_sym_BSLASHacrlong] = ACTIONS(5292), + [anon_sym_BSLASHAcrlong] = ACTIONS(5292), + [anon_sym_BSLASHACRlong] = ACTIONS(5292), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5292), + [anon_sym_BSLASHacrfull] = ACTIONS(5292), + [anon_sym_BSLASHAcrfull] = ACTIONS(5292), + [anon_sym_BSLASHACRfull] = ACTIONS(5292), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5292), + [anon_sym_BSLASHacs] = ACTIONS(5292), + [anon_sym_BSLASHAcs] = ACTIONS(5292), + [anon_sym_BSLASHacsp] = ACTIONS(5292), + [anon_sym_BSLASHAcsp] = ACTIONS(5292), + [anon_sym_BSLASHacl] = ACTIONS(5292), + [anon_sym_BSLASHAcl] = ACTIONS(5292), + [anon_sym_BSLASHaclp] = ACTIONS(5292), + [anon_sym_BSLASHAclp] = ACTIONS(5292), + [anon_sym_BSLASHacf] = ACTIONS(5292), + [anon_sym_BSLASHAcf] = ACTIONS(5292), + [anon_sym_BSLASHacfp] = ACTIONS(5292), + [anon_sym_BSLASHAcfp] = ACTIONS(5292), + [anon_sym_BSLASHac] = ACTIONS(5292), + [anon_sym_BSLASHAc] = ACTIONS(5292), + [anon_sym_BSLASHacp] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5292), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5292), + [anon_sym_BSLASHcolorbox] = ACTIONS(5292), + [anon_sym_BSLASHtextcolor] = ACTIONS(5292), + [anon_sym_BSLASHpagecolor] = ACTIONS(5292), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5292), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5292), + [anon_sym_BSLASHtext] = ACTIONS(5292), + [anon_sym_BSLASHintertext] = ACTIONS(5292), + [anon_sym_shortintertext] = ACTIONS(5292), }, [847] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_BSLASHpart] = ACTIONS(5288), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddpart] = ACTIONS(5288), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHchapter] = ACTIONS(5288), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddchap] = ACTIONS(5288), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsection] = ACTIONS(5288), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddsec] = ACTIONS(5288), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHparagraph] = ACTIONS(5288), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5288), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHitem] = ACTIONS(5288), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASHbegin] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [848] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_BSLASHpart] = ACTIONS(5280), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddpart] = ACTIONS(5280), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHchapter] = ACTIONS(5280), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddchap] = ACTIONS(5280), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsection] = ACTIONS(5280), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddsec] = ACTIONS(5280), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHparagraph] = ACTIONS(5280), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5280), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHitem] = ACTIONS(5280), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASHbegin] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [849] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_BSLASHpart] = ACTIONS(5276), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddpart] = ACTIONS(5276), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHchapter] = ACTIONS(5276), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddchap] = ACTIONS(5276), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsection] = ACTIONS(5276), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddsec] = ACTIONS(5276), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHparagraph] = ACTIONS(5276), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5276), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHitem] = ACTIONS(5276), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASHbegin] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [850] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_BSLASHpart] = ACTIONS(5272), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddpart] = ACTIONS(5272), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHchapter] = ACTIONS(5272), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddchap] = ACTIONS(5272), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsection] = ACTIONS(5272), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddsec] = ACTIONS(5272), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHparagraph] = ACTIONS(5272), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5272), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHitem] = ACTIONS(5272), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASHbegin] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [851] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_BSLASHpart] = ACTIONS(5268), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddpart] = ACTIONS(5268), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHchapter] = ACTIONS(5268), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddchap] = ACTIONS(5268), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsection] = ACTIONS(5268), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddsec] = ACTIONS(5268), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHparagraph] = ACTIONS(5268), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5268), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHitem] = ACTIONS(5268), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASHbegin] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [852] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_BSLASHpart] = ACTIONS(5264), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddpart] = ACTIONS(5264), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHchapter] = ACTIONS(5264), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddchap] = ACTIONS(5264), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsection] = ACTIONS(5264), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddsec] = ACTIONS(5264), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHparagraph] = ACTIONS(5264), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5264), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHitem] = ACTIONS(5264), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASHbegin] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [853] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_BSLASHpart] = ACTIONS(5181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddpart] = ACTIONS(5181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHchapter] = ACTIONS(5181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddchap] = ACTIONS(5181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsection] = ACTIONS(5181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddsec] = ACTIONS(5181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHparagraph] = ACTIONS(5181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHitem] = ACTIONS(5181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASHbegin] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_BSLASHpart] = ACTIONS(5260), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddpart] = ACTIONS(5260), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHchapter] = ACTIONS(5260), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddchap] = ACTIONS(5260), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsection] = ACTIONS(5260), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddsec] = ACTIONS(5260), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHparagraph] = ACTIONS(5260), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5260), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHitem] = ACTIONS(5260), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASHbegin] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [854] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_BSLASHpart] = ACTIONS(5177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddpart] = ACTIONS(5177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHchapter] = ACTIONS(5177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddchap] = ACTIONS(5177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsection] = ACTIONS(5177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddsec] = ACTIONS(5177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHparagraph] = ACTIONS(5177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHitem] = ACTIONS(5177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASHbegin] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_BSLASHpart] = ACTIONS(5256), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddpart] = ACTIONS(5256), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHchapter] = ACTIONS(5256), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddchap] = ACTIONS(5256), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsection] = ACTIONS(5256), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddsec] = ACTIONS(5256), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHparagraph] = ACTIONS(5256), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5256), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHitem] = ACTIONS(5256), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASHbegin] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [855] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_BSLASHpart] = ACTIONS(5169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddpart] = ACTIONS(5169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHchapter] = ACTIONS(5169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddchap] = ACTIONS(5169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsection] = ACTIONS(5169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddsec] = ACTIONS(5169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHparagraph] = ACTIONS(5169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHitem] = ACTIONS(5169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASHbegin] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_BSLASHpart] = ACTIONS(5248), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddpart] = ACTIONS(5248), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHchapter] = ACTIONS(5248), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddchap] = ACTIONS(5248), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsection] = ACTIONS(5248), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddsec] = ACTIONS(5248), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHparagraph] = ACTIONS(5248), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5248), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHitem] = ACTIONS(5248), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASHbegin] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [856] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_BSLASHpart] = ACTIONS(5165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddpart] = ACTIONS(5165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHchapter] = ACTIONS(5165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddchap] = ACTIONS(5165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsection] = ACTIONS(5165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddsec] = ACTIONS(5165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHparagraph] = ACTIONS(5165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHitem] = ACTIONS(5165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASHbegin] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_BSLASHpart] = ACTIONS(5244), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddpart] = ACTIONS(5244), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHchapter] = ACTIONS(5244), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddchap] = ACTIONS(5244), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsection] = ACTIONS(5244), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddsec] = ACTIONS(5244), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHparagraph] = ACTIONS(5244), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5244), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHitem] = ACTIONS(5244), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASHbegin] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [857] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_BSLASHpart] = ACTIONS(5161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddpart] = ACTIONS(5161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHchapter] = ACTIONS(5161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddchap] = ACTIONS(5161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsection] = ACTIONS(5161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddsec] = ACTIONS(5161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHparagraph] = ACTIONS(5161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHitem] = ACTIONS(5161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASHbegin] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_BSLASHpart] = ACTIONS(5240), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddpart] = ACTIONS(5240), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHchapter] = ACTIONS(5240), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddchap] = ACTIONS(5240), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsection] = ACTIONS(5240), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddsec] = ACTIONS(5240), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHparagraph] = ACTIONS(5240), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5240), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHitem] = ACTIONS(5240), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASHbegin] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [858] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_BSLASHpart] = ACTIONS(5153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddpart] = ACTIONS(5153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHchapter] = ACTIONS(5153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddchap] = ACTIONS(5153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsection] = ACTIONS(5153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddsec] = ACTIONS(5153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHparagraph] = ACTIONS(5153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHitem] = ACTIONS(5153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASHbegin] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_BSLASHpart] = ACTIONS(5232), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddpart] = ACTIONS(5232), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHchapter] = ACTIONS(5232), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddchap] = ACTIONS(5232), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsection] = ACTIONS(5232), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddsec] = ACTIONS(5232), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHparagraph] = ACTIONS(5232), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5232), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHitem] = ACTIONS(5232), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASHbegin] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [859] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_BSLASHpart] = ACTIONS(5149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddpart] = ACTIONS(5149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHchapter] = ACTIONS(5149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddchap] = ACTIONS(5149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsection] = ACTIONS(5149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddsec] = ACTIONS(5149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHparagraph] = ACTIONS(5149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHitem] = ACTIONS(5149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_BSLASHpart] = ACTIONS(5228), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddpart] = ACTIONS(5228), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHchapter] = ACTIONS(5228), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddchap] = ACTIONS(5228), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsection] = ACTIONS(5228), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddsec] = ACTIONS(5228), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHparagraph] = ACTIONS(5228), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5228), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHitem] = ACTIONS(5228), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASHbegin] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [860] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5081), - [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), + [sym_command_name] = ACTIONS(5160), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_BSLASHpart] = ACTIONS(5160), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddpart] = ACTIONS(5160), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHchapter] = ACTIONS(5160), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddchap] = ACTIONS(5160), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsection] = ACTIONS(5160), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddsec] = ACTIONS(5160), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHparagraph] = ACTIONS(5160), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5160), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHitem] = ACTIONS(5160), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [sym_word] = ACTIONS(5160), + [sym_placeholder] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym__] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_SQUOTE] = ACTIONS(5160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5158), + [anon_sym_BSLASHbegin] = ACTIONS(5160), + [anon_sym_BSLASHusepackage] = ACTIONS(5160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5160), + [anon_sym_BSLASHinclude] = ACTIONS(5160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5160), + [anon_sym_BSLASHinput] = ACTIONS(5160), + [anon_sym_BSLASHsubfile] = ACTIONS(5160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5160), + [anon_sym_BSLASHbibliography] = ACTIONS(5160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5160), + [anon_sym_BSLASHincludesvg] = ACTIONS(5160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5160), + [anon_sym_BSLASHimport] = ACTIONS(5160), + [anon_sym_BSLASHsubimport] = ACTIONS(5160), + [anon_sym_BSLASHinputfrom] = ACTIONS(5160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5160), + [anon_sym_BSLASHincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHcaption] = ACTIONS(5160), + [anon_sym_BSLASHcite] = ACTIONS(5160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCite] = ACTIONS(5160), + [anon_sym_BSLASHnocite] = ACTIONS(5160), + [anon_sym_BSLASHcitet] = ACTIONS(5160), + [anon_sym_BSLASHcitep] = ACTIONS(5160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteauthor] = ACTIONS(5160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitetitle] = ACTIONS(5160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteyear] = ACTIONS(5160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitedate] = ACTIONS(5160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteurl] = ACTIONS(5160), + [anon_sym_BSLASHfullcite] = ACTIONS(5160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5160), + [anon_sym_BSLASHcitealt] = ACTIONS(5160), + [anon_sym_BSLASHcitealp] = ACTIONS(5160), + [anon_sym_BSLASHcitetext] = ACTIONS(5160), + [anon_sym_BSLASHparencite] = ACTIONS(5160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHParencite] = ACTIONS(5160), + [anon_sym_BSLASHfootcite] = ACTIONS(5160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5160), + [anon_sym_BSLASHtextcite] = ACTIONS(5160), + [anon_sym_BSLASHTextcite] = ACTIONS(5160), + [anon_sym_BSLASHsmartcite] = ACTIONS(5160), + [anon_sym_BSLASHSmartcite] = ACTIONS(5160), + [anon_sym_BSLASHsupercite] = ACTIONS(5160), + [anon_sym_BSLASHautocite] = ACTIONS(5160), + [anon_sym_BSLASHAutocite] = ACTIONS(5160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHvolcite] = ACTIONS(5160), + [anon_sym_BSLASHVolcite] = ACTIONS(5160), + [anon_sym_BSLASHpvolcite] = ACTIONS(5160), + [anon_sym_BSLASHPvolcite] = ACTIONS(5160), + [anon_sym_BSLASHfvolcite] = ACTIONS(5160), + [anon_sym_BSLASHftvolcite] = ACTIONS(5160), + [anon_sym_BSLASHsvolcite] = ACTIONS(5160), + [anon_sym_BSLASHSvolcite] = ACTIONS(5160), + [anon_sym_BSLASHtvolcite] = ACTIONS(5160), + [anon_sym_BSLASHTvolcite] = ACTIONS(5160), + [anon_sym_BSLASHavolcite] = ACTIONS(5160), + [anon_sym_BSLASHAvolcite] = ACTIONS(5160), + [anon_sym_BSLASHnotecite] = ACTIONS(5160), + [anon_sym_BSLASHNotecite] = ACTIONS(5160), + [anon_sym_BSLASHpnotecite] = ACTIONS(5160), + [anon_sym_BSLASHPnotecite] = ACTIONS(5160), + [anon_sym_BSLASHfnotecite] = ACTIONS(5160), + [anon_sym_BSLASHlabel] = ACTIONS(5160), + [anon_sym_BSLASHref] = ACTIONS(5160), + [anon_sym_BSLASHeqref] = ACTIONS(5160), + [anon_sym_BSLASHvref] = ACTIONS(5160), + [anon_sym_BSLASHVref] = ACTIONS(5160), + [anon_sym_BSLASHautoref] = ACTIONS(5160), + [anon_sym_BSLASHpageref] = ACTIONS(5160), + [anon_sym_BSLASHcref] = ACTIONS(5160), + [anon_sym_BSLASHCref] = ACTIONS(5160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnameCref] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHlabelcref] = ACTIONS(5160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCrefrange] = ACTIONS(5160), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnewlabel] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5160), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5160), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdef] = ACTIONS(5160), + [anon_sym_BSLASHlet] = ACTIONS(5160), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5160), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5160), + [anon_sym_BSLASHgls] = ACTIONS(5160), + [anon_sym_BSLASHGls] = ACTIONS(5160), + [anon_sym_BSLASHGLS] = ACTIONS(5160), + [anon_sym_BSLASHglspl] = ACTIONS(5160), + [anon_sym_BSLASHGlspl] = ACTIONS(5160), + [anon_sym_BSLASHGLSpl] = ACTIONS(5160), + [anon_sym_BSLASHglsdisp] = ACTIONS(5160), + [anon_sym_BSLASHglslink] = ACTIONS(5160), + [anon_sym_BSLASHglstext] = ACTIONS(5160), + [anon_sym_BSLASHGlstext] = ACTIONS(5160), + [anon_sym_BSLASHGLStext] = ACTIONS(5160), + [anon_sym_BSLASHglsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5160), + [anon_sym_BSLASHglsplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSplural] = ACTIONS(5160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHglsname] = ACTIONS(5160), + [anon_sym_BSLASHGlsname] = ACTIONS(5160), + [anon_sym_BSLASHGLSname] = ACTIONS(5160), + [anon_sym_BSLASHglssymbol] = ACTIONS(5160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5160), + [anon_sym_BSLASHglsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5160), + [anon_sym_BSLASHglsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5160), + [anon_sym_BSLASHglsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5160), + [anon_sym_BSLASHglsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5160), + [anon_sym_BSLASHglsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5160), + [anon_sym_BSLASHnewacronym] = ACTIONS(5160), + [anon_sym_BSLASHacrshort] = ACTIONS(5160), + [anon_sym_BSLASHAcrshort] = ACTIONS(5160), + [anon_sym_BSLASHACRshort] = ACTIONS(5160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5160), + [anon_sym_BSLASHacrlong] = ACTIONS(5160), + [anon_sym_BSLASHAcrlong] = ACTIONS(5160), + [anon_sym_BSLASHACRlong] = ACTIONS(5160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5160), + [anon_sym_BSLASHacrfull] = ACTIONS(5160), + [anon_sym_BSLASHAcrfull] = ACTIONS(5160), + [anon_sym_BSLASHACRfull] = ACTIONS(5160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5160), + [anon_sym_BSLASHacs] = ACTIONS(5160), + [anon_sym_BSLASHAcs] = ACTIONS(5160), + [anon_sym_BSLASHacsp] = ACTIONS(5160), + [anon_sym_BSLASHAcsp] = ACTIONS(5160), + [anon_sym_BSLASHacl] = ACTIONS(5160), + [anon_sym_BSLASHAcl] = ACTIONS(5160), + [anon_sym_BSLASHaclp] = ACTIONS(5160), + [anon_sym_BSLASHAclp] = ACTIONS(5160), + [anon_sym_BSLASHacf] = ACTIONS(5160), + [anon_sym_BSLASHAcf] = ACTIONS(5160), + [anon_sym_BSLASHacfp] = ACTIONS(5160), + [anon_sym_BSLASHAcfp] = ACTIONS(5160), + [anon_sym_BSLASHac] = ACTIONS(5160), + [anon_sym_BSLASHAc] = ACTIONS(5160), + [anon_sym_BSLASHacp] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5160), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5160), + [anon_sym_BSLASHcolor] = ACTIONS(5160), + [anon_sym_BSLASHcolorbox] = ACTIONS(5160), + [anon_sym_BSLASHtextcolor] = ACTIONS(5160), + [anon_sym_BSLASHpagecolor] = ACTIONS(5160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5160), + [anon_sym_BSLASHtext] = ACTIONS(5160), + [anon_sym_BSLASHintertext] = ACTIONS(5160), + [anon_sym_shortintertext] = ACTIONS(5160), }, [861] = { - [sym_command_name] = ACTIONS(4947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_BSLASHpart] = ACTIONS(4947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddpart] = ACTIONS(4947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHchapter] = ACTIONS(4947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddchap] = ACTIONS(4947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsection] = ACTIONS(4947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddsec] = ACTIONS(4947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHparagraph] = ACTIONS(4947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHitem] = ACTIONS(4947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4945), - [sym_word] = ACTIONS(4947), - [sym_placeholder] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4947), - [anon_sym__] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), - [anon_sym_BSLASHbegin] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), - [anon_sym_BSLASHinclude] = ACTIONS(4947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), - [anon_sym_BSLASHinput] = ACTIONS(4947), - [anon_sym_BSLASHsubfile] = ACTIONS(4947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), - [anon_sym_BSLASHbibliography] = ACTIONS(4947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), - [anon_sym_BSLASHincludesvg] = ACTIONS(4947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), - [anon_sym_BSLASHimport] = ACTIONS(4947), - [anon_sym_BSLASHsubimport] = ACTIONS(4947), - [anon_sym_BSLASHinputfrom] = ACTIONS(4947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), - [anon_sym_BSLASHincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHcaption] = ACTIONS(4947), - [anon_sym_BSLASHcite] = ACTIONS(4947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCite] = ACTIONS(4947), - [anon_sym_BSLASHnocite] = ACTIONS(4947), - [anon_sym_BSLASHcitet] = ACTIONS(4947), - [anon_sym_BSLASHcitep] = ACTIONS(4947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteyear] = ACTIONS(4947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitedate] = ACTIONS(4947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteurl] = ACTIONS(4947), - [anon_sym_BSLASHfullcite] = ACTIONS(4947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), - [anon_sym_BSLASHcitealt] = ACTIONS(4947), - [anon_sym_BSLASHcitealp] = ACTIONS(4947), - [anon_sym_BSLASHcitetext] = ACTIONS(4947), - [anon_sym_BSLASHparencite] = ACTIONS(4947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHParencite] = ACTIONS(4947), - [anon_sym_BSLASHfootcite] = ACTIONS(4947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), - [anon_sym_BSLASHtextcite] = ACTIONS(4947), - [anon_sym_BSLASHTextcite] = ACTIONS(4947), - [anon_sym_BSLASHsmartcite] = ACTIONS(4947), - [anon_sym_BSLASHSmartcite] = ACTIONS(4947), - [anon_sym_BSLASHsupercite] = ACTIONS(4947), - [anon_sym_BSLASHautocite] = ACTIONS(4947), - [anon_sym_BSLASHAutocite] = ACTIONS(4947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHvolcite] = ACTIONS(4947), - [anon_sym_BSLASHVolcite] = ACTIONS(4947), - [anon_sym_BSLASHpvolcite] = ACTIONS(4947), - [anon_sym_BSLASHPvolcite] = ACTIONS(4947), - [anon_sym_BSLASHfvolcite] = ACTIONS(4947), - [anon_sym_BSLASHftvolcite] = ACTIONS(4947), - [anon_sym_BSLASHsvolcite] = ACTIONS(4947), - [anon_sym_BSLASHSvolcite] = ACTIONS(4947), - [anon_sym_BSLASHtvolcite] = ACTIONS(4947), - [anon_sym_BSLASHTvolcite] = ACTIONS(4947), - [anon_sym_BSLASHavolcite] = ACTIONS(4947), - [anon_sym_BSLASHAvolcite] = ACTIONS(4947), - [anon_sym_BSLASHnotecite] = ACTIONS(4947), - [anon_sym_BSLASHNotecite] = ACTIONS(4947), - [anon_sym_BSLASHpnotecite] = ACTIONS(4947), - [anon_sym_BSLASHPnotecite] = ACTIONS(4947), - [anon_sym_BSLASHfnotecite] = ACTIONS(4947), - [anon_sym_BSLASHlabel] = ACTIONS(4947), - [anon_sym_BSLASHref] = ACTIONS(4947), - [anon_sym_BSLASHeqref] = ACTIONS(4947), - [anon_sym_BSLASHvref] = ACTIONS(4947), - [anon_sym_BSLASHVref] = ACTIONS(4947), - [anon_sym_BSLASHautoref] = ACTIONS(4947), - [anon_sym_BSLASHpageref] = ACTIONS(4947), - [anon_sym_BSLASHcref] = ACTIONS(4947), - [anon_sym_BSLASHCref] = ACTIONS(4947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnameCref] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHlabelcref] = ACTIONS(4947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnewlabel] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), - [anon_sym_BSLASHdef] = ACTIONS(4947), - [anon_sym_BSLASHlet] = ACTIONS(4947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), - [anon_sym_BSLASHgls] = ACTIONS(4947), - [anon_sym_BSLASHGls] = ACTIONS(4947), - [anon_sym_BSLASHGLS] = ACTIONS(4947), - [anon_sym_BSLASHglspl] = ACTIONS(4947), - [anon_sym_BSLASHGlspl] = ACTIONS(4947), - [anon_sym_BSLASHGLSpl] = ACTIONS(4947), - [anon_sym_BSLASHglsdisp] = ACTIONS(4947), - [anon_sym_BSLASHglslink] = ACTIONS(4947), - [anon_sym_BSLASHglstext] = ACTIONS(4947), - [anon_sym_BSLASHGlstext] = ACTIONS(4947), - [anon_sym_BSLASHGLStext] = ACTIONS(4947), - [anon_sym_BSLASHglsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), - [anon_sym_BSLASHglsplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSplural] = ACTIONS(4947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHglsname] = ACTIONS(4947), - [anon_sym_BSLASHGlsname] = ACTIONS(4947), - [anon_sym_BSLASHGLSname] = ACTIONS(4947), - [anon_sym_BSLASHglssymbol] = ACTIONS(4947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), - [anon_sym_BSLASHglsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), - [anon_sym_BSLASHglsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), - [anon_sym_BSLASHglsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), - [anon_sym_BSLASHglsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), - [anon_sym_BSLASHglsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), - [anon_sym_BSLASHnewacronym] = ACTIONS(4947), - [anon_sym_BSLASHacrshort] = ACTIONS(4947), - [anon_sym_BSLASHAcrshort] = ACTIONS(4947), - [anon_sym_BSLASHACRshort] = ACTIONS(4947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), - [anon_sym_BSLASHacrlong] = ACTIONS(4947), - [anon_sym_BSLASHAcrlong] = ACTIONS(4947), - [anon_sym_BSLASHACRlong] = ACTIONS(4947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), - [anon_sym_BSLASHacrfull] = ACTIONS(4947), - [anon_sym_BSLASHAcrfull] = ACTIONS(4947), - [anon_sym_BSLASHACRfull] = ACTIONS(4947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), - [anon_sym_BSLASHacs] = ACTIONS(4947), - [anon_sym_BSLASHAcs] = ACTIONS(4947), - [anon_sym_BSLASHacsp] = ACTIONS(4947), - [anon_sym_BSLASHAcsp] = ACTIONS(4947), - [anon_sym_BSLASHacl] = ACTIONS(4947), - [anon_sym_BSLASHAcl] = ACTIONS(4947), - [anon_sym_BSLASHaclp] = ACTIONS(4947), - [anon_sym_BSLASHAclp] = ACTIONS(4947), - [anon_sym_BSLASHacf] = ACTIONS(4947), - [anon_sym_BSLASHAcf] = ACTIONS(4947), - [anon_sym_BSLASHacfp] = ACTIONS(4947), - [anon_sym_BSLASHAcfp] = ACTIONS(4947), - [anon_sym_BSLASHac] = ACTIONS(4947), - [anon_sym_BSLASHAc] = ACTIONS(4947), - [anon_sym_BSLASHacp] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), - [anon_sym_BSLASHcolor] = ACTIONS(4947), - [anon_sym_BSLASHcolorbox] = ACTIONS(4947), - [anon_sym_BSLASHtextcolor] = ACTIONS(4947), - [anon_sym_BSLASHpagecolor] = ACTIONS(4947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), - [anon_sym_BSLASHtext] = ACTIONS(4947), - [anon_sym_BSLASHintertext] = ACTIONS(4947), - [anon_sym_shortintertext] = ACTIONS(4947), + [sym_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_BSLASHpart] = ACTIONS(5026), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddpart] = ACTIONS(5026), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHchapter] = ACTIONS(5026), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddchap] = ACTIONS(5026), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsection] = ACTIONS(5026), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddsec] = ACTIONS(5026), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHparagraph] = ACTIONS(5026), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5026), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHitem] = ACTIONS(5026), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [sym_word] = ACTIONS(5026), + [sym_placeholder] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5024), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5024), + [anon_sym_BSLASHbegin] = ACTIONS(5026), + [anon_sym_BSLASHusepackage] = ACTIONS(5026), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5026), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5026), + [anon_sym_BSLASHinclude] = ACTIONS(5026), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5026), + [anon_sym_BSLASHinput] = ACTIONS(5026), + [anon_sym_BSLASHsubfile] = ACTIONS(5026), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5026), + [anon_sym_BSLASHbibliography] = ACTIONS(5026), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5026), + [anon_sym_BSLASHincludesvg] = ACTIONS(5026), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5026), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5026), + [anon_sym_BSLASHimport] = ACTIONS(5026), + [anon_sym_BSLASHsubimport] = ACTIONS(5026), + [anon_sym_BSLASHinputfrom] = ACTIONS(5026), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5026), + [anon_sym_BSLASHincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHcaption] = ACTIONS(5026), + [anon_sym_BSLASHcite] = ACTIONS(5026), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCite] = ACTIONS(5026), + [anon_sym_BSLASHnocite] = ACTIONS(5026), + [anon_sym_BSLASHcitet] = ACTIONS(5026), + [anon_sym_BSLASHcitep] = ACTIONS(5026), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteauthor] = ACTIONS(5026), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5026), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitetitle] = ACTIONS(5026), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteyear] = ACTIONS(5026), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitedate] = ACTIONS(5026), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteurl] = ACTIONS(5026), + [anon_sym_BSLASHfullcite] = ACTIONS(5026), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5026), + [anon_sym_BSLASHcitealt] = ACTIONS(5026), + [anon_sym_BSLASHcitealp] = ACTIONS(5026), + [anon_sym_BSLASHcitetext] = ACTIONS(5026), + [anon_sym_BSLASHparencite] = ACTIONS(5026), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHParencite] = ACTIONS(5026), + [anon_sym_BSLASHfootcite] = ACTIONS(5026), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5026), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5026), + [anon_sym_BSLASHtextcite] = ACTIONS(5026), + [anon_sym_BSLASHTextcite] = ACTIONS(5026), + [anon_sym_BSLASHsmartcite] = ACTIONS(5026), + [anon_sym_BSLASHSmartcite] = ACTIONS(5026), + [anon_sym_BSLASHsupercite] = ACTIONS(5026), + [anon_sym_BSLASHautocite] = ACTIONS(5026), + [anon_sym_BSLASHAutocite] = ACTIONS(5026), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHvolcite] = ACTIONS(5026), + [anon_sym_BSLASHVolcite] = ACTIONS(5026), + [anon_sym_BSLASHpvolcite] = ACTIONS(5026), + [anon_sym_BSLASHPvolcite] = ACTIONS(5026), + [anon_sym_BSLASHfvolcite] = ACTIONS(5026), + [anon_sym_BSLASHftvolcite] = ACTIONS(5026), + [anon_sym_BSLASHsvolcite] = ACTIONS(5026), + [anon_sym_BSLASHSvolcite] = ACTIONS(5026), + [anon_sym_BSLASHtvolcite] = ACTIONS(5026), + [anon_sym_BSLASHTvolcite] = ACTIONS(5026), + [anon_sym_BSLASHavolcite] = ACTIONS(5026), + [anon_sym_BSLASHAvolcite] = ACTIONS(5026), + [anon_sym_BSLASHnotecite] = ACTIONS(5026), + [anon_sym_BSLASHNotecite] = ACTIONS(5026), + [anon_sym_BSLASHpnotecite] = ACTIONS(5026), + [anon_sym_BSLASHPnotecite] = ACTIONS(5026), + [anon_sym_BSLASHfnotecite] = ACTIONS(5026), + [anon_sym_BSLASHlabel] = ACTIONS(5026), + [anon_sym_BSLASHref] = ACTIONS(5026), + [anon_sym_BSLASHeqref] = ACTIONS(5026), + [anon_sym_BSLASHvref] = ACTIONS(5026), + [anon_sym_BSLASHVref] = ACTIONS(5026), + [anon_sym_BSLASHautoref] = ACTIONS(5026), + [anon_sym_BSLASHpageref] = ACTIONS(5026), + [anon_sym_BSLASHcref] = ACTIONS(5026), + [anon_sym_BSLASHCref] = ACTIONS(5026), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnameCref] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHlabelcref] = ACTIONS(5026), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCrefrange] = ACTIONS(5026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnewlabel] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5026), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5026), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5026), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdef] = ACTIONS(5026), + [anon_sym_BSLASHlet] = ACTIONS(5026), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5026), + [anon_sym_BSLASHgls] = ACTIONS(5026), + [anon_sym_BSLASHGls] = ACTIONS(5026), + [anon_sym_BSLASHGLS] = ACTIONS(5026), + [anon_sym_BSLASHglspl] = ACTIONS(5026), + [anon_sym_BSLASHGlspl] = ACTIONS(5026), + [anon_sym_BSLASHGLSpl] = ACTIONS(5026), + [anon_sym_BSLASHglsdisp] = ACTIONS(5026), + [anon_sym_BSLASHglslink] = ACTIONS(5026), + [anon_sym_BSLASHglstext] = ACTIONS(5026), + [anon_sym_BSLASHGlstext] = ACTIONS(5026), + [anon_sym_BSLASHGLStext] = ACTIONS(5026), + [anon_sym_BSLASHglsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5026), + [anon_sym_BSLASHglsplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSplural] = ACTIONS(5026), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHglsname] = ACTIONS(5026), + [anon_sym_BSLASHGlsname] = ACTIONS(5026), + [anon_sym_BSLASHGLSname] = ACTIONS(5026), + [anon_sym_BSLASHglssymbol] = ACTIONS(5026), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5026), + [anon_sym_BSLASHglsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5026), + [anon_sym_BSLASHglsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5026), + [anon_sym_BSLASHglsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5026), + [anon_sym_BSLASHglsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5026), + [anon_sym_BSLASHglsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5026), + [anon_sym_BSLASHnewacronym] = ACTIONS(5026), + [anon_sym_BSLASHacrshort] = ACTIONS(5026), + [anon_sym_BSLASHAcrshort] = ACTIONS(5026), + [anon_sym_BSLASHACRshort] = ACTIONS(5026), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5026), + [anon_sym_BSLASHacrlong] = ACTIONS(5026), + [anon_sym_BSLASHAcrlong] = ACTIONS(5026), + [anon_sym_BSLASHACRlong] = ACTIONS(5026), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5026), + [anon_sym_BSLASHacrfull] = ACTIONS(5026), + [anon_sym_BSLASHAcrfull] = ACTIONS(5026), + [anon_sym_BSLASHACRfull] = ACTIONS(5026), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5026), + [anon_sym_BSLASHacs] = ACTIONS(5026), + [anon_sym_BSLASHAcs] = ACTIONS(5026), + [anon_sym_BSLASHacsp] = ACTIONS(5026), + [anon_sym_BSLASHAcsp] = ACTIONS(5026), + [anon_sym_BSLASHacl] = ACTIONS(5026), + [anon_sym_BSLASHAcl] = ACTIONS(5026), + [anon_sym_BSLASHaclp] = ACTIONS(5026), + [anon_sym_BSLASHAclp] = ACTIONS(5026), + [anon_sym_BSLASHacf] = ACTIONS(5026), + [anon_sym_BSLASHAcf] = ACTIONS(5026), + [anon_sym_BSLASHacfp] = ACTIONS(5026), + [anon_sym_BSLASHAcfp] = ACTIONS(5026), + [anon_sym_BSLASHac] = ACTIONS(5026), + [anon_sym_BSLASHAc] = ACTIONS(5026), + [anon_sym_BSLASHacp] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5026), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5026), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5026), + [anon_sym_BSLASHcolor] = ACTIONS(5026), + [anon_sym_BSLASHcolorbox] = ACTIONS(5026), + [anon_sym_BSLASHtextcolor] = ACTIONS(5026), + [anon_sym_BSLASHpagecolor] = ACTIONS(5026), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5026), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5026), + [anon_sym_BSLASHtext] = ACTIONS(5026), + [anon_sym_BSLASHintertext] = ACTIONS(5026), + [anon_sym_shortintertext] = ACTIONS(5026), }, [862] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_BSLASHpart] = ACTIONS(5284), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddpart] = ACTIONS(5284), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHchapter] = ACTIONS(5284), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddchap] = ACTIONS(5284), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsection] = ACTIONS(5284), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddsec] = ACTIONS(5284), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHparagraph] = ACTIONS(5284), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5284), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHitem] = ACTIONS(5284), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5282), + [anon_sym_BSLASHbegin] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [863] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_BSLASHpart] = ACTIONS(5145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddpart] = ACTIONS(5145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHchapter] = ACTIONS(5145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddchap] = ACTIONS(5145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsection] = ACTIONS(5145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddsec] = ACTIONS(5145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHparagraph] = ACTIONS(5145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHitem] = ACTIONS(5145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5143), - [anon_sym_BSLASHbegin] = 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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_BSLASHpart] = ACTIONS(5224), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddpart] = ACTIONS(5224), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHchapter] = ACTIONS(5224), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddchap] = ACTIONS(5224), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsection] = ACTIONS(5224), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddsec] = ACTIONS(5224), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHparagraph] = ACTIONS(5224), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5224), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHitem] = ACTIONS(5224), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5222), + [anon_sym_BSLASHbegin] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [864] = { - [sym_command_name] = ACTIONS(4951), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_BSLASHpart] = ACTIONS(4951), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddpart] = ACTIONS(4951), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHchapter] = ACTIONS(4951), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddchap] = ACTIONS(4951), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsection] = ACTIONS(4951), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddsec] = ACTIONS(4951), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHparagraph] = ACTIONS(4951), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHitem] = ACTIONS(4951), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), - [sym_word] = ACTIONS(4951), - [sym_placeholder] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4949), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), - [anon_sym_BSLASHbegin] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4951), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), - [anon_sym_BSLASHinclude] = ACTIONS(4951), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), - [anon_sym_BSLASHinput] = ACTIONS(4951), - [anon_sym_BSLASHsubfile] = ACTIONS(4951), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), - [anon_sym_BSLASHbibliography] = ACTIONS(4951), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), - [anon_sym_BSLASHincludesvg] = ACTIONS(4951), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), - [anon_sym_BSLASHimport] = ACTIONS(4951), - [anon_sym_BSLASHsubimport] = ACTIONS(4951), - [anon_sym_BSLASHinputfrom] = ACTIONS(4951), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), - [anon_sym_BSLASHincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHcaption] = ACTIONS(4951), - [anon_sym_BSLASHcite] = ACTIONS(4951), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCite] = ACTIONS(4951), - [anon_sym_BSLASHnocite] = ACTIONS(4951), - [anon_sym_BSLASHcitet] = ACTIONS(4951), - [anon_sym_BSLASHcitep] = ACTIONS(4951), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteyear] = ACTIONS(4951), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitedate] = ACTIONS(4951), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteurl] = ACTIONS(4951), - [anon_sym_BSLASHfullcite] = ACTIONS(4951), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), - [anon_sym_BSLASHcitealt] = ACTIONS(4951), - [anon_sym_BSLASHcitealp] = ACTIONS(4951), - [anon_sym_BSLASHcitetext] = ACTIONS(4951), - [anon_sym_BSLASHparencite] = ACTIONS(4951), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHParencite] = ACTIONS(4951), - [anon_sym_BSLASHfootcite] = ACTIONS(4951), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), - [anon_sym_BSLASHtextcite] = ACTIONS(4951), - [anon_sym_BSLASHTextcite] = ACTIONS(4951), - [anon_sym_BSLASHsmartcite] = ACTIONS(4951), - [anon_sym_BSLASHSmartcite] = ACTIONS(4951), - [anon_sym_BSLASHsupercite] = ACTIONS(4951), - [anon_sym_BSLASHautocite] = ACTIONS(4951), - [anon_sym_BSLASHAutocite] = ACTIONS(4951), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHvolcite] = ACTIONS(4951), - [anon_sym_BSLASHVolcite] = ACTIONS(4951), - [anon_sym_BSLASHpvolcite] = ACTIONS(4951), - [anon_sym_BSLASHPvolcite] = ACTIONS(4951), - [anon_sym_BSLASHfvolcite] = ACTIONS(4951), - [anon_sym_BSLASHftvolcite] = ACTIONS(4951), - [anon_sym_BSLASHsvolcite] = ACTIONS(4951), - [anon_sym_BSLASHSvolcite] = ACTIONS(4951), - [anon_sym_BSLASHtvolcite] = ACTIONS(4951), - [anon_sym_BSLASHTvolcite] = ACTIONS(4951), - [anon_sym_BSLASHavolcite] = ACTIONS(4951), - [anon_sym_BSLASHAvolcite] = ACTIONS(4951), - [anon_sym_BSLASHnotecite] = ACTIONS(4951), - [anon_sym_BSLASHNotecite] = ACTIONS(4951), - [anon_sym_BSLASHpnotecite] = ACTIONS(4951), - [anon_sym_BSLASHPnotecite] = ACTIONS(4951), - [anon_sym_BSLASHfnotecite] = ACTIONS(4951), - [anon_sym_BSLASHlabel] = ACTIONS(4951), - [anon_sym_BSLASHref] = ACTIONS(4951), - [anon_sym_BSLASHeqref] = ACTIONS(4951), - [anon_sym_BSLASHvref] = ACTIONS(4951), - [anon_sym_BSLASHVref] = ACTIONS(4951), - [anon_sym_BSLASHautoref] = ACTIONS(4951), - [anon_sym_BSLASHpageref] = ACTIONS(4951), - [anon_sym_BSLASHcref] = ACTIONS(4951), - [anon_sym_BSLASHCref] = ACTIONS(4951), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnameCref] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHlabelcref] = ACTIONS(4951), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnewlabel] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), - [anon_sym_BSLASHdef] = ACTIONS(4951), - [anon_sym_BSLASHlet] = ACTIONS(4951), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), - [anon_sym_BSLASHgls] = ACTIONS(4951), - [anon_sym_BSLASHGls] = ACTIONS(4951), - [anon_sym_BSLASHGLS] = ACTIONS(4951), - [anon_sym_BSLASHglspl] = ACTIONS(4951), - [anon_sym_BSLASHGlspl] = ACTIONS(4951), - [anon_sym_BSLASHGLSpl] = ACTIONS(4951), - [anon_sym_BSLASHglsdisp] = ACTIONS(4951), - [anon_sym_BSLASHglslink] = ACTIONS(4951), - [anon_sym_BSLASHglstext] = ACTIONS(4951), - [anon_sym_BSLASHGlstext] = ACTIONS(4951), - [anon_sym_BSLASHGLStext] = ACTIONS(4951), - [anon_sym_BSLASHglsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), - [anon_sym_BSLASHglsplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSplural] = ACTIONS(4951), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHglsname] = ACTIONS(4951), - [anon_sym_BSLASHGlsname] = ACTIONS(4951), - [anon_sym_BSLASHGLSname] = ACTIONS(4951), - [anon_sym_BSLASHglssymbol] = ACTIONS(4951), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), - [anon_sym_BSLASHglsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), - [anon_sym_BSLASHglsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), - [anon_sym_BSLASHglsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), - [anon_sym_BSLASHglsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), - [anon_sym_BSLASHglsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), - [anon_sym_BSLASHnewacronym] = ACTIONS(4951), - [anon_sym_BSLASHacrshort] = ACTIONS(4951), - [anon_sym_BSLASHAcrshort] = ACTIONS(4951), - [anon_sym_BSLASHACRshort] = ACTIONS(4951), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), - [anon_sym_BSLASHacrlong] = ACTIONS(4951), - [anon_sym_BSLASHAcrlong] = ACTIONS(4951), - [anon_sym_BSLASHACRlong] = ACTIONS(4951), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), - [anon_sym_BSLASHacrfull] = ACTIONS(4951), - [anon_sym_BSLASHAcrfull] = ACTIONS(4951), - [anon_sym_BSLASHACRfull] = ACTIONS(4951), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), - [anon_sym_BSLASHacs] = ACTIONS(4951), - [anon_sym_BSLASHAcs] = ACTIONS(4951), - [anon_sym_BSLASHacsp] = ACTIONS(4951), - [anon_sym_BSLASHAcsp] = ACTIONS(4951), - [anon_sym_BSLASHacl] = ACTIONS(4951), - [anon_sym_BSLASHAcl] = ACTIONS(4951), - [anon_sym_BSLASHaclp] = ACTIONS(4951), - [anon_sym_BSLASHAclp] = ACTIONS(4951), - [anon_sym_BSLASHacf] = ACTIONS(4951), - [anon_sym_BSLASHAcf] = ACTIONS(4951), - [anon_sym_BSLASHacfp] = ACTIONS(4951), - [anon_sym_BSLASHAcfp] = ACTIONS(4951), - [anon_sym_BSLASHac] = ACTIONS(4951), - [anon_sym_BSLASHAc] = ACTIONS(4951), - [anon_sym_BSLASHacp] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), - [anon_sym_BSLASHcolor] = ACTIONS(4951), - [anon_sym_BSLASHcolorbox] = ACTIONS(4951), - [anon_sym_BSLASHtextcolor] = ACTIONS(4951), - [anon_sym_BSLASHpagecolor] = ACTIONS(4951), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), - [anon_sym_BSLASHtext] = ACTIONS(4951), - [anon_sym_BSLASHintertext] = ACTIONS(4951), - [anon_sym_shortintertext] = ACTIONS(4951), + [sym_command_name] = ACTIONS(5030), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_BSLASHpart] = ACTIONS(5030), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddpart] = ACTIONS(5030), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHchapter] = ACTIONS(5030), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddchap] = ACTIONS(5030), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsection] = ACTIONS(5030), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddsec] = ACTIONS(5030), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHparagraph] = ACTIONS(5030), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5030), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHitem] = ACTIONS(5030), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [sym_word] = ACTIONS(5030), + [sym_placeholder] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5028), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5028), + [anon_sym_BSLASHbegin] = ACTIONS(5030), + [anon_sym_BSLASHusepackage] = ACTIONS(5030), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5030), + [anon_sym_BSLASHinclude] = ACTIONS(5030), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5030), + [anon_sym_BSLASHinput] = ACTIONS(5030), + [anon_sym_BSLASHsubfile] = ACTIONS(5030), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5030), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5030), + [anon_sym_BSLASHincludesvg] = ACTIONS(5030), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5030), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5030), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5030), + [anon_sym_BSLASHimport] = ACTIONS(5030), + [anon_sym_BSLASHsubimport] = ACTIONS(5030), + [anon_sym_BSLASHinputfrom] = ACTIONS(5030), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5030), + [anon_sym_BSLASHincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHcaption] = ACTIONS(5030), + [anon_sym_BSLASHcite] = ACTIONS(5030), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCite] = ACTIONS(5030), + [anon_sym_BSLASHnocite] = ACTIONS(5030), + [anon_sym_BSLASHcitet] = ACTIONS(5030), + [anon_sym_BSLASHcitep] = ACTIONS(5030), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteauthor] = ACTIONS(5030), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5030), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitetitle] = ACTIONS(5030), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteyear] = ACTIONS(5030), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitedate] = ACTIONS(5030), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteurl] = ACTIONS(5030), + [anon_sym_BSLASHfullcite] = ACTIONS(5030), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5030), + [anon_sym_BSLASHcitealt] = ACTIONS(5030), + [anon_sym_BSLASHcitealp] = ACTIONS(5030), + [anon_sym_BSLASHcitetext] = ACTIONS(5030), + [anon_sym_BSLASHparencite] = ACTIONS(5030), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHParencite] = ACTIONS(5030), + [anon_sym_BSLASHfootcite] = ACTIONS(5030), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5030), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5030), + [anon_sym_BSLASHtextcite] = ACTIONS(5030), + [anon_sym_BSLASHTextcite] = ACTIONS(5030), + [anon_sym_BSLASHsmartcite] = ACTIONS(5030), + [anon_sym_BSLASHSmartcite] = ACTIONS(5030), + [anon_sym_BSLASHsupercite] = ACTIONS(5030), + [anon_sym_BSLASHautocite] = ACTIONS(5030), + [anon_sym_BSLASHAutocite] = ACTIONS(5030), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHvolcite] = ACTIONS(5030), + [anon_sym_BSLASHVolcite] = ACTIONS(5030), + [anon_sym_BSLASHpvolcite] = ACTIONS(5030), + [anon_sym_BSLASHPvolcite] = ACTIONS(5030), + [anon_sym_BSLASHfvolcite] = ACTIONS(5030), + [anon_sym_BSLASHftvolcite] = ACTIONS(5030), + [anon_sym_BSLASHsvolcite] = ACTIONS(5030), + [anon_sym_BSLASHSvolcite] = ACTIONS(5030), + [anon_sym_BSLASHtvolcite] = ACTIONS(5030), + [anon_sym_BSLASHTvolcite] = ACTIONS(5030), + [anon_sym_BSLASHavolcite] = ACTIONS(5030), + [anon_sym_BSLASHAvolcite] = ACTIONS(5030), + [anon_sym_BSLASHnotecite] = ACTIONS(5030), + [anon_sym_BSLASHNotecite] = ACTIONS(5030), + [anon_sym_BSLASHpnotecite] = ACTIONS(5030), + [anon_sym_BSLASHPnotecite] = ACTIONS(5030), + [anon_sym_BSLASHfnotecite] = ACTIONS(5030), + [anon_sym_BSLASHlabel] = ACTIONS(5030), + [anon_sym_BSLASHref] = ACTIONS(5030), + [anon_sym_BSLASHeqref] = ACTIONS(5030), + [anon_sym_BSLASHvref] = ACTIONS(5030), + [anon_sym_BSLASHVref] = ACTIONS(5030), + [anon_sym_BSLASHautoref] = ACTIONS(5030), + [anon_sym_BSLASHpageref] = ACTIONS(5030), + [anon_sym_BSLASHcref] = ACTIONS(5030), + [anon_sym_BSLASHCref] = ACTIONS(5030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnameCref] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHlabelcref] = ACTIONS(5030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCrefrange] = ACTIONS(5030), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5030), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5030), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5030), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdef] = ACTIONS(5030), + [anon_sym_BSLASHlet] = ACTIONS(5030), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5030), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5030), + [anon_sym_BSLASHgls] = ACTIONS(5030), + [anon_sym_BSLASHGls] = ACTIONS(5030), + [anon_sym_BSLASHGLS] = ACTIONS(5030), + [anon_sym_BSLASHglspl] = ACTIONS(5030), + [anon_sym_BSLASHGlspl] = ACTIONS(5030), + [anon_sym_BSLASHGLSpl] = ACTIONS(5030), + [anon_sym_BSLASHglsdisp] = ACTIONS(5030), + [anon_sym_BSLASHglslink] = ACTIONS(5030), + [anon_sym_BSLASHglstext] = ACTIONS(5030), + [anon_sym_BSLASHGlstext] = ACTIONS(5030), + [anon_sym_BSLASHGLStext] = ACTIONS(5030), + [anon_sym_BSLASHglsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5030), + [anon_sym_BSLASHglsplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSplural] = ACTIONS(5030), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHglsname] = ACTIONS(5030), + [anon_sym_BSLASHGlsname] = ACTIONS(5030), + [anon_sym_BSLASHGLSname] = ACTIONS(5030), + [anon_sym_BSLASHglssymbol] = ACTIONS(5030), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5030), + [anon_sym_BSLASHglsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5030), + [anon_sym_BSLASHglsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5030), + [anon_sym_BSLASHglsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5030), + [anon_sym_BSLASHglsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5030), + [anon_sym_BSLASHglsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5030), + [anon_sym_BSLASHnewacronym] = ACTIONS(5030), + [anon_sym_BSLASHacrshort] = ACTIONS(5030), + [anon_sym_BSLASHAcrshort] = ACTIONS(5030), + [anon_sym_BSLASHACRshort] = ACTIONS(5030), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5030), + [anon_sym_BSLASHacrlong] = ACTIONS(5030), + [anon_sym_BSLASHAcrlong] = ACTIONS(5030), + [anon_sym_BSLASHACRlong] = ACTIONS(5030), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5030), + [anon_sym_BSLASHacrfull] = ACTIONS(5030), + [anon_sym_BSLASHAcrfull] = ACTIONS(5030), + [anon_sym_BSLASHACRfull] = ACTIONS(5030), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5030), + [anon_sym_BSLASHacs] = ACTIONS(5030), + [anon_sym_BSLASHAcs] = ACTIONS(5030), + [anon_sym_BSLASHacsp] = ACTIONS(5030), + [anon_sym_BSLASHAcsp] = ACTIONS(5030), + [anon_sym_BSLASHacl] = ACTIONS(5030), + [anon_sym_BSLASHAcl] = ACTIONS(5030), + [anon_sym_BSLASHaclp] = ACTIONS(5030), + [anon_sym_BSLASHAclp] = ACTIONS(5030), + [anon_sym_BSLASHacf] = ACTIONS(5030), + [anon_sym_BSLASHAcf] = ACTIONS(5030), + [anon_sym_BSLASHacfp] = ACTIONS(5030), + [anon_sym_BSLASHAcfp] = ACTIONS(5030), + [anon_sym_BSLASHac] = ACTIONS(5030), + [anon_sym_BSLASHAc] = ACTIONS(5030), + [anon_sym_BSLASHacp] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5030), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5030), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5030), + [anon_sym_BSLASHcolor] = ACTIONS(5030), + [anon_sym_BSLASHcolorbox] = ACTIONS(5030), + [anon_sym_BSLASHtextcolor] = ACTIONS(5030), + [anon_sym_BSLASHpagecolor] = ACTIONS(5030), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5030), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5030), + [anon_sym_BSLASHtext] = ACTIONS(5030), + [anon_sym_BSLASHintertext] = ACTIONS(5030), + [anon_sym_shortintertext] = ACTIONS(5030), }, [865] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_BSLASHpart] = ACTIONS(4955), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddpart] = ACTIONS(4955), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHchapter] = ACTIONS(4955), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddchap] = ACTIONS(4955), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsection] = ACTIONS(4955), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddsec] = ACTIONS(4955), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHparagraph] = ACTIONS(4955), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHitem] = ACTIONS(4955), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASHbegin] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_BSLASHpart] = ACTIONS(5034), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddpart] = ACTIONS(5034), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHchapter] = ACTIONS(5034), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddchap] = ACTIONS(5034), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsection] = ACTIONS(5034), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddsec] = ACTIONS(5034), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHparagraph] = ACTIONS(5034), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5034), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHitem] = ACTIONS(5034), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASHbegin] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [866] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_BSLASHpart] = ACTIONS(4887), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddpart] = ACTIONS(4887), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHchapter] = ACTIONS(4887), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddchap] = ACTIONS(4887), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsection] = ACTIONS(4887), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddsec] = ACTIONS(4887), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHparagraph] = ACTIONS(4887), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHitem] = ACTIONS(4887), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASHbegin] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BSLASHpart] = ACTIONS(4966), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddpart] = ACTIONS(4966), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHchapter] = ACTIONS(4966), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddchap] = ACTIONS(4966), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsection] = ACTIONS(4966), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddsec] = ACTIONS(4966), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHparagraph] = ACTIONS(4966), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4966), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHitem] = ACTIONS(4966), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASHbegin] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [867] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5105), - [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), + [sym_command_name] = ACTIONS(5184), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_BSLASHpart] = ACTIONS(5184), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddpart] = ACTIONS(5184), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHchapter] = ACTIONS(5184), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddchap] = ACTIONS(5184), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsection] = ACTIONS(5184), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddsec] = ACTIONS(5184), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHparagraph] = ACTIONS(5184), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5184), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHitem] = ACTIONS(5184), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [sym_word] = ACTIONS(5184), + [sym_placeholder] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym__] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5182), + [anon_sym_BSLASHbegin] = ACTIONS(5184), + [anon_sym_BSLASHusepackage] = ACTIONS(5184), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5184), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5184), + [anon_sym_BSLASHinclude] = ACTIONS(5184), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5184), + [anon_sym_BSLASHinput] = ACTIONS(5184), + [anon_sym_BSLASHsubfile] = ACTIONS(5184), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5184), + [anon_sym_BSLASHbibliography] = ACTIONS(5184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5184), + [anon_sym_BSLASHincludesvg] = ACTIONS(5184), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5184), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5184), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5184), + [anon_sym_BSLASHimport] = ACTIONS(5184), + [anon_sym_BSLASHsubimport] = ACTIONS(5184), + [anon_sym_BSLASHinputfrom] = ACTIONS(5184), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5184), + [anon_sym_BSLASHincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHcaption] = ACTIONS(5184), + [anon_sym_BSLASHcite] = ACTIONS(5184), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCite] = ACTIONS(5184), + [anon_sym_BSLASHnocite] = ACTIONS(5184), + [anon_sym_BSLASHcitet] = ACTIONS(5184), + [anon_sym_BSLASHcitep] = ACTIONS(5184), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteauthor] = ACTIONS(5184), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5184), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitetitle] = ACTIONS(5184), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteyear] = ACTIONS(5184), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitedate] = ACTIONS(5184), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteurl] = ACTIONS(5184), + [anon_sym_BSLASHfullcite] = ACTIONS(5184), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5184), + [anon_sym_BSLASHcitealt] = ACTIONS(5184), + [anon_sym_BSLASHcitealp] = ACTIONS(5184), + [anon_sym_BSLASHcitetext] = ACTIONS(5184), + [anon_sym_BSLASHparencite] = ACTIONS(5184), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHParencite] = ACTIONS(5184), + [anon_sym_BSLASHfootcite] = ACTIONS(5184), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5184), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5184), + [anon_sym_BSLASHtextcite] = ACTIONS(5184), + [anon_sym_BSLASHTextcite] = ACTIONS(5184), + [anon_sym_BSLASHsmartcite] = ACTIONS(5184), + [anon_sym_BSLASHSmartcite] = ACTIONS(5184), + [anon_sym_BSLASHsupercite] = ACTIONS(5184), + [anon_sym_BSLASHautocite] = ACTIONS(5184), + [anon_sym_BSLASHAutocite] = ACTIONS(5184), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHvolcite] = ACTIONS(5184), + [anon_sym_BSLASHVolcite] = ACTIONS(5184), + [anon_sym_BSLASHpvolcite] = ACTIONS(5184), + [anon_sym_BSLASHPvolcite] = ACTIONS(5184), + [anon_sym_BSLASHfvolcite] = ACTIONS(5184), + [anon_sym_BSLASHftvolcite] = ACTIONS(5184), + [anon_sym_BSLASHsvolcite] = ACTIONS(5184), + [anon_sym_BSLASHSvolcite] = ACTIONS(5184), + [anon_sym_BSLASHtvolcite] = ACTIONS(5184), + [anon_sym_BSLASHTvolcite] = ACTIONS(5184), + [anon_sym_BSLASHavolcite] = ACTIONS(5184), + [anon_sym_BSLASHAvolcite] = ACTIONS(5184), + [anon_sym_BSLASHnotecite] = ACTIONS(5184), + [anon_sym_BSLASHNotecite] = ACTIONS(5184), + [anon_sym_BSLASHpnotecite] = ACTIONS(5184), + [anon_sym_BSLASHPnotecite] = ACTIONS(5184), + [anon_sym_BSLASHfnotecite] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5184), + [anon_sym_BSLASHref] = ACTIONS(5184), + [anon_sym_BSLASHeqref] = ACTIONS(5184), + [anon_sym_BSLASHvref] = ACTIONS(5184), + [anon_sym_BSLASHVref] = ACTIONS(5184), + [anon_sym_BSLASHautoref] = ACTIONS(5184), + [anon_sym_BSLASHpageref] = ACTIONS(5184), + [anon_sym_BSLASHcref] = ACTIONS(5184), + [anon_sym_BSLASHCref] = ACTIONS(5184), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnameCref] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHlabelcref] = ACTIONS(5184), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCrefrange] = ACTIONS(5184), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnewlabel] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5184), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5184), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5184), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdef] = ACTIONS(5184), + [anon_sym_BSLASHlet] = ACTIONS(5184), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5184), + [anon_sym_BSLASHgls] = ACTIONS(5184), + [anon_sym_BSLASHGls] = ACTIONS(5184), + [anon_sym_BSLASHGLS] = ACTIONS(5184), + [anon_sym_BSLASHglspl] = ACTIONS(5184), + [anon_sym_BSLASHGlspl] = ACTIONS(5184), + [anon_sym_BSLASHGLSpl] = ACTIONS(5184), + [anon_sym_BSLASHglsdisp] = ACTIONS(5184), + [anon_sym_BSLASHglslink] = ACTIONS(5184), + [anon_sym_BSLASHglstext] = ACTIONS(5184), + [anon_sym_BSLASHGlstext] = ACTIONS(5184), + [anon_sym_BSLASHGLStext] = ACTIONS(5184), + [anon_sym_BSLASHglsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5184), + [anon_sym_BSLASHglsplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSplural] = ACTIONS(5184), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHglsname] = ACTIONS(5184), + [anon_sym_BSLASHGlsname] = ACTIONS(5184), + [anon_sym_BSLASHGLSname] = ACTIONS(5184), + [anon_sym_BSLASHglssymbol] = ACTIONS(5184), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5184), + [anon_sym_BSLASHglsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5184), + [anon_sym_BSLASHglsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5184), + [anon_sym_BSLASHglsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5184), + [anon_sym_BSLASHglsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5184), + [anon_sym_BSLASHglsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5184), + [anon_sym_BSLASHnewacronym] = ACTIONS(5184), + [anon_sym_BSLASHacrshort] = ACTIONS(5184), + [anon_sym_BSLASHAcrshort] = ACTIONS(5184), + [anon_sym_BSLASHACRshort] = ACTIONS(5184), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5184), + [anon_sym_BSLASHacrlong] = ACTIONS(5184), + [anon_sym_BSLASHAcrlong] = ACTIONS(5184), + [anon_sym_BSLASHACRlong] = ACTIONS(5184), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5184), + [anon_sym_BSLASHacrfull] = ACTIONS(5184), + [anon_sym_BSLASHAcrfull] = ACTIONS(5184), + [anon_sym_BSLASHACRfull] = ACTIONS(5184), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5184), + [anon_sym_BSLASHacs] = ACTIONS(5184), + [anon_sym_BSLASHAcs] = ACTIONS(5184), + [anon_sym_BSLASHacsp] = ACTIONS(5184), + [anon_sym_BSLASHAcsp] = ACTIONS(5184), + [anon_sym_BSLASHacl] = ACTIONS(5184), + [anon_sym_BSLASHAcl] = ACTIONS(5184), + [anon_sym_BSLASHaclp] = ACTIONS(5184), + [anon_sym_BSLASHAclp] = ACTIONS(5184), + [anon_sym_BSLASHacf] = ACTIONS(5184), + [anon_sym_BSLASHAcf] = ACTIONS(5184), + [anon_sym_BSLASHacfp] = ACTIONS(5184), + [anon_sym_BSLASHAcfp] = ACTIONS(5184), + [anon_sym_BSLASHac] = ACTIONS(5184), + [anon_sym_BSLASHAc] = ACTIONS(5184), + [anon_sym_BSLASHacp] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5184), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5184), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5184), + [anon_sym_BSLASHcolor] = ACTIONS(5184), + [anon_sym_BSLASHcolorbox] = ACTIONS(5184), + [anon_sym_BSLASHtextcolor] = ACTIONS(5184), + [anon_sym_BSLASHpagecolor] = ACTIONS(5184), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5184), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5184), + [anon_sym_BSLASHtext] = ACTIONS(5184), + [anon_sym_BSLASHintertext] = ACTIONS(5184), + [anon_sym_shortintertext] = ACTIONS(5184), }, [868] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5101), - [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), + [sym_command_name] = ACTIONS(5180), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_BSLASHpart] = ACTIONS(5180), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddpart] = ACTIONS(5180), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHchapter] = ACTIONS(5180), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddchap] = ACTIONS(5180), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsection] = ACTIONS(5180), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddsec] = ACTIONS(5180), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHparagraph] = ACTIONS(5180), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5180), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHitem] = ACTIONS(5180), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5178), + [sym_word] = ACTIONS(5180), + [sym_placeholder] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym__] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_SQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5178), + [anon_sym_BSLASHbegin] = ACTIONS(5180), + [anon_sym_BSLASHusepackage] = ACTIONS(5180), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5180), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5180), + [anon_sym_BSLASHinclude] = ACTIONS(5180), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5180), + [anon_sym_BSLASHinput] = ACTIONS(5180), + [anon_sym_BSLASHsubfile] = ACTIONS(5180), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5180), + [anon_sym_BSLASHbibliography] = ACTIONS(5180), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5180), + [anon_sym_BSLASHincludesvg] = ACTIONS(5180), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5180), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5180), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5180), + [anon_sym_BSLASHimport] = ACTIONS(5180), + [anon_sym_BSLASHsubimport] = ACTIONS(5180), + [anon_sym_BSLASHinputfrom] = ACTIONS(5180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5180), + [anon_sym_BSLASHincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHcaption] = ACTIONS(5180), + [anon_sym_BSLASHcite] = ACTIONS(5180), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCite] = ACTIONS(5180), + [anon_sym_BSLASHnocite] = ACTIONS(5180), + [anon_sym_BSLASHcitet] = ACTIONS(5180), + [anon_sym_BSLASHcitep] = ACTIONS(5180), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteauthor] = ACTIONS(5180), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5180), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitetitle] = ACTIONS(5180), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteyear] = ACTIONS(5180), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitedate] = ACTIONS(5180), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteurl] = ACTIONS(5180), + [anon_sym_BSLASHfullcite] = ACTIONS(5180), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5180), + [anon_sym_BSLASHcitealt] = ACTIONS(5180), + [anon_sym_BSLASHcitealp] = ACTIONS(5180), + [anon_sym_BSLASHcitetext] = ACTIONS(5180), + [anon_sym_BSLASHparencite] = ACTIONS(5180), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHParencite] = ACTIONS(5180), + [anon_sym_BSLASHfootcite] = ACTIONS(5180), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5180), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5180), + [anon_sym_BSLASHtextcite] = ACTIONS(5180), + [anon_sym_BSLASHTextcite] = ACTIONS(5180), + [anon_sym_BSLASHsmartcite] = ACTIONS(5180), + [anon_sym_BSLASHSmartcite] = ACTIONS(5180), + [anon_sym_BSLASHsupercite] = ACTIONS(5180), + [anon_sym_BSLASHautocite] = ACTIONS(5180), + [anon_sym_BSLASHAutocite] = ACTIONS(5180), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHvolcite] = ACTIONS(5180), + [anon_sym_BSLASHVolcite] = ACTIONS(5180), + [anon_sym_BSLASHpvolcite] = ACTIONS(5180), + [anon_sym_BSLASHPvolcite] = ACTIONS(5180), + [anon_sym_BSLASHfvolcite] = ACTIONS(5180), + [anon_sym_BSLASHftvolcite] = ACTIONS(5180), + [anon_sym_BSLASHsvolcite] = ACTIONS(5180), + [anon_sym_BSLASHSvolcite] = ACTIONS(5180), + [anon_sym_BSLASHtvolcite] = ACTIONS(5180), + [anon_sym_BSLASHTvolcite] = ACTIONS(5180), + [anon_sym_BSLASHavolcite] = ACTIONS(5180), + [anon_sym_BSLASHAvolcite] = ACTIONS(5180), + [anon_sym_BSLASHnotecite] = ACTIONS(5180), + [anon_sym_BSLASHNotecite] = ACTIONS(5180), + [anon_sym_BSLASHpnotecite] = ACTIONS(5180), + [anon_sym_BSLASHPnotecite] = ACTIONS(5180), + [anon_sym_BSLASHfnotecite] = ACTIONS(5180), + [anon_sym_BSLASHlabel] = ACTIONS(5180), + [anon_sym_BSLASHref] = ACTIONS(5180), + [anon_sym_BSLASHeqref] = ACTIONS(5180), + [anon_sym_BSLASHvref] = ACTIONS(5180), + [anon_sym_BSLASHVref] = ACTIONS(5180), + [anon_sym_BSLASHautoref] = ACTIONS(5180), + [anon_sym_BSLASHpageref] = ACTIONS(5180), + [anon_sym_BSLASHcref] = ACTIONS(5180), + [anon_sym_BSLASHCref] = ACTIONS(5180), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnameCref] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHlabelcref] = ACTIONS(5180), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCrefrange] = ACTIONS(5180), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnewlabel] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5180), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5180), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5180), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdef] = ACTIONS(5180), + [anon_sym_BSLASHlet] = ACTIONS(5180), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5180), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5180), + [anon_sym_BSLASHgls] = ACTIONS(5180), + [anon_sym_BSLASHGls] = ACTIONS(5180), + [anon_sym_BSLASHGLS] = ACTIONS(5180), + [anon_sym_BSLASHglspl] = ACTIONS(5180), + [anon_sym_BSLASHGlspl] = ACTIONS(5180), + [anon_sym_BSLASHGLSpl] = ACTIONS(5180), + [anon_sym_BSLASHglsdisp] = ACTIONS(5180), + [anon_sym_BSLASHglslink] = ACTIONS(5180), + [anon_sym_BSLASHglstext] = ACTIONS(5180), + [anon_sym_BSLASHGlstext] = ACTIONS(5180), + [anon_sym_BSLASHGLStext] = ACTIONS(5180), + [anon_sym_BSLASHglsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5180), + [anon_sym_BSLASHglsplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSplural] = ACTIONS(5180), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHglsname] = ACTIONS(5180), + [anon_sym_BSLASHGlsname] = ACTIONS(5180), + [anon_sym_BSLASHGLSname] = ACTIONS(5180), + [anon_sym_BSLASHglssymbol] = ACTIONS(5180), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5180), + [anon_sym_BSLASHglsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5180), + [anon_sym_BSLASHglsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5180), + [anon_sym_BSLASHglsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5180), + [anon_sym_BSLASHglsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5180), + [anon_sym_BSLASHglsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5180), + [anon_sym_BSLASHnewacronym] = ACTIONS(5180), + [anon_sym_BSLASHacrshort] = ACTIONS(5180), + [anon_sym_BSLASHAcrshort] = ACTIONS(5180), + [anon_sym_BSLASHACRshort] = ACTIONS(5180), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5180), + [anon_sym_BSLASHacrlong] = ACTIONS(5180), + [anon_sym_BSLASHAcrlong] = ACTIONS(5180), + [anon_sym_BSLASHACRlong] = ACTIONS(5180), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5180), + [anon_sym_BSLASHacrfull] = ACTIONS(5180), + [anon_sym_BSLASHAcrfull] = ACTIONS(5180), + [anon_sym_BSLASHACRfull] = ACTIONS(5180), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5180), + [anon_sym_BSLASHacs] = ACTIONS(5180), + [anon_sym_BSLASHAcs] = ACTIONS(5180), + [anon_sym_BSLASHacsp] = ACTIONS(5180), + [anon_sym_BSLASHAcsp] = ACTIONS(5180), + [anon_sym_BSLASHacl] = ACTIONS(5180), + [anon_sym_BSLASHAcl] = ACTIONS(5180), + [anon_sym_BSLASHaclp] = ACTIONS(5180), + [anon_sym_BSLASHAclp] = ACTIONS(5180), + [anon_sym_BSLASHacf] = ACTIONS(5180), + [anon_sym_BSLASHAcf] = ACTIONS(5180), + [anon_sym_BSLASHacfp] = ACTIONS(5180), + [anon_sym_BSLASHAcfp] = ACTIONS(5180), + [anon_sym_BSLASHac] = ACTIONS(5180), + [anon_sym_BSLASHAc] = ACTIONS(5180), + [anon_sym_BSLASHacp] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5180), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5180), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5180), + [anon_sym_BSLASHcolor] = ACTIONS(5180), + [anon_sym_BSLASHcolorbox] = ACTIONS(5180), + [anon_sym_BSLASHtextcolor] = ACTIONS(5180), + [anon_sym_BSLASHpagecolor] = ACTIONS(5180), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5180), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5180), + [anon_sym_BSLASHtext] = ACTIONS(5180), + [anon_sym_BSLASHintertext] = ACTIONS(5180), + [anon_sym_shortintertext] = ACTIONS(5180), }, [869] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5097), - [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), + [sym_command_name] = ACTIONS(5176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_BSLASHpart] = ACTIONS(5176), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddpart] = ACTIONS(5176), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHchapter] = ACTIONS(5176), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddchap] = ACTIONS(5176), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsection] = ACTIONS(5176), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddsec] = ACTIONS(5176), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHparagraph] = ACTIONS(5176), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5176), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHitem] = ACTIONS(5176), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5174), + [sym_word] = ACTIONS(5176), + [sym_placeholder] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym__] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_SQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5176), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5174), + [anon_sym_BSLASHbegin] = ACTIONS(5176), + [anon_sym_BSLASHusepackage] = ACTIONS(5176), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5176), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5176), + [anon_sym_BSLASHinclude] = ACTIONS(5176), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5176), + [anon_sym_BSLASHinput] = ACTIONS(5176), + [anon_sym_BSLASHsubfile] = ACTIONS(5176), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5176), + [anon_sym_BSLASHbibliography] = ACTIONS(5176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5176), + [anon_sym_BSLASHincludesvg] = ACTIONS(5176), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5176), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5176), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5176), + [anon_sym_BSLASHimport] = ACTIONS(5176), + [anon_sym_BSLASHsubimport] = ACTIONS(5176), + [anon_sym_BSLASHinputfrom] = ACTIONS(5176), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), + [anon_sym_BSLASHincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHcaption] = ACTIONS(5176), + [anon_sym_BSLASHcite] = ACTIONS(5176), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCite] = ACTIONS(5176), + [anon_sym_BSLASHnocite] = ACTIONS(5176), + [anon_sym_BSLASHcitet] = ACTIONS(5176), + [anon_sym_BSLASHcitep] = ACTIONS(5176), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteauthor] = ACTIONS(5176), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5176), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitetitle] = ACTIONS(5176), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteyear] = ACTIONS(5176), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitedate] = ACTIONS(5176), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteurl] = ACTIONS(5176), + [anon_sym_BSLASHfullcite] = ACTIONS(5176), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5176), + [anon_sym_BSLASHcitealt] = ACTIONS(5176), + [anon_sym_BSLASHcitealp] = ACTIONS(5176), + [anon_sym_BSLASHcitetext] = ACTIONS(5176), + [anon_sym_BSLASHparencite] = ACTIONS(5176), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHParencite] = ACTIONS(5176), + [anon_sym_BSLASHfootcite] = ACTIONS(5176), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5176), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5176), + [anon_sym_BSLASHtextcite] = ACTIONS(5176), + [anon_sym_BSLASHTextcite] = ACTIONS(5176), + [anon_sym_BSLASHsmartcite] = ACTIONS(5176), + [anon_sym_BSLASHSmartcite] = ACTIONS(5176), + [anon_sym_BSLASHsupercite] = ACTIONS(5176), + [anon_sym_BSLASHautocite] = ACTIONS(5176), + [anon_sym_BSLASHAutocite] = ACTIONS(5176), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHvolcite] = ACTIONS(5176), + [anon_sym_BSLASHVolcite] = ACTIONS(5176), + [anon_sym_BSLASHpvolcite] = ACTIONS(5176), + [anon_sym_BSLASHPvolcite] = ACTIONS(5176), + [anon_sym_BSLASHfvolcite] = ACTIONS(5176), + [anon_sym_BSLASHftvolcite] = ACTIONS(5176), + [anon_sym_BSLASHsvolcite] = ACTIONS(5176), + [anon_sym_BSLASHSvolcite] = ACTIONS(5176), + [anon_sym_BSLASHtvolcite] = ACTIONS(5176), + [anon_sym_BSLASHTvolcite] = ACTIONS(5176), + [anon_sym_BSLASHavolcite] = ACTIONS(5176), + [anon_sym_BSLASHAvolcite] = ACTIONS(5176), + [anon_sym_BSLASHnotecite] = ACTIONS(5176), + [anon_sym_BSLASHNotecite] = ACTIONS(5176), + [anon_sym_BSLASHpnotecite] = ACTIONS(5176), + [anon_sym_BSLASHPnotecite] = ACTIONS(5176), + [anon_sym_BSLASHfnotecite] = ACTIONS(5176), + [anon_sym_BSLASHlabel] = ACTIONS(5176), + [anon_sym_BSLASHref] = ACTIONS(5176), + [anon_sym_BSLASHeqref] = ACTIONS(5176), + [anon_sym_BSLASHvref] = ACTIONS(5176), + [anon_sym_BSLASHVref] = ACTIONS(5176), + [anon_sym_BSLASHautoref] = ACTIONS(5176), + [anon_sym_BSLASHpageref] = ACTIONS(5176), + [anon_sym_BSLASHcref] = ACTIONS(5176), + [anon_sym_BSLASHCref] = ACTIONS(5176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnameCref] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHlabelcref] = ACTIONS(5176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCrefrange] = ACTIONS(5176), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnewlabel] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5176), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5176), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5176), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdef] = ACTIONS(5176), + [anon_sym_BSLASHlet] = ACTIONS(5176), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5176), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5176), + [anon_sym_BSLASHgls] = ACTIONS(5176), + [anon_sym_BSLASHGls] = ACTIONS(5176), + [anon_sym_BSLASHGLS] = ACTIONS(5176), + [anon_sym_BSLASHglspl] = ACTIONS(5176), + [anon_sym_BSLASHGlspl] = ACTIONS(5176), + [anon_sym_BSLASHGLSpl] = ACTIONS(5176), + [anon_sym_BSLASHglsdisp] = ACTIONS(5176), + [anon_sym_BSLASHglslink] = ACTIONS(5176), + [anon_sym_BSLASHglstext] = ACTIONS(5176), + [anon_sym_BSLASHGlstext] = ACTIONS(5176), + [anon_sym_BSLASHGLStext] = ACTIONS(5176), + [anon_sym_BSLASHglsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5176), + [anon_sym_BSLASHglsplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSplural] = ACTIONS(5176), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHglsname] = ACTIONS(5176), + [anon_sym_BSLASHGlsname] = ACTIONS(5176), + [anon_sym_BSLASHGLSname] = ACTIONS(5176), + [anon_sym_BSLASHglssymbol] = ACTIONS(5176), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5176), + [anon_sym_BSLASHglsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5176), + [anon_sym_BSLASHglsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5176), + [anon_sym_BSLASHglsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5176), + [anon_sym_BSLASHglsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5176), + [anon_sym_BSLASHglsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5176), + [anon_sym_BSLASHnewacronym] = ACTIONS(5176), + [anon_sym_BSLASHacrshort] = ACTIONS(5176), + [anon_sym_BSLASHAcrshort] = ACTIONS(5176), + [anon_sym_BSLASHACRshort] = ACTIONS(5176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5176), + [anon_sym_BSLASHacrlong] = ACTIONS(5176), + [anon_sym_BSLASHAcrlong] = ACTIONS(5176), + [anon_sym_BSLASHACRlong] = ACTIONS(5176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5176), + [anon_sym_BSLASHacrfull] = ACTIONS(5176), + [anon_sym_BSLASHAcrfull] = ACTIONS(5176), + [anon_sym_BSLASHACRfull] = ACTIONS(5176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5176), + [anon_sym_BSLASHacs] = ACTIONS(5176), + [anon_sym_BSLASHAcs] = ACTIONS(5176), + [anon_sym_BSLASHacsp] = ACTIONS(5176), + [anon_sym_BSLASHAcsp] = ACTIONS(5176), + [anon_sym_BSLASHacl] = ACTIONS(5176), + [anon_sym_BSLASHAcl] = ACTIONS(5176), + [anon_sym_BSLASHaclp] = ACTIONS(5176), + [anon_sym_BSLASHAclp] = ACTIONS(5176), + [anon_sym_BSLASHacf] = ACTIONS(5176), + [anon_sym_BSLASHAcf] = ACTIONS(5176), + [anon_sym_BSLASHacfp] = ACTIONS(5176), + [anon_sym_BSLASHAcfp] = ACTIONS(5176), + [anon_sym_BSLASHac] = ACTIONS(5176), + [anon_sym_BSLASHAc] = ACTIONS(5176), + [anon_sym_BSLASHacp] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5176), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5176), + [anon_sym_BSLASHcolor] = ACTIONS(5176), + [anon_sym_BSLASHcolorbox] = ACTIONS(5176), + [anon_sym_BSLASHtextcolor] = ACTIONS(5176), + [anon_sym_BSLASHpagecolor] = ACTIONS(5176), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5176), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5176), + [anon_sym_BSLASHtext] = ACTIONS(5176), + [anon_sym_BSLASHintertext] = ACTIONS(5176), + [anon_sym_shortintertext] = ACTIONS(5176), }, [870] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5093), - [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), + [sym_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_BSLASHpart] = ACTIONS(5172), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddpart] = ACTIONS(5172), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHchapter] = ACTIONS(5172), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddchap] = ACTIONS(5172), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsection] = ACTIONS(5172), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddsec] = ACTIONS(5172), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHparagraph] = ACTIONS(5172), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5172), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHitem] = ACTIONS(5172), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [sym_word] = ACTIONS(5172), + [sym_placeholder] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym__] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5172), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_SQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5170), + [anon_sym_BSLASHbegin] = ACTIONS(5172), + [anon_sym_BSLASHusepackage] = ACTIONS(5172), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5172), + [anon_sym_BSLASHinclude] = ACTIONS(5172), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5172), + [anon_sym_BSLASHinput] = ACTIONS(5172), + [anon_sym_BSLASHsubfile] = ACTIONS(5172), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5172), + [anon_sym_BSLASHbibliography] = ACTIONS(5172), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5172), + [anon_sym_BSLASHincludesvg] = ACTIONS(5172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5172), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5172), + [anon_sym_BSLASHimport] = ACTIONS(5172), + [anon_sym_BSLASHsubimport] = ACTIONS(5172), + [anon_sym_BSLASHinputfrom] = ACTIONS(5172), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5172), + [anon_sym_BSLASHincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHcaption] = ACTIONS(5172), + [anon_sym_BSLASHcite] = ACTIONS(5172), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCite] = ACTIONS(5172), + [anon_sym_BSLASHnocite] = ACTIONS(5172), + [anon_sym_BSLASHcitet] = ACTIONS(5172), + [anon_sym_BSLASHcitep] = ACTIONS(5172), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteauthor] = ACTIONS(5172), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5172), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitetitle] = ACTIONS(5172), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteyear] = ACTIONS(5172), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitedate] = ACTIONS(5172), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteurl] = ACTIONS(5172), + [anon_sym_BSLASHfullcite] = ACTIONS(5172), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5172), + [anon_sym_BSLASHcitealt] = ACTIONS(5172), + [anon_sym_BSLASHcitealp] = ACTIONS(5172), + [anon_sym_BSLASHcitetext] = ACTIONS(5172), + [anon_sym_BSLASHparencite] = ACTIONS(5172), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHParencite] = ACTIONS(5172), + [anon_sym_BSLASHfootcite] = ACTIONS(5172), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5172), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5172), + [anon_sym_BSLASHtextcite] = ACTIONS(5172), + [anon_sym_BSLASHTextcite] = ACTIONS(5172), + [anon_sym_BSLASHsmartcite] = ACTIONS(5172), + [anon_sym_BSLASHSmartcite] = ACTIONS(5172), + [anon_sym_BSLASHsupercite] = ACTIONS(5172), + [anon_sym_BSLASHautocite] = ACTIONS(5172), + [anon_sym_BSLASHAutocite] = ACTIONS(5172), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHvolcite] = ACTIONS(5172), + [anon_sym_BSLASHVolcite] = ACTIONS(5172), + [anon_sym_BSLASHpvolcite] = ACTIONS(5172), + [anon_sym_BSLASHPvolcite] = ACTIONS(5172), + [anon_sym_BSLASHfvolcite] = ACTIONS(5172), + [anon_sym_BSLASHftvolcite] = ACTIONS(5172), + [anon_sym_BSLASHsvolcite] = ACTIONS(5172), + [anon_sym_BSLASHSvolcite] = ACTIONS(5172), + [anon_sym_BSLASHtvolcite] = ACTIONS(5172), + [anon_sym_BSLASHTvolcite] = ACTIONS(5172), + [anon_sym_BSLASHavolcite] = ACTIONS(5172), + [anon_sym_BSLASHAvolcite] = ACTIONS(5172), + [anon_sym_BSLASHnotecite] = ACTIONS(5172), + [anon_sym_BSLASHNotecite] = ACTIONS(5172), + [anon_sym_BSLASHpnotecite] = ACTIONS(5172), + [anon_sym_BSLASHPnotecite] = ACTIONS(5172), + [anon_sym_BSLASHfnotecite] = ACTIONS(5172), + [anon_sym_BSLASHlabel] = ACTIONS(5172), + [anon_sym_BSLASHref] = ACTIONS(5172), + [anon_sym_BSLASHeqref] = ACTIONS(5172), + [anon_sym_BSLASHvref] = ACTIONS(5172), + [anon_sym_BSLASHVref] = ACTIONS(5172), + [anon_sym_BSLASHautoref] = ACTIONS(5172), + [anon_sym_BSLASHpageref] = ACTIONS(5172), + [anon_sym_BSLASHcref] = ACTIONS(5172), + [anon_sym_BSLASHCref] = ACTIONS(5172), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnameCref] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHlabelcref] = ACTIONS(5172), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCrefrange] = ACTIONS(5172), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnewlabel] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5172), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5172), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5172), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdef] = ACTIONS(5172), + [anon_sym_BSLASHlet] = ACTIONS(5172), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5172), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5172), + [anon_sym_BSLASHgls] = ACTIONS(5172), + [anon_sym_BSLASHGls] = ACTIONS(5172), + [anon_sym_BSLASHGLS] = ACTIONS(5172), + [anon_sym_BSLASHglspl] = ACTIONS(5172), + [anon_sym_BSLASHGlspl] = ACTIONS(5172), + [anon_sym_BSLASHGLSpl] = ACTIONS(5172), + [anon_sym_BSLASHglsdisp] = ACTIONS(5172), + [anon_sym_BSLASHglslink] = ACTIONS(5172), + [anon_sym_BSLASHglstext] = ACTIONS(5172), + [anon_sym_BSLASHGlstext] = ACTIONS(5172), + [anon_sym_BSLASHGLStext] = ACTIONS(5172), + [anon_sym_BSLASHglsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5172), + [anon_sym_BSLASHglsplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSplural] = ACTIONS(5172), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHglsname] = ACTIONS(5172), + [anon_sym_BSLASHGlsname] = ACTIONS(5172), + [anon_sym_BSLASHGLSname] = ACTIONS(5172), + [anon_sym_BSLASHglssymbol] = ACTIONS(5172), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5172), + [anon_sym_BSLASHglsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5172), + [anon_sym_BSLASHglsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5172), + [anon_sym_BSLASHglsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5172), + [anon_sym_BSLASHglsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5172), + [anon_sym_BSLASHglsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5172), + [anon_sym_BSLASHnewacronym] = ACTIONS(5172), + [anon_sym_BSLASHacrshort] = ACTIONS(5172), + [anon_sym_BSLASHAcrshort] = ACTIONS(5172), + [anon_sym_BSLASHACRshort] = ACTIONS(5172), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5172), + [anon_sym_BSLASHacrlong] = ACTIONS(5172), + [anon_sym_BSLASHAcrlong] = ACTIONS(5172), + [anon_sym_BSLASHACRlong] = ACTIONS(5172), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5172), + [anon_sym_BSLASHacrfull] = ACTIONS(5172), + [anon_sym_BSLASHAcrfull] = ACTIONS(5172), + [anon_sym_BSLASHACRfull] = ACTIONS(5172), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5172), + [anon_sym_BSLASHacs] = ACTIONS(5172), + [anon_sym_BSLASHAcs] = ACTIONS(5172), + [anon_sym_BSLASHacsp] = ACTIONS(5172), + [anon_sym_BSLASHAcsp] = ACTIONS(5172), + [anon_sym_BSLASHacl] = ACTIONS(5172), + [anon_sym_BSLASHAcl] = ACTIONS(5172), + [anon_sym_BSLASHaclp] = ACTIONS(5172), + [anon_sym_BSLASHAclp] = ACTIONS(5172), + [anon_sym_BSLASHacf] = ACTIONS(5172), + [anon_sym_BSLASHAcf] = ACTIONS(5172), + [anon_sym_BSLASHacfp] = ACTIONS(5172), + [anon_sym_BSLASHAcfp] = ACTIONS(5172), + [anon_sym_BSLASHac] = ACTIONS(5172), + [anon_sym_BSLASHAc] = ACTIONS(5172), + [anon_sym_BSLASHacp] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5172), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5172), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5172), + [anon_sym_BSLASHcolor] = ACTIONS(5172), + [anon_sym_BSLASHcolorbox] = ACTIONS(5172), + [anon_sym_BSLASHtextcolor] = ACTIONS(5172), + [anon_sym_BSLASHpagecolor] = ACTIONS(5172), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5172), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5172), + [anon_sym_BSLASHtext] = ACTIONS(5172), + [anon_sym_BSLASHintertext] = ACTIONS(5172), + [anon_sym_shortintertext] = ACTIONS(5172), }, [871] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5089), - [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), + [sym_command_name] = ACTIONS(5168), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_BSLASHpart] = ACTIONS(5168), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddpart] = ACTIONS(5168), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHchapter] = ACTIONS(5168), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddchap] = ACTIONS(5168), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsection] = ACTIONS(5168), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddsec] = ACTIONS(5168), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHparagraph] = ACTIONS(5168), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5168), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHitem] = ACTIONS(5168), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [sym_word] = ACTIONS(5168), + [sym_placeholder] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym__] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_SQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(5168), + [anon_sym_BSLASHusepackage] = ACTIONS(5168), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5168), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5168), + [anon_sym_BSLASHinclude] = ACTIONS(5168), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5168), + [anon_sym_BSLASHinput] = ACTIONS(5168), + [anon_sym_BSLASHsubfile] = ACTIONS(5168), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5168), + [anon_sym_BSLASHbibliography] = ACTIONS(5168), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5168), + [anon_sym_BSLASHincludesvg] = ACTIONS(5168), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5168), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5168), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5168), + [anon_sym_BSLASHimport] = ACTIONS(5168), + [anon_sym_BSLASHsubimport] = ACTIONS(5168), + [anon_sym_BSLASHinputfrom] = ACTIONS(5168), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5168), + [anon_sym_BSLASHincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(5168), + [anon_sym_BSLASHcite] = ACTIONS(5168), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCite] = ACTIONS(5168), + [anon_sym_BSLASHnocite] = ACTIONS(5168), + [anon_sym_BSLASHcitet] = ACTIONS(5168), + [anon_sym_BSLASHcitep] = ACTIONS(5168), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteauthor] = ACTIONS(5168), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5168), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitetitle] = ACTIONS(5168), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteyear] = ACTIONS(5168), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitedate] = ACTIONS(5168), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteurl] = ACTIONS(5168), + [anon_sym_BSLASHfullcite] = ACTIONS(5168), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5168), + [anon_sym_BSLASHcitealt] = ACTIONS(5168), + [anon_sym_BSLASHcitealp] = ACTIONS(5168), + [anon_sym_BSLASHcitetext] = ACTIONS(5168), + [anon_sym_BSLASHparencite] = ACTIONS(5168), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHParencite] = ACTIONS(5168), + [anon_sym_BSLASHfootcite] = ACTIONS(5168), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5168), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5168), + [anon_sym_BSLASHtextcite] = ACTIONS(5168), + [anon_sym_BSLASHTextcite] = ACTIONS(5168), + [anon_sym_BSLASHsmartcite] = ACTIONS(5168), + [anon_sym_BSLASHSmartcite] = ACTIONS(5168), + [anon_sym_BSLASHsupercite] = ACTIONS(5168), + [anon_sym_BSLASHautocite] = ACTIONS(5168), + [anon_sym_BSLASHAutocite] = ACTIONS(5168), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHvolcite] = ACTIONS(5168), + [anon_sym_BSLASHVolcite] = ACTIONS(5168), + [anon_sym_BSLASHpvolcite] = ACTIONS(5168), + [anon_sym_BSLASHPvolcite] = ACTIONS(5168), + [anon_sym_BSLASHfvolcite] = ACTIONS(5168), + [anon_sym_BSLASHftvolcite] = ACTIONS(5168), + [anon_sym_BSLASHsvolcite] = ACTIONS(5168), + [anon_sym_BSLASHSvolcite] = ACTIONS(5168), + [anon_sym_BSLASHtvolcite] = ACTIONS(5168), + [anon_sym_BSLASHTvolcite] = ACTIONS(5168), + [anon_sym_BSLASHavolcite] = ACTIONS(5168), + [anon_sym_BSLASHAvolcite] = ACTIONS(5168), + [anon_sym_BSLASHnotecite] = ACTIONS(5168), + [anon_sym_BSLASHNotecite] = ACTIONS(5168), + [anon_sym_BSLASHpnotecite] = ACTIONS(5168), + [anon_sym_BSLASHPnotecite] = ACTIONS(5168), + [anon_sym_BSLASHfnotecite] = ACTIONS(5168), + [anon_sym_BSLASHlabel] = ACTIONS(5168), + [anon_sym_BSLASHref] = ACTIONS(5168), + [anon_sym_BSLASHeqref] = ACTIONS(5168), + [anon_sym_BSLASHvref] = ACTIONS(5168), + [anon_sym_BSLASHVref] = ACTIONS(5168), + [anon_sym_BSLASHautoref] = ACTIONS(5168), + [anon_sym_BSLASHpageref] = ACTIONS(5168), + [anon_sym_BSLASHcref] = ACTIONS(5168), + [anon_sym_BSLASHCref] = ACTIONS(5168), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnameCref] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHlabelcref] = ACTIONS(5168), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCrefrange] = ACTIONS(5168), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnewlabel] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5168), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5168), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5168), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdef] = ACTIONS(5168), + [anon_sym_BSLASHlet] = ACTIONS(5168), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5168), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5168), + [anon_sym_BSLASHgls] = ACTIONS(5168), + [anon_sym_BSLASHGls] = ACTIONS(5168), + [anon_sym_BSLASHGLS] = ACTIONS(5168), + [anon_sym_BSLASHglspl] = ACTIONS(5168), + [anon_sym_BSLASHGlspl] = ACTIONS(5168), + [anon_sym_BSLASHGLSpl] = ACTIONS(5168), + [anon_sym_BSLASHglsdisp] = ACTIONS(5168), + [anon_sym_BSLASHglslink] = ACTIONS(5168), + [anon_sym_BSLASHglstext] = ACTIONS(5168), + [anon_sym_BSLASHGlstext] = ACTIONS(5168), + [anon_sym_BSLASHGLStext] = ACTIONS(5168), + [anon_sym_BSLASHglsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5168), + [anon_sym_BSLASHglsplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSplural] = ACTIONS(5168), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHglsname] = ACTIONS(5168), + [anon_sym_BSLASHGlsname] = ACTIONS(5168), + [anon_sym_BSLASHGLSname] = ACTIONS(5168), + [anon_sym_BSLASHglssymbol] = ACTIONS(5168), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5168), + [anon_sym_BSLASHglsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5168), + [anon_sym_BSLASHglsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5168), + [anon_sym_BSLASHglsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5168), + [anon_sym_BSLASHglsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5168), + [anon_sym_BSLASHglsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5168), + [anon_sym_BSLASHnewacronym] = ACTIONS(5168), + [anon_sym_BSLASHacrshort] = ACTIONS(5168), + [anon_sym_BSLASHAcrshort] = ACTIONS(5168), + [anon_sym_BSLASHACRshort] = ACTIONS(5168), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5168), + [anon_sym_BSLASHacrlong] = ACTIONS(5168), + [anon_sym_BSLASHAcrlong] = ACTIONS(5168), + [anon_sym_BSLASHACRlong] = ACTIONS(5168), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5168), + [anon_sym_BSLASHacrfull] = ACTIONS(5168), + [anon_sym_BSLASHAcrfull] = ACTIONS(5168), + [anon_sym_BSLASHACRfull] = ACTIONS(5168), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5168), + [anon_sym_BSLASHacs] = ACTIONS(5168), + [anon_sym_BSLASHAcs] = ACTIONS(5168), + [anon_sym_BSLASHacsp] = ACTIONS(5168), + [anon_sym_BSLASHAcsp] = ACTIONS(5168), + [anon_sym_BSLASHacl] = ACTIONS(5168), + [anon_sym_BSLASHAcl] = ACTIONS(5168), + [anon_sym_BSLASHaclp] = ACTIONS(5168), + [anon_sym_BSLASHAclp] = ACTIONS(5168), + [anon_sym_BSLASHacf] = ACTIONS(5168), + [anon_sym_BSLASHAcf] = ACTIONS(5168), + [anon_sym_BSLASHacfp] = ACTIONS(5168), + [anon_sym_BSLASHAcfp] = ACTIONS(5168), + [anon_sym_BSLASHac] = ACTIONS(5168), + [anon_sym_BSLASHAc] = ACTIONS(5168), + [anon_sym_BSLASHacp] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5168), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5168), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5168), + [anon_sym_BSLASHcolor] = ACTIONS(5168), + [anon_sym_BSLASHcolorbox] = ACTIONS(5168), + [anon_sym_BSLASHtextcolor] = ACTIONS(5168), + [anon_sym_BSLASHpagecolor] = ACTIONS(5168), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5168), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5168), + [anon_sym_BSLASHtext] = ACTIONS(5168), + [anon_sym_BSLASHintertext] = ACTIONS(5168), + [anon_sym_shortintertext] = ACTIONS(5168), }, [872] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5085), - [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), + [sym_command_name] = ACTIONS(5164), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_BSLASHpart] = ACTIONS(5164), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddpart] = ACTIONS(5164), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHchapter] = ACTIONS(5164), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddchap] = ACTIONS(5164), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsection] = ACTIONS(5164), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddsec] = ACTIONS(5164), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHparagraph] = ACTIONS(5164), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5164), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHitem] = ACTIONS(5164), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [sym_word] = ACTIONS(5164), + [sym_placeholder] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym__] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_SQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5162), + [anon_sym_BSLASHbegin] = ACTIONS(5164), + [anon_sym_BSLASHusepackage] = ACTIONS(5164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5164), + [anon_sym_BSLASHinclude] = ACTIONS(5164), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5164), + [anon_sym_BSLASHinput] = ACTIONS(5164), + [anon_sym_BSLASHsubfile] = ACTIONS(5164), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5164), + [anon_sym_BSLASHbibliography] = ACTIONS(5164), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), + [anon_sym_BSLASHincludesvg] = ACTIONS(5164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5164), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5164), + [anon_sym_BSLASHimport] = ACTIONS(5164), + [anon_sym_BSLASHsubimport] = ACTIONS(5164), + [anon_sym_BSLASHinputfrom] = ACTIONS(5164), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5164), + [anon_sym_BSLASHincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHcaption] = ACTIONS(5164), + [anon_sym_BSLASHcite] = ACTIONS(5164), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCite] = ACTIONS(5164), + [anon_sym_BSLASHnocite] = ACTIONS(5164), + [anon_sym_BSLASHcitet] = ACTIONS(5164), + [anon_sym_BSLASHcitep] = ACTIONS(5164), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteauthor] = ACTIONS(5164), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5164), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitetitle] = ACTIONS(5164), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteyear] = ACTIONS(5164), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitedate] = ACTIONS(5164), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteurl] = ACTIONS(5164), + [anon_sym_BSLASHfullcite] = ACTIONS(5164), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5164), + [anon_sym_BSLASHcitealt] = ACTIONS(5164), + [anon_sym_BSLASHcitealp] = ACTIONS(5164), + [anon_sym_BSLASHcitetext] = ACTIONS(5164), + [anon_sym_BSLASHparencite] = ACTIONS(5164), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHParencite] = ACTIONS(5164), + [anon_sym_BSLASHfootcite] = ACTIONS(5164), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5164), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5164), + [anon_sym_BSLASHtextcite] = ACTIONS(5164), + [anon_sym_BSLASHTextcite] = ACTIONS(5164), + [anon_sym_BSLASHsmartcite] = ACTIONS(5164), + [anon_sym_BSLASHSmartcite] = ACTIONS(5164), + [anon_sym_BSLASHsupercite] = ACTIONS(5164), + [anon_sym_BSLASHautocite] = ACTIONS(5164), + [anon_sym_BSLASHAutocite] = ACTIONS(5164), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHvolcite] = ACTIONS(5164), + [anon_sym_BSLASHVolcite] = ACTIONS(5164), + [anon_sym_BSLASHpvolcite] = ACTIONS(5164), + [anon_sym_BSLASHPvolcite] = ACTIONS(5164), + [anon_sym_BSLASHfvolcite] = ACTIONS(5164), + [anon_sym_BSLASHftvolcite] = ACTIONS(5164), + [anon_sym_BSLASHsvolcite] = ACTIONS(5164), + [anon_sym_BSLASHSvolcite] = ACTIONS(5164), + [anon_sym_BSLASHtvolcite] = ACTIONS(5164), + [anon_sym_BSLASHTvolcite] = ACTIONS(5164), + [anon_sym_BSLASHavolcite] = ACTIONS(5164), + [anon_sym_BSLASHAvolcite] = ACTIONS(5164), + [anon_sym_BSLASHnotecite] = ACTIONS(5164), + [anon_sym_BSLASHNotecite] = ACTIONS(5164), + [anon_sym_BSLASHpnotecite] = ACTIONS(5164), + [anon_sym_BSLASHPnotecite] = ACTIONS(5164), + [anon_sym_BSLASHfnotecite] = ACTIONS(5164), + [anon_sym_BSLASHlabel] = ACTIONS(5164), + [anon_sym_BSLASHref] = ACTIONS(5164), + [anon_sym_BSLASHeqref] = ACTIONS(5164), + [anon_sym_BSLASHvref] = ACTIONS(5164), + [anon_sym_BSLASHVref] = ACTIONS(5164), + [anon_sym_BSLASHautoref] = ACTIONS(5164), + [anon_sym_BSLASHpageref] = ACTIONS(5164), + [anon_sym_BSLASHcref] = ACTIONS(5164), + [anon_sym_BSLASHCref] = ACTIONS(5164), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnameCref] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHlabelcref] = ACTIONS(5164), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCrefrange] = ACTIONS(5164), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnewlabel] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5164), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5164), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5164), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdef] = ACTIONS(5164), + [anon_sym_BSLASHlet] = ACTIONS(5164), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5164), + [anon_sym_BSLASHgls] = ACTIONS(5164), + [anon_sym_BSLASHGls] = ACTIONS(5164), + [anon_sym_BSLASHGLS] = ACTIONS(5164), + [anon_sym_BSLASHglspl] = ACTIONS(5164), + [anon_sym_BSLASHGlspl] = ACTIONS(5164), + [anon_sym_BSLASHGLSpl] = ACTIONS(5164), + [anon_sym_BSLASHglsdisp] = ACTIONS(5164), + [anon_sym_BSLASHglslink] = ACTIONS(5164), + [anon_sym_BSLASHglstext] = ACTIONS(5164), + [anon_sym_BSLASHGlstext] = ACTIONS(5164), + [anon_sym_BSLASHGLStext] = ACTIONS(5164), + [anon_sym_BSLASHglsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5164), + [anon_sym_BSLASHglsplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSplural] = ACTIONS(5164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHglsname] = ACTIONS(5164), + [anon_sym_BSLASHGlsname] = ACTIONS(5164), + [anon_sym_BSLASHGLSname] = ACTIONS(5164), + [anon_sym_BSLASHglssymbol] = ACTIONS(5164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5164), + [anon_sym_BSLASHglsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5164), + [anon_sym_BSLASHglsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5164), + [anon_sym_BSLASHglsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5164), + [anon_sym_BSLASHglsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5164), + [anon_sym_BSLASHglsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5164), + [anon_sym_BSLASHnewacronym] = ACTIONS(5164), + [anon_sym_BSLASHacrshort] = ACTIONS(5164), + [anon_sym_BSLASHAcrshort] = ACTIONS(5164), + [anon_sym_BSLASHACRshort] = ACTIONS(5164), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5164), + [anon_sym_BSLASHacrlong] = ACTIONS(5164), + [anon_sym_BSLASHAcrlong] = ACTIONS(5164), + [anon_sym_BSLASHACRlong] = ACTIONS(5164), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5164), + [anon_sym_BSLASHacrfull] = ACTIONS(5164), + [anon_sym_BSLASHAcrfull] = ACTIONS(5164), + [anon_sym_BSLASHACRfull] = ACTIONS(5164), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5164), + [anon_sym_BSLASHacs] = ACTIONS(5164), + [anon_sym_BSLASHAcs] = ACTIONS(5164), + [anon_sym_BSLASHacsp] = ACTIONS(5164), + [anon_sym_BSLASHAcsp] = ACTIONS(5164), + [anon_sym_BSLASHacl] = ACTIONS(5164), + [anon_sym_BSLASHAcl] = ACTIONS(5164), + [anon_sym_BSLASHaclp] = ACTIONS(5164), + [anon_sym_BSLASHAclp] = ACTIONS(5164), + [anon_sym_BSLASHacf] = ACTIONS(5164), + [anon_sym_BSLASHAcf] = ACTIONS(5164), + [anon_sym_BSLASHacfp] = ACTIONS(5164), + [anon_sym_BSLASHAcfp] = ACTIONS(5164), + [anon_sym_BSLASHac] = ACTIONS(5164), + [anon_sym_BSLASHAc] = ACTIONS(5164), + [anon_sym_BSLASHacp] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5164), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5164), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5164), + [anon_sym_BSLASHcolor] = ACTIONS(5164), + [anon_sym_BSLASHcolorbox] = ACTIONS(5164), + [anon_sym_BSLASHtextcolor] = ACTIONS(5164), + [anon_sym_BSLASHpagecolor] = ACTIONS(5164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5164), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5164), + [anon_sym_BSLASHtext] = ACTIONS(5164), + [anon_sym_BSLASHintertext] = ACTIONS(5164), + [anon_sym_shortintertext] = ACTIONS(5164), }, [873] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_BSLASHpart] = ACTIONS(5218), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddpart] = ACTIONS(5218), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHchapter] = ACTIONS(5218), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddchap] = ACTIONS(5218), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsection] = ACTIONS(5218), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddsec] = ACTIONS(5218), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHparagraph] = ACTIONS(5218), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5218), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHitem] = ACTIONS(5218), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASHbegin] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_BSLASHpart] = ACTIONS(5136), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddpart] = ACTIONS(5136), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHchapter] = ACTIONS(5136), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddchap] = ACTIONS(5136), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsection] = ACTIONS(5136), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddsec] = ACTIONS(5136), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHparagraph] = ACTIONS(5136), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5136), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHitem] = ACTIONS(5136), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASHbegin] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [875] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_BSLASHpart] = ACTIONS(5132), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddpart] = ACTIONS(5132), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHchapter] = ACTIONS(5132), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddchap] = ACTIONS(5132), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsection] = ACTIONS(5132), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddsec] = ACTIONS(5132), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHparagraph] = ACTIONS(5132), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5132), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHitem] = ACTIONS(5132), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASHbegin] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [876] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_BSLASHpart] = ACTIONS(5124), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddpart] = ACTIONS(5124), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHchapter] = ACTIONS(5124), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddchap] = ACTIONS(5124), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsection] = ACTIONS(5124), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddsec] = ACTIONS(5124), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHparagraph] = ACTIONS(5124), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5124), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHitem] = ACTIONS(5124), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASHbegin] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [877] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_BSLASHpart] = ACTIONS(5120), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddpart] = ACTIONS(5120), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHchapter] = ACTIONS(5120), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddchap] = ACTIONS(5120), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsection] = ACTIONS(5120), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddsec] = ACTIONS(5120), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHparagraph] = ACTIONS(5120), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5120), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHitem] = ACTIONS(5120), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASHbegin] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [878] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_BSLASHpart] = ACTIONS(5116), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddpart] = ACTIONS(5116), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHchapter] = ACTIONS(5116), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddchap] = ACTIONS(5116), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsection] = ACTIONS(5116), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddsec] = ACTIONS(5116), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHparagraph] = ACTIONS(5116), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5116), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHitem] = ACTIONS(5116), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASHbegin] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [879] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_BSLASHpart] = ACTIONS(5112), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddpart] = ACTIONS(5112), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHchapter] = ACTIONS(5112), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddchap] = ACTIONS(5112), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsection] = ACTIONS(5112), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddsec] = ACTIONS(5112), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHparagraph] = ACTIONS(5112), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5112), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHitem] = ACTIONS(5112), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASHbegin] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [880] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_BSLASHpart] = ACTIONS(5119), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddpart] = ACTIONS(5119), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHchapter] = ACTIONS(5119), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddchap] = ACTIONS(5119), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsection] = ACTIONS(5119), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddsec] = ACTIONS(5119), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHparagraph] = ACTIONS(5119), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHitem] = ACTIONS(5119), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASHbegin] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_BSLASHpart] = ACTIONS(5198), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddpart] = ACTIONS(5198), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHchapter] = ACTIONS(5198), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddchap] = ACTIONS(5198), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsection] = ACTIONS(5198), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddsec] = ACTIONS(5198), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHparagraph] = ACTIONS(5198), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5198), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHitem] = ACTIONS(5198), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASHbegin] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [881] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_BSLASHpart] = ACTIONS(5108), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddpart] = ACTIONS(5108), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHchapter] = ACTIONS(5108), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddchap] = ACTIONS(5108), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsection] = ACTIONS(5108), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddsec] = ACTIONS(5108), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHparagraph] = ACTIONS(5108), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5108), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHitem] = ACTIONS(5108), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASHbegin] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [882] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_BSLASHpart] = ACTIONS(5104), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddpart] = ACTIONS(5104), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHchapter] = ACTIONS(5104), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddchap] = ACTIONS(5104), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsection] = ACTIONS(5104), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddsec] = ACTIONS(5104), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHparagraph] = ACTIONS(5104), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5104), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHitem] = ACTIONS(5104), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASHbegin] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [883] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_BSLASHpart] = ACTIONS(5218), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddpart] = ACTIONS(5218), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHchapter] = ACTIONS(5218), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddchap] = ACTIONS(5218), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsection] = ACTIONS(5218), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddsec] = ACTIONS(5218), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHparagraph] = ACTIONS(5218), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5218), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHitem] = ACTIONS(5218), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5216), + [anon_sym_BSLASHbegin] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [884] = { - [sym_command_name] = ACTIONS(5127), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_RPAREN] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(5125), - [anon_sym_BSLASHpart] = ACTIONS(5127), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddpart] = ACTIONS(5127), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHchapter] = ACTIONS(5127), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddchap] = ACTIONS(5127), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsection] = ACTIONS(5127), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddsec] = ACTIONS(5127), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHparagraph] = ACTIONS(5127), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHitem] = ACTIONS(5127), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), - [anon_sym_LBRACE] = ACTIONS(5125), - [sym_word] = ACTIONS(5127), - [sym_placeholder] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_CARET] = ACTIONS(5127), - [anon_sym__] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5127), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5125), - [anon_sym_BSLASHbegin] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5127), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), - [anon_sym_BSLASHinclude] = ACTIONS(5127), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), - [anon_sym_BSLASHinput] = ACTIONS(5127), - [anon_sym_BSLASHsubfile] = ACTIONS(5127), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), - [anon_sym_BSLASHbibliography] = ACTIONS(5127), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), - [anon_sym_BSLASHincludesvg] = ACTIONS(5127), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), - [anon_sym_BSLASHimport] = ACTIONS(5127), - [anon_sym_BSLASHsubimport] = ACTIONS(5127), - [anon_sym_BSLASHinputfrom] = ACTIONS(5127), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), - [anon_sym_BSLASHincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHcaption] = ACTIONS(5127), - [anon_sym_BSLASHcite] = ACTIONS(5127), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCite] = ACTIONS(5127), - [anon_sym_BSLASHnocite] = ACTIONS(5127), - [anon_sym_BSLASHcitet] = ACTIONS(5127), - [anon_sym_BSLASHcitep] = ACTIONS(5127), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteyear] = ACTIONS(5127), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitedate] = ACTIONS(5127), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteurl] = ACTIONS(5127), - [anon_sym_BSLASHfullcite] = ACTIONS(5127), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), - [anon_sym_BSLASHcitealt] = ACTIONS(5127), - [anon_sym_BSLASHcitealp] = ACTIONS(5127), - [anon_sym_BSLASHcitetext] = ACTIONS(5127), - [anon_sym_BSLASHparencite] = ACTIONS(5127), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHParencite] = ACTIONS(5127), - [anon_sym_BSLASHfootcite] = ACTIONS(5127), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), - [anon_sym_BSLASHtextcite] = ACTIONS(5127), - [anon_sym_BSLASHTextcite] = ACTIONS(5127), - [anon_sym_BSLASHsmartcite] = ACTIONS(5127), - [anon_sym_BSLASHSmartcite] = ACTIONS(5127), - [anon_sym_BSLASHsupercite] = ACTIONS(5127), - [anon_sym_BSLASHautocite] = ACTIONS(5127), - [anon_sym_BSLASHAutocite] = ACTIONS(5127), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHvolcite] = ACTIONS(5127), - [anon_sym_BSLASHVolcite] = ACTIONS(5127), - [anon_sym_BSLASHpvolcite] = ACTIONS(5127), - [anon_sym_BSLASHPvolcite] = ACTIONS(5127), - [anon_sym_BSLASHfvolcite] = ACTIONS(5127), - [anon_sym_BSLASHftvolcite] = ACTIONS(5127), - [anon_sym_BSLASHsvolcite] = ACTIONS(5127), - [anon_sym_BSLASHSvolcite] = ACTIONS(5127), - [anon_sym_BSLASHtvolcite] = ACTIONS(5127), - [anon_sym_BSLASHTvolcite] = ACTIONS(5127), - [anon_sym_BSLASHavolcite] = ACTIONS(5127), - [anon_sym_BSLASHAvolcite] = ACTIONS(5127), - [anon_sym_BSLASHnotecite] = ACTIONS(5127), - [anon_sym_BSLASHNotecite] = ACTIONS(5127), - [anon_sym_BSLASHpnotecite] = ACTIONS(5127), - [anon_sym_BSLASHPnotecite] = ACTIONS(5127), - [anon_sym_BSLASHfnotecite] = ACTIONS(5127), - [anon_sym_BSLASHlabel] = ACTIONS(5127), - [anon_sym_BSLASHref] = ACTIONS(5127), - [anon_sym_BSLASHeqref] = ACTIONS(5127), - [anon_sym_BSLASHvref] = ACTIONS(5127), - [anon_sym_BSLASHVref] = ACTIONS(5127), - [anon_sym_BSLASHautoref] = ACTIONS(5127), - [anon_sym_BSLASHpageref] = ACTIONS(5127), - [anon_sym_BSLASHcref] = ACTIONS(5127), - [anon_sym_BSLASHCref] = ACTIONS(5127), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnameCref] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHlabelcref] = ACTIONS(5127), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnewlabel] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), - [anon_sym_BSLASHdef] = ACTIONS(5127), - [anon_sym_BSLASHlet] = ACTIONS(5127), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), - [anon_sym_BSLASHgls] = ACTIONS(5127), - [anon_sym_BSLASHGls] = ACTIONS(5127), - [anon_sym_BSLASHGLS] = ACTIONS(5127), - [anon_sym_BSLASHglspl] = ACTIONS(5127), - [anon_sym_BSLASHGlspl] = ACTIONS(5127), - [anon_sym_BSLASHGLSpl] = ACTIONS(5127), - [anon_sym_BSLASHglsdisp] = ACTIONS(5127), - [anon_sym_BSLASHglslink] = ACTIONS(5127), - [anon_sym_BSLASHglstext] = ACTIONS(5127), - [anon_sym_BSLASHGlstext] = ACTIONS(5127), - [anon_sym_BSLASHGLStext] = ACTIONS(5127), - [anon_sym_BSLASHglsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), - [anon_sym_BSLASHglsplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSplural] = ACTIONS(5127), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHglsname] = ACTIONS(5127), - [anon_sym_BSLASHGlsname] = ACTIONS(5127), - [anon_sym_BSLASHGLSname] = ACTIONS(5127), - [anon_sym_BSLASHglssymbol] = ACTIONS(5127), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), - [anon_sym_BSLASHglsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), - [anon_sym_BSLASHglsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), - [anon_sym_BSLASHglsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), - [anon_sym_BSLASHglsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), - [anon_sym_BSLASHglsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), - [anon_sym_BSLASHnewacronym] = ACTIONS(5127), - [anon_sym_BSLASHacrshort] = ACTIONS(5127), - [anon_sym_BSLASHAcrshort] = ACTIONS(5127), - [anon_sym_BSLASHACRshort] = ACTIONS(5127), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), - [anon_sym_BSLASHacrlong] = ACTIONS(5127), - [anon_sym_BSLASHAcrlong] = ACTIONS(5127), - [anon_sym_BSLASHACRlong] = ACTIONS(5127), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), - [anon_sym_BSLASHacrfull] = ACTIONS(5127), - [anon_sym_BSLASHAcrfull] = ACTIONS(5127), - [anon_sym_BSLASHACRfull] = ACTIONS(5127), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), - [anon_sym_BSLASHacs] = ACTIONS(5127), - [anon_sym_BSLASHAcs] = ACTIONS(5127), - [anon_sym_BSLASHacsp] = ACTIONS(5127), - [anon_sym_BSLASHAcsp] = ACTIONS(5127), - [anon_sym_BSLASHacl] = ACTIONS(5127), - [anon_sym_BSLASHAcl] = ACTIONS(5127), - [anon_sym_BSLASHaclp] = ACTIONS(5127), - [anon_sym_BSLASHAclp] = ACTIONS(5127), - [anon_sym_BSLASHacf] = ACTIONS(5127), - [anon_sym_BSLASHAcf] = ACTIONS(5127), - [anon_sym_BSLASHacfp] = ACTIONS(5127), - [anon_sym_BSLASHAcfp] = ACTIONS(5127), - [anon_sym_BSLASHac] = ACTIONS(5127), - [anon_sym_BSLASHAc] = ACTIONS(5127), - [anon_sym_BSLASHacp] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), - [anon_sym_BSLASHcolor] = ACTIONS(5127), - [anon_sym_BSLASHcolorbox] = ACTIONS(5127), - [anon_sym_BSLASHtextcolor] = ACTIONS(5127), - [anon_sym_BSLASHpagecolor] = ACTIONS(5127), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), - [anon_sym_BSLASHtext] = ACTIONS(5127), - [anon_sym_BSLASHintertext] = ACTIONS(5127), - [anon_sym_shortintertext] = ACTIONS(5127), + [sym_command_name] = ACTIONS(5206), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_COMMA] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_BSLASHpart] = ACTIONS(5206), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddpart] = ACTIONS(5206), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHchapter] = ACTIONS(5206), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddchap] = ACTIONS(5206), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsection] = ACTIONS(5206), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddsec] = ACTIONS(5206), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHparagraph] = ACTIONS(5206), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5206), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHitem] = ACTIONS(5206), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5204), + [sym_word] = ACTIONS(5206), + [sym_placeholder] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym__] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_SQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5204), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5204), + [anon_sym_BSLASHbegin] = ACTIONS(5206), + [anon_sym_BSLASHusepackage] = ACTIONS(5206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5206), + [anon_sym_BSLASHinclude] = ACTIONS(5206), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5206), + [anon_sym_BSLASHinput] = ACTIONS(5206), + [anon_sym_BSLASHsubfile] = ACTIONS(5206), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5206), + [anon_sym_BSLASHbibliography] = ACTIONS(5206), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5206), + [anon_sym_BSLASHincludesvg] = ACTIONS(5206), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5206), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5206), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5206), + [anon_sym_BSLASHimport] = ACTIONS(5206), + [anon_sym_BSLASHsubimport] = ACTIONS(5206), + [anon_sym_BSLASHinputfrom] = ACTIONS(5206), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5206), + [anon_sym_BSLASHincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHcaption] = ACTIONS(5206), + [anon_sym_BSLASHcite] = ACTIONS(5206), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCite] = ACTIONS(5206), + [anon_sym_BSLASHnocite] = ACTIONS(5206), + [anon_sym_BSLASHcitet] = ACTIONS(5206), + [anon_sym_BSLASHcitep] = ACTIONS(5206), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteauthor] = ACTIONS(5206), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5206), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitetitle] = ACTIONS(5206), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteyear] = ACTIONS(5206), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitedate] = ACTIONS(5206), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteurl] = ACTIONS(5206), + [anon_sym_BSLASHfullcite] = ACTIONS(5206), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5206), + [anon_sym_BSLASHcitealt] = ACTIONS(5206), + [anon_sym_BSLASHcitealp] = ACTIONS(5206), + [anon_sym_BSLASHcitetext] = ACTIONS(5206), + [anon_sym_BSLASHparencite] = ACTIONS(5206), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHParencite] = ACTIONS(5206), + [anon_sym_BSLASHfootcite] = ACTIONS(5206), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5206), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5206), + [anon_sym_BSLASHtextcite] = ACTIONS(5206), + [anon_sym_BSLASHTextcite] = ACTIONS(5206), + [anon_sym_BSLASHsmartcite] = ACTIONS(5206), + [anon_sym_BSLASHSmartcite] = ACTIONS(5206), + [anon_sym_BSLASHsupercite] = ACTIONS(5206), + [anon_sym_BSLASHautocite] = ACTIONS(5206), + [anon_sym_BSLASHAutocite] = ACTIONS(5206), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHvolcite] = ACTIONS(5206), + [anon_sym_BSLASHVolcite] = ACTIONS(5206), + [anon_sym_BSLASHpvolcite] = ACTIONS(5206), + [anon_sym_BSLASHPvolcite] = ACTIONS(5206), + [anon_sym_BSLASHfvolcite] = ACTIONS(5206), + [anon_sym_BSLASHftvolcite] = ACTIONS(5206), + [anon_sym_BSLASHsvolcite] = ACTIONS(5206), + [anon_sym_BSLASHSvolcite] = ACTIONS(5206), + [anon_sym_BSLASHtvolcite] = ACTIONS(5206), + [anon_sym_BSLASHTvolcite] = ACTIONS(5206), + [anon_sym_BSLASHavolcite] = ACTIONS(5206), + [anon_sym_BSLASHAvolcite] = ACTIONS(5206), + [anon_sym_BSLASHnotecite] = ACTIONS(5206), + [anon_sym_BSLASHNotecite] = ACTIONS(5206), + [anon_sym_BSLASHpnotecite] = ACTIONS(5206), + [anon_sym_BSLASHPnotecite] = ACTIONS(5206), + [anon_sym_BSLASHfnotecite] = ACTIONS(5206), + [anon_sym_BSLASHlabel] = ACTIONS(5206), + [anon_sym_BSLASHref] = ACTIONS(5206), + [anon_sym_BSLASHeqref] = ACTIONS(5206), + [anon_sym_BSLASHvref] = ACTIONS(5206), + [anon_sym_BSLASHVref] = ACTIONS(5206), + [anon_sym_BSLASHautoref] = ACTIONS(5206), + [anon_sym_BSLASHpageref] = ACTIONS(5206), + [anon_sym_BSLASHcref] = ACTIONS(5206), + [anon_sym_BSLASHCref] = ACTIONS(5206), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnameCref] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHlabelcref] = ACTIONS(5206), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCrefrange] = ACTIONS(5206), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnewlabel] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5206), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5206), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5206), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdef] = ACTIONS(5206), + [anon_sym_BSLASHlet] = ACTIONS(5206), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5206), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5206), + [anon_sym_BSLASHgls] = ACTIONS(5206), + [anon_sym_BSLASHGls] = ACTIONS(5206), + [anon_sym_BSLASHGLS] = ACTIONS(5206), + [anon_sym_BSLASHglspl] = ACTIONS(5206), + [anon_sym_BSLASHGlspl] = ACTIONS(5206), + [anon_sym_BSLASHGLSpl] = ACTIONS(5206), + [anon_sym_BSLASHglsdisp] = ACTIONS(5206), + [anon_sym_BSLASHglslink] = ACTIONS(5206), + [anon_sym_BSLASHglstext] = ACTIONS(5206), + [anon_sym_BSLASHGlstext] = ACTIONS(5206), + [anon_sym_BSLASHGLStext] = ACTIONS(5206), + [anon_sym_BSLASHglsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5206), + [anon_sym_BSLASHglsplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSplural] = ACTIONS(5206), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHglsname] = ACTIONS(5206), + [anon_sym_BSLASHGlsname] = ACTIONS(5206), + [anon_sym_BSLASHGLSname] = ACTIONS(5206), + [anon_sym_BSLASHglssymbol] = ACTIONS(5206), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5206), + [anon_sym_BSLASHglsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5206), + [anon_sym_BSLASHglsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5206), + [anon_sym_BSLASHglsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5206), + [anon_sym_BSLASHglsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5206), + [anon_sym_BSLASHglsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5206), + [anon_sym_BSLASHnewacronym] = ACTIONS(5206), + [anon_sym_BSLASHacrshort] = ACTIONS(5206), + [anon_sym_BSLASHAcrshort] = ACTIONS(5206), + [anon_sym_BSLASHACRshort] = ACTIONS(5206), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5206), + [anon_sym_BSLASHacrlong] = ACTIONS(5206), + [anon_sym_BSLASHAcrlong] = ACTIONS(5206), + [anon_sym_BSLASHACRlong] = ACTIONS(5206), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5206), + [anon_sym_BSLASHacrfull] = ACTIONS(5206), + [anon_sym_BSLASHAcrfull] = ACTIONS(5206), + [anon_sym_BSLASHACRfull] = ACTIONS(5206), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5206), + [anon_sym_BSLASHacs] = ACTIONS(5206), + [anon_sym_BSLASHAcs] = ACTIONS(5206), + [anon_sym_BSLASHacsp] = ACTIONS(5206), + [anon_sym_BSLASHAcsp] = ACTIONS(5206), + [anon_sym_BSLASHacl] = ACTIONS(5206), + [anon_sym_BSLASHAcl] = ACTIONS(5206), + [anon_sym_BSLASHaclp] = ACTIONS(5206), + [anon_sym_BSLASHAclp] = ACTIONS(5206), + [anon_sym_BSLASHacf] = ACTIONS(5206), + [anon_sym_BSLASHAcf] = ACTIONS(5206), + [anon_sym_BSLASHacfp] = ACTIONS(5206), + [anon_sym_BSLASHAcfp] = ACTIONS(5206), + [anon_sym_BSLASHac] = ACTIONS(5206), + [anon_sym_BSLASHAc] = ACTIONS(5206), + [anon_sym_BSLASHacp] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5206), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5206), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5206), + [anon_sym_BSLASHcolor] = ACTIONS(5206), + [anon_sym_BSLASHcolorbox] = ACTIONS(5206), + [anon_sym_BSLASHtextcolor] = ACTIONS(5206), + [anon_sym_BSLASHpagecolor] = ACTIONS(5206), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5206), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5206), + [anon_sym_BSLASHtext] = ACTIONS(5206), + [anon_sym_BSLASHintertext] = ACTIONS(5206), + [anon_sym_shortintertext] = ACTIONS(5206), }, [885] = { - [sym_command_name] = ACTIONS(5123), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_BSLASHpart] = ACTIONS(5123), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddpart] = ACTIONS(5123), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHchapter] = ACTIONS(5123), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddchap] = ACTIONS(5123), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsection] = ACTIONS(5123), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddsec] = ACTIONS(5123), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHparagraph] = ACTIONS(5123), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHitem] = ACTIONS(5123), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5121), - [sym_word] = ACTIONS(5123), - [sym_placeholder] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_CARET] = ACTIONS(5123), - [anon_sym__] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5121), - [anon_sym_BSLASHbegin] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5123), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), - [anon_sym_BSLASHinclude] = ACTIONS(5123), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), - [anon_sym_BSLASHinput] = ACTIONS(5123), - [anon_sym_BSLASHsubfile] = ACTIONS(5123), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), - [anon_sym_BSLASHbibliography] = ACTIONS(5123), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), - [anon_sym_BSLASHincludesvg] = ACTIONS(5123), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), - [anon_sym_BSLASHimport] = ACTIONS(5123), - [anon_sym_BSLASHsubimport] = ACTIONS(5123), - [anon_sym_BSLASHinputfrom] = ACTIONS(5123), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), - [anon_sym_BSLASHincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHcaption] = ACTIONS(5123), - [anon_sym_BSLASHcite] = ACTIONS(5123), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCite] = ACTIONS(5123), - [anon_sym_BSLASHnocite] = ACTIONS(5123), - [anon_sym_BSLASHcitet] = ACTIONS(5123), - [anon_sym_BSLASHcitep] = ACTIONS(5123), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteyear] = ACTIONS(5123), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitedate] = ACTIONS(5123), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteurl] = ACTIONS(5123), - [anon_sym_BSLASHfullcite] = ACTIONS(5123), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), - [anon_sym_BSLASHcitealt] = ACTIONS(5123), - [anon_sym_BSLASHcitealp] = ACTIONS(5123), - [anon_sym_BSLASHcitetext] = ACTIONS(5123), - [anon_sym_BSLASHparencite] = ACTIONS(5123), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHParencite] = ACTIONS(5123), - [anon_sym_BSLASHfootcite] = ACTIONS(5123), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), - [anon_sym_BSLASHtextcite] = ACTIONS(5123), - [anon_sym_BSLASHTextcite] = ACTIONS(5123), - [anon_sym_BSLASHsmartcite] = ACTIONS(5123), - [anon_sym_BSLASHSmartcite] = ACTIONS(5123), - [anon_sym_BSLASHsupercite] = ACTIONS(5123), - [anon_sym_BSLASHautocite] = ACTIONS(5123), - [anon_sym_BSLASHAutocite] = ACTIONS(5123), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHvolcite] = ACTIONS(5123), - [anon_sym_BSLASHVolcite] = ACTIONS(5123), - [anon_sym_BSLASHpvolcite] = ACTIONS(5123), - [anon_sym_BSLASHPvolcite] = ACTIONS(5123), - [anon_sym_BSLASHfvolcite] = ACTIONS(5123), - [anon_sym_BSLASHftvolcite] = ACTIONS(5123), - [anon_sym_BSLASHsvolcite] = ACTIONS(5123), - [anon_sym_BSLASHSvolcite] = ACTIONS(5123), - [anon_sym_BSLASHtvolcite] = ACTIONS(5123), - [anon_sym_BSLASHTvolcite] = ACTIONS(5123), - [anon_sym_BSLASHavolcite] = ACTIONS(5123), - [anon_sym_BSLASHAvolcite] = ACTIONS(5123), - [anon_sym_BSLASHnotecite] = ACTIONS(5123), - [anon_sym_BSLASHNotecite] = ACTIONS(5123), - [anon_sym_BSLASHpnotecite] = ACTIONS(5123), - [anon_sym_BSLASHPnotecite] = ACTIONS(5123), - [anon_sym_BSLASHfnotecite] = ACTIONS(5123), - [anon_sym_BSLASHlabel] = ACTIONS(5123), - [anon_sym_BSLASHref] = ACTIONS(5123), - [anon_sym_BSLASHeqref] = ACTIONS(5123), - [anon_sym_BSLASHvref] = ACTIONS(5123), - [anon_sym_BSLASHVref] = ACTIONS(5123), - [anon_sym_BSLASHautoref] = ACTIONS(5123), - [anon_sym_BSLASHpageref] = ACTIONS(5123), - [anon_sym_BSLASHcref] = ACTIONS(5123), - [anon_sym_BSLASHCref] = ACTIONS(5123), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnameCref] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHlabelcref] = ACTIONS(5123), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnewlabel] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), - [anon_sym_BSLASHdef] = ACTIONS(5123), - [anon_sym_BSLASHlet] = ACTIONS(5123), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), - [anon_sym_BSLASHgls] = ACTIONS(5123), - [anon_sym_BSLASHGls] = ACTIONS(5123), - [anon_sym_BSLASHGLS] = ACTIONS(5123), - [anon_sym_BSLASHglspl] = ACTIONS(5123), - [anon_sym_BSLASHGlspl] = ACTIONS(5123), - [anon_sym_BSLASHGLSpl] = ACTIONS(5123), - [anon_sym_BSLASHglsdisp] = ACTIONS(5123), - [anon_sym_BSLASHglslink] = ACTIONS(5123), - [anon_sym_BSLASHglstext] = ACTIONS(5123), - [anon_sym_BSLASHGlstext] = ACTIONS(5123), - [anon_sym_BSLASHGLStext] = ACTIONS(5123), - [anon_sym_BSLASHglsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), - [anon_sym_BSLASHglsplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSplural] = ACTIONS(5123), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHglsname] = ACTIONS(5123), - [anon_sym_BSLASHGlsname] = ACTIONS(5123), - [anon_sym_BSLASHGLSname] = ACTIONS(5123), - [anon_sym_BSLASHglssymbol] = ACTIONS(5123), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), - [anon_sym_BSLASHglsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), - [anon_sym_BSLASHglsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), - [anon_sym_BSLASHglsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), - [anon_sym_BSLASHglsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), - [anon_sym_BSLASHglsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), - [anon_sym_BSLASHnewacronym] = ACTIONS(5123), - [anon_sym_BSLASHacrshort] = ACTIONS(5123), - [anon_sym_BSLASHAcrshort] = ACTIONS(5123), - [anon_sym_BSLASHACRshort] = ACTIONS(5123), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), - [anon_sym_BSLASHacrlong] = ACTIONS(5123), - [anon_sym_BSLASHAcrlong] = ACTIONS(5123), - [anon_sym_BSLASHACRlong] = ACTIONS(5123), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), - [anon_sym_BSLASHacrfull] = ACTIONS(5123), - [anon_sym_BSLASHAcrfull] = ACTIONS(5123), - [anon_sym_BSLASHACRfull] = ACTIONS(5123), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), - [anon_sym_BSLASHacs] = ACTIONS(5123), - [anon_sym_BSLASHAcs] = ACTIONS(5123), - [anon_sym_BSLASHacsp] = ACTIONS(5123), - [anon_sym_BSLASHAcsp] = ACTIONS(5123), - [anon_sym_BSLASHacl] = ACTIONS(5123), - [anon_sym_BSLASHAcl] = ACTIONS(5123), - [anon_sym_BSLASHaclp] = ACTIONS(5123), - [anon_sym_BSLASHAclp] = ACTIONS(5123), - [anon_sym_BSLASHacf] = ACTIONS(5123), - [anon_sym_BSLASHAcf] = ACTIONS(5123), - [anon_sym_BSLASHacfp] = ACTIONS(5123), - [anon_sym_BSLASHAcfp] = ACTIONS(5123), - [anon_sym_BSLASHac] = ACTIONS(5123), - [anon_sym_BSLASHAc] = ACTIONS(5123), - [anon_sym_BSLASHacp] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), - [anon_sym_BSLASHcolor] = ACTIONS(5123), - [anon_sym_BSLASHcolorbox] = ACTIONS(5123), - [anon_sym_BSLASHtextcolor] = ACTIONS(5123), - [anon_sym_BSLASHpagecolor] = ACTIONS(5123), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), - [anon_sym_BSLASHtext] = ACTIONS(5123), - [anon_sym_BSLASHintertext] = ACTIONS(5123), - [anon_sym_shortintertext] = ACTIONS(5123), + [sym_command_name] = ACTIONS(5202), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_RBRACK] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_BSLASHpart] = ACTIONS(5202), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddpart] = ACTIONS(5202), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHchapter] = ACTIONS(5202), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddchap] = ACTIONS(5202), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsection] = ACTIONS(5202), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddsec] = ACTIONS(5202), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHparagraph] = ACTIONS(5202), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5202), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHitem] = ACTIONS(5202), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5200), + [sym_word] = ACTIONS(5202), + [sym_placeholder] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym__] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_SQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5200), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5200), + [anon_sym_BSLASHbegin] = ACTIONS(5202), + [anon_sym_BSLASHusepackage] = ACTIONS(5202), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5202), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5202), + [anon_sym_BSLASHinclude] = ACTIONS(5202), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5202), + [anon_sym_BSLASHinput] = ACTIONS(5202), + [anon_sym_BSLASHsubfile] = ACTIONS(5202), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5202), + [anon_sym_BSLASHbibliography] = ACTIONS(5202), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5202), + [anon_sym_BSLASHincludesvg] = ACTIONS(5202), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5202), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5202), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5202), + [anon_sym_BSLASHimport] = ACTIONS(5202), + [anon_sym_BSLASHsubimport] = ACTIONS(5202), + [anon_sym_BSLASHinputfrom] = ACTIONS(5202), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5202), + [anon_sym_BSLASHincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHcaption] = ACTIONS(5202), + [anon_sym_BSLASHcite] = ACTIONS(5202), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCite] = ACTIONS(5202), + [anon_sym_BSLASHnocite] = ACTIONS(5202), + [anon_sym_BSLASHcitet] = ACTIONS(5202), + [anon_sym_BSLASHcitep] = ACTIONS(5202), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteauthor] = ACTIONS(5202), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5202), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitetitle] = ACTIONS(5202), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteyear] = ACTIONS(5202), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitedate] = ACTIONS(5202), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteurl] = ACTIONS(5202), + [anon_sym_BSLASHfullcite] = ACTIONS(5202), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5202), + [anon_sym_BSLASHcitealt] = ACTIONS(5202), + [anon_sym_BSLASHcitealp] = ACTIONS(5202), + [anon_sym_BSLASHcitetext] = ACTIONS(5202), + [anon_sym_BSLASHparencite] = ACTIONS(5202), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHParencite] = ACTIONS(5202), + [anon_sym_BSLASHfootcite] = ACTIONS(5202), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5202), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5202), + [anon_sym_BSLASHtextcite] = ACTIONS(5202), + [anon_sym_BSLASHTextcite] = ACTIONS(5202), + [anon_sym_BSLASHsmartcite] = ACTIONS(5202), + [anon_sym_BSLASHSmartcite] = ACTIONS(5202), + [anon_sym_BSLASHsupercite] = ACTIONS(5202), + [anon_sym_BSLASHautocite] = ACTIONS(5202), + [anon_sym_BSLASHAutocite] = ACTIONS(5202), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHvolcite] = ACTIONS(5202), + [anon_sym_BSLASHVolcite] = ACTIONS(5202), + [anon_sym_BSLASHpvolcite] = ACTIONS(5202), + [anon_sym_BSLASHPvolcite] = ACTIONS(5202), + [anon_sym_BSLASHfvolcite] = ACTIONS(5202), + [anon_sym_BSLASHftvolcite] = ACTIONS(5202), + [anon_sym_BSLASHsvolcite] = ACTIONS(5202), + [anon_sym_BSLASHSvolcite] = ACTIONS(5202), + [anon_sym_BSLASHtvolcite] = ACTIONS(5202), + [anon_sym_BSLASHTvolcite] = ACTIONS(5202), + [anon_sym_BSLASHavolcite] = ACTIONS(5202), + [anon_sym_BSLASHAvolcite] = ACTIONS(5202), + [anon_sym_BSLASHnotecite] = ACTIONS(5202), + [anon_sym_BSLASHNotecite] = ACTIONS(5202), + [anon_sym_BSLASHpnotecite] = ACTIONS(5202), + [anon_sym_BSLASHPnotecite] = ACTIONS(5202), + [anon_sym_BSLASHfnotecite] = ACTIONS(5202), + [anon_sym_BSLASHlabel] = ACTIONS(5202), + [anon_sym_BSLASHref] = ACTIONS(5202), + [anon_sym_BSLASHeqref] = ACTIONS(5202), + [anon_sym_BSLASHvref] = ACTIONS(5202), + [anon_sym_BSLASHVref] = ACTIONS(5202), + [anon_sym_BSLASHautoref] = ACTIONS(5202), + [anon_sym_BSLASHpageref] = ACTIONS(5202), + [anon_sym_BSLASHcref] = ACTIONS(5202), + [anon_sym_BSLASHCref] = ACTIONS(5202), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnameCref] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHlabelcref] = ACTIONS(5202), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCrefrange] = ACTIONS(5202), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnewlabel] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5202), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5202), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5202), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdef] = ACTIONS(5202), + [anon_sym_BSLASHlet] = ACTIONS(5202), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5202), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5202), + [anon_sym_BSLASHgls] = ACTIONS(5202), + [anon_sym_BSLASHGls] = ACTIONS(5202), + [anon_sym_BSLASHGLS] = ACTIONS(5202), + [anon_sym_BSLASHglspl] = ACTIONS(5202), + [anon_sym_BSLASHGlspl] = ACTIONS(5202), + [anon_sym_BSLASHGLSpl] = ACTIONS(5202), + [anon_sym_BSLASHglsdisp] = ACTIONS(5202), + [anon_sym_BSLASHglslink] = ACTIONS(5202), + [anon_sym_BSLASHglstext] = ACTIONS(5202), + [anon_sym_BSLASHGlstext] = ACTIONS(5202), + [anon_sym_BSLASHGLStext] = ACTIONS(5202), + [anon_sym_BSLASHglsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5202), + [anon_sym_BSLASHglsplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSplural] = ACTIONS(5202), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHglsname] = ACTIONS(5202), + [anon_sym_BSLASHGlsname] = ACTIONS(5202), + [anon_sym_BSLASHGLSname] = ACTIONS(5202), + [anon_sym_BSLASHglssymbol] = ACTIONS(5202), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5202), + [anon_sym_BSLASHglsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5202), + [anon_sym_BSLASHglsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5202), + [anon_sym_BSLASHglsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5202), + [anon_sym_BSLASHglsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5202), + [anon_sym_BSLASHglsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5202), + [anon_sym_BSLASHnewacronym] = ACTIONS(5202), + [anon_sym_BSLASHacrshort] = ACTIONS(5202), + [anon_sym_BSLASHAcrshort] = ACTIONS(5202), + [anon_sym_BSLASHACRshort] = ACTIONS(5202), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5202), + [anon_sym_BSLASHacrlong] = ACTIONS(5202), + [anon_sym_BSLASHAcrlong] = ACTIONS(5202), + [anon_sym_BSLASHACRlong] = ACTIONS(5202), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5202), + [anon_sym_BSLASHacrfull] = ACTIONS(5202), + [anon_sym_BSLASHAcrfull] = ACTIONS(5202), + [anon_sym_BSLASHACRfull] = ACTIONS(5202), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5202), + [anon_sym_BSLASHacs] = ACTIONS(5202), + [anon_sym_BSLASHAcs] = ACTIONS(5202), + [anon_sym_BSLASHacsp] = ACTIONS(5202), + [anon_sym_BSLASHAcsp] = ACTIONS(5202), + [anon_sym_BSLASHacl] = ACTIONS(5202), + [anon_sym_BSLASHAcl] = ACTIONS(5202), + [anon_sym_BSLASHaclp] = ACTIONS(5202), + [anon_sym_BSLASHAclp] = ACTIONS(5202), + [anon_sym_BSLASHacf] = ACTIONS(5202), + [anon_sym_BSLASHAcf] = ACTIONS(5202), + [anon_sym_BSLASHacfp] = ACTIONS(5202), + [anon_sym_BSLASHAcfp] = ACTIONS(5202), + [anon_sym_BSLASHac] = ACTIONS(5202), + [anon_sym_BSLASHAc] = ACTIONS(5202), + [anon_sym_BSLASHacp] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5202), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5202), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5202), + [anon_sym_BSLASHcolor] = ACTIONS(5202), + [anon_sym_BSLASHcolorbox] = ACTIONS(5202), + [anon_sym_BSLASHtextcolor] = ACTIONS(5202), + [anon_sym_BSLASHpagecolor] = ACTIONS(5202), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5202), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5202), + [anon_sym_BSLASHtext] = ACTIONS(5202), + [anon_sym_BSLASHintertext] = ACTIONS(5202), + [anon_sym_shortintertext] = ACTIONS(5202), }, [886] = { - [sym_command_name] = ACTIONS(5115), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_BSLASHpart] = ACTIONS(5115), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddpart] = ACTIONS(5115), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHchapter] = ACTIONS(5115), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddchap] = ACTIONS(5115), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsection] = ACTIONS(5115), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddsec] = ACTIONS(5115), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHparagraph] = ACTIONS(5115), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHitem] = ACTIONS(5115), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5113), - [sym_word] = ACTIONS(5115), - [sym_placeholder] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_CARET] = ACTIONS(5115), - [anon_sym__] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5113), - [anon_sym_BSLASHbegin] = ACTIONS(5115), - [anon_sym_BSLASHusepackage] = ACTIONS(5115), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), - [anon_sym_BSLASHinclude] = ACTIONS(5115), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), - [anon_sym_BSLASHinput] = ACTIONS(5115), - [anon_sym_BSLASHsubfile] = ACTIONS(5115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), - [anon_sym_BSLASHbibliography] = ACTIONS(5115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), - [anon_sym_BSLASHincludesvg] = ACTIONS(5115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), - [anon_sym_BSLASHimport] = ACTIONS(5115), - [anon_sym_BSLASHsubimport] = ACTIONS(5115), - [anon_sym_BSLASHinputfrom] = ACTIONS(5115), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), - [anon_sym_BSLASHincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHcaption] = ACTIONS(5115), - [anon_sym_BSLASHcite] = ACTIONS(5115), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCite] = ACTIONS(5115), - [anon_sym_BSLASHnocite] = ACTIONS(5115), - [anon_sym_BSLASHcitet] = ACTIONS(5115), - [anon_sym_BSLASHcitep] = ACTIONS(5115), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteyear] = ACTIONS(5115), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitedate] = ACTIONS(5115), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteurl] = ACTIONS(5115), - [anon_sym_BSLASHfullcite] = ACTIONS(5115), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), - [anon_sym_BSLASHcitealt] = ACTIONS(5115), - [anon_sym_BSLASHcitealp] = ACTIONS(5115), - [anon_sym_BSLASHcitetext] = ACTIONS(5115), - [anon_sym_BSLASHparencite] = ACTIONS(5115), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHParencite] = ACTIONS(5115), - [anon_sym_BSLASHfootcite] = ACTIONS(5115), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), - [anon_sym_BSLASHtextcite] = ACTIONS(5115), - [anon_sym_BSLASHTextcite] = ACTIONS(5115), - [anon_sym_BSLASHsmartcite] = ACTIONS(5115), - [anon_sym_BSLASHSmartcite] = ACTIONS(5115), - [anon_sym_BSLASHsupercite] = ACTIONS(5115), - [anon_sym_BSLASHautocite] = ACTIONS(5115), - [anon_sym_BSLASHAutocite] = ACTIONS(5115), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHvolcite] = ACTIONS(5115), - [anon_sym_BSLASHVolcite] = ACTIONS(5115), - [anon_sym_BSLASHpvolcite] = ACTIONS(5115), - [anon_sym_BSLASHPvolcite] = ACTIONS(5115), - [anon_sym_BSLASHfvolcite] = ACTIONS(5115), - [anon_sym_BSLASHftvolcite] = ACTIONS(5115), - [anon_sym_BSLASHsvolcite] = ACTIONS(5115), - [anon_sym_BSLASHSvolcite] = ACTIONS(5115), - [anon_sym_BSLASHtvolcite] = ACTIONS(5115), - [anon_sym_BSLASHTvolcite] = ACTIONS(5115), - [anon_sym_BSLASHavolcite] = ACTIONS(5115), - [anon_sym_BSLASHAvolcite] = ACTIONS(5115), - [anon_sym_BSLASHnotecite] = ACTIONS(5115), - [anon_sym_BSLASHNotecite] = ACTIONS(5115), - [anon_sym_BSLASHpnotecite] = ACTIONS(5115), - [anon_sym_BSLASHPnotecite] = ACTIONS(5115), - [anon_sym_BSLASHfnotecite] = ACTIONS(5115), - [anon_sym_BSLASHlabel] = ACTIONS(5115), - [anon_sym_BSLASHref] = ACTIONS(5115), - [anon_sym_BSLASHeqref] = ACTIONS(5115), - [anon_sym_BSLASHvref] = ACTIONS(5115), - [anon_sym_BSLASHVref] = ACTIONS(5115), - [anon_sym_BSLASHautoref] = ACTIONS(5115), - [anon_sym_BSLASHpageref] = ACTIONS(5115), - [anon_sym_BSLASHcref] = ACTIONS(5115), - [anon_sym_BSLASHCref] = ACTIONS(5115), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnameCref] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHlabelcref] = ACTIONS(5115), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnewlabel] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), - [anon_sym_BSLASHdef] = ACTIONS(5115), - [anon_sym_BSLASHlet] = ACTIONS(5115), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), - [anon_sym_BSLASHgls] = ACTIONS(5115), - [anon_sym_BSLASHGls] = ACTIONS(5115), - [anon_sym_BSLASHGLS] = ACTIONS(5115), - [anon_sym_BSLASHglspl] = ACTIONS(5115), - [anon_sym_BSLASHGlspl] = ACTIONS(5115), - [anon_sym_BSLASHGLSpl] = ACTIONS(5115), - [anon_sym_BSLASHglsdisp] = ACTIONS(5115), - [anon_sym_BSLASHglslink] = ACTIONS(5115), - [anon_sym_BSLASHglstext] = ACTIONS(5115), - [anon_sym_BSLASHGlstext] = ACTIONS(5115), - [anon_sym_BSLASHGLStext] = ACTIONS(5115), - [anon_sym_BSLASHglsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), - [anon_sym_BSLASHglsplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSplural] = ACTIONS(5115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHglsname] = ACTIONS(5115), - [anon_sym_BSLASHGlsname] = ACTIONS(5115), - [anon_sym_BSLASHGLSname] = ACTIONS(5115), - [anon_sym_BSLASHglssymbol] = ACTIONS(5115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), - [anon_sym_BSLASHglsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), - [anon_sym_BSLASHglsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), - [anon_sym_BSLASHglsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), - [anon_sym_BSLASHglsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), - [anon_sym_BSLASHglsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), - [anon_sym_BSLASHnewacronym] = ACTIONS(5115), - [anon_sym_BSLASHacrshort] = ACTIONS(5115), - [anon_sym_BSLASHAcrshort] = ACTIONS(5115), - [anon_sym_BSLASHACRshort] = ACTIONS(5115), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), - [anon_sym_BSLASHacrlong] = ACTIONS(5115), - [anon_sym_BSLASHAcrlong] = ACTIONS(5115), - [anon_sym_BSLASHACRlong] = ACTIONS(5115), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), - [anon_sym_BSLASHacrfull] = ACTIONS(5115), - [anon_sym_BSLASHAcrfull] = ACTIONS(5115), - [anon_sym_BSLASHACRfull] = ACTIONS(5115), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), - [anon_sym_BSLASHacs] = ACTIONS(5115), - [anon_sym_BSLASHAcs] = ACTIONS(5115), - [anon_sym_BSLASHacsp] = ACTIONS(5115), - [anon_sym_BSLASHAcsp] = ACTIONS(5115), - [anon_sym_BSLASHacl] = ACTIONS(5115), - [anon_sym_BSLASHAcl] = ACTIONS(5115), - [anon_sym_BSLASHaclp] = ACTIONS(5115), - [anon_sym_BSLASHAclp] = ACTIONS(5115), - [anon_sym_BSLASHacf] = ACTIONS(5115), - [anon_sym_BSLASHAcf] = ACTIONS(5115), - [anon_sym_BSLASHacfp] = ACTIONS(5115), - [anon_sym_BSLASHAcfp] = ACTIONS(5115), - [anon_sym_BSLASHac] = ACTIONS(5115), - [anon_sym_BSLASHAc] = ACTIONS(5115), - [anon_sym_BSLASHacp] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), - [anon_sym_BSLASHcolor] = ACTIONS(5115), - [anon_sym_BSLASHcolorbox] = ACTIONS(5115), - [anon_sym_BSLASHtextcolor] = ACTIONS(5115), - [anon_sym_BSLASHpagecolor] = ACTIONS(5115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), - [anon_sym_BSLASHtext] = ACTIONS(5115), - [anon_sym_BSLASHintertext] = ACTIONS(5115), - [anon_sym_shortintertext] = ACTIONS(5115), + [sym_command_name] = ACTIONS(5194), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_BSLASHpart] = ACTIONS(5194), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddpart] = ACTIONS(5194), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHchapter] = ACTIONS(5194), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddchap] = ACTIONS(5194), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsection] = ACTIONS(5194), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddsec] = ACTIONS(5194), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHparagraph] = ACTIONS(5194), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5194), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHitem] = ACTIONS(5194), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5192), + [sym_word] = ACTIONS(5194), + [sym_placeholder] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym__] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_SQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5192), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5192), + [anon_sym_BSLASHbegin] = ACTIONS(5194), + [anon_sym_BSLASHusepackage] = ACTIONS(5194), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5194), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5194), + [anon_sym_BSLASHinclude] = ACTIONS(5194), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5194), + [anon_sym_BSLASHinput] = ACTIONS(5194), + [anon_sym_BSLASHsubfile] = ACTIONS(5194), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5194), + [anon_sym_BSLASHbibliography] = ACTIONS(5194), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5194), + [anon_sym_BSLASHincludesvg] = ACTIONS(5194), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5194), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5194), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5194), + [anon_sym_BSLASHimport] = ACTIONS(5194), + [anon_sym_BSLASHsubimport] = ACTIONS(5194), + [anon_sym_BSLASHinputfrom] = ACTIONS(5194), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5194), + [anon_sym_BSLASHincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHcaption] = ACTIONS(5194), + [anon_sym_BSLASHcite] = ACTIONS(5194), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCite] = ACTIONS(5194), + [anon_sym_BSLASHnocite] = ACTIONS(5194), + [anon_sym_BSLASHcitet] = ACTIONS(5194), + [anon_sym_BSLASHcitep] = ACTIONS(5194), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteauthor] = ACTIONS(5194), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5194), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitetitle] = ACTIONS(5194), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteyear] = ACTIONS(5194), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitedate] = ACTIONS(5194), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteurl] = ACTIONS(5194), + [anon_sym_BSLASHfullcite] = ACTIONS(5194), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5194), + [anon_sym_BSLASHcitealt] = ACTIONS(5194), + [anon_sym_BSLASHcitealp] = ACTIONS(5194), + [anon_sym_BSLASHcitetext] = ACTIONS(5194), + [anon_sym_BSLASHparencite] = ACTIONS(5194), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHParencite] = ACTIONS(5194), + [anon_sym_BSLASHfootcite] = ACTIONS(5194), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5194), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5194), + [anon_sym_BSLASHtextcite] = ACTIONS(5194), + [anon_sym_BSLASHTextcite] = ACTIONS(5194), + [anon_sym_BSLASHsmartcite] = ACTIONS(5194), + [anon_sym_BSLASHSmartcite] = ACTIONS(5194), + [anon_sym_BSLASHsupercite] = ACTIONS(5194), + [anon_sym_BSLASHautocite] = ACTIONS(5194), + [anon_sym_BSLASHAutocite] = ACTIONS(5194), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHvolcite] = ACTIONS(5194), + [anon_sym_BSLASHVolcite] = ACTIONS(5194), + [anon_sym_BSLASHpvolcite] = ACTIONS(5194), + [anon_sym_BSLASHPvolcite] = ACTIONS(5194), + [anon_sym_BSLASHfvolcite] = ACTIONS(5194), + [anon_sym_BSLASHftvolcite] = ACTIONS(5194), + [anon_sym_BSLASHsvolcite] = ACTIONS(5194), + [anon_sym_BSLASHSvolcite] = ACTIONS(5194), + [anon_sym_BSLASHtvolcite] = ACTIONS(5194), + [anon_sym_BSLASHTvolcite] = ACTIONS(5194), + [anon_sym_BSLASHavolcite] = ACTIONS(5194), + [anon_sym_BSLASHAvolcite] = ACTIONS(5194), + [anon_sym_BSLASHnotecite] = ACTIONS(5194), + [anon_sym_BSLASHNotecite] = ACTIONS(5194), + [anon_sym_BSLASHpnotecite] = ACTIONS(5194), + [anon_sym_BSLASHPnotecite] = ACTIONS(5194), + [anon_sym_BSLASHfnotecite] = ACTIONS(5194), + [anon_sym_BSLASHlabel] = ACTIONS(5194), + [anon_sym_BSLASHref] = ACTIONS(5194), + [anon_sym_BSLASHeqref] = ACTIONS(5194), + [anon_sym_BSLASHvref] = ACTIONS(5194), + [anon_sym_BSLASHVref] = ACTIONS(5194), + [anon_sym_BSLASHautoref] = ACTIONS(5194), + [anon_sym_BSLASHpageref] = ACTIONS(5194), + [anon_sym_BSLASHcref] = ACTIONS(5194), + [anon_sym_BSLASHCref] = ACTIONS(5194), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnameCref] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHlabelcref] = ACTIONS(5194), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCrefrange] = ACTIONS(5194), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnewlabel] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5194), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5194), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5194), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdef] = ACTIONS(5194), + [anon_sym_BSLASHlet] = ACTIONS(5194), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5194), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5194), + [anon_sym_BSLASHgls] = ACTIONS(5194), + [anon_sym_BSLASHGls] = ACTIONS(5194), + [anon_sym_BSLASHGLS] = ACTIONS(5194), + [anon_sym_BSLASHglspl] = ACTIONS(5194), + [anon_sym_BSLASHGlspl] = ACTIONS(5194), + [anon_sym_BSLASHGLSpl] = ACTIONS(5194), + [anon_sym_BSLASHglsdisp] = ACTIONS(5194), + [anon_sym_BSLASHglslink] = ACTIONS(5194), + [anon_sym_BSLASHglstext] = ACTIONS(5194), + [anon_sym_BSLASHGlstext] = ACTIONS(5194), + [anon_sym_BSLASHGLStext] = ACTIONS(5194), + [anon_sym_BSLASHglsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5194), + [anon_sym_BSLASHglsplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSplural] = ACTIONS(5194), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHglsname] = ACTIONS(5194), + [anon_sym_BSLASHGlsname] = ACTIONS(5194), + [anon_sym_BSLASHGLSname] = ACTIONS(5194), + [anon_sym_BSLASHglssymbol] = ACTIONS(5194), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5194), + [anon_sym_BSLASHglsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5194), + [anon_sym_BSLASHglsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5194), + [anon_sym_BSLASHglsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5194), + [anon_sym_BSLASHglsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5194), + [anon_sym_BSLASHglsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5194), + [anon_sym_BSLASHnewacronym] = ACTIONS(5194), + [anon_sym_BSLASHacrshort] = ACTIONS(5194), + [anon_sym_BSLASHAcrshort] = ACTIONS(5194), + [anon_sym_BSLASHACRshort] = ACTIONS(5194), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5194), + [anon_sym_BSLASHacrlong] = ACTIONS(5194), + [anon_sym_BSLASHAcrlong] = ACTIONS(5194), + [anon_sym_BSLASHACRlong] = ACTIONS(5194), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5194), + [anon_sym_BSLASHacrfull] = ACTIONS(5194), + [anon_sym_BSLASHAcrfull] = ACTIONS(5194), + [anon_sym_BSLASHACRfull] = ACTIONS(5194), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5194), + [anon_sym_BSLASHacs] = ACTIONS(5194), + [anon_sym_BSLASHAcs] = ACTIONS(5194), + [anon_sym_BSLASHacsp] = ACTIONS(5194), + [anon_sym_BSLASHAcsp] = ACTIONS(5194), + [anon_sym_BSLASHacl] = ACTIONS(5194), + [anon_sym_BSLASHAcl] = ACTIONS(5194), + [anon_sym_BSLASHaclp] = ACTIONS(5194), + [anon_sym_BSLASHAclp] = ACTIONS(5194), + [anon_sym_BSLASHacf] = ACTIONS(5194), + [anon_sym_BSLASHAcf] = ACTIONS(5194), + [anon_sym_BSLASHacfp] = ACTIONS(5194), + [anon_sym_BSLASHAcfp] = ACTIONS(5194), + [anon_sym_BSLASHac] = ACTIONS(5194), + [anon_sym_BSLASHAc] = ACTIONS(5194), + [anon_sym_BSLASHacp] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5194), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5194), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5194), + [anon_sym_BSLASHcolor] = ACTIONS(5194), + [anon_sym_BSLASHcolorbox] = ACTIONS(5194), + [anon_sym_BSLASHtextcolor] = ACTIONS(5194), + [anon_sym_BSLASHpagecolor] = ACTIONS(5194), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5194), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5194), + [anon_sym_BSLASHtext] = ACTIONS(5194), + [anon_sym_BSLASHintertext] = ACTIONS(5194), + [anon_sym_shortintertext] = ACTIONS(5194), }, [887] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5109), - [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), + [sym_command_name] = ACTIONS(5188), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_BSLASHpart] = ACTIONS(5188), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddpart] = ACTIONS(5188), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHchapter] = ACTIONS(5188), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddchap] = ACTIONS(5188), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsection] = ACTIONS(5188), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddsec] = ACTIONS(5188), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHparagraph] = ACTIONS(5188), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5188), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHitem] = ACTIONS(5188), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5186), + [sym_word] = ACTIONS(5188), + [sym_placeholder] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym__] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_BANG] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_SQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5186), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5186), + [anon_sym_BSLASHbegin] = ACTIONS(5188), + [anon_sym_BSLASHusepackage] = ACTIONS(5188), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5188), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5188), + [anon_sym_BSLASHinclude] = ACTIONS(5188), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5188), + [anon_sym_BSLASHinput] = ACTIONS(5188), + [anon_sym_BSLASHsubfile] = ACTIONS(5188), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5188), + [anon_sym_BSLASHbibliography] = ACTIONS(5188), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5188), + [anon_sym_BSLASHincludesvg] = ACTIONS(5188), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5188), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5188), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5188), + [anon_sym_BSLASHimport] = ACTIONS(5188), + [anon_sym_BSLASHsubimport] = ACTIONS(5188), + [anon_sym_BSLASHinputfrom] = ACTIONS(5188), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5188), + [anon_sym_BSLASHincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHcaption] = ACTIONS(5188), + [anon_sym_BSLASHcite] = ACTIONS(5188), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCite] = ACTIONS(5188), + [anon_sym_BSLASHnocite] = ACTIONS(5188), + [anon_sym_BSLASHcitet] = ACTIONS(5188), + [anon_sym_BSLASHcitep] = ACTIONS(5188), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteauthor] = ACTIONS(5188), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5188), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitetitle] = ACTIONS(5188), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteyear] = ACTIONS(5188), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitedate] = ACTIONS(5188), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteurl] = ACTIONS(5188), + [anon_sym_BSLASHfullcite] = ACTIONS(5188), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5188), + [anon_sym_BSLASHcitealt] = ACTIONS(5188), + [anon_sym_BSLASHcitealp] = ACTIONS(5188), + [anon_sym_BSLASHcitetext] = ACTIONS(5188), + [anon_sym_BSLASHparencite] = ACTIONS(5188), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHParencite] = ACTIONS(5188), + [anon_sym_BSLASHfootcite] = ACTIONS(5188), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5188), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5188), + [anon_sym_BSLASHtextcite] = ACTIONS(5188), + [anon_sym_BSLASHTextcite] = ACTIONS(5188), + [anon_sym_BSLASHsmartcite] = ACTIONS(5188), + [anon_sym_BSLASHSmartcite] = ACTIONS(5188), + [anon_sym_BSLASHsupercite] = ACTIONS(5188), + [anon_sym_BSLASHautocite] = ACTIONS(5188), + [anon_sym_BSLASHAutocite] = ACTIONS(5188), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHvolcite] = ACTIONS(5188), + [anon_sym_BSLASHVolcite] = ACTIONS(5188), + [anon_sym_BSLASHpvolcite] = ACTIONS(5188), + [anon_sym_BSLASHPvolcite] = ACTIONS(5188), + [anon_sym_BSLASHfvolcite] = ACTIONS(5188), + [anon_sym_BSLASHftvolcite] = ACTIONS(5188), + [anon_sym_BSLASHsvolcite] = ACTIONS(5188), + [anon_sym_BSLASHSvolcite] = ACTIONS(5188), + [anon_sym_BSLASHtvolcite] = ACTIONS(5188), + [anon_sym_BSLASHTvolcite] = ACTIONS(5188), + [anon_sym_BSLASHavolcite] = ACTIONS(5188), + [anon_sym_BSLASHAvolcite] = ACTIONS(5188), + [anon_sym_BSLASHnotecite] = ACTIONS(5188), + [anon_sym_BSLASHNotecite] = ACTIONS(5188), + [anon_sym_BSLASHpnotecite] = ACTIONS(5188), + [anon_sym_BSLASHPnotecite] = ACTIONS(5188), + [anon_sym_BSLASHfnotecite] = ACTIONS(5188), + [anon_sym_BSLASHlabel] = ACTIONS(5188), + [anon_sym_BSLASHref] = ACTIONS(5188), + [anon_sym_BSLASHeqref] = ACTIONS(5188), + [anon_sym_BSLASHvref] = ACTIONS(5188), + [anon_sym_BSLASHVref] = ACTIONS(5188), + [anon_sym_BSLASHautoref] = ACTIONS(5188), + [anon_sym_BSLASHpageref] = ACTIONS(5188), + [anon_sym_BSLASHcref] = ACTIONS(5188), + [anon_sym_BSLASHCref] = ACTIONS(5188), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnameCref] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHlabelcref] = ACTIONS(5188), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCrefrange] = ACTIONS(5188), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnewlabel] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5188), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5188), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5188), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdef] = ACTIONS(5188), + [anon_sym_BSLASHlet] = ACTIONS(5188), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5188), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5188), + [anon_sym_BSLASHgls] = ACTIONS(5188), + [anon_sym_BSLASHGls] = ACTIONS(5188), + [anon_sym_BSLASHGLS] = ACTIONS(5188), + [anon_sym_BSLASHglspl] = ACTIONS(5188), + [anon_sym_BSLASHGlspl] = ACTIONS(5188), + [anon_sym_BSLASHGLSpl] = ACTIONS(5188), + [anon_sym_BSLASHglsdisp] = ACTIONS(5188), + [anon_sym_BSLASHglslink] = ACTIONS(5188), + [anon_sym_BSLASHglstext] = ACTIONS(5188), + [anon_sym_BSLASHGlstext] = ACTIONS(5188), + [anon_sym_BSLASHGLStext] = ACTIONS(5188), + [anon_sym_BSLASHglsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5188), + [anon_sym_BSLASHglsplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSplural] = ACTIONS(5188), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHglsname] = ACTIONS(5188), + [anon_sym_BSLASHGlsname] = ACTIONS(5188), + [anon_sym_BSLASHGLSname] = ACTIONS(5188), + [anon_sym_BSLASHglssymbol] = ACTIONS(5188), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5188), + [anon_sym_BSLASHglsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5188), + [anon_sym_BSLASHglsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5188), + [anon_sym_BSLASHglsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5188), + [anon_sym_BSLASHglsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5188), + [anon_sym_BSLASHglsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5188), + [anon_sym_BSLASHnewacronym] = ACTIONS(5188), + [anon_sym_BSLASHacrshort] = ACTIONS(5188), + [anon_sym_BSLASHAcrshort] = ACTIONS(5188), + [anon_sym_BSLASHACRshort] = ACTIONS(5188), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5188), + [anon_sym_BSLASHacrlong] = ACTIONS(5188), + [anon_sym_BSLASHAcrlong] = ACTIONS(5188), + [anon_sym_BSLASHACRlong] = ACTIONS(5188), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5188), + [anon_sym_BSLASHacrfull] = ACTIONS(5188), + [anon_sym_BSLASHAcrfull] = ACTIONS(5188), + [anon_sym_BSLASHACRfull] = ACTIONS(5188), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5188), + [anon_sym_BSLASHacs] = ACTIONS(5188), + [anon_sym_BSLASHAcs] = ACTIONS(5188), + [anon_sym_BSLASHacsp] = ACTIONS(5188), + [anon_sym_BSLASHAcsp] = ACTIONS(5188), + [anon_sym_BSLASHacl] = ACTIONS(5188), + [anon_sym_BSLASHAcl] = ACTIONS(5188), + [anon_sym_BSLASHaclp] = ACTIONS(5188), + [anon_sym_BSLASHAclp] = ACTIONS(5188), + [anon_sym_BSLASHacf] = ACTIONS(5188), + [anon_sym_BSLASHAcf] = ACTIONS(5188), + [anon_sym_BSLASHacfp] = ACTIONS(5188), + [anon_sym_BSLASHAcfp] = ACTIONS(5188), + [anon_sym_BSLASHac] = ACTIONS(5188), + [anon_sym_BSLASHAc] = ACTIONS(5188), + [anon_sym_BSLASHacp] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5188), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5188), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5188), + [anon_sym_BSLASHcolor] = ACTIONS(5188), + [anon_sym_BSLASHcolorbox] = ACTIONS(5188), + [anon_sym_BSLASHtextcolor] = ACTIONS(5188), + [anon_sym_BSLASHpagecolor] = ACTIONS(5188), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5188), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5188), + [anon_sym_BSLASHtext] = ACTIONS(5188), + [anon_sym_BSLASHintertext] = ACTIONS(5188), + [anon_sym_shortintertext] = ACTIONS(5188), }, [888] = { - [sym_command_name] = ACTIONS(5077), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - [anon_sym_BSLASHtext] = ACTIONS(5077), - [anon_sym_BSLASHintertext] = ACTIONS(5077), - [anon_sym_shortintertext] = ACTIONS(5077), + [sym_command_name] = ACTIONS(5156), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_BSLASHpart] = ACTIONS(5156), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddpart] = ACTIONS(5156), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHchapter] = ACTIONS(5156), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddchap] = ACTIONS(5156), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsection] = ACTIONS(5156), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddsec] = ACTIONS(5156), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHparagraph] = ACTIONS(5156), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5156), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHitem] = ACTIONS(5156), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5154), + [sym_word] = ACTIONS(5156), + [sym_placeholder] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym__] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_BANG] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_SQUOTE] = ACTIONS(5156), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5154), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5154), + [anon_sym_BSLASHbegin] = ACTIONS(5156), + [anon_sym_BSLASHusepackage] = ACTIONS(5156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5156), + [anon_sym_BSLASHinclude] = ACTIONS(5156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5156), + [anon_sym_BSLASHinput] = ACTIONS(5156), + [anon_sym_BSLASHsubfile] = ACTIONS(5156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5156), + [anon_sym_BSLASHbibliography] = ACTIONS(5156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5156), + [anon_sym_BSLASHincludesvg] = ACTIONS(5156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5156), + [anon_sym_BSLASHimport] = ACTIONS(5156), + [anon_sym_BSLASHsubimport] = ACTIONS(5156), + [anon_sym_BSLASHinputfrom] = ACTIONS(5156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5156), + [anon_sym_BSLASHincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHcaption] = ACTIONS(5156), + [anon_sym_BSLASHcite] = ACTIONS(5156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCite] = ACTIONS(5156), + [anon_sym_BSLASHnocite] = ACTIONS(5156), + [anon_sym_BSLASHcitet] = ACTIONS(5156), + [anon_sym_BSLASHcitep] = ACTIONS(5156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteauthor] = ACTIONS(5156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitetitle] = ACTIONS(5156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteyear] = ACTIONS(5156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitedate] = ACTIONS(5156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteurl] = ACTIONS(5156), + [anon_sym_BSLASHfullcite] = ACTIONS(5156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5156), + [anon_sym_BSLASHcitealt] = ACTIONS(5156), + [anon_sym_BSLASHcitealp] = ACTIONS(5156), + [anon_sym_BSLASHcitetext] = ACTIONS(5156), + [anon_sym_BSLASHparencite] = ACTIONS(5156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHParencite] = ACTIONS(5156), + [anon_sym_BSLASHfootcite] = ACTIONS(5156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5156), + [anon_sym_BSLASHtextcite] = ACTIONS(5156), + [anon_sym_BSLASHTextcite] = ACTIONS(5156), + [anon_sym_BSLASHsmartcite] = ACTIONS(5156), + [anon_sym_BSLASHSmartcite] = ACTIONS(5156), + [anon_sym_BSLASHsupercite] = ACTIONS(5156), + [anon_sym_BSLASHautocite] = ACTIONS(5156), + [anon_sym_BSLASHAutocite] = ACTIONS(5156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHvolcite] = ACTIONS(5156), + [anon_sym_BSLASHVolcite] = ACTIONS(5156), + [anon_sym_BSLASHpvolcite] = ACTIONS(5156), + [anon_sym_BSLASHPvolcite] = ACTIONS(5156), + [anon_sym_BSLASHfvolcite] = ACTIONS(5156), + [anon_sym_BSLASHftvolcite] = ACTIONS(5156), + [anon_sym_BSLASHsvolcite] = ACTIONS(5156), + [anon_sym_BSLASHSvolcite] = ACTIONS(5156), + [anon_sym_BSLASHtvolcite] = ACTIONS(5156), + [anon_sym_BSLASHTvolcite] = ACTIONS(5156), + [anon_sym_BSLASHavolcite] = ACTIONS(5156), + [anon_sym_BSLASHAvolcite] = ACTIONS(5156), + [anon_sym_BSLASHnotecite] = ACTIONS(5156), + [anon_sym_BSLASHNotecite] = ACTIONS(5156), + [anon_sym_BSLASHpnotecite] = ACTIONS(5156), + [anon_sym_BSLASHPnotecite] = ACTIONS(5156), + [anon_sym_BSLASHfnotecite] = ACTIONS(5156), + [anon_sym_BSLASHlabel] = ACTIONS(5156), + [anon_sym_BSLASHref] = ACTIONS(5156), + [anon_sym_BSLASHeqref] = ACTIONS(5156), + [anon_sym_BSLASHvref] = ACTIONS(5156), + [anon_sym_BSLASHVref] = ACTIONS(5156), + [anon_sym_BSLASHautoref] = ACTIONS(5156), + [anon_sym_BSLASHpageref] = ACTIONS(5156), + [anon_sym_BSLASHcref] = ACTIONS(5156), + [anon_sym_BSLASHCref] = ACTIONS(5156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnameCref] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHlabelcref] = ACTIONS(5156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCrefrange] = ACTIONS(5156), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnewlabel] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5156), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5156), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdef] = ACTIONS(5156), + [anon_sym_BSLASHlet] = ACTIONS(5156), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5156), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5156), + [anon_sym_BSLASHgls] = ACTIONS(5156), + [anon_sym_BSLASHGls] = ACTIONS(5156), + [anon_sym_BSLASHGLS] = ACTIONS(5156), + [anon_sym_BSLASHglspl] = ACTIONS(5156), + [anon_sym_BSLASHGlspl] = ACTIONS(5156), + [anon_sym_BSLASHGLSpl] = ACTIONS(5156), + [anon_sym_BSLASHglsdisp] = ACTIONS(5156), + [anon_sym_BSLASHglslink] = ACTIONS(5156), + [anon_sym_BSLASHglstext] = ACTIONS(5156), + [anon_sym_BSLASHGlstext] = ACTIONS(5156), + [anon_sym_BSLASHGLStext] = ACTIONS(5156), + [anon_sym_BSLASHglsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5156), + [anon_sym_BSLASHglsplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSplural] = ACTIONS(5156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHglsname] = ACTIONS(5156), + [anon_sym_BSLASHGlsname] = ACTIONS(5156), + [anon_sym_BSLASHGLSname] = ACTIONS(5156), + [anon_sym_BSLASHglssymbol] = ACTIONS(5156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5156), + [anon_sym_BSLASHglsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5156), + [anon_sym_BSLASHglsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5156), + [anon_sym_BSLASHglsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5156), + [anon_sym_BSLASHglsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5156), + [anon_sym_BSLASHglsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5156), + [anon_sym_BSLASHnewacronym] = ACTIONS(5156), + [anon_sym_BSLASHacrshort] = ACTIONS(5156), + [anon_sym_BSLASHAcrshort] = ACTIONS(5156), + [anon_sym_BSLASHACRshort] = ACTIONS(5156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5156), + [anon_sym_BSLASHacrlong] = ACTIONS(5156), + [anon_sym_BSLASHAcrlong] = ACTIONS(5156), + [anon_sym_BSLASHACRlong] = ACTIONS(5156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5156), + [anon_sym_BSLASHacrfull] = ACTIONS(5156), + [anon_sym_BSLASHAcrfull] = ACTIONS(5156), + [anon_sym_BSLASHACRfull] = ACTIONS(5156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5156), + [anon_sym_BSLASHacs] = ACTIONS(5156), + [anon_sym_BSLASHAcs] = ACTIONS(5156), + [anon_sym_BSLASHacsp] = ACTIONS(5156), + [anon_sym_BSLASHAcsp] = ACTIONS(5156), + [anon_sym_BSLASHacl] = ACTIONS(5156), + [anon_sym_BSLASHAcl] = ACTIONS(5156), + [anon_sym_BSLASHaclp] = ACTIONS(5156), + [anon_sym_BSLASHAclp] = ACTIONS(5156), + [anon_sym_BSLASHacf] = ACTIONS(5156), + [anon_sym_BSLASHAcf] = ACTIONS(5156), + [anon_sym_BSLASHacfp] = ACTIONS(5156), + [anon_sym_BSLASHAcfp] = ACTIONS(5156), + [anon_sym_BSLASHac] = ACTIONS(5156), + [anon_sym_BSLASHAc] = ACTIONS(5156), + [anon_sym_BSLASHacp] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5156), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5156), + [anon_sym_BSLASHcolor] = ACTIONS(5156), + [anon_sym_BSLASHcolorbox] = ACTIONS(5156), + [anon_sym_BSLASHtextcolor] = ACTIONS(5156), + [anon_sym_BSLASHpagecolor] = ACTIONS(5156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5156), + [anon_sym_BSLASHtext] = ACTIONS(5156), + [anon_sym_BSLASHintertext] = ACTIONS(5156), + [anon_sym_shortintertext] = ACTIONS(5156), }, [889] = { - [sym_command_name] = ACTIONS(5069), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), - [anon_sym_BSLASHtext] = ACTIONS(5069), - [anon_sym_BSLASHintertext] = ACTIONS(5069), - [anon_sym_shortintertext] = ACTIONS(5069), + [sym_command_name] = ACTIONS(5148), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5146), + [anon_sym_RBRACK] = ACTIONS(5146), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_BSLASHpart] = ACTIONS(5148), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddpart] = ACTIONS(5148), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHchapter] = ACTIONS(5148), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddchap] = ACTIONS(5148), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsection] = ACTIONS(5148), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddsec] = ACTIONS(5148), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHparagraph] = ACTIONS(5148), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5148), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHitem] = ACTIONS(5148), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5146), + [sym_word] = ACTIONS(5148), + [sym_placeholder] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym__] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5148), + [anon_sym_BANG] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_SQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5146), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5146), + [anon_sym_BSLASHbegin] = ACTIONS(5148), + [anon_sym_BSLASHusepackage] = ACTIONS(5148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5148), + [anon_sym_BSLASHinclude] = ACTIONS(5148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5148), + [anon_sym_BSLASHinput] = ACTIONS(5148), + [anon_sym_BSLASHsubfile] = ACTIONS(5148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5148), + [anon_sym_BSLASHbibliography] = ACTIONS(5148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5148), + [anon_sym_BSLASHincludesvg] = ACTIONS(5148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5148), + [anon_sym_BSLASHimport] = ACTIONS(5148), + [anon_sym_BSLASHsubimport] = ACTIONS(5148), + [anon_sym_BSLASHinputfrom] = ACTIONS(5148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5148), + [anon_sym_BSLASHincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHcaption] = ACTIONS(5148), + [anon_sym_BSLASHcite] = ACTIONS(5148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCite] = ACTIONS(5148), + [anon_sym_BSLASHnocite] = ACTIONS(5148), + [anon_sym_BSLASHcitet] = ACTIONS(5148), + [anon_sym_BSLASHcitep] = ACTIONS(5148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteauthor] = ACTIONS(5148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitetitle] = ACTIONS(5148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteyear] = ACTIONS(5148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitedate] = ACTIONS(5148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteurl] = ACTIONS(5148), + [anon_sym_BSLASHfullcite] = ACTIONS(5148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5148), + [anon_sym_BSLASHcitealt] = ACTIONS(5148), + [anon_sym_BSLASHcitealp] = ACTIONS(5148), + [anon_sym_BSLASHcitetext] = ACTIONS(5148), + [anon_sym_BSLASHparencite] = ACTIONS(5148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHParencite] = ACTIONS(5148), + [anon_sym_BSLASHfootcite] = ACTIONS(5148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5148), + [anon_sym_BSLASHtextcite] = ACTIONS(5148), + [anon_sym_BSLASHTextcite] = ACTIONS(5148), + [anon_sym_BSLASHsmartcite] = ACTIONS(5148), + [anon_sym_BSLASHSmartcite] = ACTIONS(5148), + [anon_sym_BSLASHsupercite] = ACTIONS(5148), + [anon_sym_BSLASHautocite] = ACTIONS(5148), + [anon_sym_BSLASHAutocite] = ACTIONS(5148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHvolcite] = ACTIONS(5148), + [anon_sym_BSLASHVolcite] = ACTIONS(5148), + [anon_sym_BSLASHpvolcite] = ACTIONS(5148), + [anon_sym_BSLASHPvolcite] = ACTIONS(5148), + [anon_sym_BSLASHfvolcite] = ACTIONS(5148), + [anon_sym_BSLASHftvolcite] = ACTIONS(5148), + [anon_sym_BSLASHsvolcite] = ACTIONS(5148), + [anon_sym_BSLASHSvolcite] = ACTIONS(5148), + [anon_sym_BSLASHtvolcite] = ACTIONS(5148), + [anon_sym_BSLASHTvolcite] = ACTIONS(5148), + [anon_sym_BSLASHavolcite] = ACTIONS(5148), + [anon_sym_BSLASHAvolcite] = ACTIONS(5148), + [anon_sym_BSLASHnotecite] = ACTIONS(5148), + [anon_sym_BSLASHNotecite] = ACTIONS(5148), + [anon_sym_BSLASHpnotecite] = ACTIONS(5148), + [anon_sym_BSLASHPnotecite] = ACTIONS(5148), + [anon_sym_BSLASHfnotecite] = ACTIONS(5148), + [anon_sym_BSLASHlabel] = ACTIONS(5148), + [anon_sym_BSLASHref] = ACTIONS(5148), + [anon_sym_BSLASHeqref] = ACTIONS(5148), + [anon_sym_BSLASHvref] = ACTIONS(5148), + [anon_sym_BSLASHVref] = ACTIONS(5148), + [anon_sym_BSLASHautoref] = ACTIONS(5148), + [anon_sym_BSLASHpageref] = ACTIONS(5148), + [anon_sym_BSLASHcref] = ACTIONS(5148), + [anon_sym_BSLASHCref] = ACTIONS(5148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnameCref] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHlabelcref] = ACTIONS(5148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCrefrange] = ACTIONS(5148), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnewlabel] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5148), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5148), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdef] = ACTIONS(5148), + [anon_sym_BSLASHlet] = ACTIONS(5148), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5148), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5148), + [anon_sym_BSLASHgls] = ACTIONS(5148), + [anon_sym_BSLASHGls] = ACTIONS(5148), + [anon_sym_BSLASHGLS] = ACTIONS(5148), + [anon_sym_BSLASHglspl] = ACTIONS(5148), + [anon_sym_BSLASHGlspl] = ACTIONS(5148), + [anon_sym_BSLASHGLSpl] = ACTIONS(5148), + [anon_sym_BSLASHglsdisp] = ACTIONS(5148), + [anon_sym_BSLASHglslink] = ACTIONS(5148), + [anon_sym_BSLASHglstext] = ACTIONS(5148), + [anon_sym_BSLASHGlstext] = ACTIONS(5148), + [anon_sym_BSLASHGLStext] = ACTIONS(5148), + [anon_sym_BSLASHglsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5148), + [anon_sym_BSLASHglsplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSplural] = ACTIONS(5148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHglsname] = ACTIONS(5148), + [anon_sym_BSLASHGlsname] = ACTIONS(5148), + [anon_sym_BSLASHGLSname] = ACTIONS(5148), + [anon_sym_BSLASHglssymbol] = ACTIONS(5148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5148), + [anon_sym_BSLASHglsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5148), + [anon_sym_BSLASHglsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5148), + [anon_sym_BSLASHglsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5148), + [anon_sym_BSLASHglsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5148), + [anon_sym_BSLASHglsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5148), + [anon_sym_BSLASHnewacronym] = ACTIONS(5148), + [anon_sym_BSLASHacrshort] = ACTIONS(5148), + [anon_sym_BSLASHAcrshort] = ACTIONS(5148), + [anon_sym_BSLASHACRshort] = ACTIONS(5148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5148), + [anon_sym_BSLASHacrlong] = ACTIONS(5148), + [anon_sym_BSLASHAcrlong] = ACTIONS(5148), + [anon_sym_BSLASHACRlong] = ACTIONS(5148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5148), + [anon_sym_BSLASHacrfull] = ACTIONS(5148), + [anon_sym_BSLASHAcrfull] = ACTIONS(5148), + [anon_sym_BSLASHACRfull] = ACTIONS(5148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5148), + [anon_sym_BSLASHacs] = ACTIONS(5148), + [anon_sym_BSLASHAcs] = ACTIONS(5148), + [anon_sym_BSLASHacsp] = ACTIONS(5148), + [anon_sym_BSLASHAcsp] = ACTIONS(5148), + [anon_sym_BSLASHacl] = ACTIONS(5148), + [anon_sym_BSLASHAcl] = ACTIONS(5148), + [anon_sym_BSLASHaclp] = ACTIONS(5148), + [anon_sym_BSLASHAclp] = ACTIONS(5148), + [anon_sym_BSLASHacf] = ACTIONS(5148), + [anon_sym_BSLASHAcf] = ACTIONS(5148), + [anon_sym_BSLASHacfp] = ACTIONS(5148), + [anon_sym_BSLASHAcfp] = ACTIONS(5148), + [anon_sym_BSLASHac] = ACTIONS(5148), + [anon_sym_BSLASHAc] = ACTIONS(5148), + [anon_sym_BSLASHacp] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5148), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5148), + [anon_sym_BSLASHcolor] = ACTIONS(5148), + [anon_sym_BSLASHcolorbox] = ACTIONS(5148), + [anon_sym_BSLASHtextcolor] = ACTIONS(5148), + [anon_sym_BSLASHpagecolor] = ACTIONS(5148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5148), + [anon_sym_BSLASHtext] = ACTIONS(5148), + [anon_sym_BSLASHintertext] = ACTIONS(5148), + [anon_sym_shortintertext] = ACTIONS(5148), }, [890] = { - [sym_command_name] = ACTIONS(4883), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_RBRACK] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_BSLASHpart] = ACTIONS(4883), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddpart] = ACTIONS(4883), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHchapter] = ACTIONS(4883), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddchap] = ACTIONS(4883), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsection] = ACTIONS(4883), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddsec] = ACTIONS(4883), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHparagraph] = ACTIONS(4883), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHitem] = ACTIONS(4883), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4881), - [sym_word] = ACTIONS(4883), - [sym_placeholder] = ACTIONS(4881), - [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(4881), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4881), - [anon_sym_BSLASHbegin] = ACTIONS(4883), - [anon_sym_BSLASHusepackage] = ACTIONS(4883), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), - [anon_sym_BSLASHinclude] = ACTIONS(4883), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), - [anon_sym_BSLASHinput] = ACTIONS(4883), - [anon_sym_BSLASHsubfile] = ACTIONS(4883), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), - [anon_sym_BSLASHbibliography] = ACTIONS(4883), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), - [anon_sym_BSLASHincludesvg] = ACTIONS(4883), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), - [anon_sym_BSLASHimport] = ACTIONS(4883), - [anon_sym_BSLASHsubimport] = ACTIONS(4883), - [anon_sym_BSLASHinputfrom] = ACTIONS(4883), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), - [anon_sym_BSLASHincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHcaption] = ACTIONS(4883), - [anon_sym_BSLASHcite] = ACTIONS(4883), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCite] = ACTIONS(4883), - [anon_sym_BSLASHnocite] = ACTIONS(4883), - [anon_sym_BSLASHcitet] = ACTIONS(4883), - [anon_sym_BSLASHcitep] = ACTIONS(4883), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteauthor] = ACTIONS(4883), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitetitle] = ACTIONS(4883), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteyear] = ACTIONS(4883), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitedate] = ACTIONS(4883), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteurl] = ACTIONS(4883), - [anon_sym_BSLASHfullcite] = ACTIONS(4883), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), - [anon_sym_BSLASHcitealt] = ACTIONS(4883), - [anon_sym_BSLASHcitealp] = ACTIONS(4883), - [anon_sym_BSLASHcitetext] = ACTIONS(4883), - [anon_sym_BSLASHparencite] = ACTIONS(4883), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHParencite] = ACTIONS(4883), - [anon_sym_BSLASHfootcite] = ACTIONS(4883), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), - [anon_sym_BSLASHtextcite] = ACTIONS(4883), - [anon_sym_BSLASHTextcite] = ACTIONS(4883), - [anon_sym_BSLASHsmartcite] = ACTIONS(4883), - [anon_sym_BSLASHSmartcite] = ACTIONS(4883), - [anon_sym_BSLASHsupercite] = ACTIONS(4883), - [anon_sym_BSLASHautocite] = ACTIONS(4883), - [anon_sym_BSLASHAutocite] = ACTIONS(4883), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHvolcite] = ACTIONS(4883), - [anon_sym_BSLASHVolcite] = ACTIONS(4883), - [anon_sym_BSLASHpvolcite] = ACTIONS(4883), - [anon_sym_BSLASHPvolcite] = ACTIONS(4883), - [anon_sym_BSLASHfvolcite] = ACTIONS(4883), - [anon_sym_BSLASHftvolcite] = ACTIONS(4883), - [anon_sym_BSLASHsvolcite] = ACTIONS(4883), - [anon_sym_BSLASHSvolcite] = ACTIONS(4883), - [anon_sym_BSLASHtvolcite] = ACTIONS(4883), - [anon_sym_BSLASHTvolcite] = ACTIONS(4883), - [anon_sym_BSLASHavolcite] = ACTIONS(4883), - [anon_sym_BSLASHAvolcite] = ACTIONS(4883), - [anon_sym_BSLASHnotecite] = ACTIONS(4883), - [anon_sym_BSLASHNotecite] = ACTIONS(4883), - [anon_sym_BSLASHpnotecite] = ACTIONS(4883), - [anon_sym_BSLASHPnotecite] = ACTIONS(4883), - [anon_sym_BSLASHfnotecite] = ACTIONS(4883), - [anon_sym_BSLASHlabel] = ACTIONS(4883), - [anon_sym_BSLASHref] = ACTIONS(4883), - [anon_sym_BSLASHeqref] = ACTIONS(4883), - [anon_sym_BSLASHvref] = ACTIONS(4883), - [anon_sym_BSLASHVref] = ACTIONS(4883), - [anon_sym_BSLASHautoref] = ACTIONS(4883), - [anon_sym_BSLASHpageref] = ACTIONS(4883), - [anon_sym_BSLASHcref] = ACTIONS(4883), - [anon_sym_BSLASHCref] = ACTIONS(4883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnameCref] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHlabelcref] = ACTIONS(4883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCrefrange] = ACTIONS(4883), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnewlabel] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), - [anon_sym_BSLASHdef] = ACTIONS(4883), - [anon_sym_BSLASHlet] = ACTIONS(4883), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), - [anon_sym_BSLASHgls] = ACTIONS(4883), - [anon_sym_BSLASHGls] = ACTIONS(4883), - [anon_sym_BSLASHGLS] = ACTIONS(4883), - [anon_sym_BSLASHglspl] = ACTIONS(4883), - [anon_sym_BSLASHGlspl] = ACTIONS(4883), - [anon_sym_BSLASHGLSpl] = ACTIONS(4883), - [anon_sym_BSLASHglsdisp] = ACTIONS(4883), - [anon_sym_BSLASHglslink] = ACTIONS(4883), - [anon_sym_BSLASHglstext] = ACTIONS(4883), - [anon_sym_BSLASHGlstext] = ACTIONS(4883), - [anon_sym_BSLASHGLStext] = ACTIONS(4883), - [anon_sym_BSLASHglsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), - [anon_sym_BSLASHglsplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSplural] = ACTIONS(4883), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHglsname] = ACTIONS(4883), - [anon_sym_BSLASHGlsname] = ACTIONS(4883), - [anon_sym_BSLASHGLSname] = ACTIONS(4883), - [anon_sym_BSLASHglssymbol] = ACTIONS(4883), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), - [anon_sym_BSLASHglsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), - [anon_sym_BSLASHglsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), - [anon_sym_BSLASHglsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), - [anon_sym_BSLASHglsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), - [anon_sym_BSLASHglsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), - [anon_sym_BSLASHnewacronym] = ACTIONS(4883), - [anon_sym_BSLASHacrshort] = ACTIONS(4883), - [anon_sym_BSLASHAcrshort] = ACTIONS(4883), - [anon_sym_BSLASHACRshort] = ACTIONS(4883), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), - [anon_sym_BSLASHacrlong] = ACTIONS(4883), - [anon_sym_BSLASHAcrlong] = ACTIONS(4883), - [anon_sym_BSLASHACRlong] = ACTIONS(4883), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), - [anon_sym_BSLASHacrfull] = ACTIONS(4883), - [anon_sym_BSLASHAcrfull] = ACTIONS(4883), - [anon_sym_BSLASHACRfull] = ACTIONS(4883), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), - [anon_sym_BSLASHacs] = ACTIONS(4883), - [anon_sym_BSLASHAcs] = ACTIONS(4883), - [anon_sym_BSLASHacsp] = ACTIONS(4883), - [anon_sym_BSLASHAcsp] = ACTIONS(4883), - [anon_sym_BSLASHacl] = ACTIONS(4883), - [anon_sym_BSLASHAcl] = ACTIONS(4883), - [anon_sym_BSLASHaclp] = ACTIONS(4883), - [anon_sym_BSLASHAclp] = ACTIONS(4883), - [anon_sym_BSLASHacf] = ACTIONS(4883), - [anon_sym_BSLASHAcf] = ACTIONS(4883), - [anon_sym_BSLASHacfp] = ACTIONS(4883), - [anon_sym_BSLASHAcfp] = ACTIONS(4883), - [anon_sym_BSLASHac] = ACTIONS(4883), - [anon_sym_BSLASHAc] = ACTIONS(4883), - [anon_sym_BSLASHacp] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), - [anon_sym_BSLASHcolor] = ACTIONS(4883), - [anon_sym_BSLASHcolorbox] = ACTIONS(4883), - [anon_sym_BSLASHtextcolor] = ACTIONS(4883), - [anon_sym_BSLASHpagecolor] = ACTIONS(4883), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), - [anon_sym_BSLASHtext] = ACTIONS(4883), - [anon_sym_BSLASHintertext] = ACTIONS(4883), - [anon_sym_shortintertext] = ACTIONS(4883), + [sym_command_name] = ACTIONS(4962), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_BSLASHpart] = ACTIONS(4962), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddpart] = ACTIONS(4962), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHchapter] = ACTIONS(4962), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddchap] = ACTIONS(4962), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsection] = ACTIONS(4962), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddsec] = ACTIONS(4962), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHparagraph] = ACTIONS(4962), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4962), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHitem] = ACTIONS(4962), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [sym_word] = ACTIONS(4962), + [sym_placeholder] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4960), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4960), + [anon_sym_BSLASHbegin] = ACTIONS(4962), + [anon_sym_BSLASHusepackage] = ACTIONS(4962), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4962), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4962), + [anon_sym_BSLASHinclude] = ACTIONS(4962), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4962), + [anon_sym_BSLASHinput] = ACTIONS(4962), + [anon_sym_BSLASHsubfile] = ACTIONS(4962), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4962), + [anon_sym_BSLASHbibliography] = ACTIONS(4962), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4962), + [anon_sym_BSLASHincludesvg] = ACTIONS(4962), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4962), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4962), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4962), + [anon_sym_BSLASHimport] = ACTIONS(4962), + [anon_sym_BSLASHsubimport] = ACTIONS(4962), + [anon_sym_BSLASHinputfrom] = ACTIONS(4962), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4962), + [anon_sym_BSLASHincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHcaption] = ACTIONS(4962), + [anon_sym_BSLASHcite] = ACTIONS(4962), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCite] = ACTIONS(4962), + [anon_sym_BSLASHnocite] = ACTIONS(4962), + [anon_sym_BSLASHcitet] = ACTIONS(4962), + [anon_sym_BSLASHcitep] = ACTIONS(4962), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteauthor] = ACTIONS(4962), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4962), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitetitle] = ACTIONS(4962), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteyear] = ACTIONS(4962), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitedate] = ACTIONS(4962), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteurl] = ACTIONS(4962), + [anon_sym_BSLASHfullcite] = ACTIONS(4962), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4962), + [anon_sym_BSLASHcitealt] = ACTIONS(4962), + [anon_sym_BSLASHcitealp] = ACTIONS(4962), + [anon_sym_BSLASHcitetext] = ACTIONS(4962), + [anon_sym_BSLASHparencite] = ACTIONS(4962), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHParencite] = ACTIONS(4962), + [anon_sym_BSLASHfootcite] = ACTIONS(4962), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4962), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4962), + [anon_sym_BSLASHtextcite] = ACTIONS(4962), + [anon_sym_BSLASHTextcite] = ACTIONS(4962), + [anon_sym_BSLASHsmartcite] = ACTIONS(4962), + [anon_sym_BSLASHSmartcite] = ACTIONS(4962), + [anon_sym_BSLASHsupercite] = ACTIONS(4962), + [anon_sym_BSLASHautocite] = ACTIONS(4962), + [anon_sym_BSLASHAutocite] = ACTIONS(4962), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHvolcite] = ACTIONS(4962), + [anon_sym_BSLASHVolcite] = ACTIONS(4962), + [anon_sym_BSLASHpvolcite] = ACTIONS(4962), + [anon_sym_BSLASHPvolcite] = ACTIONS(4962), + [anon_sym_BSLASHfvolcite] = ACTIONS(4962), + [anon_sym_BSLASHftvolcite] = ACTIONS(4962), + [anon_sym_BSLASHsvolcite] = ACTIONS(4962), + [anon_sym_BSLASHSvolcite] = ACTIONS(4962), + [anon_sym_BSLASHtvolcite] = ACTIONS(4962), + [anon_sym_BSLASHTvolcite] = ACTIONS(4962), + [anon_sym_BSLASHavolcite] = ACTIONS(4962), + [anon_sym_BSLASHAvolcite] = ACTIONS(4962), + [anon_sym_BSLASHnotecite] = ACTIONS(4962), + [anon_sym_BSLASHNotecite] = ACTIONS(4962), + [anon_sym_BSLASHpnotecite] = ACTIONS(4962), + [anon_sym_BSLASHPnotecite] = ACTIONS(4962), + [anon_sym_BSLASHfnotecite] = ACTIONS(4962), + [anon_sym_BSLASHlabel] = ACTIONS(4962), + [anon_sym_BSLASHref] = ACTIONS(4962), + [anon_sym_BSLASHeqref] = ACTIONS(4962), + [anon_sym_BSLASHvref] = ACTIONS(4962), + [anon_sym_BSLASHVref] = ACTIONS(4962), + [anon_sym_BSLASHautoref] = ACTIONS(4962), + [anon_sym_BSLASHpageref] = ACTIONS(4962), + [anon_sym_BSLASHcref] = ACTIONS(4962), + [anon_sym_BSLASHCref] = ACTIONS(4962), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnameCref] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHlabelcref] = ACTIONS(4962), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCrefrange] = ACTIONS(4962), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnewlabel] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4962), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4962), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4962), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdef] = ACTIONS(4962), + [anon_sym_BSLASHlet] = ACTIONS(4962), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4962), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4962), + [anon_sym_BSLASHgls] = ACTIONS(4962), + [anon_sym_BSLASHGls] = ACTIONS(4962), + [anon_sym_BSLASHGLS] = ACTIONS(4962), + [anon_sym_BSLASHglspl] = ACTIONS(4962), + [anon_sym_BSLASHGlspl] = ACTIONS(4962), + [anon_sym_BSLASHGLSpl] = ACTIONS(4962), + [anon_sym_BSLASHglsdisp] = ACTIONS(4962), + [anon_sym_BSLASHglslink] = ACTIONS(4962), + [anon_sym_BSLASHglstext] = ACTIONS(4962), + [anon_sym_BSLASHGlstext] = ACTIONS(4962), + [anon_sym_BSLASHGLStext] = ACTIONS(4962), + [anon_sym_BSLASHglsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4962), + [anon_sym_BSLASHglsplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSplural] = ACTIONS(4962), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHglsname] = ACTIONS(4962), + [anon_sym_BSLASHGlsname] = ACTIONS(4962), + [anon_sym_BSLASHGLSname] = ACTIONS(4962), + [anon_sym_BSLASHglssymbol] = ACTIONS(4962), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4962), + [anon_sym_BSLASHglsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4962), + [anon_sym_BSLASHglsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4962), + [anon_sym_BSLASHglsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4962), + [anon_sym_BSLASHglsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4962), + [anon_sym_BSLASHglsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4962), + [anon_sym_BSLASHnewacronym] = ACTIONS(4962), + [anon_sym_BSLASHacrshort] = ACTIONS(4962), + [anon_sym_BSLASHAcrshort] = ACTIONS(4962), + [anon_sym_BSLASHACRshort] = ACTIONS(4962), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4962), + [anon_sym_BSLASHacrlong] = ACTIONS(4962), + [anon_sym_BSLASHAcrlong] = ACTIONS(4962), + [anon_sym_BSLASHACRlong] = ACTIONS(4962), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4962), + [anon_sym_BSLASHacrfull] = ACTIONS(4962), + [anon_sym_BSLASHAcrfull] = ACTIONS(4962), + [anon_sym_BSLASHACRfull] = ACTIONS(4962), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4962), + [anon_sym_BSLASHacs] = ACTIONS(4962), + [anon_sym_BSLASHAcs] = ACTIONS(4962), + [anon_sym_BSLASHacsp] = ACTIONS(4962), + [anon_sym_BSLASHAcsp] = ACTIONS(4962), + [anon_sym_BSLASHacl] = ACTIONS(4962), + [anon_sym_BSLASHAcl] = ACTIONS(4962), + [anon_sym_BSLASHaclp] = ACTIONS(4962), + [anon_sym_BSLASHAclp] = ACTIONS(4962), + [anon_sym_BSLASHacf] = ACTIONS(4962), + [anon_sym_BSLASHAcf] = ACTIONS(4962), + [anon_sym_BSLASHacfp] = ACTIONS(4962), + [anon_sym_BSLASHAcfp] = ACTIONS(4962), + [anon_sym_BSLASHac] = ACTIONS(4962), + [anon_sym_BSLASHAc] = ACTIONS(4962), + [anon_sym_BSLASHacp] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4962), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4962), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4962), + [anon_sym_BSLASHcolor] = ACTIONS(4962), + [anon_sym_BSLASHcolorbox] = ACTIONS(4962), + [anon_sym_BSLASHtextcolor] = ACTIONS(4962), + [anon_sym_BSLASHpagecolor] = ACTIONS(4962), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4962), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4962), + [anon_sym_BSLASHtext] = ACTIONS(4962), + [anon_sym_BSLASHintertext] = ACTIONS(4962), + [anon_sym_shortintertext] = ACTIONS(4962), }, [891] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5061), - [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), + [sym_command_name] = ACTIONS(5140), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5138), + [anon_sym_RBRACK] = ACTIONS(5138), + [anon_sym_COMMA] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_BSLASHpart] = ACTIONS(5140), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddpart] = ACTIONS(5140), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHchapter] = ACTIONS(5140), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddchap] = ACTIONS(5140), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsection] = ACTIONS(5140), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddsec] = ACTIONS(5140), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHparagraph] = ACTIONS(5140), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5140), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHitem] = ACTIONS(5140), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5138), + [sym_word] = ACTIONS(5140), + [sym_placeholder] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym__] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5140), + [anon_sym_BANG] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_SQUOTE] = ACTIONS(5140), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5138), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5138), + [anon_sym_BSLASHbegin] = ACTIONS(5140), + [anon_sym_BSLASHusepackage] = ACTIONS(5140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5140), + [anon_sym_BSLASHinclude] = ACTIONS(5140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5140), + [anon_sym_BSLASHinput] = ACTIONS(5140), + [anon_sym_BSLASHsubfile] = ACTIONS(5140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5140), + [anon_sym_BSLASHbibliography] = ACTIONS(5140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5140), + [anon_sym_BSLASHincludesvg] = ACTIONS(5140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5140), + [anon_sym_BSLASHimport] = ACTIONS(5140), + [anon_sym_BSLASHsubimport] = ACTIONS(5140), + [anon_sym_BSLASHinputfrom] = ACTIONS(5140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5140), + [anon_sym_BSLASHincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHcaption] = ACTIONS(5140), + [anon_sym_BSLASHcite] = ACTIONS(5140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCite] = ACTIONS(5140), + [anon_sym_BSLASHnocite] = ACTIONS(5140), + [anon_sym_BSLASHcitet] = ACTIONS(5140), + [anon_sym_BSLASHcitep] = ACTIONS(5140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteauthor] = ACTIONS(5140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitetitle] = ACTIONS(5140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteyear] = ACTIONS(5140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitedate] = ACTIONS(5140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteurl] = ACTIONS(5140), + [anon_sym_BSLASHfullcite] = ACTIONS(5140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5140), + [anon_sym_BSLASHcitealt] = ACTIONS(5140), + [anon_sym_BSLASHcitealp] = ACTIONS(5140), + [anon_sym_BSLASHcitetext] = ACTIONS(5140), + [anon_sym_BSLASHparencite] = ACTIONS(5140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHParencite] = ACTIONS(5140), + [anon_sym_BSLASHfootcite] = ACTIONS(5140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5140), + [anon_sym_BSLASHtextcite] = ACTIONS(5140), + [anon_sym_BSLASHTextcite] = ACTIONS(5140), + [anon_sym_BSLASHsmartcite] = ACTIONS(5140), + [anon_sym_BSLASHSmartcite] = ACTIONS(5140), + [anon_sym_BSLASHsupercite] = ACTIONS(5140), + [anon_sym_BSLASHautocite] = ACTIONS(5140), + [anon_sym_BSLASHAutocite] = ACTIONS(5140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHvolcite] = ACTIONS(5140), + [anon_sym_BSLASHVolcite] = ACTIONS(5140), + [anon_sym_BSLASHpvolcite] = ACTIONS(5140), + [anon_sym_BSLASHPvolcite] = ACTIONS(5140), + [anon_sym_BSLASHfvolcite] = ACTIONS(5140), + [anon_sym_BSLASHftvolcite] = ACTIONS(5140), + [anon_sym_BSLASHsvolcite] = ACTIONS(5140), + [anon_sym_BSLASHSvolcite] = ACTIONS(5140), + [anon_sym_BSLASHtvolcite] = ACTIONS(5140), + [anon_sym_BSLASHTvolcite] = ACTIONS(5140), + [anon_sym_BSLASHavolcite] = ACTIONS(5140), + [anon_sym_BSLASHAvolcite] = ACTIONS(5140), + [anon_sym_BSLASHnotecite] = ACTIONS(5140), + [anon_sym_BSLASHNotecite] = ACTIONS(5140), + [anon_sym_BSLASHpnotecite] = ACTIONS(5140), + [anon_sym_BSLASHPnotecite] = ACTIONS(5140), + [anon_sym_BSLASHfnotecite] = ACTIONS(5140), + [anon_sym_BSLASHlabel] = ACTIONS(5140), + [anon_sym_BSLASHref] = ACTIONS(5140), + [anon_sym_BSLASHeqref] = ACTIONS(5140), + [anon_sym_BSLASHvref] = ACTIONS(5140), + [anon_sym_BSLASHVref] = ACTIONS(5140), + [anon_sym_BSLASHautoref] = ACTIONS(5140), + [anon_sym_BSLASHpageref] = ACTIONS(5140), + [anon_sym_BSLASHcref] = ACTIONS(5140), + [anon_sym_BSLASHCref] = ACTIONS(5140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnameCref] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHlabelcref] = ACTIONS(5140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCrefrange] = ACTIONS(5140), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnewlabel] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5140), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5140), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdef] = ACTIONS(5140), + [anon_sym_BSLASHlet] = ACTIONS(5140), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5140), + [anon_sym_BSLASHgls] = ACTIONS(5140), + [anon_sym_BSLASHGls] = ACTIONS(5140), + [anon_sym_BSLASHGLS] = ACTIONS(5140), + [anon_sym_BSLASHglspl] = ACTIONS(5140), + [anon_sym_BSLASHGlspl] = ACTIONS(5140), + [anon_sym_BSLASHGLSpl] = ACTIONS(5140), + [anon_sym_BSLASHglsdisp] = ACTIONS(5140), + [anon_sym_BSLASHglslink] = ACTIONS(5140), + [anon_sym_BSLASHglstext] = ACTIONS(5140), + [anon_sym_BSLASHGlstext] = ACTIONS(5140), + [anon_sym_BSLASHGLStext] = ACTIONS(5140), + [anon_sym_BSLASHglsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5140), + [anon_sym_BSLASHglsplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSplural] = ACTIONS(5140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHglsname] = ACTIONS(5140), + [anon_sym_BSLASHGlsname] = ACTIONS(5140), + [anon_sym_BSLASHGLSname] = ACTIONS(5140), + [anon_sym_BSLASHglssymbol] = ACTIONS(5140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5140), + [anon_sym_BSLASHglsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5140), + [anon_sym_BSLASHglsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5140), + [anon_sym_BSLASHglsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5140), + [anon_sym_BSLASHglsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5140), + [anon_sym_BSLASHglsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5140), + [anon_sym_BSLASHnewacronym] = ACTIONS(5140), + [anon_sym_BSLASHacrshort] = ACTIONS(5140), + [anon_sym_BSLASHAcrshort] = ACTIONS(5140), + [anon_sym_BSLASHACRshort] = ACTIONS(5140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5140), + [anon_sym_BSLASHacrlong] = ACTIONS(5140), + [anon_sym_BSLASHAcrlong] = ACTIONS(5140), + [anon_sym_BSLASHACRlong] = ACTIONS(5140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5140), + [anon_sym_BSLASHacrfull] = ACTIONS(5140), + [anon_sym_BSLASHAcrfull] = ACTIONS(5140), + [anon_sym_BSLASHACRfull] = ACTIONS(5140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5140), + [anon_sym_BSLASHacs] = ACTIONS(5140), + [anon_sym_BSLASHAcs] = ACTIONS(5140), + [anon_sym_BSLASHacsp] = ACTIONS(5140), + [anon_sym_BSLASHAcsp] = ACTIONS(5140), + [anon_sym_BSLASHacl] = ACTIONS(5140), + [anon_sym_BSLASHAcl] = ACTIONS(5140), + [anon_sym_BSLASHaclp] = ACTIONS(5140), + [anon_sym_BSLASHAclp] = ACTIONS(5140), + [anon_sym_BSLASHacf] = ACTIONS(5140), + [anon_sym_BSLASHAcf] = ACTIONS(5140), + [anon_sym_BSLASHacfp] = ACTIONS(5140), + [anon_sym_BSLASHAcfp] = ACTIONS(5140), + [anon_sym_BSLASHac] = ACTIONS(5140), + [anon_sym_BSLASHAc] = ACTIONS(5140), + [anon_sym_BSLASHacp] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5140), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5140), + [anon_sym_BSLASHcolor] = ACTIONS(5140), + [anon_sym_BSLASHcolorbox] = ACTIONS(5140), + [anon_sym_BSLASHtextcolor] = ACTIONS(5140), + [anon_sym_BSLASHpagecolor] = ACTIONS(5140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5140), + [anon_sym_BSLASHtext] = ACTIONS(5140), + [anon_sym_BSLASHintertext] = ACTIONS(5140), + [anon_sym_shortintertext] = ACTIONS(5140), }, [892] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_BSLASHpart] = ACTIONS(5128), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddpart] = ACTIONS(5128), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHchapter] = ACTIONS(5128), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddchap] = ACTIONS(5128), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsection] = ACTIONS(5128), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddsec] = ACTIONS(5128), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHparagraph] = ACTIONS(5128), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5128), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHitem] = ACTIONS(5128), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5126), + [anon_sym_BSLASHbegin] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [893] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_BSLASHpart] = ACTIONS(5100), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddpart] = ACTIONS(5100), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHchapter] = ACTIONS(5100), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddchap] = ACTIONS(5100), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsection] = ACTIONS(5100), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddsec] = ACTIONS(5100), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHparagraph] = ACTIONS(5100), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5100), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHitem] = ACTIONS(5100), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASHbegin] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [894] = { - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASH_RBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASH_RBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [895] = { - [sym_command_name] = ACTIONS(4935), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4933), - [anon_sym_BSLASHpart] = ACTIONS(4935), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddpart] = ACTIONS(4935), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHchapter] = ACTIONS(4935), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddchap] = ACTIONS(4935), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsection] = ACTIONS(4935), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddsec] = ACTIONS(4935), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHparagraph] = ACTIONS(4935), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHitem] = ACTIONS(4935), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4933), - [sym_word] = ACTIONS(4935), - [sym_placeholder] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_CARET] = ACTIONS(4935), - [anon_sym__] = ACTIONS(4935), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4935), - [anon_sym_COLON] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), - [anon_sym_DOLLAR] = ACTIONS(4935), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), - [anon_sym_BSLASHbegin] = ACTIONS(4935), - [anon_sym_BSLASHend] = ACTIONS(4935), - [anon_sym_BSLASHusepackage] = ACTIONS(4935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), - [anon_sym_BSLASHinclude] = ACTIONS(4935), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), - [anon_sym_BSLASHinput] = ACTIONS(4935), - [anon_sym_BSLASHsubfile] = ACTIONS(4935), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), - [anon_sym_BSLASHbibliography] = ACTIONS(4935), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), - [anon_sym_BSLASHincludesvg] = ACTIONS(4935), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), - [anon_sym_BSLASHimport] = ACTIONS(4935), - [anon_sym_BSLASHsubimport] = ACTIONS(4935), - [anon_sym_BSLASHinputfrom] = ACTIONS(4935), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), - [anon_sym_BSLASHincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHcaption] = ACTIONS(4935), - [anon_sym_BSLASHcite] = ACTIONS(4935), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCite] = ACTIONS(4935), - [anon_sym_BSLASHnocite] = ACTIONS(4935), - [anon_sym_BSLASHcitet] = ACTIONS(4935), - [anon_sym_BSLASHcitep] = ACTIONS(4935), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteauthor] = ACTIONS(4935), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitetitle] = ACTIONS(4935), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteyear] = ACTIONS(4935), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitedate] = ACTIONS(4935), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteurl] = ACTIONS(4935), - [anon_sym_BSLASHfullcite] = ACTIONS(4935), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), - [anon_sym_BSLASHcitealt] = ACTIONS(4935), - [anon_sym_BSLASHcitealp] = ACTIONS(4935), - [anon_sym_BSLASHcitetext] = ACTIONS(4935), - [anon_sym_BSLASHparencite] = ACTIONS(4935), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHParencite] = ACTIONS(4935), - [anon_sym_BSLASHfootcite] = ACTIONS(4935), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), - [anon_sym_BSLASHtextcite] = ACTIONS(4935), - [anon_sym_BSLASHTextcite] = ACTIONS(4935), - [anon_sym_BSLASHsmartcite] = ACTIONS(4935), - [anon_sym_BSLASHSmartcite] = ACTIONS(4935), - [anon_sym_BSLASHsupercite] = ACTIONS(4935), - [anon_sym_BSLASHautocite] = ACTIONS(4935), - [anon_sym_BSLASHAutocite] = ACTIONS(4935), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHvolcite] = ACTIONS(4935), - [anon_sym_BSLASHVolcite] = ACTIONS(4935), - [anon_sym_BSLASHpvolcite] = ACTIONS(4935), - [anon_sym_BSLASHPvolcite] = ACTIONS(4935), - [anon_sym_BSLASHfvolcite] = ACTIONS(4935), - [anon_sym_BSLASHftvolcite] = ACTIONS(4935), - [anon_sym_BSLASHsvolcite] = ACTIONS(4935), - [anon_sym_BSLASHSvolcite] = ACTIONS(4935), - [anon_sym_BSLASHtvolcite] = ACTIONS(4935), - [anon_sym_BSLASHTvolcite] = ACTIONS(4935), - [anon_sym_BSLASHavolcite] = ACTIONS(4935), - [anon_sym_BSLASHAvolcite] = ACTIONS(4935), - [anon_sym_BSLASHnotecite] = ACTIONS(4935), - [anon_sym_BSLASHNotecite] = ACTIONS(4935), - [anon_sym_BSLASHpnotecite] = ACTIONS(4935), - [anon_sym_BSLASHPnotecite] = ACTIONS(4935), - [anon_sym_BSLASHfnotecite] = ACTIONS(4935), - [anon_sym_BSLASHlabel] = ACTIONS(4935), - [anon_sym_BSLASHref] = ACTIONS(4935), - [anon_sym_BSLASHeqref] = ACTIONS(4935), - [anon_sym_BSLASHvref] = ACTIONS(4935), - [anon_sym_BSLASHVref] = ACTIONS(4935), - [anon_sym_BSLASHautoref] = ACTIONS(4935), - [anon_sym_BSLASHpageref] = ACTIONS(4935), - [anon_sym_BSLASHcref] = ACTIONS(4935), - [anon_sym_BSLASHCref] = ACTIONS(4935), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnameCref] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHlabelcref] = ACTIONS(4935), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCrefrange] = ACTIONS(4935), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnewlabel] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), - [anon_sym_BSLASHdef] = ACTIONS(4935), - [anon_sym_BSLASHlet] = ACTIONS(4935), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), - [anon_sym_BSLASHgls] = ACTIONS(4935), - [anon_sym_BSLASHGls] = ACTIONS(4935), - [anon_sym_BSLASHGLS] = ACTIONS(4935), - [anon_sym_BSLASHglspl] = ACTIONS(4935), - [anon_sym_BSLASHGlspl] = ACTIONS(4935), - [anon_sym_BSLASHGLSpl] = ACTIONS(4935), - [anon_sym_BSLASHglsdisp] = ACTIONS(4935), - [anon_sym_BSLASHglslink] = ACTIONS(4935), - [anon_sym_BSLASHglstext] = ACTIONS(4935), - [anon_sym_BSLASHGlstext] = ACTIONS(4935), - [anon_sym_BSLASHGLStext] = ACTIONS(4935), - [anon_sym_BSLASHglsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), - [anon_sym_BSLASHglsplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSplural] = ACTIONS(4935), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHglsname] = ACTIONS(4935), - [anon_sym_BSLASHGlsname] = ACTIONS(4935), - [anon_sym_BSLASHGLSname] = ACTIONS(4935), - [anon_sym_BSLASHglssymbol] = ACTIONS(4935), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), - [anon_sym_BSLASHglsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), - [anon_sym_BSLASHglsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), - [anon_sym_BSLASHglsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), - [anon_sym_BSLASHglsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), - [anon_sym_BSLASHglsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), - [anon_sym_BSLASHnewacronym] = ACTIONS(4935), - [anon_sym_BSLASHacrshort] = ACTIONS(4935), - [anon_sym_BSLASHAcrshort] = ACTIONS(4935), - [anon_sym_BSLASHACRshort] = ACTIONS(4935), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), - [anon_sym_BSLASHacrlong] = ACTIONS(4935), - [anon_sym_BSLASHAcrlong] = ACTIONS(4935), - [anon_sym_BSLASHACRlong] = ACTIONS(4935), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), - [anon_sym_BSLASHacrfull] = ACTIONS(4935), - [anon_sym_BSLASHAcrfull] = ACTIONS(4935), - [anon_sym_BSLASHACRfull] = ACTIONS(4935), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), - [anon_sym_BSLASHacs] = ACTIONS(4935), - [anon_sym_BSLASHAcs] = ACTIONS(4935), - [anon_sym_BSLASHacsp] = ACTIONS(4935), - [anon_sym_BSLASHAcsp] = ACTIONS(4935), - [anon_sym_BSLASHacl] = ACTIONS(4935), - [anon_sym_BSLASHAcl] = ACTIONS(4935), - [anon_sym_BSLASHaclp] = ACTIONS(4935), - [anon_sym_BSLASHAclp] = ACTIONS(4935), - [anon_sym_BSLASHacf] = ACTIONS(4935), - [anon_sym_BSLASHAcf] = ACTIONS(4935), - [anon_sym_BSLASHacfp] = ACTIONS(4935), - [anon_sym_BSLASHAcfp] = ACTIONS(4935), - [anon_sym_BSLASHac] = ACTIONS(4935), - [anon_sym_BSLASHAc] = ACTIONS(4935), - [anon_sym_BSLASHacp] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), - [anon_sym_BSLASHcolor] = ACTIONS(4935), - [anon_sym_BSLASHcolorbox] = ACTIONS(4935), - [anon_sym_BSLASHtextcolor] = ACTIONS(4935), - [anon_sym_BSLASHpagecolor] = ACTIONS(4935), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - [anon_sym_BSLASHtext] = ACTIONS(4935), - [anon_sym_BSLASHintertext] = ACTIONS(4935), - [anon_sym_shortintertext] = ACTIONS(4935), + [sym_command_name] = ACTIONS(5014), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_BSLASHpart] = ACTIONS(5014), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddpart] = ACTIONS(5014), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHchapter] = ACTIONS(5014), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddchap] = ACTIONS(5014), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsection] = ACTIONS(5014), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddsec] = ACTIONS(5014), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHparagraph] = ACTIONS(5014), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5014), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHitem] = ACTIONS(5014), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [sym_word] = ACTIONS(5014), + [sym_placeholder] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5012), + [anon_sym_BSLASHbegin] = ACTIONS(5014), + [anon_sym_BSLASHend] = ACTIONS(5014), + [anon_sym_BSLASHusepackage] = ACTIONS(5014), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5014), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5014), + [anon_sym_BSLASHinclude] = ACTIONS(5014), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5014), + [anon_sym_BSLASHinput] = ACTIONS(5014), + [anon_sym_BSLASHsubfile] = ACTIONS(5014), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5014), + [anon_sym_BSLASHbibliography] = ACTIONS(5014), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5014), + [anon_sym_BSLASHincludesvg] = ACTIONS(5014), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5014), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5014), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5014), + [anon_sym_BSLASHimport] = ACTIONS(5014), + [anon_sym_BSLASHsubimport] = ACTIONS(5014), + [anon_sym_BSLASHinputfrom] = ACTIONS(5014), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5014), + [anon_sym_BSLASHincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHcaption] = ACTIONS(5014), + [anon_sym_BSLASHcite] = ACTIONS(5014), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCite] = ACTIONS(5014), + [anon_sym_BSLASHnocite] = ACTIONS(5014), + [anon_sym_BSLASHcitet] = ACTIONS(5014), + [anon_sym_BSLASHcitep] = ACTIONS(5014), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteauthor] = ACTIONS(5014), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5014), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitetitle] = ACTIONS(5014), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteyear] = ACTIONS(5014), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitedate] = ACTIONS(5014), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteurl] = ACTIONS(5014), + [anon_sym_BSLASHfullcite] = ACTIONS(5014), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5014), + [anon_sym_BSLASHcitealt] = ACTIONS(5014), + [anon_sym_BSLASHcitealp] = ACTIONS(5014), + [anon_sym_BSLASHcitetext] = ACTIONS(5014), + [anon_sym_BSLASHparencite] = ACTIONS(5014), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHParencite] = ACTIONS(5014), + [anon_sym_BSLASHfootcite] = ACTIONS(5014), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5014), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5014), + [anon_sym_BSLASHtextcite] = ACTIONS(5014), + [anon_sym_BSLASHTextcite] = ACTIONS(5014), + [anon_sym_BSLASHsmartcite] = ACTIONS(5014), + [anon_sym_BSLASHSmartcite] = ACTIONS(5014), + [anon_sym_BSLASHsupercite] = ACTIONS(5014), + [anon_sym_BSLASHautocite] = ACTIONS(5014), + [anon_sym_BSLASHAutocite] = ACTIONS(5014), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHvolcite] = ACTIONS(5014), + [anon_sym_BSLASHVolcite] = ACTIONS(5014), + [anon_sym_BSLASHpvolcite] = ACTIONS(5014), + [anon_sym_BSLASHPvolcite] = ACTIONS(5014), + [anon_sym_BSLASHfvolcite] = ACTIONS(5014), + [anon_sym_BSLASHftvolcite] = ACTIONS(5014), + [anon_sym_BSLASHsvolcite] = ACTIONS(5014), + [anon_sym_BSLASHSvolcite] = ACTIONS(5014), + [anon_sym_BSLASHtvolcite] = ACTIONS(5014), + [anon_sym_BSLASHTvolcite] = ACTIONS(5014), + [anon_sym_BSLASHavolcite] = ACTIONS(5014), + [anon_sym_BSLASHAvolcite] = ACTIONS(5014), + [anon_sym_BSLASHnotecite] = ACTIONS(5014), + [anon_sym_BSLASHNotecite] = ACTIONS(5014), + [anon_sym_BSLASHpnotecite] = ACTIONS(5014), + [anon_sym_BSLASHPnotecite] = ACTIONS(5014), + [anon_sym_BSLASHfnotecite] = ACTIONS(5014), + [anon_sym_BSLASHlabel] = ACTIONS(5014), + [anon_sym_BSLASHref] = ACTIONS(5014), + [anon_sym_BSLASHeqref] = ACTIONS(5014), + [anon_sym_BSLASHvref] = ACTIONS(5014), + [anon_sym_BSLASHVref] = ACTIONS(5014), + [anon_sym_BSLASHautoref] = ACTIONS(5014), + [anon_sym_BSLASHpageref] = ACTIONS(5014), + [anon_sym_BSLASHcref] = ACTIONS(5014), + [anon_sym_BSLASHCref] = ACTIONS(5014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnameCref] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHlabelcref] = ACTIONS(5014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCrefrange] = ACTIONS(5014), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnewlabel] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5014), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5014), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5014), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdef] = ACTIONS(5014), + [anon_sym_BSLASHlet] = ACTIONS(5014), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5014), + [anon_sym_BSLASHgls] = ACTIONS(5014), + [anon_sym_BSLASHGls] = ACTIONS(5014), + [anon_sym_BSLASHGLS] = ACTIONS(5014), + [anon_sym_BSLASHglspl] = ACTIONS(5014), + [anon_sym_BSLASHGlspl] = ACTIONS(5014), + [anon_sym_BSLASHGLSpl] = ACTIONS(5014), + [anon_sym_BSLASHglsdisp] = ACTIONS(5014), + [anon_sym_BSLASHglslink] = ACTIONS(5014), + [anon_sym_BSLASHglstext] = ACTIONS(5014), + [anon_sym_BSLASHGlstext] = ACTIONS(5014), + [anon_sym_BSLASHGLStext] = ACTIONS(5014), + [anon_sym_BSLASHglsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5014), + [anon_sym_BSLASHglsplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSplural] = ACTIONS(5014), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHglsname] = ACTIONS(5014), + [anon_sym_BSLASHGlsname] = ACTIONS(5014), + [anon_sym_BSLASHGLSname] = ACTIONS(5014), + [anon_sym_BSLASHglssymbol] = ACTIONS(5014), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5014), + [anon_sym_BSLASHglsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5014), + [anon_sym_BSLASHglsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5014), + [anon_sym_BSLASHglsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5014), + [anon_sym_BSLASHglsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5014), + [anon_sym_BSLASHglsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5014), + [anon_sym_BSLASHnewacronym] = ACTIONS(5014), + [anon_sym_BSLASHacrshort] = ACTIONS(5014), + [anon_sym_BSLASHAcrshort] = ACTIONS(5014), + [anon_sym_BSLASHACRshort] = ACTIONS(5014), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5014), + [anon_sym_BSLASHacrlong] = ACTIONS(5014), + [anon_sym_BSLASHAcrlong] = ACTIONS(5014), + [anon_sym_BSLASHACRlong] = ACTIONS(5014), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5014), + [anon_sym_BSLASHacrfull] = ACTIONS(5014), + [anon_sym_BSLASHAcrfull] = ACTIONS(5014), + [anon_sym_BSLASHACRfull] = ACTIONS(5014), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5014), + [anon_sym_BSLASHacs] = ACTIONS(5014), + [anon_sym_BSLASHAcs] = ACTIONS(5014), + [anon_sym_BSLASHacsp] = ACTIONS(5014), + [anon_sym_BSLASHAcsp] = ACTIONS(5014), + [anon_sym_BSLASHacl] = ACTIONS(5014), + [anon_sym_BSLASHAcl] = ACTIONS(5014), + [anon_sym_BSLASHaclp] = ACTIONS(5014), + [anon_sym_BSLASHAclp] = ACTIONS(5014), + [anon_sym_BSLASHacf] = ACTIONS(5014), + [anon_sym_BSLASHAcf] = ACTIONS(5014), + [anon_sym_BSLASHacfp] = ACTIONS(5014), + [anon_sym_BSLASHAcfp] = ACTIONS(5014), + [anon_sym_BSLASHac] = ACTIONS(5014), + [anon_sym_BSLASHAc] = ACTIONS(5014), + [anon_sym_BSLASHacp] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5014), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5014), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5014), + [anon_sym_BSLASHcolor] = ACTIONS(5014), + [anon_sym_BSLASHcolorbox] = ACTIONS(5014), + [anon_sym_BSLASHtextcolor] = ACTIONS(5014), + [anon_sym_BSLASHpagecolor] = ACTIONS(5014), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5014), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5014), + [anon_sym_BSLASHtext] = ACTIONS(5014), + [anon_sym_BSLASHintertext] = ACTIONS(5014), + [anon_sym_shortintertext] = ACTIONS(5014), }, [896] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASH_RBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [897] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(5084), + [anon_sym_BSLASHpart] = ACTIONS(5086), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddpart] = ACTIONS(5086), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHchapter] = ACTIONS(5086), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddchap] = ACTIONS(5086), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsection] = ACTIONS(5086), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddsec] = ACTIONS(5086), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHparagraph] = ACTIONS(5086), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5086), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHitem] = ACTIONS(5086), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5084), + [anon_sym_BSLASHbegin] = ACTIONS(5086), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [898] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_BSLASHpart] = ACTIONS(5038), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddpart] = ACTIONS(5038), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHchapter] = ACTIONS(5038), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddchap] = ACTIONS(5038), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsection] = ACTIONS(5038), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddsec] = ACTIONS(5038), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHparagraph] = ACTIONS(5038), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5038), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHitem] = ACTIONS(5038), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5036), + [anon_sym_BSLASHbegin] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [899] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_BSLASHpart] = ACTIONS(5017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddpart] = ACTIONS(5017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHchapter] = ACTIONS(5017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddchap] = ACTIONS(5017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsection] = ACTIONS(5017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddsec] = ACTIONS(5017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHparagraph] = ACTIONS(5017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHitem] = ACTIONS(5017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASHbegin] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_BSLASHpart] = ACTIONS(5096), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddpart] = ACTIONS(5096), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHchapter] = ACTIONS(5096), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddchap] = ACTIONS(5096), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsection] = ACTIONS(5096), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddsec] = ACTIONS(5096), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHparagraph] = ACTIONS(5096), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5096), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHitem] = ACTIONS(5096), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASHbegin] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [900] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_BSLASHpart] = ACTIONS(5392), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddpart] = ACTIONS(5392), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHchapter] = ACTIONS(5392), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddchap] = ACTIONS(5392), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsection] = ACTIONS(5392), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddsec] = ACTIONS(5392), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHparagraph] = ACTIONS(5392), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5392), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHitem] = ACTIONS(5392), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5390), + [anon_sym_BSLASHbegin] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [901] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_BSLASHpart] = ACTIONS(4939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddpart] = ACTIONS(4939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHchapter] = ACTIONS(4939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddchap] = ACTIONS(4939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsection] = ACTIONS(4939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddsec] = ACTIONS(4939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHparagraph] = ACTIONS(4939), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHitem] = ACTIONS(4939), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4937), - [anon_sym_BSLASHbegin] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_BSLASHpart] = ACTIONS(5018), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddpart] = ACTIONS(5018), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHchapter] = ACTIONS(5018), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddchap] = ACTIONS(5018), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsection] = ACTIONS(5018), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddsec] = ACTIONS(5018), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHparagraph] = ACTIONS(5018), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5018), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHitem] = ACTIONS(5018), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5016), + [anon_sym_BSLASHbegin] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [902] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_BSLASHpart] = ACTIONS(5008), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddpart] = ACTIONS(5008), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHchapter] = ACTIONS(5008), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddchap] = ACTIONS(5008), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsection] = ACTIONS(5008), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddsec] = ACTIONS(5008), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHparagraph] = ACTIONS(5008), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5008), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHitem] = ACTIONS(5008), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5006), + [anon_sym_BSLASHbegin] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [903] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_BSLASHpart] = ACTIONS(4917), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddpart] = ACTIONS(4917), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHchapter] = ACTIONS(4917), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddchap] = ACTIONS(4917), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsection] = ACTIONS(4917), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddsec] = ACTIONS(4917), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHparagraph] = ACTIONS(4917), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHitem] = ACTIONS(4917), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4915), - [anon_sym_BSLASHbegin] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_BSLASHpart] = ACTIONS(4996), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddpart] = ACTIONS(4996), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHchapter] = ACTIONS(4996), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddchap] = ACTIONS(4996), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsection] = ACTIONS(4996), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddsec] = ACTIONS(4996), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHparagraph] = ACTIONS(4996), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4996), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHitem] = ACTIONS(4996), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4994), + [anon_sym_BSLASHbegin] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [904] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_BSLASHpart] = ACTIONS(4913), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddpart] = ACTIONS(4913), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHchapter] = ACTIONS(4913), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddchap] = ACTIONS(4913), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsection] = ACTIONS(4913), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddsec] = ACTIONS(4913), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHparagraph] = ACTIONS(4913), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHitem] = ACTIONS(4913), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4911), - [anon_sym_BSLASHbegin] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_BSLASHpart] = ACTIONS(4992), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddpart] = ACTIONS(4992), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHchapter] = ACTIONS(4992), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddchap] = ACTIONS(4992), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsection] = ACTIONS(4992), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddsec] = ACTIONS(4992), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHparagraph] = ACTIONS(4992), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4992), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHitem] = ACTIONS(4992), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4990), + [anon_sym_BSLASHbegin] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [905] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_BSLASHpart] = ACTIONS(4988), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddpart] = ACTIONS(4988), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHchapter] = ACTIONS(4988), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddchap] = ACTIONS(4988), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsection] = ACTIONS(4988), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddsec] = ACTIONS(4988), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHparagraph] = ACTIONS(4988), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4988), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHitem] = ACTIONS(4988), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4986), + [anon_sym_BSLASHbegin] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [906] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_BSLASHpart] = ACTIONS(4905), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddpart] = ACTIONS(4905), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHchapter] = ACTIONS(4905), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddchap] = ACTIONS(4905), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsection] = ACTIONS(4905), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddsec] = ACTIONS(4905), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHparagraph] = ACTIONS(4905), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHitem] = ACTIONS(4905), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4903), - [anon_sym_BSLASHbegin] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_BSLASHpart] = ACTIONS(4984), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddpart] = ACTIONS(4984), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHchapter] = ACTIONS(4984), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddchap] = ACTIONS(4984), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsection] = ACTIONS(4984), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddsec] = ACTIONS(4984), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHparagraph] = ACTIONS(4984), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4984), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHitem] = ACTIONS(4984), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4982), + [anon_sym_BSLASHbegin] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [907] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_BSLASHpart] = ACTIONS(4901), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddpart] = ACTIONS(4901), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHchapter] = ACTIONS(4901), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddchap] = ACTIONS(4901), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsection] = ACTIONS(4901), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddsec] = ACTIONS(4901), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHparagraph] = ACTIONS(4901), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHitem] = ACTIONS(4901), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4899), - [anon_sym_BSLASHbegin] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_BSLASHpart] = ACTIONS(4980), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddpart] = ACTIONS(4980), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHchapter] = ACTIONS(4980), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddchap] = ACTIONS(4980), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsection] = ACTIONS(4980), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddsec] = ACTIONS(4980), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHparagraph] = ACTIONS(4980), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4980), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHitem] = ACTIONS(4980), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4978), + [anon_sym_BSLASHbegin] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [908] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_BSLASHpart] = ACTIONS(4897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddpart] = ACTIONS(4897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHchapter] = ACTIONS(4897), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddchap] = ACTIONS(4897), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsection] = ACTIONS(4897), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddsec] = ACTIONS(4897), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHparagraph] = ACTIONS(4897), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHitem] = ACTIONS(4897), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4895), - [anon_sym_BSLASHbegin] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_BSLASHpart] = ACTIONS(4976), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddpart] = ACTIONS(4976), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHchapter] = ACTIONS(4976), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddchap] = ACTIONS(4976), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsection] = ACTIONS(4976), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddsec] = ACTIONS(4976), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHparagraph] = ACTIONS(4976), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4976), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHitem] = ACTIONS(4976), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4974), + [anon_sym_BSLASHbegin] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [909] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_BSLASHpart] = ACTIONS(5300), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddpart] = ACTIONS(5300), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHchapter] = ACTIONS(5300), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddchap] = ACTIONS(5300), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsection] = ACTIONS(5300), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddsec] = ACTIONS(5300), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHparagraph] = ACTIONS(5300), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5300), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHitem] = ACTIONS(5300), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5298), + [anon_sym_BSLASHbegin] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [910] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_BSLASHpart] = ACTIONS(5384), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddpart] = ACTIONS(5384), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHchapter] = ACTIONS(5384), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddchap] = ACTIONS(5384), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsection] = ACTIONS(5384), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddsec] = ACTIONS(5384), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHparagraph] = ACTIONS(5384), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5384), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHitem] = ACTIONS(5384), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5382), + [anon_sym_BSLASHbegin] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [911] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_BSLASHpart] = ACTIONS(4963), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddpart] = ACTIONS(4963), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHchapter] = ACTIONS(4963), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddchap] = ACTIONS(4963), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsection] = ACTIONS(4963), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddsec] = ACTIONS(4963), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHparagraph] = ACTIONS(4963), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHitem] = ACTIONS(4963), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4961), - [anon_sym_BSLASHbegin] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_BSLASHpart] = ACTIONS(5042), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddpart] = ACTIONS(5042), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHchapter] = ACTIONS(5042), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddchap] = ACTIONS(5042), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsection] = ACTIONS(5042), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddsec] = ACTIONS(5042), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHparagraph] = ACTIONS(5042), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5042), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHitem] = ACTIONS(5042), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5040), + [anon_sym_BSLASHbegin] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [912] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_BSLASHpart] = ACTIONS(5152), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddpart] = ACTIONS(5152), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHchapter] = ACTIONS(5152), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddchap] = ACTIONS(5152), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsection] = ACTIONS(5152), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddsec] = ACTIONS(5152), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHparagraph] = ACTIONS(5152), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5152), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHitem] = ACTIONS(5152), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5150), + [anon_sym_BSLASHbegin] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [913] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_BSLASHpart] = ACTIONS(5144), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddpart] = ACTIONS(5144), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHchapter] = ACTIONS(5144), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddchap] = ACTIONS(5144), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsection] = ACTIONS(5144), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddsec] = ACTIONS(5144), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHparagraph] = ACTIONS(5144), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5144), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHitem] = ACTIONS(5144), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5142), + [anon_sym_BSLASHbegin] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [914] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_BSLASHpart] = ACTIONS(5301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddpart] = ACTIONS(5301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHchapter] = ACTIONS(5301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddchap] = ACTIONS(5301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsection] = ACTIONS(5301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddsec] = ACTIONS(5301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHparagraph] = ACTIONS(5301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHitem] = ACTIONS(5301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5299), - [anon_sym_BSLASHbegin] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_BSLASHpart] = ACTIONS(5380), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddpart] = ACTIONS(5380), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHchapter] = ACTIONS(5380), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddchap] = ACTIONS(5380), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsection] = ACTIONS(5380), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddsec] = ACTIONS(5380), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHparagraph] = ACTIONS(5380), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5380), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHitem] = ACTIONS(5380), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5378), + [anon_sym_BSLASHbegin] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [915] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_BSLASHpart] = ACTIONS(5297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddpart] = ACTIONS(5297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHchapter] = ACTIONS(5297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddchap] = ACTIONS(5297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsection] = ACTIONS(5297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddsec] = ACTIONS(5297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHparagraph] = ACTIONS(5297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHitem] = ACTIONS(5297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5295), - [anon_sym_BSLASHbegin] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_BSLASHpart] = ACTIONS(5376), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddpart] = ACTIONS(5376), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHchapter] = ACTIONS(5376), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddchap] = ACTIONS(5376), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsection] = ACTIONS(5376), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddsec] = ACTIONS(5376), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHparagraph] = ACTIONS(5376), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5376), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHitem] = ACTIONS(5376), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5374), + [anon_sym_BSLASHbegin] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [916] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_BSLASHpart] = ACTIONS(5013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddpart] = ACTIONS(5013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHchapter] = ACTIONS(5013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddchap] = ACTIONS(5013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsection] = ACTIONS(5013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddsec] = ACTIONS(5013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHparagraph] = ACTIONS(5013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHitem] = ACTIONS(5013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASHbegin] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_BSLASHpart] = ACTIONS(5092), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddpart] = ACTIONS(5092), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHchapter] = ACTIONS(5092), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddchap] = ACTIONS(5092), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsection] = ACTIONS(5092), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddsec] = ACTIONS(5092), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHparagraph] = ACTIONS(5092), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5092), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHitem] = ACTIONS(5092), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASHbegin] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [917] = { - [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(5293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), - [anon_sym_BSLASHaddpart] = ACTIONS(5293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_BSLASHpart] = ACTIONS(5372), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddpart] = ACTIONS(5372), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHchapter] = ACTIONS(5372), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddchap] = ACTIONS(5372), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsection] = ACTIONS(5372), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddsec] = ACTIONS(5372), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHparagraph] = ACTIONS(5372), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5372), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHitem] = ACTIONS(5372), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5370), + [anon_sym_BSLASHbegin] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [918] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_BSLASHpart] = ACTIONS(5289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddpart] = ACTIONS(5289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHchapter] = ACTIONS(5289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddchap] = ACTIONS(5289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsection] = ACTIONS(5289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddsec] = ACTIONS(5289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHparagraph] = ACTIONS(5289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHitem] = ACTIONS(5289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5287), - [anon_sym_BSLASHbegin] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_BSLASHpart] = ACTIONS(5368), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddpart] = ACTIONS(5368), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHchapter] = ACTIONS(5368), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddchap] = ACTIONS(5368), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsection] = ACTIONS(5368), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddsec] = ACTIONS(5368), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHparagraph] = ACTIONS(5368), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5368), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHitem] = ACTIONS(5368), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5366), + [anon_sym_BSLASHbegin] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [919] = { - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_BSLASHpart] = ACTIONS(5285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddpart] = ACTIONS(5285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHchapter] = ACTIONS(5285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddchap] = ACTIONS(5285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsection] = ACTIONS(5285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddsec] = ACTIONS(5285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHparagraph] = ACTIONS(5285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHitem] = ACTIONS(5285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5283), - [anon_sym_BSLASHbegin] = ACTIONS(5285), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_BSLASHpart] = ACTIONS(5364), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddpart] = ACTIONS(5364), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHchapter] = ACTIONS(5364), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddchap] = ACTIONS(5364), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsection] = ACTIONS(5364), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddsec] = ACTIONS(5364), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHparagraph] = ACTIONS(5364), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5364), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHitem] = ACTIONS(5364), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5362), + [anon_sym_BSLASHbegin] = ACTIONS(5364), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [920] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_BSLASHpart] = ACTIONS(5082), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddpart] = ACTIONS(5082), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHchapter] = ACTIONS(5082), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddchap] = ACTIONS(5082), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsection] = ACTIONS(5082), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddsec] = ACTIONS(5082), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHparagraph] = ACTIONS(5082), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5082), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHitem] = ACTIONS(5082), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASHbegin] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [921] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_BSLASHpart] = ACTIONS(5078), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddpart] = ACTIONS(5078), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHchapter] = ACTIONS(5078), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddchap] = ACTIONS(5078), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsection] = ACTIONS(5078), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddsec] = ACTIONS(5078), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHparagraph] = ACTIONS(5078), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5078), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHitem] = ACTIONS(5078), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASHbegin] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [922] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_BSLASHpart] = ACTIONS(5074), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddpart] = ACTIONS(5074), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHchapter] = ACTIONS(5074), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddchap] = ACTIONS(5074), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsection] = ACTIONS(5074), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddsec] = ACTIONS(5074), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHparagraph] = ACTIONS(5074), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5074), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHitem] = ACTIONS(5074), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASHbegin] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [923] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_BSLASHpart] = ACTIONS(5070), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddpart] = ACTIONS(5070), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHchapter] = ACTIONS(5070), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddchap] = ACTIONS(5070), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsection] = ACTIONS(5070), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddsec] = ACTIONS(5070), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHparagraph] = ACTIONS(5070), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5070), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHitem] = ACTIONS(5070), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASHbegin] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [924] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_BSLASHpart] = ACTIONS(5066), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddpart] = ACTIONS(5066), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHchapter] = ACTIONS(5066), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddchap] = ACTIONS(5066), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsection] = ACTIONS(5066), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddsec] = ACTIONS(5066), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHparagraph] = ACTIONS(5066), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5066), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHitem] = ACTIONS(5066), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASHbegin] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [925] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_BSLASHpart] = ACTIONS(5062), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddpart] = ACTIONS(5062), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHchapter] = ACTIONS(5062), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddchap] = ACTIONS(5062), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsection] = ACTIONS(5062), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddsec] = ACTIONS(5062), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHparagraph] = ACTIONS(5062), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5062), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHitem] = ACTIONS(5062), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASHbegin] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [926] = { - [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(4971), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_BSLASHpart] = ACTIONS(5052), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddpart] = ACTIONS(5052), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHchapter] = ACTIONS(5052), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddchap] = ACTIONS(5052), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsection] = ACTIONS(5052), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddsec] = ACTIONS(5052), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHparagraph] = ACTIONS(5052), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5052), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHitem] = ACTIONS(5052), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASHbegin] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [927] = { - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_BSLASHpart] = ACTIONS(4969), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddpart] = ACTIONS(4969), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHchapter] = ACTIONS(4969), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddchap] = ACTIONS(4969), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsection] = ACTIONS(4969), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddsec] = ACTIONS(4969), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHparagraph] = ACTIONS(4969), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHitem] = ACTIONS(4969), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASHbegin] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_BSLASHpart] = ACTIONS(5048), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddpart] = ACTIONS(5048), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHchapter] = ACTIONS(5048), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddchap] = ACTIONS(5048), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsection] = ACTIONS(5048), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddsec] = ACTIONS(5048), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHparagraph] = ACTIONS(5048), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5048), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHitem] = ACTIONS(5048), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASHbegin] = ACTIONS(5048), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [928] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [929] = { - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_RPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_RPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [930] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_BSLASHpart] = ACTIONS(4925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddpart] = ACTIONS(4925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHchapter] = ACTIONS(4925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddchap] = ACTIONS(4925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsection] = ACTIONS(4925), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddsec] = ACTIONS(4925), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHparagraph] = ACTIONS(4925), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHitem] = ACTIONS(4925), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASHbegin] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_BSLASHpart] = ACTIONS(5004), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddpart] = ACTIONS(5004), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHchapter] = ACTIONS(5004), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddchap] = ACTIONS(5004), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsection] = ACTIONS(5004), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddsec] = ACTIONS(5004), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHparagraph] = ACTIONS(5004), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5004), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHitem] = ACTIONS(5004), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASHbegin] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [931] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_BSLASHpart] = ACTIONS(4921), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddpart] = ACTIONS(4921), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHchapter] = ACTIONS(4921), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddchap] = ACTIONS(4921), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsection] = ACTIONS(4921), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddsec] = ACTIONS(4921), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHparagraph] = ACTIONS(4921), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHitem] = ACTIONS(4921), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASHbegin] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_BSLASHpart] = ACTIONS(5000), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddpart] = ACTIONS(5000), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHchapter] = ACTIONS(5000), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddchap] = ACTIONS(5000), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsection] = ACTIONS(5000), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddsec] = ACTIONS(5000), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHparagraph] = ACTIONS(5000), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5000), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHitem] = ACTIONS(5000), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [932] = { - [sym_command_name] = ACTIONS(4891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_BSLASHpart] = ACTIONS(4891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddpart] = ACTIONS(4891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHchapter] = ACTIONS(4891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddchap] = ACTIONS(4891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsection] = ACTIONS(4891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddsec] = ACTIONS(4891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHparagraph] = ACTIONS(4891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHitem] = ACTIONS(4891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4889), - [sym_word] = ACTIONS(4891), - [sym_placeholder] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym__] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_COLON] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), - [anon_sym_BSLASHbegin] = ACTIONS(4891), - [anon_sym_BSLASHusepackage] = ACTIONS(4891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), - [anon_sym_BSLASHinclude] = ACTIONS(4891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), - [anon_sym_BSLASHinput] = ACTIONS(4891), - [anon_sym_BSLASHsubfile] = ACTIONS(4891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), - [anon_sym_BSLASHbibliography] = ACTIONS(4891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), - [anon_sym_BSLASHincludesvg] = ACTIONS(4891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), - [anon_sym_BSLASHimport] = ACTIONS(4891), - [anon_sym_BSLASHsubimport] = ACTIONS(4891), - [anon_sym_BSLASHinputfrom] = ACTIONS(4891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), - [anon_sym_BSLASHincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHcaption] = ACTIONS(4891), - [anon_sym_BSLASHcite] = ACTIONS(4891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCite] = ACTIONS(4891), - [anon_sym_BSLASHnocite] = ACTIONS(4891), - [anon_sym_BSLASHcitet] = ACTIONS(4891), - [anon_sym_BSLASHcitep] = ACTIONS(4891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteauthor] = ACTIONS(4891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitetitle] = ACTIONS(4891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteyear] = ACTIONS(4891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitedate] = ACTIONS(4891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteurl] = ACTIONS(4891), - [anon_sym_BSLASHfullcite] = ACTIONS(4891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), - [anon_sym_BSLASHcitealt] = ACTIONS(4891), - [anon_sym_BSLASHcitealp] = ACTIONS(4891), - [anon_sym_BSLASHcitetext] = ACTIONS(4891), - [anon_sym_BSLASHparencite] = ACTIONS(4891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHParencite] = ACTIONS(4891), - [anon_sym_BSLASHfootcite] = ACTIONS(4891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), - [anon_sym_BSLASHtextcite] = ACTIONS(4891), - [anon_sym_BSLASHTextcite] = ACTIONS(4891), - [anon_sym_BSLASHsmartcite] = ACTIONS(4891), - [anon_sym_BSLASHSmartcite] = ACTIONS(4891), - [anon_sym_BSLASHsupercite] = ACTIONS(4891), - [anon_sym_BSLASHautocite] = ACTIONS(4891), - [anon_sym_BSLASHAutocite] = ACTIONS(4891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHvolcite] = ACTIONS(4891), - [anon_sym_BSLASHVolcite] = ACTIONS(4891), - [anon_sym_BSLASHpvolcite] = ACTIONS(4891), - [anon_sym_BSLASHPvolcite] = ACTIONS(4891), - [anon_sym_BSLASHfvolcite] = ACTIONS(4891), - [anon_sym_BSLASHftvolcite] = ACTIONS(4891), - [anon_sym_BSLASHsvolcite] = ACTIONS(4891), - [anon_sym_BSLASHSvolcite] = ACTIONS(4891), - [anon_sym_BSLASHtvolcite] = ACTIONS(4891), - [anon_sym_BSLASHTvolcite] = ACTIONS(4891), - [anon_sym_BSLASHavolcite] = ACTIONS(4891), - [anon_sym_BSLASHAvolcite] = ACTIONS(4891), - [anon_sym_BSLASHnotecite] = ACTIONS(4891), - [anon_sym_BSLASHNotecite] = ACTIONS(4891), - [anon_sym_BSLASHpnotecite] = ACTIONS(4891), - [anon_sym_BSLASHPnotecite] = ACTIONS(4891), - [anon_sym_BSLASHfnotecite] = ACTIONS(4891), - [anon_sym_BSLASHlabel] = ACTIONS(4891), - [anon_sym_BSLASHref] = ACTIONS(4891), - [anon_sym_BSLASHeqref] = ACTIONS(4891), - [anon_sym_BSLASHvref] = ACTIONS(4891), - [anon_sym_BSLASHVref] = ACTIONS(4891), - [anon_sym_BSLASHautoref] = ACTIONS(4891), - [anon_sym_BSLASHpageref] = ACTIONS(4891), - [anon_sym_BSLASHcref] = ACTIONS(4891), - [anon_sym_BSLASHCref] = ACTIONS(4891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnameCref] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHlabelcref] = ACTIONS(4891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCrefrange] = ACTIONS(4891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnewlabel] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), - [anon_sym_BSLASHdef] = ACTIONS(4891), - [anon_sym_BSLASHlet] = ACTIONS(4891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), - [anon_sym_BSLASHgls] = ACTIONS(4891), - [anon_sym_BSLASHGls] = ACTIONS(4891), - [anon_sym_BSLASHGLS] = ACTIONS(4891), - [anon_sym_BSLASHglspl] = ACTIONS(4891), - [anon_sym_BSLASHGlspl] = ACTIONS(4891), - [anon_sym_BSLASHGLSpl] = ACTIONS(4891), - [anon_sym_BSLASHglsdisp] = ACTIONS(4891), - [anon_sym_BSLASHglslink] = ACTIONS(4891), - [anon_sym_BSLASHglstext] = ACTIONS(4891), - [anon_sym_BSLASHGlstext] = ACTIONS(4891), - [anon_sym_BSLASHGLStext] = ACTIONS(4891), - [anon_sym_BSLASHglsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), - [anon_sym_BSLASHglsplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSplural] = ACTIONS(4891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHglsname] = ACTIONS(4891), - [anon_sym_BSLASHGlsname] = ACTIONS(4891), - [anon_sym_BSLASHGLSname] = ACTIONS(4891), - [anon_sym_BSLASHglssymbol] = ACTIONS(4891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), - [anon_sym_BSLASHglsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), - [anon_sym_BSLASHglsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), - [anon_sym_BSLASHglsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), - [anon_sym_BSLASHglsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), - [anon_sym_BSLASHglsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), - [anon_sym_BSLASHnewacronym] = ACTIONS(4891), - [anon_sym_BSLASHacrshort] = ACTIONS(4891), - [anon_sym_BSLASHAcrshort] = ACTIONS(4891), - [anon_sym_BSLASHACRshort] = ACTIONS(4891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), - [anon_sym_BSLASHacrlong] = ACTIONS(4891), - [anon_sym_BSLASHAcrlong] = ACTIONS(4891), - [anon_sym_BSLASHACRlong] = ACTIONS(4891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), - [anon_sym_BSLASHacrfull] = ACTIONS(4891), - [anon_sym_BSLASHAcrfull] = ACTIONS(4891), - [anon_sym_BSLASHACRfull] = ACTIONS(4891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), - [anon_sym_BSLASHacs] = ACTIONS(4891), - [anon_sym_BSLASHAcs] = ACTIONS(4891), - [anon_sym_BSLASHacsp] = ACTIONS(4891), - [anon_sym_BSLASHAcsp] = ACTIONS(4891), - [anon_sym_BSLASHacl] = ACTIONS(4891), - [anon_sym_BSLASHAcl] = ACTIONS(4891), - [anon_sym_BSLASHaclp] = ACTIONS(4891), - [anon_sym_BSLASHAclp] = ACTIONS(4891), - [anon_sym_BSLASHacf] = ACTIONS(4891), - [anon_sym_BSLASHAcf] = ACTIONS(4891), - [anon_sym_BSLASHacfp] = ACTIONS(4891), - [anon_sym_BSLASHAcfp] = ACTIONS(4891), - [anon_sym_BSLASHac] = ACTIONS(4891), - [anon_sym_BSLASHAc] = ACTIONS(4891), - [anon_sym_BSLASHacp] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), - [anon_sym_BSLASHcolor] = ACTIONS(4891), - [anon_sym_BSLASHcolorbox] = ACTIONS(4891), - [anon_sym_BSLASHtextcolor] = ACTIONS(4891), - [anon_sym_BSLASHpagecolor] = ACTIONS(4891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), - [anon_sym_BSLASHtext] = ACTIONS(4891), - [anon_sym_BSLASHintertext] = ACTIONS(4891), - [anon_sym_shortintertext] = ACTIONS(4891), + [sym_command_name] = ACTIONS(4970), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_BSLASHpart] = ACTIONS(4970), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddpart] = ACTIONS(4970), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHchapter] = ACTIONS(4970), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddchap] = ACTIONS(4970), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsection] = ACTIONS(4970), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddsec] = ACTIONS(4970), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHparagraph] = ACTIONS(4970), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4970), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHitem] = ACTIONS(4970), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [sym_word] = ACTIONS(4970), + [sym_placeholder] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4968), + [anon_sym_BSLASHbegin] = ACTIONS(4970), + [anon_sym_BSLASHusepackage] = ACTIONS(4970), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4970), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4970), + [anon_sym_BSLASHinclude] = ACTIONS(4970), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4970), + [anon_sym_BSLASHinput] = ACTIONS(4970), + [anon_sym_BSLASHsubfile] = ACTIONS(4970), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4970), + [anon_sym_BSLASHbibliography] = ACTIONS(4970), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4970), + [anon_sym_BSLASHincludesvg] = ACTIONS(4970), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4970), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4970), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4970), + [anon_sym_BSLASHimport] = ACTIONS(4970), + [anon_sym_BSLASHsubimport] = ACTIONS(4970), + [anon_sym_BSLASHinputfrom] = ACTIONS(4970), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4970), + [anon_sym_BSLASHincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHcaption] = ACTIONS(4970), + [anon_sym_BSLASHcite] = ACTIONS(4970), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCite] = ACTIONS(4970), + [anon_sym_BSLASHnocite] = ACTIONS(4970), + [anon_sym_BSLASHcitet] = ACTIONS(4970), + [anon_sym_BSLASHcitep] = ACTIONS(4970), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteauthor] = ACTIONS(4970), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4970), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitetitle] = ACTIONS(4970), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteyear] = ACTIONS(4970), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitedate] = ACTIONS(4970), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteurl] = ACTIONS(4970), + [anon_sym_BSLASHfullcite] = ACTIONS(4970), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4970), + [anon_sym_BSLASHcitealt] = ACTIONS(4970), + [anon_sym_BSLASHcitealp] = ACTIONS(4970), + [anon_sym_BSLASHcitetext] = ACTIONS(4970), + [anon_sym_BSLASHparencite] = ACTIONS(4970), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHParencite] = ACTIONS(4970), + [anon_sym_BSLASHfootcite] = ACTIONS(4970), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4970), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4970), + [anon_sym_BSLASHtextcite] = ACTIONS(4970), + [anon_sym_BSLASHTextcite] = ACTIONS(4970), + [anon_sym_BSLASHsmartcite] = ACTIONS(4970), + [anon_sym_BSLASHSmartcite] = ACTIONS(4970), + [anon_sym_BSLASHsupercite] = ACTIONS(4970), + [anon_sym_BSLASHautocite] = ACTIONS(4970), + [anon_sym_BSLASHAutocite] = ACTIONS(4970), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHvolcite] = ACTIONS(4970), + [anon_sym_BSLASHVolcite] = ACTIONS(4970), + [anon_sym_BSLASHpvolcite] = ACTIONS(4970), + [anon_sym_BSLASHPvolcite] = ACTIONS(4970), + [anon_sym_BSLASHfvolcite] = ACTIONS(4970), + [anon_sym_BSLASHftvolcite] = ACTIONS(4970), + [anon_sym_BSLASHsvolcite] = ACTIONS(4970), + [anon_sym_BSLASHSvolcite] = ACTIONS(4970), + [anon_sym_BSLASHtvolcite] = ACTIONS(4970), + [anon_sym_BSLASHTvolcite] = ACTIONS(4970), + [anon_sym_BSLASHavolcite] = ACTIONS(4970), + [anon_sym_BSLASHAvolcite] = ACTIONS(4970), + [anon_sym_BSLASHnotecite] = ACTIONS(4970), + [anon_sym_BSLASHNotecite] = ACTIONS(4970), + [anon_sym_BSLASHpnotecite] = ACTIONS(4970), + [anon_sym_BSLASHPnotecite] = ACTIONS(4970), + [anon_sym_BSLASHfnotecite] = ACTIONS(4970), + [anon_sym_BSLASHlabel] = ACTIONS(4970), + [anon_sym_BSLASHref] = ACTIONS(4970), + [anon_sym_BSLASHeqref] = ACTIONS(4970), + [anon_sym_BSLASHvref] = ACTIONS(4970), + [anon_sym_BSLASHVref] = ACTIONS(4970), + [anon_sym_BSLASHautoref] = ACTIONS(4970), + [anon_sym_BSLASHpageref] = ACTIONS(4970), + [anon_sym_BSLASHcref] = ACTIONS(4970), + [anon_sym_BSLASHCref] = ACTIONS(4970), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnameCref] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHlabelcref] = ACTIONS(4970), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCrefrange] = ACTIONS(4970), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnewlabel] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4970), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4970), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4970), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdef] = ACTIONS(4970), + [anon_sym_BSLASHlet] = ACTIONS(4970), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4970), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4970), + [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(4970), + [anon_sym_BSLASHacrshort] = ACTIONS(4970), + [anon_sym_BSLASHAcrshort] = ACTIONS(4970), + [anon_sym_BSLASHACRshort] = ACTIONS(4970), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4970), + [anon_sym_BSLASHacrlong] = ACTIONS(4970), + [anon_sym_BSLASHAcrlong] = ACTIONS(4970), + [anon_sym_BSLASHACRlong] = ACTIONS(4970), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4970), + [anon_sym_BSLASHacrfull] = ACTIONS(4970), + [anon_sym_BSLASHAcrfull] = ACTIONS(4970), + [anon_sym_BSLASHACRfull] = ACTIONS(4970), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4970), + [anon_sym_BSLASHacs] = ACTIONS(4970), + [anon_sym_BSLASHAcs] = ACTIONS(4970), + [anon_sym_BSLASHacsp] = ACTIONS(4970), + [anon_sym_BSLASHAcsp] = ACTIONS(4970), + [anon_sym_BSLASHacl] = ACTIONS(4970), + [anon_sym_BSLASHAcl] = ACTIONS(4970), + [anon_sym_BSLASHaclp] = ACTIONS(4970), + [anon_sym_BSLASHAclp] = ACTIONS(4970), + [anon_sym_BSLASHacf] = ACTIONS(4970), + [anon_sym_BSLASHAcf] = ACTIONS(4970), + [anon_sym_BSLASHacfp] = ACTIONS(4970), + [anon_sym_BSLASHAcfp] = ACTIONS(4970), + [anon_sym_BSLASHac] = ACTIONS(4970), + [anon_sym_BSLASHAc] = ACTIONS(4970), + [anon_sym_BSLASHacp] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4970), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4970), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4970), + [anon_sym_BSLASHcolor] = ACTIONS(4970), + [anon_sym_BSLASHcolorbox] = ACTIONS(4970), + [anon_sym_BSLASHtextcolor] = ACTIONS(4970), + [anon_sym_BSLASHpagecolor] = ACTIONS(4970), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4970), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4970), + [anon_sym_BSLASHtext] = ACTIONS(4970), + [anon_sym_BSLASHintertext] = ACTIONS(4970), + [anon_sym_shortintertext] = ACTIONS(4970), }, [933] = { - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_BSLASHpart] = ACTIONS(5285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddpart] = ACTIONS(5285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHchapter] = ACTIONS(5285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddchap] = ACTIONS(5285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsection] = ACTIONS(5285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddsec] = ACTIONS(5285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHparagraph] = ACTIONS(5285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHitem] = ACTIONS(5285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASHbegin] = ACTIONS(5285), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_BSLASHpart] = ACTIONS(5364), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddpart] = ACTIONS(5364), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHchapter] = ACTIONS(5364), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddchap] = ACTIONS(5364), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsection] = ACTIONS(5364), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddsec] = ACTIONS(5364), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHparagraph] = ACTIONS(5364), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5364), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHitem] = ACTIONS(5364), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASHbegin] = ACTIONS(5364), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [934] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_BSLASHpart] = ACTIONS(5289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddpart] = ACTIONS(5289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHchapter] = ACTIONS(5289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddchap] = ACTIONS(5289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsection] = ACTIONS(5289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddsec] = ACTIONS(5289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHparagraph] = ACTIONS(5289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHitem] = ACTIONS(5289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASHbegin] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_BSLASHpart] = ACTIONS(5368), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddpart] = ACTIONS(5368), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHchapter] = ACTIONS(5368), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddchap] = ACTIONS(5368), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsection] = ACTIONS(5368), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddsec] = ACTIONS(5368), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHparagraph] = ACTIONS(5368), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5368), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHitem] = ACTIONS(5368), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASHbegin] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [935] = { - [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(5293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), - [anon_sym_BSLASHaddpart] = ACTIONS(5293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_BSLASHpart] = ACTIONS(5372), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddpart] = ACTIONS(5372), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHchapter] = ACTIONS(5372), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddchap] = ACTIONS(5372), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsection] = ACTIONS(5372), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddsec] = ACTIONS(5372), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHparagraph] = ACTIONS(5372), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5372), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHitem] = ACTIONS(5372), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASHbegin] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [936] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_BSLASHpart] = ACTIONS(5297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddpart] = ACTIONS(5297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHchapter] = ACTIONS(5297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddchap] = ACTIONS(5297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsection] = ACTIONS(5297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddsec] = ACTIONS(5297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHparagraph] = ACTIONS(5297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHitem] = ACTIONS(5297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASHbegin] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_BSLASHpart] = ACTIONS(5376), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddpart] = ACTIONS(5376), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHchapter] = ACTIONS(5376), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddchap] = ACTIONS(5376), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsection] = ACTIONS(5376), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddsec] = ACTIONS(5376), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHparagraph] = ACTIONS(5376), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5376), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHitem] = ACTIONS(5376), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASHbegin] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [937] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_BSLASHpart] = ACTIONS(5301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddpart] = ACTIONS(5301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHchapter] = ACTIONS(5301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddchap] = ACTIONS(5301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsection] = ACTIONS(5301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddsec] = ACTIONS(5301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHparagraph] = ACTIONS(5301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHitem] = ACTIONS(5301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASHbegin] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_BSLASHpart] = ACTIONS(5380), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddpart] = ACTIONS(5380), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHchapter] = ACTIONS(5380), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddchap] = ACTIONS(5380), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsection] = ACTIONS(5380), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddsec] = ACTIONS(5380), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHparagraph] = ACTIONS(5380), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5380), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHitem] = ACTIONS(5380), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASHbegin] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [938] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_BSLASHpart] = ACTIONS(5144), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddpart] = ACTIONS(5144), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHchapter] = ACTIONS(5144), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddchap] = ACTIONS(5144), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsection] = ACTIONS(5144), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddsec] = ACTIONS(5144), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHparagraph] = ACTIONS(5144), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5144), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHitem] = ACTIONS(5144), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASHbegin] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [939] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_BSLASHpart] = ACTIONS(5152), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddpart] = ACTIONS(5152), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHchapter] = ACTIONS(5152), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddchap] = ACTIONS(5152), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsection] = ACTIONS(5152), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddsec] = ACTIONS(5152), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHparagraph] = ACTIONS(5152), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5152), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHitem] = ACTIONS(5152), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASHbegin] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [940] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_BSLASHpart] = ACTIONS(4963), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddpart] = ACTIONS(4963), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHchapter] = ACTIONS(4963), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddchap] = ACTIONS(4963), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsection] = ACTIONS(4963), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddsec] = ACTIONS(4963), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHparagraph] = ACTIONS(4963), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHitem] = ACTIONS(4963), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASHbegin] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_BSLASHpart] = ACTIONS(5042), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddpart] = ACTIONS(5042), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHchapter] = ACTIONS(5042), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddchap] = ACTIONS(5042), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsection] = ACTIONS(5042), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddsec] = ACTIONS(5042), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHparagraph] = ACTIONS(5042), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5042), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHitem] = ACTIONS(5042), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASHbegin] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [941] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_BSLASHpart] = ACTIONS(5384), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddpart] = ACTIONS(5384), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHchapter] = ACTIONS(5384), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddchap] = ACTIONS(5384), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsection] = ACTIONS(5384), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddsec] = ACTIONS(5384), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHparagraph] = ACTIONS(5384), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5384), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHitem] = ACTIONS(5384), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASHbegin] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [942] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_BSLASHpart] = ACTIONS(5300), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddpart] = ACTIONS(5300), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHchapter] = ACTIONS(5300), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddchap] = ACTIONS(5300), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsection] = ACTIONS(5300), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddsec] = ACTIONS(5300), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHparagraph] = ACTIONS(5300), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5300), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHitem] = ACTIONS(5300), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASHbegin] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [943] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_BSLASHpart] = ACTIONS(4897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddpart] = ACTIONS(4897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHchapter] = ACTIONS(4897), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddchap] = ACTIONS(4897), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsection] = ACTIONS(4897), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddsec] = ACTIONS(4897), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHparagraph] = ACTIONS(4897), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHitem] = ACTIONS(4897), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASHbegin] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_BSLASHpart] = ACTIONS(4976), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddpart] = ACTIONS(4976), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHchapter] = ACTIONS(4976), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddchap] = ACTIONS(4976), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsection] = ACTIONS(4976), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddsec] = ACTIONS(4976), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHparagraph] = ACTIONS(4976), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4976), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHitem] = ACTIONS(4976), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASHbegin] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [944] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_BSLASHpart] = ACTIONS(4901), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddpart] = ACTIONS(4901), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHchapter] = ACTIONS(4901), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddchap] = ACTIONS(4901), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsection] = ACTIONS(4901), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddsec] = ACTIONS(4901), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHparagraph] = ACTIONS(4901), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHitem] = ACTIONS(4901), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASHbegin] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_BSLASHpart] = ACTIONS(4980), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddpart] = ACTIONS(4980), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHchapter] = ACTIONS(4980), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddchap] = ACTIONS(4980), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsection] = ACTIONS(4980), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddsec] = ACTIONS(4980), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHparagraph] = ACTIONS(4980), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4980), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHitem] = ACTIONS(4980), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASHbegin] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [945] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_BSLASHpart] = ACTIONS(4905), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddpart] = ACTIONS(4905), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHchapter] = ACTIONS(4905), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddchap] = ACTIONS(4905), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsection] = ACTIONS(4905), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddsec] = ACTIONS(4905), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHparagraph] = ACTIONS(4905), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHitem] = ACTIONS(4905), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASHbegin] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_BSLASHpart] = ACTIONS(4984), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddpart] = ACTIONS(4984), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHchapter] = ACTIONS(4984), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddchap] = ACTIONS(4984), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsection] = ACTIONS(4984), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddsec] = ACTIONS(4984), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHparagraph] = ACTIONS(4984), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4984), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHitem] = ACTIONS(4984), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASHbegin] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [946] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_BSLASHpart] = ACTIONS(4988), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddpart] = ACTIONS(4988), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHchapter] = ACTIONS(4988), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddchap] = ACTIONS(4988), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsection] = ACTIONS(4988), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddsec] = ACTIONS(4988), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHparagraph] = ACTIONS(4988), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4988), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHitem] = ACTIONS(4988), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASHbegin] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [947] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_BSLASHpart] = ACTIONS(4913), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddpart] = ACTIONS(4913), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHchapter] = ACTIONS(4913), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddchap] = ACTIONS(4913), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsection] = ACTIONS(4913), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddsec] = ACTIONS(4913), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHparagraph] = ACTIONS(4913), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHitem] = ACTIONS(4913), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASHbegin] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_BSLASHpart] = ACTIONS(4992), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddpart] = ACTIONS(4992), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHchapter] = ACTIONS(4992), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddchap] = ACTIONS(4992), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsection] = ACTIONS(4992), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddsec] = ACTIONS(4992), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHparagraph] = ACTIONS(4992), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4992), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHitem] = ACTIONS(4992), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASHbegin] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [948] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_BSLASHpart] = ACTIONS(4917), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddpart] = ACTIONS(4917), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHchapter] = ACTIONS(4917), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddchap] = ACTIONS(4917), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsection] = ACTIONS(4917), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddsec] = ACTIONS(4917), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHparagraph] = ACTIONS(4917), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHitem] = ACTIONS(4917), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASHbegin] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_BSLASHpart] = ACTIONS(4996), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddpart] = ACTIONS(4996), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHchapter] = ACTIONS(4996), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddchap] = ACTIONS(4996), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsection] = ACTIONS(4996), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddsec] = ACTIONS(4996), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHparagraph] = ACTIONS(4996), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4996), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHitem] = ACTIONS(4996), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASHbegin] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [949] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_BSLASHpart] = ACTIONS(5008), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddpart] = ACTIONS(5008), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHchapter] = ACTIONS(5008), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddchap] = ACTIONS(5008), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsection] = ACTIONS(5008), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddsec] = ACTIONS(5008), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHparagraph] = ACTIONS(5008), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5008), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHitem] = ACTIONS(5008), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASHbegin] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [950] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_BSLASHpart] = ACTIONS(4939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddpart] = ACTIONS(4939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHchapter] = ACTIONS(4939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddchap] = ACTIONS(4939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsection] = ACTIONS(4939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddsec] = ACTIONS(4939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHparagraph] = ACTIONS(4939), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHitem] = ACTIONS(4939), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASHbegin] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_BSLASHpart] = ACTIONS(5018), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddpart] = ACTIONS(5018), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHchapter] = ACTIONS(5018), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddchap] = ACTIONS(5018), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsection] = ACTIONS(5018), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddsec] = ACTIONS(5018), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHparagraph] = ACTIONS(5018), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5018), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHitem] = ACTIONS(5018), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASHbegin] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [951] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_BSLASHpart] = ACTIONS(5392), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddpart] = ACTIONS(5392), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHchapter] = ACTIONS(5392), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddchap] = ACTIONS(5392), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsection] = ACTIONS(5392), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddsec] = ACTIONS(5392), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHparagraph] = ACTIONS(5392), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5392), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHitem] = ACTIONS(5392), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASHbegin] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [952] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_BSLASHpart] = ACTIONS(5038), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddpart] = ACTIONS(5038), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHchapter] = ACTIONS(5038), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddchap] = ACTIONS(5038), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsection] = ACTIONS(5038), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddsec] = ACTIONS(5038), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHparagraph] = ACTIONS(5038), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5038), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHitem] = ACTIONS(5038), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASHbegin] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [953] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(5084), + [anon_sym_BSLASHpart] = ACTIONS(5086), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddpart] = ACTIONS(5086), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHchapter] = ACTIONS(5086), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddchap] = ACTIONS(5086), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsection] = ACTIONS(5086), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddsec] = ACTIONS(5086), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHparagraph] = ACTIONS(5086), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5086), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHitem] = ACTIONS(5086), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASHbegin] = ACTIONS(5086), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [954] = { - [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(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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [955] = { - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_RPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_RPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [956] = { - [sym_command_name] = ACTIONS(4891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_BSLASHpart] = ACTIONS(4891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddpart] = ACTIONS(4891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHchapter] = ACTIONS(4891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddchap] = ACTIONS(4891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsection] = ACTIONS(4891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddsec] = ACTIONS(4891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHparagraph] = ACTIONS(4891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHitem] = ACTIONS(4891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4889), - [sym_word] = ACTIONS(4891), - [sym_placeholder] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym__] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_COLON] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4889), - [anon_sym_BSLASHbegin] = ACTIONS(4891), - [anon_sym_BSLASHusepackage] = ACTIONS(4891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), - [anon_sym_BSLASHinclude] = ACTIONS(4891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), - [anon_sym_BSLASHinput] = ACTIONS(4891), - [anon_sym_BSLASHsubfile] = ACTIONS(4891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), - [anon_sym_BSLASHbibliography] = ACTIONS(4891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), - [anon_sym_BSLASHincludesvg] = ACTIONS(4891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), - [anon_sym_BSLASHimport] = ACTIONS(4891), - [anon_sym_BSLASHsubimport] = ACTIONS(4891), - [anon_sym_BSLASHinputfrom] = ACTIONS(4891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), - [anon_sym_BSLASHincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHcaption] = ACTIONS(4891), - [anon_sym_BSLASHcite] = ACTIONS(4891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCite] = ACTIONS(4891), - [anon_sym_BSLASHnocite] = ACTIONS(4891), - [anon_sym_BSLASHcitet] = ACTIONS(4891), - [anon_sym_BSLASHcitep] = ACTIONS(4891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteauthor] = ACTIONS(4891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitetitle] = ACTIONS(4891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteyear] = ACTIONS(4891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitedate] = ACTIONS(4891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteurl] = ACTIONS(4891), - [anon_sym_BSLASHfullcite] = ACTIONS(4891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), - [anon_sym_BSLASHcitealt] = ACTIONS(4891), - [anon_sym_BSLASHcitealp] = ACTIONS(4891), - [anon_sym_BSLASHcitetext] = ACTIONS(4891), - [anon_sym_BSLASHparencite] = ACTIONS(4891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHParencite] = ACTIONS(4891), - [anon_sym_BSLASHfootcite] = ACTIONS(4891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), - [anon_sym_BSLASHtextcite] = ACTIONS(4891), - [anon_sym_BSLASHTextcite] = ACTIONS(4891), - [anon_sym_BSLASHsmartcite] = ACTIONS(4891), - [anon_sym_BSLASHSmartcite] = ACTIONS(4891), - [anon_sym_BSLASHsupercite] = ACTIONS(4891), - [anon_sym_BSLASHautocite] = ACTIONS(4891), - [anon_sym_BSLASHAutocite] = ACTIONS(4891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHvolcite] = ACTIONS(4891), - [anon_sym_BSLASHVolcite] = ACTIONS(4891), - [anon_sym_BSLASHpvolcite] = ACTIONS(4891), - [anon_sym_BSLASHPvolcite] = ACTIONS(4891), - [anon_sym_BSLASHfvolcite] = ACTIONS(4891), - [anon_sym_BSLASHftvolcite] = ACTIONS(4891), - [anon_sym_BSLASHsvolcite] = ACTIONS(4891), - [anon_sym_BSLASHSvolcite] = ACTIONS(4891), - [anon_sym_BSLASHtvolcite] = ACTIONS(4891), - [anon_sym_BSLASHTvolcite] = ACTIONS(4891), - [anon_sym_BSLASHavolcite] = ACTIONS(4891), - [anon_sym_BSLASHAvolcite] = ACTIONS(4891), - [anon_sym_BSLASHnotecite] = ACTIONS(4891), - [anon_sym_BSLASHNotecite] = ACTIONS(4891), - [anon_sym_BSLASHpnotecite] = ACTIONS(4891), - [anon_sym_BSLASHPnotecite] = ACTIONS(4891), - [anon_sym_BSLASHfnotecite] = ACTIONS(4891), - [anon_sym_BSLASHlabel] = ACTIONS(4891), - [anon_sym_BSLASHref] = ACTIONS(4891), - [anon_sym_BSLASHeqref] = ACTIONS(4891), - [anon_sym_BSLASHvref] = ACTIONS(4891), - [anon_sym_BSLASHVref] = ACTIONS(4891), - [anon_sym_BSLASHautoref] = ACTIONS(4891), - [anon_sym_BSLASHpageref] = ACTIONS(4891), - [anon_sym_BSLASHcref] = ACTIONS(4891), - [anon_sym_BSLASHCref] = ACTIONS(4891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnameCref] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHlabelcref] = ACTIONS(4891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCrefrange] = ACTIONS(4891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnewlabel] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), - [anon_sym_BSLASHdef] = ACTIONS(4891), - [anon_sym_BSLASHlet] = ACTIONS(4891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), - [anon_sym_BSLASHgls] = ACTIONS(4891), - [anon_sym_BSLASHGls] = ACTIONS(4891), - [anon_sym_BSLASHGLS] = ACTIONS(4891), - [anon_sym_BSLASHglspl] = ACTIONS(4891), - [anon_sym_BSLASHGlspl] = ACTIONS(4891), - [anon_sym_BSLASHGLSpl] = ACTIONS(4891), - [anon_sym_BSLASHglsdisp] = ACTIONS(4891), - [anon_sym_BSLASHglslink] = ACTIONS(4891), - [anon_sym_BSLASHglstext] = ACTIONS(4891), - [anon_sym_BSLASHGlstext] = ACTIONS(4891), - [anon_sym_BSLASHGLStext] = ACTIONS(4891), - [anon_sym_BSLASHglsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), - [anon_sym_BSLASHglsplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSplural] = ACTIONS(4891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHglsname] = ACTIONS(4891), - [anon_sym_BSLASHGlsname] = ACTIONS(4891), - [anon_sym_BSLASHGLSname] = ACTIONS(4891), - [anon_sym_BSLASHglssymbol] = ACTIONS(4891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), - [anon_sym_BSLASHglsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), - [anon_sym_BSLASHglsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), - [anon_sym_BSLASHglsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), - [anon_sym_BSLASHglsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), - [anon_sym_BSLASHglsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), - [anon_sym_BSLASHnewacronym] = ACTIONS(4891), - [anon_sym_BSLASHacrshort] = ACTIONS(4891), - [anon_sym_BSLASHAcrshort] = ACTIONS(4891), - [anon_sym_BSLASHACRshort] = ACTIONS(4891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), - [anon_sym_BSLASHacrlong] = ACTIONS(4891), - [anon_sym_BSLASHAcrlong] = ACTIONS(4891), - [anon_sym_BSLASHACRlong] = ACTIONS(4891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), - [anon_sym_BSLASHacrfull] = ACTIONS(4891), - [anon_sym_BSLASHAcrfull] = ACTIONS(4891), - [anon_sym_BSLASHACRfull] = ACTIONS(4891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), - [anon_sym_BSLASHacs] = ACTIONS(4891), - [anon_sym_BSLASHAcs] = ACTIONS(4891), - [anon_sym_BSLASHacsp] = ACTIONS(4891), - [anon_sym_BSLASHAcsp] = ACTIONS(4891), - [anon_sym_BSLASHacl] = ACTIONS(4891), - [anon_sym_BSLASHAcl] = ACTIONS(4891), - [anon_sym_BSLASHaclp] = ACTIONS(4891), - [anon_sym_BSLASHAclp] = ACTIONS(4891), - [anon_sym_BSLASHacf] = ACTIONS(4891), - [anon_sym_BSLASHAcf] = ACTIONS(4891), - [anon_sym_BSLASHacfp] = ACTIONS(4891), - [anon_sym_BSLASHAcfp] = ACTIONS(4891), - [anon_sym_BSLASHac] = ACTIONS(4891), - [anon_sym_BSLASHAc] = ACTIONS(4891), - [anon_sym_BSLASHacp] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), - [anon_sym_BSLASHcolor] = ACTIONS(4891), - [anon_sym_BSLASHcolorbox] = ACTIONS(4891), - [anon_sym_BSLASHtextcolor] = ACTIONS(4891), - [anon_sym_BSLASHpagecolor] = ACTIONS(4891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), - [anon_sym_BSLASHtext] = ACTIONS(4891), - [anon_sym_BSLASHintertext] = ACTIONS(4891), - [anon_sym_shortintertext] = ACTIONS(4891), + [sym_command_name] = ACTIONS(4970), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_BSLASHpart] = ACTIONS(4970), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddpart] = ACTIONS(4970), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHchapter] = ACTIONS(4970), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddchap] = ACTIONS(4970), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsection] = ACTIONS(4970), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddsec] = ACTIONS(4970), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHparagraph] = ACTIONS(4970), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4970), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHitem] = ACTIONS(4970), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [sym_word] = ACTIONS(4970), + [sym_placeholder] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4968), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4968), + [anon_sym_BSLASHbegin] = ACTIONS(4970), + [anon_sym_BSLASHusepackage] = ACTIONS(4970), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4970), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4970), + [anon_sym_BSLASHinclude] = ACTIONS(4970), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4970), + [anon_sym_BSLASHinput] = ACTIONS(4970), + [anon_sym_BSLASHsubfile] = ACTIONS(4970), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4970), + [anon_sym_BSLASHbibliography] = ACTIONS(4970), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4970), + [anon_sym_BSLASHincludesvg] = ACTIONS(4970), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4970), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4970), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4970), + [anon_sym_BSLASHimport] = ACTIONS(4970), + [anon_sym_BSLASHsubimport] = ACTIONS(4970), + [anon_sym_BSLASHinputfrom] = ACTIONS(4970), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4970), + [anon_sym_BSLASHincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHcaption] = ACTIONS(4970), + [anon_sym_BSLASHcite] = ACTIONS(4970), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCite] = ACTIONS(4970), + [anon_sym_BSLASHnocite] = ACTIONS(4970), + [anon_sym_BSLASHcitet] = ACTIONS(4970), + [anon_sym_BSLASHcitep] = ACTIONS(4970), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteauthor] = ACTIONS(4970), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4970), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitetitle] = ACTIONS(4970), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteyear] = ACTIONS(4970), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitedate] = ACTIONS(4970), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteurl] = ACTIONS(4970), + [anon_sym_BSLASHfullcite] = ACTIONS(4970), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4970), + [anon_sym_BSLASHcitealt] = ACTIONS(4970), + [anon_sym_BSLASHcitealp] = ACTIONS(4970), + [anon_sym_BSLASHcitetext] = ACTIONS(4970), + [anon_sym_BSLASHparencite] = ACTIONS(4970), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHParencite] = ACTIONS(4970), + [anon_sym_BSLASHfootcite] = ACTIONS(4970), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4970), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4970), + [anon_sym_BSLASHtextcite] = ACTIONS(4970), + [anon_sym_BSLASHTextcite] = ACTIONS(4970), + [anon_sym_BSLASHsmartcite] = ACTIONS(4970), + [anon_sym_BSLASHSmartcite] = ACTIONS(4970), + [anon_sym_BSLASHsupercite] = ACTIONS(4970), + [anon_sym_BSLASHautocite] = ACTIONS(4970), + [anon_sym_BSLASHAutocite] = ACTIONS(4970), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHvolcite] = ACTIONS(4970), + [anon_sym_BSLASHVolcite] = ACTIONS(4970), + [anon_sym_BSLASHpvolcite] = ACTIONS(4970), + [anon_sym_BSLASHPvolcite] = ACTIONS(4970), + [anon_sym_BSLASHfvolcite] = ACTIONS(4970), + [anon_sym_BSLASHftvolcite] = ACTIONS(4970), + [anon_sym_BSLASHsvolcite] = ACTIONS(4970), + [anon_sym_BSLASHSvolcite] = ACTIONS(4970), + [anon_sym_BSLASHtvolcite] = ACTIONS(4970), + [anon_sym_BSLASHTvolcite] = ACTIONS(4970), + [anon_sym_BSLASHavolcite] = ACTIONS(4970), + [anon_sym_BSLASHAvolcite] = ACTIONS(4970), + [anon_sym_BSLASHnotecite] = ACTIONS(4970), + [anon_sym_BSLASHNotecite] = ACTIONS(4970), + [anon_sym_BSLASHpnotecite] = ACTIONS(4970), + [anon_sym_BSLASHPnotecite] = ACTIONS(4970), + [anon_sym_BSLASHfnotecite] = ACTIONS(4970), + [anon_sym_BSLASHlabel] = ACTIONS(4970), + [anon_sym_BSLASHref] = ACTIONS(4970), + [anon_sym_BSLASHeqref] = ACTIONS(4970), + [anon_sym_BSLASHvref] = ACTIONS(4970), + [anon_sym_BSLASHVref] = ACTIONS(4970), + [anon_sym_BSLASHautoref] = ACTIONS(4970), + [anon_sym_BSLASHpageref] = ACTIONS(4970), + [anon_sym_BSLASHcref] = ACTIONS(4970), + [anon_sym_BSLASHCref] = ACTIONS(4970), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnameCref] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHlabelcref] = ACTIONS(4970), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCrefrange] = ACTIONS(4970), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnewlabel] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4970), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4970), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4970), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdef] = ACTIONS(4970), + [anon_sym_BSLASHlet] = ACTIONS(4970), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4970), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4970), + [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(4970), + [anon_sym_BSLASHacrshort] = ACTIONS(4970), + [anon_sym_BSLASHAcrshort] = ACTIONS(4970), + [anon_sym_BSLASHACRshort] = ACTIONS(4970), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4970), + [anon_sym_BSLASHacrlong] = ACTIONS(4970), + [anon_sym_BSLASHAcrlong] = ACTIONS(4970), + [anon_sym_BSLASHACRlong] = ACTIONS(4970), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4970), + [anon_sym_BSLASHacrfull] = ACTIONS(4970), + [anon_sym_BSLASHAcrfull] = ACTIONS(4970), + [anon_sym_BSLASHACRfull] = ACTIONS(4970), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4970), + [anon_sym_BSLASHacs] = ACTIONS(4970), + [anon_sym_BSLASHAcs] = ACTIONS(4970), + [anon_sym_BSLASHacsp] = ACTIONS(4970), + [anon_sym_BSLASHAcsp] = ACTIONS(4970), + [anon_sym_BSLASHacl] = ACTIONS(4970), + [anon_sym_BSLASHAcl] = ACTIONS(4970), + [anon_sym_BSLASHaclp] = ACTIONS(4970), + [anon_sym_BSLASHAclp] = ACTIONS(4970), + [anon_sym_BSLASHacf] = ACTIONS(4970), + [anon_sym_BSLASHAcf] = ACTIONS(4970), + [anon_sym_BSLASHacfp] = ACTIONS(4970), + [anon_sym_BSLASHAcfp] = ACTIONS(4970), + [anon_sym_BSLASHac] = ACTIONS(4970), + [anon_sym_BSLASHAc] = ACTIONS(4970), + [anon_sym_BSLASHacp] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4970), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4970), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4970), + [anon_sym_BSLASHcolor] = ACTIONS(4970), + [anon_sym_BSLASHcolorbox] = ACTIONS(4970), + [anon_sym_BSLASHtextcolor] = ACTIONS(4970), + [anon_sym_BSLASHpagecolor] = ACTIONS(4970), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4970), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4970), + [anon_sym_BSLASHtext] = ACTIONS(4970), + [anon_sym_BSLASHintertext] = ACTIONS(4970), + [anon_sym_shortintertext] = ACTIONS(4970), }, [957] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_BSLASHpart] = ACTIONS(5128), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddpart] = ACTIONS(5128), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHchapter] = ACTIONS(5128), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddchap] = ACTIONS(5128), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsection] = ACTIONS(5128), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddsec] = ACTIONS(5128), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHparagraph] = ACTIONS(5128), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5128), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHitem] = ACTIONS(5128), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASHbegin] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [958] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5061), - [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), + [sym_command_name] = ACTIONS(5140), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5138), + [anon_sym_RBRACK] = ACTIONS(5138), + [anon_sym_COMMA] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_BSLASHpart] = ACTIONS(5140), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddpart] = ACTIONS(5140), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHchapter] = ACTIONS(5140), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddchap] = ACTIONS(5140), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsection] = ACTIONS(5140), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddsec] = ACTIONS(5140), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHparagraph] = ACTIONS(5140), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5140), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHitem] = ACTIONS(5140), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5138), + [sym_word] = ACTIONS(5140), + [sym_placeholder] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym__] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5140), + [anon_sym_BANG] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_SQUOTE] = ACTIONS(5140), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5138), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5138), + [anon_sym_BSLASHbegin] = ACTIONS(5140), + [anon_sym_BSLASHusepackage] = ACTIONS(5140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5140), + [anon_sym_BSLASHinclude] = ACTIONS(5140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5140), + [anon_sym_BSLASHinput] = ACTIONS(5140), + [anon_sym_BSLASHsubfile] = ACTIONS(5140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5140), + [anon_sym_BSLASHbibliography] = ACTIONS(5140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5140), + [anon_sym_BSLASHincludesvg] = ACTIONS(5140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5140), + [anon_sym_BSLASHimport] = ACTIONS(5140), + [anon_sym_BSLASHsubimport] = ACTIONS(5140), + [anon_sym_BSLASHinputfrom] = ACTIONS(5140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5140), + [anon_sym_BSLASHincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHcaption] = ACTIONS(5140), + [anon_sym_BSLASHcite] = ACTIONS(5140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCite] = ACTIONS(5140), + [anon_sym_BSLASHnocite] = ACTIONS(5140), + [anon_sym_BSLASHcitet] = ACTIONS(5140), + [anon_sym_BSLASHcitep] = ACTIONS(5140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteauthor] = ACTIONS(5140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitetitle] = ACTIONS(5140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteyear] = ACTIONS(5140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitedate] = ACTIONS(5140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteurl] = ACTIONS(5140), + [anon_sym_BSLASHfullcite] = ACTIONS(5140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5140), + [anon_sym_BSLASHcitealt] = ACTIONS(5140), + [anon_sym_BSLASHcitealp] = ACTIONS(5140), + [anon_sym_BSLASHcitetext] = ACTIONS(5140), + [anon_sym_BSLASHparencite] = ACTIONS(5140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHParencite] = ACTIONS(5140), + [anon_sym_BSLASHfootcite] = ACTIONS(5140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5140), + [anon_sym_BSLASHtextcite] = ACTIONS(5140), + [anon_sym_BSLASHTextcite] = ACTIONS(5140), + [anon_sym_BSLASHsmartcite] = ACTIONS(5140), + [anon_sym_BSLASHSmartcite] = ACTIONS(5140), + [anon_sym_BSLASHsupercite] = ACTIONS(5140), + [anon_sym_BSLASHautocite] = ACTIONS(5140), + [anon_sym_BSLASHAutocite] = ACTIONS(5140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHvolcite] = ACTIONS(5140), + [anon_sym_BSLASHVolcite] = ACTIONS(5140), + [anon_sym_BSLASHpvolcite] = ACTIONS(5140), + [anon_sym_BSLASHPvolcite] = ACTIONS(5140), + [anon_sym_BSLASHfvolcite] = ACTIONS(5140), + [anon_sym_BSLASHftvolcite] = ACTIONS(5140), + [anon_sym_BSLASHsvolcite] = ACTIONS(5140), + [anon_sym_BSLASHSvolcite] = ACTIONS(5140), + [anon_sym_BSLASHtvolcite] = ACTIONS(5140), + [anon_sym_BSLASHTvolcite] = ACTIONS(5140), + [anon_sym_BSLASHavolcite] = ACTIONS(5140), + [anon_sym_BSLASHAvolcite] = ACTIONS(5140), + [anon_sym_BSLASHnotecite] = ACTIONS(5140), + [anon_sym_BSLASHNotecite] = ACTIONS(5140), + [anon_sym_BSLASHpnotecite] = ACTIONS(5140), + [anon_sym_BSLASHPnotecite] = ACTIONS(5140), + [anon_sym_BSLASHfnotecite] = ACTIONS(5140), + [anon_sym_BSLASHlabel] = ACTIONS(5140), + [anon_sym_BSLASHref] = ACTIONS(5140), + [anon_sym_BSLASHeqref] = ACTIONS(5140), + [anon_sym_BSLASHvref] = ACTIONS(5140), + [anon_sym_BSLASHVref] = ACTIONS(5140), + [anon_sym_BSLASHautoref] = ACTIONS(5140), + [anon_sym_BSLASHpageref] = ACTIONS(5140), + [anon_sym_BSLASHcref] = ACTIONS(5140), + [anon_sym_BSLASHCref] = ACTIONS(5140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnameCref] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHlabelcref] = ACTIONS(5140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCrefrange] = ACTIONS(5140), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnewlabel] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5140), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5140), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdef] = ACTIONS(5140), + [anon_sym_BSLASHlet] = ACTIONS(5140), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5140), + [anon_sym_BSLASHgls] = ACTIONS(5140), + [anon_sym_BSLASHGls] = ACTIONS(5140), + [anon_sym_BSLASHGLS] = ACTIONS(5140), + [anon_sym_BSLASHglspl] = ACTIONS(5140), + [anon_sym_BSLASHGlspl] = ACTIONS(5140), + [anon_sym_BSLASHGLSpl] = ACTIONS(5140), + [anon_sym_BSLASHglsdisp] = ACTIONS(5140), + [anon_sym_BSLASHglslink] = ACTIONS(5140), + [anon_sym_BSLASHglstext] = ACTIONS(5140), + [anon_sym_BSLASHGlstext] = ACTIONS(5140), + [anon_sym_BSLASHGLStext] = ACTIONS(5140), + [anon_sym_BSLASHglsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5140), + [anon_sym_BSLASHglsplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSplural] = ACTIONS(5140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHglsname] = ACTIONS(5140), + [anon_sym_BSLASHGlsname] = ACTIONS(5140), + [anon_sym_BSLASHGLSname] = ACTIONS(5140), + [anon_sym_BSLASHglssymbol] = ACTIONS(5140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5140), + [anon_sym_BSLASHglsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5140), + [anon_sym_BSLASHglsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5140), + [anon_sym_BSLASHglsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5140), + [anon_sym_BSLASHglsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5140), + [anon_sym_BSLASHglsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5140), + [anon_sym_BSLASHnewacronym] = ACTIONS(5140), + [anon_sym_BSLASHacrshort] = ACTIONS(5140), + [anon_sym_BSLASHAcrshort] = ACTIONS(5140), + [anon_sym_BSLASHACRshort] = ACTIONS(5140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5140), + [anon_sym_BSLASHacrlong] = ACTIONS(5140), + [anon_sym_BSLASHAcrlong] = ACTIONS(5140), + [anon_sym_BSLASHACRlong] = ACTIONS(5140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5140), + [anon_sym_BSLASHacrfull] = ACTIONS(5140), + [anon_sym_BSLASHAcrfull] = ACTIONS(5140), + [anon_sym_BSLASHACRfull] = ACTIONS(5140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5140), + [anon_sym_BSLASHacs] = ACTIONS(5140), + [anon_sym_BSLASHAcs] = ACTIONS(5140), + [anon_sym_BSLASHacsp] = ACTIONS(5140), + [anon_sym_BSLASHAcsp] = ACTIONS(5140), + [anon_sym_BSLASHacl] = ACTIONS(5140), + [anon_sym_BSLASHAcl] = ACTIONS(5140), + [anon_sym_BSLASHaclp] = ACTIONS(5140), + [anon_sym_BSLASHAclp] = ACTIONS(5140), + [anon_sym_BSLASHacf] = ACTIONS(5140), + [anon_sym_BSLASHAcf] = ACTIONS(5140), + [anon_sym_BSLASHacfp] = ACTIONS(5140), + [anon_sym_BSLASHAcfp] = ACTIONS(5140), + [anon_sym_BSLASHac] = ACTIONS(5140), + [anon_sym_BSLASHAc] = ACTIONS(5140), + [anon_sym_BSLASHacp] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5140), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5140), + [anon_sym_BSLASHcolor] = ACTIONS(5140), + [anon_sym_BSLASHcolorbox] = ACTIONS(5140), + [anon_sym_BSLASHtextcolor] = ACTIONS(5140), + [anon_sym_BSLASHpagecolor] = ACTIONS(5140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5140), + [anon_sym_BSLASHtext] = ACTIONS(5140), + [anon_sym_BSLASHintertext] = ACTIONS(5140), + [anon_sym_shortintertext] = ACTIONS(5140), }, [959] = { - [sym_command_name] = ACTIONS(4883), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_RBRACK] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_BSLASHpart] = ACTIONS(4883), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddpart] = ACTIONS(4883), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHchapter] = ACTIONS(4883), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddchap] = ACTIONS(4883), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsection] = ACTIONS(4883), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddsec] = ACTIONS(4883), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHparagraph] = ACTIONS(4883), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHitem] = ACTIONS(4883), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4881), - [sym_word] = ACTIONS(4883), - [sym_placeholder] = ACTIONS(4881), - [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(4881), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4881), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), - [anon_sym_BSLASHbegin] = ACTIONS(4883), - [anon_sym_BSLASHusepackage] = ACTIONS(4883), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), - [anon_sym_BSLASHinclude] = ACTIONS(4883), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), - [anon_sym_BSLASHinput] = ACTIONS(4883), - [anon_sym_BSLASHsubfile] = ACTIONS(4883), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), - [anon_sym_BSLASHbibliography] = ACTIONS(4883), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), - [anon_sym_BSLASHincludesvg] = ACTIONS(4883), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), - [anon_sym_BSLASHimport] = ACTIONS(4883), - [anon_sym_BSLASHsubimport] = ACTIONS(4883), - [anon_sym_BSLASHinputfrom] = ACTIONS(4883), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), - [anon_sym_BSLASHincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHcaption] = ACTIONS(4883), - [anon_sym_BSLASHcite] = ACTIONS(4883), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCite] = ACTIONS(4883), - [anon_sym_BSLASHnocite] = ACTIONS(4883), - [anon_sym_BSLASHcitet] = ACTIONS(4883), - [anon_sym_BSLASHcitep] = ACTIONS(4883), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteauthor] = ACTIONS(4883), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitetitle] = ACTIONS(4883), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteyear] = ACTIONS(4883), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitedate] = ACTIONS(4883), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteurl] = ACTIONS(4883), - [anon_sym_BSLASHfullcite] = ACTIONS(4883), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), - [anon_sym_BSLASHcitealt] = ACTIONS(4883), - [anon_sym_BSLASHcitealp] = ACTIONS(4883), - [anon_sym_BSLASHcitetext] = ACTIONS(4883), - [anon_sym_BSLASHparencite] = ACTIONS(4883), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHParencite] = ACTIONS(4883), - [anon_sym_BSLASHfootcite] = ACTIONS(4883), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), - [anon_sym_BSLASHtextcite] = ACTIONS(4883), - [anon_sym_BSLASHTextcite] = ACTIONS(4883), - [anon_sym_BSLASHsmartcite] = ACTIONS(4883), - [anon_sym_BSLASHSmartcite] = ACTIONS(4883), - [anon_sym_BSLASHsupercite] = ACTIONS(4883), - [anon_sym_BSLASHautocite] = ACTIONS(4883), - [anon_sym_BSLASHAutocite] = ACTIONS(4883), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHvolcite] = ACTIONS(4883), - [anon_sym_BSLASHVolcite] = ACTIONS(4883), - [anon_sym_BSLASHpvolcite] = ACTIONS(4883), - [anon_sym_BSLASHPvolcite] = ACTIONS(4883), - [anon_sym_BSLASHfvolcite] = ACTIONS(4883), - [anon_sym_BSLASHftvolcite] = ACTIONS(4883), - [anon_sym_BSLASHsvolcite] = ACTIONS(4883), - [anon_sym_BSLASHSvolcite] = ACTIONS(4883), - [anon_sym_BSLASHtvolcite] = ACTIONS(4883), - [anon_sym_BSLASHTvolcite] = ACTIONS(4883), - [anon_sym_BSLASHavolcite] = ACTIONS(4883), - [anon_sym_BSLASHAvolcite] = ACTIONS(4883), - [anon_sym_BSLASHnotecite] = ACTIONS(4883), - [anon_sym_BSLASHNotecite] = ACTIONS(4883), - [anon_sym_BSLASHpnotecite] = ACTIONS(4883), - [anon_sym_BSLASHPnotecite] = ACTIONS(4883), - [anon_sym_BSLASHfnotecite] = ACTIONS(4883), - [anon_sym_BSLASHlabel] = ACTIONS(4883), - [anon_sym_BSLASHref] = ACTIONS(4883), - [anon_sym_BSLASHeqref] = ACTIONS(4883), - [anon_sym_BSLASHvref] = ACTIONS(4883), - [anon_sym_BSLASHVref] = ACTIONS(4883), - [anon_sym_BSLASHautoref] = ACTIONS(4883), - [anon_sym_BSLASHpageref] = ACTIONS(4883), - [anon_sym_BSLASHcref] = ACTIONS(4883), - [anon_sym_BSLASHCref] = ACTIONS(4883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnameCref] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHlabelcref] = ACTIONS(4883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCrefrange] = ACTIONS(4883), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnewlabel] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), - [anon_sym_BSLASHdef] = ACTIONS(4883), - [anon_sym_BSLASHlet] = ACTIONS(4883), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), - [anon_sym_BSLASHgls] = ACTIONS(4883), - [anon_sym_BSLASHGls] = ACTIONS(4883), - [anon_sym_BSLASHGLS] = ACTIONS(4883), - [anon_sym_BSLASHglspl] = ACTIONS(4883), - [anon_sym_BSLASHGlspl] = ACTIONS(4883), - [anon_sym_BSLASHGLSpl] = ACTIONS(4883), - [anon_sym_BSLASHglsdisp] = ACTIONS(4883), - [anon_sym_BSLASHglslink] = ACTIONS(4883), - [anon_sym_BSLASHglstext] = ACTIONS(4883), - [anon_sym_BSLASHGlstext] = ACTIONS(4883), - [anon_sym_BSLASHGLStext] = ACTIONS(4883), - [anon_sym_BSLASHglsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), - [anon_sym_BSLASHglsplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSplural] = ACTIONS(4883), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHglsname] = ACTIONS(4883), - [anon_sym_BSLASHGlsname] = ACTIONS(4883), - [anon_sym_BSLASHGLSname] = ACTIONS(4883), - [anon_sym_BSLASHglssymbol] = ACTIONS(4883), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), - [anon_sym_BSLASHglsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), - [anon_sym_BSLASHglsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), - [anon_sym_BSLASHglsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), - [anon_sym_BSLASHglsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), - [anon_sym_BSLASHglsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), - [anon_sym_BSLASHnewacronym] = ACTIONS(4883), - [anon_sym_BSLASHacrshort] = ACTIONS(4883), - [anon_sym_BSLASHAcrshort] = ACTIONS(4883), - [anon_sym_BSLASHACRshort] = ACTIONS(4883), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), - [anon_sym_BSLASHacrlong] = ACTIONS(4883), - [anon_sym_BSLASHAcrlong] = ACTIONS(4883), - [anon_sym_BSLASHACRlong] = ACTIONS(4883), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), - [anon_sym_BSLASHacrfull] = ACTIONS(4883), - [anon_sym_BSLASHAcrfull] = ACTIONS(4883), - [anon_sym_BSLASHACRfull] = ACTIONS(4883), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), - [anon_sym_BSLASHacs] = ACTIONS(4883), - [anon_sym_BSLASHAcs] = ACTIONS(4883), - [anon_sym_BSLASHacsp] = ACTIONS(4883), - [anon_sym_BSLASHAcsp] = ACTIONS(4883), - [anon_sym_BSLASHacl] = ACTIONS(4883), - [anon_sym_BSLASHAcl] = ACTIONS(4883), - [anon_sym_BSLASHaclp] = ACTIONS(4883), - [anon_sym_BSLASHAclp] = ACTIONS(4883), - [anon_sym_BSLASHacf] = ACTIONS(4883), - [anon_sym_BSLASHAcf] = ACTIONS(4883), - [anon_sym_BSLASHacfp] = ACTIONS(4883), - [anon_sym_BSLASHAcfp] = ACTIONS(4883), - [anon_sym_BSLASHac] = ACTIONS(4883), - [anon_sym_BSLASHAc] = ACTIONS(4883), - [anon_sym_BSLASHacp] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), - [anon_sym_BSLASHcolor] = ACTIONS(4883), - [anon_sym_BSLASHcolorbox] = ACTIONS(4883), - [anon_sym_BSLASHtextcolor] = ACTIONS(4883), - [anon_sym_BSLASHpagecolor] = ACTIONS(4883), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), - [anon_sym_BSLASHtext] = ACTIONS(4883), - [anon_sym_BSLASHintertext] = ACTIONS(4883), - [anon_sym_shortintertext] = ACTIONS(4883), + [sym_command_name] = ACTIONS(4962), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_BSLASHpart] = ACTIONS(4962), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddpart] = ACTIONS(4962), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHchapter] = ACTIONS(4962), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddchap] = ACTIONS(4962), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsection] = ACTIONS(4962), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddsec] = ACTIONS(4962), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHparagraph] = ACTIONS(4962), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4962), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHitem] = ACTIONS(4962), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [sym_word] = ACTIONS(4962), + [sym_placeholder] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4960), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4960), + [anon_sym_BSLASHbegin] = ACTIONS(4962), + [anon_sym_BSLASHusepackage] = ACTIONS(4962), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4962), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4962), + [anon_sym_BSLASHinclude] = ACTIONS(4962), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4962), + [anon_sym_BSLASHinput] = ACTIONS(4962), + [anon_sym_BSLASHsubfile] = ACTIONS(4962), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4962), + [anon_sym_BSLASHbibliography] = ACTIONS(4962), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4962), + [anon_sym_BSLASHincludesvg] = ACTIONS(4962), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4962), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4962), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4962), + [anon_sym_BSLASHimport] = ACTIONS(4962), + [anon_sym_BSLASHsubimport] = ACTIONS(4962), + [anon_sym_BSLASHinputfrom] = ACTIONS(4962), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4962), + [anon_sym_BSLASHincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHcaption] = ACTIONS(4962), + [anon_sym_BSLASHcite] = ACTIONS(4962), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCite] = ACTIONS(4962), + [anon_sym_BSLASHnocite] = ACTIONS(4962), + [anon_sym_BSLASHcitet] = ACTIONS(4962), + [anon_sym_BSLASHcitep] = ACTIONS(4962), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteauthor] = ACTIONS(4962), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4962), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitetitle] = ACTIONS(4962), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteyear] = ACTIONS(4962), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitedate] = ACTIONS(4962), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteurl] = ACTIONS(4962), + [anon_sym_BSLASHfullcite] = ACTIONS(4962), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4962), + [anon_sym_BSLASHcitealt] = ACTIONS(4962), + [anon_sym_BSLASHcitealp] = ACTIONS(4962), + [anon_sym_BSLASHcitetext] = ACTIONS(4962), + [anon_sym_BSLASHparencite] = ACTIONS(4962), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHParencite] = ACTIONS(4962), + [anon_sym_BSLASHfootcite] = ACTIONS(4962), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4962), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4962), + [anon_sym_BSLASHtextcite] = ACTIONS(4962), + [anon_sym_BSLASHTextcite] = ACTIONS(4962), + [anon_sym_BSLASHsmartcite] = ACTIONS(4962), + [anon_sym_BSLASHSmartcite] = ACTIONS(4962), + [anon_sym_BSLASHsupercite] = ACTIONS(4962), + [anon_sym_BSLASHautocite] = ACTIONS(4962), + [anon_sym_BSLASHAutocite] = ACTIONS(4962), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHvolcite] = ACTIONS(4962), + [anon_sym_BSLASHVolcite] = ACTIONS(4962), + [anon_sym_BSLASHpvolcite] = ACTIONS(4962), + [anon_sym_BSLASHPvolcite] = ACTIONS(4962), + [anon_sym_BSLASHfvolcite] = ACTIONS(4962), + [anon_sym_BSLASHftvolcite] = ACTIONS(4962), + [anon_sym_BSLASHsvolcite] = ACTIONS(4962), + [anon_sym_BSLASHSvolcite] = ACTIONS(4962), + [anon_sym_BSLASHtvolcite] = ACTIONS(4962), + [anon_sym_BSLASHTvolcite] = ACTIONS(4962), + [anon_sym_BSLASHavolcite] = ACTIONS(4962), + [anon_sym_BSLASHAvolcite] = ACTIONS(4962), + [anon_sym_BSLASHnotecite] = ACTIONS(4962), + [anon_sym_BSLASHNotecite] = ACTIONS(4962), + [anon_sym_BSLASHpnotecite] = ACTIONS(4962), + [anon_sym_BSLASHPnotecite] = ACTIONS(4962), + [anon_sym_BSLASHfnotecite] = ACTIONS(4962), + [anon_sym_BSLASHlabel] = ACTIONS(4962), + [anon_sym_BSLASHref] = ACTIONS(4962), + [anon_sym_BSLASHeqref] = ACTIONS(4962), + [anon_sym_BSLASHvref] = ACTIONS(4962), + [anon_sym_BSLASHVref] = ACTIONS(4962), + [anon_sym_BSLASHautoref] = ACTIONS(4962), + [anon_sym_BSLASHpageref] = ACTIONS(4962), + [anon_sym_BSLASHcref] = ACTIONS(4962), + [anon_sym_BSLASHCref] = ACTIONS(4962), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnameCref] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHlabelcref] = ACTIONS(4962), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCrefrange] = ACTIONS(4962), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnewlabel] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4962), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4962), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4962), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdef] = ACTIONS(4962), + [anon_sym_BSLASHlet] = ACTIONS(4962), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4962), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4962), + [anon_sym_BSLASHgls] = ACTIONS(4962), + [anon_sym_BSLASHGls] = ACTIONS(4962), + [anon_sym_BSLASHGLS] = ACTIONS(4962), + [anon_sym_BSLASHglspl] = ACTIONS(4962), + [anon_sym_BSLASHGlspl] = ACTIONS(4962), + [anon_sym_BSLASHGLSpl] = ACTIONS(4962), + [anon_sym_BSLASHglsdisp] = ACTIONS(4962), + [anon_sym_BSLASHglslink] = ACTIONS(4962), + [anon_sym_BSLASHglstext] = ACTIONS(4962), + [anon_sym_BSLASHGlstext] = ACTIONS(4962), + [anon_sym_BSLASHGLStext] = ACTIONS(4962), + [anon_sym_BSLASHglsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4962), + [anon_sym_BSLASHglsplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSplural] = ACTIONS(4962), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHglsname] = ACTIONS(4962), + [anon_sym_BSLASHGlsname] = ACTIONS(4962), + [anon_sym_BSLASHGLSname] = ACTIONS(4962), + [anon_sym_BSLASHglssymbol] = ACTIONS(4962), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4962), + [anon_sym_BSLASHglsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4962), + [anon_sym_BSLASHglsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4962), + [anon_sym_BSLASHglsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4962), + [anon_sym_BSLASHglsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4962), + [anon_sym_BSLASHglsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4962), + [anon_sym_BSLASHnewacronym] = ACTIONS(4962), + [anon_sym_BSLASHacrshort] = ACTIONS(4962), + [anon_sym_BSLASHAcrshort] = ACTIONS(4962), + [anon_sym_BSLASHACRshort] = ACTIONS(4962), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4962), + [anon_sym_BSLASHacrlong] = ACTIONS(4962), + [anon_sym_BSLASHAcrlong] = ACTIONS(4962), + [anon_sym_BSLASHACRlong] = ACTIONS(4962), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4962), + [anon_sym_BSLASHacrfull] = ACTIONS(4962), + [anon_sym_BSLASHAcrfull] = ACTIONS(4962), + [anon_sym_BSLASHACRfull] = ACTIONS(4962), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4962), + [anon_sym_BSLASHacs] = ACTIONS(4962), + [anon_sym_BSLASHAcs] = ACTIONS(4962), + [anon_sym_BSLASHacsp] = ACTIONS(4962), + [anon_sym_BSLASHAcsp] = ACTIONS(4962), + [anon_sym_BSLASHacl] = ACTIONS(4962), + [anon_sym_BSLASHAcl] = ACTIONS(4962), + [anon_sym_BSLASHaclp] = ACTIONS(4962), + [anon_sym_BSLASHAclp] = ACTIONS(4962), + [anon_sym_BSLASHacf] = ACTIONS(4962), + [anon_sym_BSLASHAcf] = ACTIONS(4962), + [anon_sym_BSLASHacfp] = ACTIONS(4962), + [anon_sym_BSLASHAcfp] = ACTIONS(4962), + [anon_sym_BSLASHac] = ACTIONS(4962), + [anon_sym_BSLASHAc] = ACTIONS(4962), + [anon_sym_BSLASHacp] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4962), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4962), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4962), + [anon_sym_BSLASHcolor] = ACTIONS(4962), + [anon_sym_BSLASHcolorbox] = ACTIONS(4962), + [anon_sym_BSLASHtextcolor] = ACTIONS(4962), + [anon_sym_BSLASHpagecolor] = ACTIONS(4962), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4962), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4962), + [anon_sym_BSLASHtext] = ACTIONS(4962), + [anon_sym_BSLASHintertext] = ACTIONS(4962), + [anon_sym_shortintertext] = ACTIONS(4962), }, [960] = { - [sym_command_name] = ACTIONS(5069), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), - [anon_sym_BSLASHtext] = ACTIONS(5069), - [anon_sym_BSLASHintertext] = ACTIONS(5069), - [anon_sym_shortintertext] = ACTIONS(5069), + [sym_command_name] = ACTIONS(5148), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5146), + [anon_sym_RBRACK] = ACTIONS(5146), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_BSLASHpart] = ACTIONS(5148), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddpart] = ACTIONS(5148), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHchapter] = ACTIONS(5148), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddchap] = ACTIONS(5148), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsection] = ACTIONS(5148), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddsec] = ACTIONS(5148), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHparagraph] = ACTIONS(5148), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5148), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHitem] = ACTIONS(5148), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5146), + [sym_word] = ACTIONS(5148), + [sym_placeholder] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym__] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5148), + [anon_sym_BANG] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_SQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5146), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5146), + [anon_sym_BSLASHbegin] = ACTIONS(5148), + [anon_sym_BSLASHusepackage] = ACTIONS(5148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5148), + [anon_sym_BSLASHinclude] = ACTIONS(5148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5148), + [anon_sym_BSLASHinput] = ACTIONS(5148), + [anon_sym_BSLASHsubfile] = ACTIONS(5148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5148), + [anon_sym_BSLASHbibliography] = ACTIONS(5148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5148), + [anon_sym_BSLASHincludesvg] = ACTIONS(5148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5148), + [anon_sym_BSLASHimport] = ACTIONS(5148), + [anon_sym_BSLASHsubimport] = ACTIONS(5148), + [anon_sym_BSLASHinputfrom] = ACTIONS(5148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5148), + [anon_sym_BSLASHincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHcaption] = ACTIONS(5148), + [anon_sym_BSLASHcite] = ACTIONS(5148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCite] = ACTIONS(5148), + [anon_sym_BSLASHnocite] = ACTIONS(5148), + [anon_sym_BSLASHcitet] = ACTIONS(5148), + [anon_sym_BSLASHcitep] = ACTIONS(5148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteauthor] = ACTIONS(5148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitetitle] = ACTIONS(5148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteyear] = ACTIONS(5148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitedate] = ACTIONS(5148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteurl] = ACTIONS(5148), + [anon_sym_BSLASHfullcite] = ACTIONS(5148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5148), + [anon_sym_BSLASHcitealt] = ACTIONS(5148), + [anon_sym_BSLASHcitealp] = ACTIONS(5148), + [anon_sym_BSLASHcitetext] = ACTIONS(5148), + [anon_sym_BSLASHparencite] = ACTIONS(5148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHParencite] = ACTIONS(5148), + [anon_sym_BSLASHfootcite] = ACTIONS(5148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5148), + [anon_sym_BSLASHtextcite] = ACTIONS(5148), + [anon_sym_BSLASHTextcite] = ACTIONS(5148), + [anon_sym_BSLASHsmartcite] = ACTIONS(5148), + [anon_sym_BSLASHSmartcite] = ACTIONS(5148), + [anon_sym_BSLASHsupercite] = ACTIONS(5148), + [anon_sym_BSLASHautocite] = ACTIONS(5148), + [anon_sym_BSLASHAutocite] = ACTIONS(5148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHvolcite] = ACTIONS(5148), + [anon_sym_BSLASHVolcite] = ACTIONS(5148), + [anon_sym_BSLASHpvolcite] = ACTIONS(5148), + [anon_sym_BSLASHPvolcite] = ACTIONS(5148), + [anon_sym_BSLASHfvolcite] = ACTIONS(5148), + [anon_sym_BSLASHftvolcite] = ACTIONS(5148), + [anon_sym_BSLASHsvolcite] = ACTIONS(5148), + [anon_sym_BSLASHSvolcite] = ACTIONS(5148), + [anon_sym_BSLASHtvolcite] = ACTIONS(5148), + [anon_sym_BSLASHTvolcite] = ACTIONS(5148), + [anon_sym_BSLASHavolcite] = ACTIONS(5148), + [anon_sym_BSLASHAvolcite] = ACTIONS(5148), + [anon_sym_BSLASHnotecite] = ACTIONS(5148), + [anon_sym_BSLASHNotecite] = ACTIONS(5148), + [anon_sym_BSLASHpnotecite] = ACTIONS(5148), + [anon_sym_BSLASHPnotecite] = ACTIONS(5148), + [anon_sym_BSLASHfnotecite] = ACTIONS(5148), + [anon_sym_BSLASHlabel] = ACTIONS(5148), + [anon_sym_BSLASHref] = ACTIONS(5148), + [anon_sym_BSLASHeqref] = ACTIONS(5148), + [anon_sym_BSLASHvref] = ACTIONS(5148), + [anon_sym_BSLASHVref] = ACTIONS(5148), + [anon_sym_BSLASHautoref] = ACTIONS(5148), + [anon_sym_BSLASHpageref] = ACTIONS(5148), + [anon_sym_BSLASHcref] = ACTIONS(5148), + [anon_sym_BSLASHCref] = ACTIONS(5148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnameCref] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHlabelcref] = ACTIONS(5148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCrefrange] = ACTIONS(5148), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnewlabel] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5148), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5148), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdef] = ACTIONS(5148), + [anon_sym_BSLASHlet] = ACTIONS(5148), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5148), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5148), + [anon_sym_BSLASHgls] = ACTIONS(5148), + [anon_sym_BSLASHGls] = ACTIONS(5148), + [anon_sym_BSLASHGLS] = ACTIONS(5148), + [anon_sym_BSLASHglspl] = ACTIONS(5148), + [anon_sym_BSLASHGlspl] = ACTIONS(5148), + [anon_sym_BSLASHGLSpl] = ACTIONS(5148), + [anon_sym_BSLASHglsdisp] = ACTIONS(5148), + [anon_sym_BSLASHglslink] = ACTIONS(5148), + [anon_sym_BSLASHglstext] = ACTIONS(5148), + [anon_sym_BSLASHGlstext] = ACTIONS(5148), + [anon_sym_BSLASHGLStext] = ACTIONS(5148), + [anon_sym_BSLASHglsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5148), + [anon_sym_BSLASHglsplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSplural] = ACTIONS(5148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHglsname] = ACTIONS(5148), + [anon_sym_BSLASHGlsname] = ACTIONS(5148), + [anon_sym_BSLASHGLSname] = ACTIONS(5148), + [anon_sym_BSLASHglssymbol] = ACTIONS(5148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5148), + [anon_sym_BSLASHglsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5148), + [anon_sym_BSLASHglsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5148), + [anon_sym_BSLASHglsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5148), + [anon_sym_BSLASHglsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5148), + [anon_sym_BSLASHglsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5148), + [anon_sym_BSLASHnewacronym] = ACTIONS(5148), + [anon_sym_BSLASHacrshort] = ACTIONS(5148), + [anon_sym_BSLASHAcrshort] = ACTIONS(5148), + [anon_sym_BSLASHACRshort] = ACTIONS(5148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5148), + [anon_sym_BSLASHacrlong] = ACTIONS(5148), + [anon_sym_BSLASHAcrlong] = ACTIONS(5148), + [anon_sym_BSLASHACRlong] = ACTIONS(5148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5148), + [anon_sym_BSLASHacrfull] = ACTIONS(5148), + [anon_sym_BSLASHAcrfull] = ACTIONS(5148), + [anon_sym_BSLASHACRfull] = ACTIONS(5148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5148), + [anon_sym_BSLASHacs] = ACTIONS(5148), + [anon_sym_BSLASHAcs] = ACTIONS(5148), + [anon_sym_BSLASHacsp] = ACTIONS(5148), + [anon_sym_BSLASHAcsp] = ACTIONS(5148), + [anon_sym_BSLASHacl] = ACTIONS(5148), + [anon_sym_BSLASHAcl] = ACTIONS(5148), + [anon_sym_BSLASHaclp] = ACTIONS(5148), + [anon_sym_BSLASHAclp] = ACTIONS(5148), + [anon_sym_BSLASHacf] = ACTIONS(5148), + [anon_sym_BSLASHAcf] = ACTIONS(5148), + [anon_sym_BSLASHacfp] = ACTIONS(5148), + [anon_sym_BSLASHAcfp] = ACTIONS(5148), + [anon_sym_BSLASHac] = ACTIONS(5148), + [anon_sym_BSLASHAc] = ACTIONS(5148), + [anon_sym_BSLASHacp] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5148), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5148), + [anon_sym_BSLASHcolor] = ACTIONS(5148), + [anon_sym_BSLASHcolorbox] = ACTIONS(5148), + [anon_sym_BSLASHtextcolor] = ACTIONS(5148), + [anon_sym_BSLASHpagecolor] = ACTIONS(5148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5148), + [anon_sym_BSLASHtext] = ACTIONS(5148), + [anon_sym_BSLASHintertext] = ACTIONS(5148), + [anon_sym_shortintertext] = ACTIONS(5148), }, [961] = { - [sym_command_name] = ACTIONS(5077), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - [anon_sym_BSLASHtext] = ACTIONS(5077), - [anon_sym_BSLASHintertext] = ACTIONS(5077), - [anon_sym_shortintertext] = ACTIONS(5077), + [sym_command_name] = ACTIONS(5156), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_BSLASHpart] = ACTIONS(5156), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddpart] = ACTIONS(5156), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHchapter] = ACTIONS(5156), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddchap] = ACTIONS(5156), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsection] = ACTIONS(5156), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddsec] = ACTIONS(5156), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHparagraph] = ACTIONS(5156), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5156), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHitem] = ACTIONS(5156), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5154), + [sym_word] = ACTIONS(5156), + [sym_placeholder] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym__] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_BANG] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_SQUOTE] = ACTIONS(5156), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5154), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5154), + [anon_sym_BSLASHbegin] = ACTIONS(5156), + [anon_sym_BSLASHusepackage] = ACTIONS(5156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5156), + [anon_sym_BSLASHinclude] = ACTIONS(5156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5156), + [anon_sym_BSLASHinput] = ACTIONS(5156), + [anon_sym_BSLASHsubfile] = ACTIONS(5156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5156), + [anon_sym_BSLASHbibliography] = ACTIONS(5156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5156), + [anon_sym_BSLASHincludesvg] = ACTIONS(5156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5156), + [anon_sym_BSLASHimport] = ACTIONS(5156), + [anon_sym_BSLASHsubimport] = ACTIONS(5156), + [anon_sym_BSLASHinputfrom] = ACTIONS(5156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5156), + [anon_sym_BSLASHincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHcaption] = ACTIONS(5156), + [anon_sym_BSLASHcite] = ACTIONS(5156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCite] = ACTIONS(5156), + [anon_sym_BSLASHnocite] = ACTIONS(5156), + [anon_sym_BSLASHcitet] = ACTIONS(5156), + [anon_sym_BSLASHcitep] = ACTIONS(5156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteauthor] = ACTIONS(5156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitetitle] = ACTIONS(5156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteyear] = ACTIONS(5156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitedate] = ACTIONS(5156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteurl] = ACTIONS(5156), + [anon_sym_BSLASHfullcite] = ACTIONS(5156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5156), + [anon_sym_BSLASHcitealt] = ACTIONS(5156), + [anon_sym_BSLASHcitealp] = ACTIONS(5156), + [anon_sym_BSLASHcitetext] = ACTIONS(5156), + [anon_sym_BSLASHparencite] = ACTIONS(5156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHParencite] = ACTIONS(5156), + [anon_sym_BSLASHfootcite] = ACTIONS(5156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5156), + [anon_sym_BSLASHtextcite] = ACTIONS(5156), + [anon_sym_BSLASHTextcite] = ACTIONS(5156), + [anon_sym_BSLASHsmartcite] = ACTIONS(5156), + [anon_sym_BSLASHSmartcite] = ACTIONS(5156), + [anon_sym_BSLASHsupercite] = ACTIONS(5156), + [anon_sym_BSLASHautocite] = ACTIONS(5156), + [anon_sym_BSLASHAutocite] = ACTIONS(5156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHvolcite] = ACTIONS(5156), + [anon_sym_BSLASHVolcite] = ACTIONS(5156), + [anon_sym_BSLASHpvolcite] = ACTIONS(5156), + [anon_sym_BSLASHPvolcite] = ACTIONS(5156), + [anon_sym_BSLASHfvolcite] = ACTIONS(5156), + [anon_sym_BSLASHftvolcite] = ACTIONS(5156), + [anon_sym_BSLASHsvolcite] = ACTIONS(5156), + [anon_sym_BSLASHSvolcite] = ACTIONS(5156), + [anon_sym_BSLASHtvolcite] = ACTIONS(5156), + [anon_sym_BSLASHTvolcite] = ACTIONS(5156), + [anon_sym_BSLASHavolcite] = ACTIONS(5156), + [anon_sym_BSLASHAvolcite] = ACTIONS(5156), + [anon_sym_BSLASHnotecite] = ACTIONS(5156), + [anon_sym_BSLASHNotecite] = ACTIONS(5156), + [anon_sym_BSLASHpnotecite] = ACTIONS(5156), + [anon_sym_BSLASHPnotecite] = ACTIONS(5156), + [anon_sym_BSLASHfnotecite] = ACTIONS(5156), + [anon_sym_BSLASHlabel] = ACTIONS(5156), + [anon_sym_BSLASHref] = ACTIONS(5156), + [anon_sym_BSLASHeqref] = ACTIONS(5156), + [anon_sym_BSLASHvref] = ACTIONS(5156), + [anon_sym_BSLASHVref] = ACTIONS(5156), + [anon_sym_BSLASHautoref] = ACTIONS(5156), + [anon_sym_BSLASHpageref] = ACTIONS(5156), + [anon_sym_BSLASHcref] = ACTIONS(5156), + [anon_sym_BSLASHCref] = ACTIONS(5156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnameCref] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHlabelcref] = ACTIONS(5156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCrefrange] = ACTIONS(5156), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnewlabel] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5156), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5156), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdef] = ACTIONS(5156), + [anon_sym_BSLASHlet] = ACTIONS(5156), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5156), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5156), + [anon_sym_BSLASHgls] = ACTIONS(5156), + [anon_sym_BSLASHGls] = ACTIONS(5156), + [anon_sym_BSLASHGLS] = ACTIONS(5156), + [anon_sym_BSLASHglspl] = ACTIONS(5156), + [anon_sym_BSLASHGlspl] = ACTIONS(5156), + [anon_sym_BSLASHGLSpl] = ACTIONS(5156), + [anon_sym_BSLASHglsdisp] = ACTIONS(5156), + [anon_sym_BSLASHglslink] = ACTIONS(5156), + [anon_sym_BSLASHglstext] = ACTIONS(5156), + [anon_sym_BSLASHGlstext] = ACTIONS(5156), + [anon_sym_BSLASHGLStext] = ACTIONS(5156), + [anon_sym_BSLASHglsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5156), + [anon_sym_BSLASHglsplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSplural] = ACTIONS(5156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHglsname] = ACTIONS(5156), + [anon_sym_BSLASHGlsname] = ACTIONS(5156), + [anon_sym_BSLASHGLSname] = ACTIONS(5156), + [anon_sym_BSLASHglssymbol] = ACTIONS(5156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5156), + [anon_sym_BSLASHglsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5156), + [anon_sym_BSLASHglsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5156), + [anon_sym_BSLASHglsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5156), + [anon_sym_BSLASHglsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5156), + [anon_sym_BSLASHglsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5156), + [anon_sym_BSLASHnewacronym] = ACTIONS(5156), + [anon_sym_BSLASHacrshort] = ACTIONS(5156), + [anon_sym_BSLASHAcrshort] = ACTIONS(5156), + [anon_sym_BSLASHACRshort] = ACTIONS(5156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5156), + [anon_sym_BSLASHacrlong] = ACTIONS(5156), + [anon_sym_BSLASHAcrlong] = ACTIONS(5156), + [anon_sym_BSLASHACRlong] = ACTIONS(5156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5156), + [anon_sym_BSLASHacrfull] = ACTIONS(5156), + [anon_sym_BSLASHAcrfull] = ACTIONS(5156), + [anon_sym_BSLASHACRfull] = ACTIONS(5156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5156), + [anon_sym_BSLASHacs] = ACTIONS(5156), + [anon_sym_BSLASHAcs] = ACTIONS(5156), + [anon_sym_BSLASHacsp] = ACTIONS(5156), + [anon_sym_BSLASHAcsp] = ACTIONS(5156), + [anon_sym_BSLASHacl] = ACTIONS(5156), + [anon_sym_BSLASHAcl] = ACTIONS(5156), + [anon_sym_BSLASHaclp] = ACTIONS(5156), + [anon_sym_BSLASHAclp] = ACTIONS(5156), + [anon_sym_BSLASHacf] = ACTIONS(5156), + [anon_sym_BSLASHAcf] = ACTIONS(5156), + [anon_sym_BSLASHacfp] = ACTIONS(5156), + [anon_sym_BSLASHAcfp] = ACTIONS(5156), + [anon_sym_BSLASHac] = ACTIONS(5156), + [anon_sym_BSLASHAc] = ACTIONS(5156), + [anon_sym_BSLASHacp] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5156), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5156), + [anon_sym_BSLASHcolor] = ACTIONS(5156), + [anon_sym_BSLASHcolorbox] = ACTIONS(5156), + [anon_sym_BSLASHtextcolor] = ACTIONS(5156), + [anon_sym_BSLASHpagecolor] = ACTIONS(5156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5156), + [anon_sym_BSLASHtext] = ACTIONS(5156), + [anon_sym_BSLASHintertext] = ACTIONS(5156), + [anon_sym_shortintertext] = ACTIONS(5156), }, [962] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5109), - [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), + [sym_command_name] = ACTIONS(5188), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_BSLASHpart] = ACTIONS(5188), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddpart] = ACTIONS(5188), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHchapter] = ACTIONS(5188), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddchap] = ACTIONS(5188), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsection] = ACTIONS(5188), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddsec] = ACTIONS(5188), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHparagraph] = ACTIONS(5188), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5188), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHitem] = ACTIONS(5188), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5186), + [sym_word] = ACTIONS(5188), + [sym_placeholder] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym__] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_BANG] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_SQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5186), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5186), + [anon_sym_BSLASHbegin] = ACTIONS(5188), + [anon_sym_BSLASHusepackage] = ACTIONS(5188), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5188), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5188), + [anon_sym_BSLASHinclude] = ACTIONS(5188), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5188), + [anon_sym_BSLASHinput] = ACTIONS(5188), + [anon_sym_BSLASHsubfile] = ACTIONS(5188), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5188), + [anon_sym_BSLASHbibliography] = ACTIONS(5188), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5188), + [anon_sym_BSLASHincludesvg] = ACTIONS(5188), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5188), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5188), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5188), + [anon_sym_BSLASHimport] = ACTIONS(5188), + [anon_sym_BSLASHsubimport] = ACTIONS(5188), + [anon_sym_BSLASHinputfrom] = ACTIONS(5188), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5188), + [anon_sym_BSLASHincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHcaption] = ACTIONS(5188), + [anon_sym_BSLASHcite] = ACTIONS(5188), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCite] = ACTIONS(5188), + [anon_sym_BSLASHnocite] = ACTIONS(5188), + [anon_sym_BSLASHcitet] = ACTIONS(5188), + [anon_sym_BSLASHcitep] = ACTIONS(5188), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteauthor] = ACTIONS(5188), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5188), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitetitle] = ACTIONS(5188), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteyear] = ACTIONS(5188), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitedate] = ACTIONS(5188), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteurl] = ACTIONS(5188), + [anon_sym_BSLASHfullcite] = ACTIONS(5188), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5188), + [anon_sym_BSLASHcitealt] = ACTIONS(5188), + [anon_sym_BSLASHcitealp] = ACTIONS(5188), + [anon_sym_BSLASHcitetext] = ACTIONS(5188), + [anon_sym_BSLASHparencite] = ACTIONS(5188), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHParencite] = ACTIONS(5188), + [anon_sym_BSLASHfootcite] = ACTIONS(5188), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5188), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5188), + [anon_sym_BSLASHtextcite] = ACTIONS(5188), + [anon_sym_BSLASHTextcite] = ACTIONS(5188), + [anon_sym_BSLASHsmartcite] = ACTIONS(5188), + [anon_sym_BSLASHSmartcite] = ACTIONS(5188), + [anon_sym_BSLASHsupercite] = ACTIONS(5188), + [anon_sym_BSLASHautocite] = ACTIONS(5188), + [anon_sym_BSLASHAutocite] = ACTIONS(5188), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHvolcite] = ACTIONS(5188), + [anon_sym_BSLASHVolcite] = ACTIONS(5188), + [anon_sym_BSLASHpvolcite] = ACTIONS(5188), + [anon_sym_BSLASHPvolcite] = ACTIONS(5188), + [anon_sym_BSLASHfvolcite] = ACTIONS(5188), + [anon_sym_BSLASHftvolcite] = ACTIONS(5188), + [anon_sym_BSLASHsvolcite] = ACTIONS(5188), + [anon_sym_BSLASHSvolcite] = ACTIONS(5188), + [anon_sym_BSLASHtvolcite] = ACTIONS(5188), + [anon_sym_BSLASHTvolcite] = ACTIONS(5188), + [anon_sym_BSLASHavolcite] = ACTIONS(5188), + [anon_sym_BSLASHAvolcite] = ACTIONS(5188), + [anon_sym_BSLASHnotecite] = ACTIONS(5188), + [anon_sym_BSLASHNotecite] = ACTIONS(5188), + [anon_sym_BSLASHpnotecite] = ACTIONS(5188), + [anon_sym_BSLASHPnotecite] = ACTIONS(5188), + [anon_sym_BSLASHfnotecite] = ACTIONS(5188), + [anon_sym_BSLASHlabel] = ACTIONS(5188), + [anon_sym_BSLASHref] = ACTIONS(5188), + [anon_sym_BSLASHeqref] = ACTIONS(5188), + [anon_sym_BSLASHvref] = ACTIONS(5188), + [anon_sym_BSLASHVref] = ACTIONS(5188), + [anon_sym_BSLASHautoref] = ACTIONS(5188), + [anon_sym_BSLASHpageref] = ACTIONS(5188), + [anon_sym_BSLASHcref] = ACTIONS(5188), + [anon_sym_BSLASHCref] = ACTIONS(5188), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnameCref] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHlabelcref] = ACTIONS(5188), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCrefrange] = ACTIONS(5188), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnewlabel] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5188), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5188), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5188), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdef] = ACTIONS(5188), + [anon_sym_BSLASHlet] = ACTIONS(5188), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5188), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5188), + [anon_sym_BSLASHgls] = ACTIONS(5188), + [anon_sym_BSLASHGls] = ACTIONS(5188), + [anon_sym_BSLASHGLS] = ACTIONS(5188), + [anon_sym_BSLASHglspl] = ACTIONS(5188), + [anon_sym_BSLASHGlspl] = ACTIONS(5188), + [anon_sym_BSLASHGLSpl] = ACTIONS(5188), + [anon_sym_BSLASHglsdisp] = ACTIONS(5188), + [anon_sym_BSLASHglslink] = ACTIONS(5188), + [anon_sym_BSLASHglstext] = ACTIONS(5188), + [anon_sym_BSLASHGlstext] = ACTIONS(5188), + [anon_sym_BSLASHGLStext] = ACTIONS(5188), + [anon_sym_BSLASHglsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5188), + [anon_sym_BSLASHglsplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSplural] = ACTIONS(5188), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHglsname] = ACTIONS(5188), + [anon_sym_BSLASHGlsname] = ACTIONS(5188), + [anon_sym_BSLASHGLSname] = ACTIONS(5188), + [anon_sym_BSLASHglssymbol] = ACTIONS(5188), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5188), + [anon_sym_BSLASHglsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5188), + [anon_sym_BSLASHglsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5188), + [anon_sym_BSLASHglsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5188), + [anon_sym_BSLASHglsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5188), + [anon_sym_BSLASHglsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5188), + [anon_sym_BSLASHnewacronym] = ACTIONS(5188), + [anon_sym_BSLASHacrshort] = ACTIONS(5188), + [anon_sym_BSLASHAcrshort] = ACTIONS(5188), + [anon_sym_BSLASHACRshort] = ACTIONS(5188), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5188), + [anon_sym_BSLASHacrlong] = ACTIONS(5188), + [anon_sym_BSLASHAcrlong] = ACTIONS(5188), + [anon_sym_BSLASHACRlong] = ACTIONS(5188), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5188), + [anon_sym_BSLASHacrfull] = ACTIONS(5188), + [anon_sym_BSLASHAcrfull] = ACTIONS(5188), + [anon_sym_BSLASHACRfull] = ACTIONS(5188), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5188), + [anon_sym_BSLASHacs] = ACTIONS(5188), + [anon_sym_BSLASHAcs] = ACTIONS(5188), + [anon_sym_BSLASHacsp] = ACTIONS(5188), + [anon_sym_BSLASHAcsp] = ACTIONS(5188), + [anon_sym_BSLASHacl] = ACTIONS(5188), + [anon_sym_BSLASHAcl] = ACTIONS(5188), + [anon_sym_BSLASHaclp] = ACTIONS(5188), + [anon_sym_BSLASHAclp] = ACTIONS(5188), + [anon_sym_BSLASHacf] = ACTIONS(5188), + [anon_sym_BSLASHAcf] = ACTIONS(5188), + [anon_sym_BSLASHacfp] = ACTIONS(5188), + [anon_sym_BSLASHAcfp] = ACTIONS(5188), + [anon_sym_BSLASHac] = ACTIONS(5188), + [anon_sym_BSLASHAc] = ACTIONS(5188), + [anon_sym_BSLASHacp] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5188), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5188), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5188), + [anon_sym_BSLASHcolor] = ACTIONS(5188), + [anon_sym_BSLASHcolorbox] = ACTIONS(5188), + [anon_sym_BSLASHtextcolor] = ACTIONS(5188), + [anon_sym_BSLASHpagecolor] = ACTIONS(5188), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5188), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5188), + [anon_sym_BSLASHtext] = ACTIONS(5188), + [anon_sym_BSLASHintertext] = ACTIONS(5188), + [anon_sym_shortintertext] = ACTIONS(5188), }, [963] = { - [sym_command_name] = ACTIONS(5115), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_BSLASHpart] = ACTIONS(5115), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddpart] = ACTIONS(5115), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHchapter] = ACTIONS(5115), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddchap] = ACTIONS(5115), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsection] = ACTIONS(5115), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddsec] = ACTIONS(5115), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHparagraph] = ACTIONS(5115), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHitem] = ACTIONS(5115), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5113), - [sym_word] = ACTIONS(5115), - [sym_placeholder] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_CARET] = ACTIONS(5115), - [anon_sym__] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), - [anon_sym_BSLASHbegin] = ACTIONS(5115), - [anon_sym_BSLASHusepackage] = ACTIONS(5115), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), - [anon_sym_BSLASHinclude] = ACTIONS(5115), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), - [anon_sym_BSLASHinput] = ACTIONS(5115), - [anon_sym_BSLASHsubfile] = ACTIONS(5115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), - [anon_sym_BSLASHbibliography] = ACTIONS(5115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), - [anon_sym_BSLASHincludesvg] = ACTIONS(5115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), - [anon_sym_BSLASHimport] = ACTIONS(5115), - [anon_sym_BSLASHsubimport] = ACTIONS(5115), - [anon_sym_BSLASHinputfrom] = ACTIONS(5115), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), - [anon_sym_BSLASHincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHcaption] = ACTIONS(5115), - [anon_sym_BSLASHcite] = ACTIONS(5115), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCite] = ACTIONS(5115), - [anon_sym_BSLASHnocite] = ACTIONS(5115), - [anon_sym_BSLASHcitet] = ACTIONS(5115), - [anon_sym_BSLASHcitep] = ACTIONS(5115), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteyear] = ACTIONS(5115), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitedate] = ACTIONS(5115), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteurl] = ACTIONS(5115), - [anon_sym_BSLASHfullcite] = ACTIONS(5115), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), - [anon_sym_BSLASHcitealt] = ACTIONS(5115), - [anon_sym_BSLASHcitealp] = ACTIONS(5115), - [anon_sym_BSLASHcitetext] = ACTIONS(5115), - [anon_sym_BSLASHparencite] = ACTIONS(5115), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHParencite] = ACTIONS(5115), - [anon_sym_BSLASHfootcite] = ACTIONS(5115), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), - [anon_sym_BSLASHtextcite] = ACTIONS(5115), - [anon_sym_BSLASHTextcite] = ACTIONS(5115), - [anon_sym_BSLASHsmartcite] = ACTIONS(5115), - [anon_sym_BSLASHSmartcite] = ACTIONS(5115), - [anon_sym_BSLASHsupercite] = ACTIONS(5115), - [anon_sym_BSLASHautocite] = ACTIONS(5115), - [anon_sym_BSLASHAutocite] = ACTIONS(5115), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHvolcite] = ACTIONS(5115), - [anon_sym_BSLASHVolcite] = ACTIONS(5115), - [anon_sym_BSLASHpvolcite] = ACTIONS(5115), - [anon_sym_BSLASHPvolcite] = ACTIONS(5115), - [anon_sym_BSLASHfvolcite] = ACTIONS(5115), - [anon_sym_BSLASHftvolcite] = ACTIONS(5115), - [anon_sym_BSLASHsvolcite] = ACTIONS(5115), - [anon_sym_BSLASHSvolcite] = ACTIONS(5115), - [anon_sym_BSLASHtvolcite] = ACTIONS(5115), - [anon_sym_BSLASHTvolcite] = ACTIONS(5115), - [anon_sym_BSLASHavolcite] = ACTIONS(5115), - [anon_sym_BSLASHAvolcite] = ACTIONS(5115), - [anon_sym_BSLASHnotecite] = ACTIONS(5115), - [anon_sym_BSLASHNotecite] = ACTIONS(5115), - [anon_sym_BSLASHpnotecite] = ACTIONS(5115), - [anon_sym_BSLASHPnotecite] = ACTIONS(5115), - [anon_sym_BSLASHfnotecite] = ACTIONS(5115), - [anon_sym_BSLASHlabel] = ACTIONS(5115), - [anon_sym_BSLASHref] = ACTIONS(5115), - [anon_sym_BSLASHeqref] = ACTIONS(5115), - [anon_sym_BSLASHvref] = ACTIONS(5115), - [anon_sym_BSLASHVref] = ACTIONS(5115), - [anon_sym_BSLASHautoref] = ACTIONS(5115), - [anon_sym_BSLASHpageref] = ACTIONS(5115), - [anon_sym_BSLASHcref] = ACTIONS(5115), - [anon_sym_BSLASHCref] = ACTIONS(5115), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnameCref] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHlabelcref] = ACTIONS(5115), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnewlabel] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), - [anon_sym_BSLASHdef] = ACTIONS(5115), - [anon_sym_BSLASHlet] = ACTIONS(5115), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), - [anon_sym_BSLASHgls] = ACTIONS(5115), - [anon_sym_BSLASHGls] = ACTIONS(5115), - [anon_sym_BSLASHGLS] = ACTIONS(5115), - [anon_sym_BSLASHglspl] = ACTIONS(5115), - [anon_sym_BSLASHGlspl] = ACTIONS(5115), - [anon_sym_BSLASHGLSpl] = ACTIONS(5115), - [anon_sym_BSLASHglsdisp] = ACTIONS(5115), - [anon_sym_BSLASHglslink] = ACTIONS(5115), - [anon_sym_BSLASHglstext] = ACTIONS(5115), - [anon_sym_BSLASHGlstext] = ACTIONS(5115), - [anon_sym_BSLASHGLStext] = ACTIONS(5115), - [anon_sym_BSLASHglsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), - [anon_sym_BSLASHglsplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSplural] = ACTIONS(5115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHglsname] = ACTIONS(5115), - [anon_sym_BSLASHGlsname] = ACTIONS(5115), - [anon_sym_BSLASHGLSname] = ACTIONS(5115), - [anon_sym_BSLASHglssymbol] = ACTIONS(5115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), - [anon_sym_BSLASHglsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), - [anon_sym_BSLASHglsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), - [anon_sym_BSLASHglsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), - [anon_sym_BSLASHglsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), - [anon_sym_BSLASHglsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), - [anon_sym_BSLASHnewacronym] = ACTIONS(5115), - [anon_sym_BSLASHacrshort] = ACTIONS(5115), - [anon_sym_BSLASHAcrshort] = ACTIONS(5115), - [anon_sym_BSLASHACRshort] = ACTIONS(5115), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), - [anon_sym_BSLASHacrlong] = ACTIONS(5115), - [anon_sym_BSLASHAcrlong] = ACTIONS(5115), - [anon_sym_BSLASHACRlong] = ACTIONS(5115), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), - [anon_sym_BSLASHacrfull] = ACTIONS(5115), - [anon_sym_BSLASHAcrfull] = ACTIONS(5115), - [anon_sym_BSLASHACRfull] = ACTIONS(5115), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), - [anon_sym_BSLASHacs] = ACTIONS(5115), - [anon_sym_BSLASHAcs] = ACTIONS(5115), - [anon_sym_BSLASHacsp] = ACTIONS(5115), - [anon_sym_BSLASHAcsp] = ACTIONS(5115), - [anon_sym_BSLASHacl] = ACTIONS(5115), - [anon_sym_BSLASHAcl] = ACTIONS(5115), - [anon_sym_BSLASHaclp] = ACTIONS(5115), - [anon_sym_BSLASHAclp] = ACTIONS(5115), - [anon_sym_BSLASHacf] = ACTIONS(5115), - [anon_sym_BSLASHAcf] = ACTIONS(5115), - [anon_sym_BSLASHacfp] = ACTIONS(5115), - [anon_sym_BSLASHAcfp] = ACTIONS(5115), - [anon_sym_BSLASHac] = ACTIONS(5115), - [anon_sym_BSLASHAc] = ACTIONS(5115), - [anon_sym_BSLASHacp] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), - [anon_sym_BSLASHcolor] = ACTIONS(5115), - [anon_sym_BSLASHcolorbox] = ACTIONS(5115), - [anon_sym_BSLASHtextcolor] = ACTIONS(5115), - [anon_sym_BSLASHpagecolor] = ACTIONS(5115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), - [anon_sym_BSLASHtext] = ACTIONS(5115), - [anon_sym_BSLASHintertext] = ACTIONS(5115), - [anon_sym_shortintertext] = ACTIONS(5115), + [sym_command_name] = ACTIONS(5194), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_BSLASHpart] = ACTIONS(5194), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddpart] = ACTIONS(5194), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHchapter] = ACTIONS(5194), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddchap] = ACTIONS(5194), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsection] = ACTIONS(5194), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddsec] = ACTIONS(5194), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHparagraph] = ACTIONS(5194), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5194), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHitem] = ACTIONS(5194), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5192), + [sym_word] = ACTIONS(5194), + [sym_placeholder] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym__] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_SQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5192), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5192), + [anon_sym_BSLASHbegin] = ACTIONS(5194), + [anon_sym_BSLASHusepackage] = ACTIONS(5194), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5194), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5194), + [anon_sym_BSLASHinclude] = ACTIONS(5194), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5194), + [anon_sym_BSLASHinput] = ACTIONS(5194), + [anon_sym_BSLASHsubfile] = ACTIONS(5194), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5194), + [anon_sym_BSLASHbibliography] = ACTIONS(5194), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5194), + [anon_sym_BSLASHincludesvg] = ACTIONS(5194), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5194), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5194), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5194), + [anon_sym_BSLASHimport] = ACTIONS(5194), + [anon_sym_BSLASHsubimport] = ACTIONS(5194), + [anon_sym_BSLASHinputfrom] = ACTIONS(5194), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5194), + [anon_sym_BSLASHincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHcaption] = ACTIONS(5194), + [anon_sym_BSLASHcite] = ACTIONS(5194), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCite] = ACTIONS(5194), + [anon_sym_BSLASHnocite] = ACTIONS(5194), + [anon_sym_BSLASHcitet] = ACTIONS(5194), + [anon_sym_BSLASHcitep] = ACTIONS(5194), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteauthor] = ACTIONS(5194), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5194), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitetitle] = ACTIONS(5194), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteyear] = ACTIONS(5194), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitedate] = ACTIONS(5194), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteurl] = ACTIONS(5194), + [anon_sym_BSLASHfullcite] = ACTIONS(5194), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5194), + [anon_sym_BSLASHcitealt] = ACTIONS(5194), + [anon_sym_BSLASHcitealp] = ACTIONS(5194), + [anon_sym_BSLASHcitetext] = ACTIONS(5194), + [anon_sym_BSLASHparencite] = ACTIONS(5194), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHParencite] = ACTIONS(5194), + [anon_sym_BSLASHfootcite] = ACTIONS(5194), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5194), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5194), + [anon_sym_BSLASHtextcite] = ACTIONS(5194), + [anon_sym_BSLASHTextcite] = ACTIONS(5194), + [anon_sym_BSLASHsmartcite] = ACTIONS(5194), + [anon_sym_BSLASHSmartcite] = ACTIONS(5194), + [anon_sym_BSLASHsupercite] = ACTIONS(5194), + [anon_sym_BSLASHautocite] = ACTIONS(5194), + [anon_sym_BSLASHAutocite] = ACTIONS(5194), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHvolcite] = ACTIONS(5194), + [anon_sym_BSLASHVolcite] = ACTIONS(5194), + [anon_sym_BSLASHpvolcite] = ACTIONS(5194), + [anon_sym_BSLASHPvolcite] = ACTIONS(5194), + [anon_sym_BSLASHfvolcite] = ACTIONS(5194), + [anon_sym_BSLASHftvolcite] = ACTIONS(5194), + [anon_sym_BSLASHsvolcite] = ACTIONS(5194), + [anon_sym_BSLASHSvolcite] = ACTIONS(5194), + [anon_sym_BSLASHtvolcite] = ACTIONS(5194), + [anon_sym_BSLASHTvolcite] = ACTIONS(5194), + [anon_sym_BSLASHavolcite] = ACTIONS(5194), + [anon_sym_BSLASHAvolcite] = ACTIONS(5194), + [anon_sym_BSLASHnotecite] = ACTIONS(5194), + [anon_sym_BSLASHNotecite] = ACTIONS(5194), + [anon_sym_BSLASHpnotecite] = ACTIONS(5194), + [anon_sym_BSLASHPnotecite] = ACTIONS(5194), + [anon_sym_BSLASHfnotecite] = ACTIONS(5194), + [anon_sym_BSLASHlabel] = ACTIONS(5194), + [anon_sym_BSLASHref] = ACTIONS(5194), + [anon_sym_BSLASHeqref] = ACTIONS(5194), + [anon_sym_BSLASHvref] = ACTIONS(5194), + [anon_sym_BSLASHVref] = ACTIONS(5194), + [anon_sym_BSLASHautoref] = ACTIONS(5194), + [anon_sym_BSLASHpageref] = ACTIONS(5194), + [anon_sym_BSLASHcref] = ACTIONS(5194), + [anon_sym_BSLASHCref] = ACTIONS(5194), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnameCref] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHlabelcref] = ACTIONS(5194), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCrefrange] = ACTIONS(5194), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnewlabel] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5194), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5194), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5194), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdef] = ACTIONS(5194), + [anon_sym_BSLASHlet] = ACTIONS(5194), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5194), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5194), + [anon_sym_BSLASHgls] = ACTIONS(5194), + [anon_sym_BSLASHGls] = ACTIONS(5194), + [anon_sym_BSLASHGLS] = ACTIONS(5194), + [anon_sym_BSLASHglspl] = ACTIONS(5194), + [anon_sym_BSLASHGlspl] = ACTIONS(5194), + [anon_sym_BSLASHGLSpl] = ACTIONS(5194), + [anon_sym_BSLASHglsdisp] = ACTIONS(5194), + [anon_sym_BSLASHglslink] = ACTIONS(5194), + [anon_sym_BSLASHglstext] = ACTIONS(5194), + [anon_sym_BSLASHGlstext] = ACTIONS(5194), + [anon_sym_BSLASHGLStext] = ACTIONS(5194), + [anon_sym_BSLASHglsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5194), + [anon_sym_BSLASHglsplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSplural] = ACTIONS(5194), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHglsname] = ACTIONS(5194), + [anon_sym_BSLASHGlsname] = ACTIONS(5194), + [anon_sym_BSLASHGLSname] = ACTIONS(5194), + [anon_sym_BSLASHglssymbol] = ACTIONS(5194), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5194), + [anon_sym_BSLASHglsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5194), + [anon_sym_BSLASHglsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5194), + [anon_sym_BSLASHglsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5194), + [anon_sym_BSLASHglsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5194), + [anon_sym_BSLASHglsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5194), + [anon_sym_BSLASHnewacronym] = ACTIONS(5194), + [anon_sym_BSLASHacrshort] = ACTIONS(5194), + [anon_sym_BSLASHAcrshort] = ACTIONS(5194), + [anon_sym_BSLASHACRshort] = ACTIONS(5194), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5194), + [anon_sym_BSLASHacrlong] = ACTIONS(5194), + [anon_sym_BSLASHAcrlong] = ACTIONS(5194), + [anon_sym_BSLASHACRlong] = ACTIONS(5194), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5194), + [anon_sym_BSLASHacrfull] = ACTIONS(5194), + [anon_sym_BSLASHAcrfull] = ACTIONS(5194), + [anon_sym_BSLASHACRfull] = ACTIONS(5194), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5194), + [anon_sym_BSLASHacs] = ACTIONS(5194), + [anon_sym_BSLASHAcs] = ACTIONS(5194), + [anon_sym_BSLASHacsp] = ACTIONS(5194), + [anon_sym_BSLASHAcsp] = ACTIONS(5194), + [anon_sym_BSLASHacl] = ACTIONS(5194), + [anon_sym_BSLASHAcl] = ACTIONS(5194), + [anon_sym_BSLASHaclp] = ACTIONS(5194), + [anon_sym_BSLASHAclp] = ACTIONS(5194), + [anon_sym_BSLASHacf] = ACTIONS(5194), + [anon_sym_BSLASHAcf] = ACTIONS(5194), + [anon_sym_BSLASHacfp] = ACTIONS(5194), + [anon_sym_BSLASHAcfp] = ACTIONS(5194), + [anon_sym_BSLASHac] = ACTIONS(5194), + [anon_sym_BSLASHAc] = ACTIONS(5194), + [anon_sym_BSLASHacp] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5194), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5194), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5194), + [anon_sym_BSLASHcolor] = ACTIONS(5194), + [anon_sym_BSLASHcolorbox] = ACTIONS(5194), + [anon_sym_BSLASHtextcolor] = ACTIONS(5194), + [anon_sym_BSLASHpagecolor] = ACTIONS(5194), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5194), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5194), + [anon_sym_BSLASHtext] = ACTIONS(5194), + [anon_sym_BSLASHintertext] = ACTIONS(5194), + [anon_sym_shortintertext] = ACTIONS(5194), }, [964] = { - [sym_command_name] = ACTIONS(5123), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_BSLASHpart] = ACTIONS(5123), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddpart] = ACTIONS(5123), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHchapter] = ACTIONS(5123), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddchap] = ACTIONS(5123), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsection] = ACTIONS(5123), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddsec] = ACTIONS(5123), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHparagraph] = ACTIONS(5123), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHitem] = ACTIONS(5123), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5121), - [sym_word] = ACTIONS(5123), - [sym_placeholder] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_CARET] = ACTIONS(5123), - [anon_sym__] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), - [anon_sym_BSLASHbegin] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5123), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), - [anon_sym_BSLASHinclude] = ACTIONS(5123), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), - [anon_sym_BSLASHinput] = ACTIONS(5123), - [anon_sym_BSLASHsubfile] = ACTIONS(5123), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), - [anon_sym_BSLASHbibliography] = ACTIONS(5123), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), - [anon_sym_BSLASHincludesvg] = ACTIONS(5123), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), - [anon_sym_BSLASHimport] = ACTIONS(5123), - [anon_sym_BSLASHsubimport] = ACTIONS(5123), - [anon_sym_BSLASHinputfrom] = ACTIONS(5123), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), - [anon_sym_BSLASHincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHcaption] = ACTIONS(5123), - [anon_sym_BSLASHcite] = ACTIONS(5123), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCite] = ACTIONS(5123), - [anon_sym_BSLASHnocite] = ACTIONS(5123), - [anon_sym_BSLASHcitet] = ACTIONS(5123), - [anon_sym_BSLASHcitep] = ACTIONS(5123), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteyear] = ACTIONS(5123), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitedate] = ACTIONS(5123), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteurl] = ACTIONS(5123), - [anon_sym_BSLASHfullcite] = ACTIONS(5123), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), - [anon_sym_BSLASHcitealt] = ACTIONS(5123), - [anon_sym_BSLASHcitealp] = ACTIONS(5123), - [anon_sym_BSLASHcitetext] = ACTIONS(5123), - [anon_sym_BSLASHparencite] = ACTIONS(5123), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHParencite] = ACTIONS(5123), - [anon_sym_BSLASHfootcite] = ACTIONS(5123), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), - [anon_sym_BSLASHtextcite] = ACTIONS(5123), - [anon_sym_BSLASHTextcite] = ACTIONS(5123), - [anon_sym_BSLASHsmartcite] = ACTIONS(5123), - [anon_sym_BSLASHSmartcite] = ACTIONS(5123), - [anon_sym_BSLASHsupercite] = ACTIONS(5123), - [anon_sym_BSLASHautocite] = ACTIONS(5123), - [anon_sym_BSLASHAutocite] = ACTIONS(5123), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHvolcite] = ACTIONS(5123), - [anon_sym_BSLASHVolcite] = ACTIONS(5123), - [anon_sym_BSLASHpvolcite] = ACTIONS(5123), - [anon_sym_BSLASHPvolcite] = ACTIONS(5123), - [anon_sym_BSLASHfvolcite] = ACTIONS(5123), - [anon_sym_BSLASHftvolcite] = ACTIONS(5123), - [anon_sym_BSLASHsvolcite] = ACTIONS(5123), - [anon_sym_BSLASHSvolcite] = ACTIONS(5123), - [anon_sym_BSLASHtvolcite] = ACTIONS(5123), - [anon_sym_BSLASHTvolcite] = ACTIONS(5123), - [anon_sym_BSLASHavolcite] = ACTIONS(5123), - [anon_sym_BSLASHAvolcite] = ACTIONS(5123), - [anon_sym_BSLASHnotecite] = ACTIONS(5123), - [anon_sym_BSLASHNotecite] = ACTIONS(5123), - [anon_sym_BSLASHpnotecite] = ACTIONS(5123), - [anon_sym_BSLASHPnotecite] = ACTIONS(5123), - [anon_sym_BSLASHfnotecite] = ACTIONS(5123), - [anon_sym_BSLASHlabel] = ACTIONS(5123), - [anon_sym_BSLASHref] = ACTIONS(5123), - [anon_sym_BSLASHeqref] = ACTIONS(5123), - [anon_sym_BSLASHvref] = ACTIONS(5123), - [anon_sym_BSLASHVref] = ACTIONS(5123), - [anon_sym_BSLASHautoref] = ACTIONS(5123), - [anon_sym_BSLASHpageref] = ACTIONS(5123), - [anon_sym_BSLASHcref] = ACTIONS(5123), - [anon_sym_BSLASHCref] = ACTIONS(5123), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnameCref] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHlabelcref] = ACTIONS(5123), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnewlabel] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), - [anon_sym_BSLASHdef] = ACTIONS(5123), - [anon_sym_BSLASHlet] = ACTIONS(5123), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), - [anon_sym_BSLASHgls] = ACTIONS(5123), - [anon_sym_BSLASHGls] = ACTIONS(5123), - [anon_sym_BSLASHGLS] = ACTIONS(5123), - [anon_sym_BSLASHglspl] = ACTIONS(5123), - [anon_sym_BSLASHGlspl] = ACTIONS(5123), - [anon_sym_BSLASHGLSpl] = ACTIONS(5123), - [anon_sym_BSLASHglsdisp] = ACTIONS(5123), - [anon_sym_BSLASHglslink] = ACTIONS(5123), - [anon_sym_BSLASHglstext] = ACTIONS(5123), - [anon_sym_BSLASHGlstext] = ACTIONS(5123), - [anon_sym_BSLASHGLStext] = ACTIONS(5123), - [anon_sym_BSLASHglsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), - [anon_sym_BSLASHglsplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSplural] = ACTIONS(5123), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHglsname] = ACTIONS(5123), - [anon_sym_BSLASHGlsname] = ACTIONS(5123), - [anon_sym_BSLASHGLSname] = ACTIONS(5123), - [anon_sym_BSLASHglssymbol] = ACTIONS(5123), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), - [anon_sym_BSLASHglsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), - [anon_sym_BSLASHglsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), - [anon_sym_BSLASHglsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), - [anon_sym_BSLASHglsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), - [anon_sym_BSLASHglsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), - [anon_sym_BSLASHnewacronym] = ACTIONS(5123), - [anon_sym_BSLASHacrshort] = ACTIONS(5123), - [anon_sym_BSLASHAcrshort] = ACTIONS(5123), - [anon_sym_BSLASHACRshort] = ACTIONS(5123), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), - [anon_sym_BSLASHacrlong] = ACTIONS(5123), - [anon_sym_BSLASHAcrlong] = ACTIONS(5123), - [anon_sym_BSLASHACRlong] = ACTIONS(5123), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), - [anon_sym_BSLASHacrfull] = ACTIONS(5123), - [anon_sym_BSLASHAcrfull] = ACTIONS(5123), - [anon_sym_BSLASHACRfull] = ACTIONS(5123), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), - [anon_sym_BSLASHacs] = ACTIONS(5123), - [anon_sym_BSLASHAcs] = ACTIONS(5123), - [anon_sym_BSLASHacsp] = ACTIONS(5123), - [anon_sym_BSLASHAcsp] = ACTIONS(5123), - [anon_sym_BSLASHacl] = ACTIONS(5123), - [anon_sym_BSLASHAcl] = ACTIONS(5123), - [anon_sym_BSLASHaclp] = ACTIONS(5123), - [anon_sym_BSLASHAclp] = ACTIONS(5123), - [anon_sym_BSLASHacf] = ACTIONS(5123), - [anon_sym_BSLASHAcf] = ACTIONS(5123), - [anon_sym_BSLASHacfp] = ACTIONS(5123), - [anon_sym_BSLASHAcfp] = ACTIONS(5123), - [anon_sym_BSLASHac] = ACTIONS(5123), - [anon_sym_BSLASHAc] = ACTIONS(5123), - [anon_sym_BSLASHacp] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), - [anon_sym_BSLASHcolor] = ACTIONS(5123), - [anon_sym_BSLASHcolorbox] = ACTIONS(5123), - [anon_sym_BSLASHtextcolor] = ACTIONS(5123), - [anon_sym_BSLASHpagecolor] = ACTIONS(5123), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), - [anon_sym_BSLASHtext] = ACTIONS(5123), - [anon_sym_BSLASHintertext] = ACTIONS(5123), - [anon_sym_shortintertext] = ACTIONS(5123), + [sym_command_name] = ACTIONS(5202), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_RBRACK] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_BSLASHpart] = ACTIONS(5202), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddpart] = ACTIONS(5202), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHchapter] = ACTIONS(5202), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddchap] = ACTIONS(5202), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsection] = ACTIONS(5202), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddsec] = ACTIONS(5202), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHparagraph] = ACTIONS(5202), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5202), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHitem] = ACTIONS(5202), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5200), + [sym_word] = ACTIONS(5202), + [sym_placeholder] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym__] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_SQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5200), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5200), + [anon_sym_BSLASHbegin] = ACTIONS(5202), + [anon_sym_BSLASHusepackage] = ACTIONS(5202), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5202), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5202), + [anon_sym_BSLASHinclude] = ACTIONS(5202), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5202), + [anon_sym_BSLASHinput] = ACTIONS(5202), + [anon_sym_BSLASHsubfile] = ACTIONS(5202), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5202), + [anon_sym_BSLASHbibliography] = ACTIONS(5202), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5202), + [anon_sym_BSLASHincludesvg] = ACTIONS(5202), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5202), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5202), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5202), + [anon_sym_BSLASHimport] = ACTIONS(5202), + [anon_sym_BSLASHsubimport] = ACTIONS(5202), + [anon_sym_BSLASHinputfrom] = ACTIONS(5202), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5202), + [anon_sym_BSLASHincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHcaption] = ACTIONS(5202), + [anon_sym_BSLASHcite] = ACTIONS(5202), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCite] = ACTIONS(5202), + [anon_sym_BSLASHnocite] = ACTIONS(5202), + [anon_sym_BSLASHcitet] = ACTIONS(5202), + [anon_sym_BSLASHcitep] = ACTIONS(5202), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteauthor] = ACTIONS(5202), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5202), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitetitle] = ACTIONS(5202), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteyear] = ACTIONS(5202), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitedate] = ACTIONS(5202), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteurl] = ACTIONS(5202), + [anon_sym_BSLASHfullcite] = ACTIONS(5202), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5202), + [anon_sym_BSLASHcitealt] = ACTIONS(5202), + [anon_sym_BSLASHcitealp] = ACTIONS(5202), + [anon_sym_BSLASHcitetext] = ACTIONS(5202), + [anon_sym_BSLASHparencite] = ACTIONS(5202), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHParencite] = ACTIONS(5202), + [anon_sym_BSLASHfootcite] = ACTIONS(5202), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5202), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5202), + [anon_sym_BSLASHtextcite] = ACTIONS(5202), + [anon_sym_BSLASHTextcite] = ACTIONS(5202), + [anon_sym_BSLASHsmartcite] = ACTIONS(5202), + [anon_sym_BSLASHSmartcite] = ACTIONS(5202), + [anon_sym_BSLASHsupercite] = ACTIONS(5202), + [anon_sym_BSLASHautocite] = ACTIONS(5202), + [anon_sym_BSLASHAutocite] = ACTIONS(5202), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHvolcite] = ACTIONS(5202), + [anon_sym_BSLASHVolcite] = ACTIONS(5202), + [anon_sym_BSLASHpvolcite] = ACTIONS(5202), + [anon_sym_BSLASHPvolcite] = ACTIONS(5202), + [anon_sym_BSLASHfvolcite] = ACTIONS(5202), + [anon_sym_BSLASHftvolcite] = ACTIONS(5202), + [anon_sym_BSLASHsvolcite] = ACTIONS(5202), + [anon_sym_BSLASHSvolcite] = ACTIONS(5202), + [anon_sym_BSLASHtvolcite] = ACTIONS(5202), + [anon_sym_BSLASHTvolcite] = ACTIONS(5202), + [anon_sym_BSLASHavolcite] = ACTIONS(5202), + [anon_sym_BSLASHAvolcite] = ACTIONS(5202), + [anon_sym_BSLASHnotecite] = ACTIONS(5202), + [anon_sym_BSLASHNotecite] = ACTIONS(5202), + [anon_sym_BSLASHpnotecite] = ACTIONS(5202), + [anon_sym_BSLASHPnotecite] = ACTIONS(5202), + [anon_sym_BSLASHfnotecite] = ACTIONS(5202), + [anon_sym_BSLASHlabel] = ACTIONS(5202), + [anon_sym_BSLASHref] = ACTIONS(5202), + [anon_sym_BSLASHeqref] = ACTIONS(5202), + [anon_sym_BSLASHvref] = ACTIONS(5202), + [anon_sym_BSLASHVref] = ACTIONS(5202), + [anon_sym_BSLASHautoref] = ACTIONS(5202), + [anon_sym_BSLASHpageref] = ACTIONS(5202), + [anon_sym_BSLASHcref] = ACTIONS(5202), + [anon_sym_BSLASHCref] = ACTIONS(5202), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnameCref] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHlabelcref] = ACTIONS(5202), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCrefrange] = ACTIONS(5202), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnewlabel] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5202), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5202), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5202), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdef] = ACTIONS(5202), + [anon_sym_BSLASHlet] = ACTIONS(5202), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5202), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5202), + [anon_sym_BSLASHgls] = ACTIONS(5202), + [anon_sym_BSLASHGls] = ACTIONS(5202), + [anon_sym_BSLASHGLS] = ACTIONS(5202), + [anon_sym_BSLASHglspl] = ACTIONS(5202), + [anon_sym_BSLASHGlspl] = ACTIONS(5202), + [anon_sym_BSLASHGLSpl] = ACTIONS(5202), + [anon_sym_BSLASHglsdisp] = ACTIONS(5202), + [anon_sym_BSLASHglslink] = ACTIONS(5202), + [anon_sym_BSLASHglstext] = ACTIONS(5202), + [anon_sym_BSLASHGlstext] = ACTIONS(5202), + [anon_sym_BSLASHGLStext] = ACTIONS(5202), + [anon_sym_BSLASHglsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5202), + [anon_sym_BSLASHglsplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSplural] = ACTIONS(5202), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHglsname] = ACTIONS(5202), + [anon_sym_BSLASHGlsname] = ACTIONS(5202), + [anon_sym_BSLASHGLSname] = ACTIONS(5202), + [anon_sym_BSLASHglssymbol] = ACTIONS(5202), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5202), + [anon_sym_BSLASHglsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5202), + [anon_sym_BSLASHglsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5202), + [anon_sym_BSLASHglsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5202), + [anon_sym_BSLASHglsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5202), + [anon_sym_BSLASHglsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5202), + [anon_sym_BSLASHnewacronym] = ACTIONS(5202), + [anon_sym_BSLASHacrshort] = ACTIONS(5202), + [anon_sym_BSLASHAcrshort] = ACTIONS(5202), + [anon_sym_BSLASHACRshort] = ACTIONS(5202), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5202), + [anon_sym_BSLASHacrlong] = ACTIONS(5202), + [anon_sym_BSLASHAcrlong] = ACTIONS(5202), + [anon_sym_BSLASHACRlong] = ACTIONS(5202), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5202), + [anon_sym_BSLASHacrfull] = ACTIONS(5202), + [anon_sym_BSLASHAcrfull] = ACTIONS(5202), + [anon_sym_BSLASHACRfull] = ACTIONS(5202), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5202), + [anon_sym_BSLASHacs] = ACTIONS(5202), + [anon_sym_BSLASHAcs] = ACTIONS(5202), + [anon_sym_BSLASHacsp] = ACTIONS(5202), + [anon_sym_BSLASHAcsp] = ACTIONS(5202), + [anon_sym_BSLASHacl] = ACTIONS(5202), + [anon_sym_BSLASHAcl] = ACTIONS(5202), + [anon_sym_BSLASHaclp] = ACTIONS(5202), + [anon_sym_BSLASHAclp] = ACTIONS(5202), + [anon_sym_BSLASHacf] = ACTIONS(5202), + [anon_sym_BSLASHAcf] = ACTIONS(5202), + [anon_sym_BSLASHacfp] = ACTIONS(5202), + [anon_sym_BSLASHAcfp] = ACTIONS(5202), + [anon_sym_BSLASHac] = ACTIONS(5202), + [anon_sym_BSLASHAc] = ACTIONS(5202), + [anon_sym_BSLASHacp] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5202), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5202), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5202), + [anon_sym_BSLASHcolor] = ACTIONS(5202), + [anon_sym_BSLASHcolorbox] = ACTIONS(5202), + [anon_sym_BSLASHtextcolor] = ACTIONS(5202), + [anon_sym_BSLASHpagecolor] = ACTIONS(5202), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5202), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5202), + [anon_sym_BSLASHtext] = ACTIONS(5202), + [anon_sym_BSLASHintertext] = ACTIONS(5202), + [anon_sym_shortintertext] = ACTIONS(5202), }, [965] = { - [sym_command_name] = ACTIONS(5127), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_RPAREN] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(5125), - [anon_sym_BSLASHpart] = ACTIONS(5127), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddpart] = ACTIONS(5127), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHchapter] = ACTIONS(5127), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddchap] = ACTIONS(5127), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsection] = ACTIONS(5127), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddsec] = ACTIONS(5127), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHparagraph] = ACTIONS(5127), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHitem] = ACTIONS(5127), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), - [anon_sym_LBRACE] = ACTIONS(5125), - [sym_word] = ACTIONS(5127), - [sym_placeholder] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_CARET] = ACTIONS(5127), - [anon_sym__] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5127), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), - [anon_sym_BSLASHbegin] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5127), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), - [anon_sym_BSLASHinclude] = ACTIONS(5127), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), - [anon_sym_BSLASHinput] = ACTIONS(5127), - [anon_sym_BSLASHsubfile] = ACTIONS(5127), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), - [anon_sym_BSLASHbibliography] = ACTIONS(5127), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), - [anon_sym_BSLASHincludesvg] = ACTIONS(5127), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), - [anon_sym_BSLASHimport] = ACTIONS(5127), - [anon_sym_BSLASHsubimport] = ACTIONS(5127), - [anon_sym_BSLASHinputfrom] = ACTIONS(5127), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), - [anon_sym_BSLASHincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHcaption] = ACTIONS(5127), - [anon_sym_BSLASHcite] = ACTIONS(5127), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCite] = ACTIONS(5127), - [anon_sym_BSLASHnocite] = ACTIONS(5127), - [anon_sym_BSLASHcitet] = ACTIONS(5127), - [anon_sym_BSLASHcitep] = ACTIONS(5127), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteyear] = ACTIONS(5127), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitedate] = ACTIONS(5127), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteurl] = ACTIONS(5127), - [anon_sym_BSLASHfullcite] = ACTIONS(5127), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), - [anon_sym_BSLASHcitealt] = ACTIONS(5127), - [anon_sym_BSLASHcitealp] = ACTIONS(5127), - [anon_sym_BSLASHcitetext] = ACTIONS(5127), - [anon_sym_BSLASHparencite] = ACTIONS(5127), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHParencite] = ACTIONS(5127), - [anon_sym_BSLASHfootcite] = ACTIONS(5127), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), - [anon_sym_BSLASHtextcite] = ACTIONS(5127), - [anon_sym_BSLASHTextcite] = ACTIONS(5127), - [anon_sym_BSLASHsmartcite] = ACTIONS(5127), - [anon_sym_BSLASHSmartcite] = ACTIONS(5127), - [anon_sym_BSLASHsupercite] = ACTIONS(5127), - [anon_sym_BSLASHautocite] = ACTIONS(5127), - [anon_sym_BSLASHAutocite] = ACTIONS(5127), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHvolcite] = ACTIONS(5127), - [anon_sym_BSLASHVolcite] = ACTIONS(5127), - [anon_sym_BSLASHpvolcite] = ACTIONS(5127), - [anon_sym_BSLASHPvolcite] = ACTIONS(5127), - [anon_sym_BSLASHfvolcite] = ACTIONS(5127), - [anon_sym_BSLASHftvolcite] = ACTIONS(5127), - [anon_sym_BSLASHsvolcite] = ACTIONS(5127), - [anon_sym_BSLASHSvolcite] = ACTIONS(5127), - [anon_sym_BSLASHtvolcite] = ACTIONS(5127), - [anon_sym_BSLASHTvolcite] = ACTIONS(5127), - [anon_sym_BSLASHavolcite] = ACTIONS(5127), - [anon_sym_BSLASHAvolcite] = ACTIONS(5127), - [anon_sym_BSLASHnotecite] = ACTIONS(5127), - [anon_sym_BSLASHNotecite] = ACTIONS(5127), - [anon_sym_BSLASHpnotecite] = ACTIONS(5127), - [anon_sym_BSLASHPnotecite] = ACTIONS(5127), - [anon_sym_BSLASHfnotecite] = ACTIONS(5127), - [anon_sym_BSLASHlabel] = ACTIONS(5127), - [anon_sym_BSLASHref] = ACTIONS(5127), - [anon_sym_BSLASHeqref] = ACTIONS(5127), - [anon_sym_BSLASHvref] = ACTIONS(5127), - [anon_sym_BSLASHVref] = ACTIONS(5127), - [anon_sym_BSLASHautoref] = ACTIONS(5127), - [anon_sym_BSLASHpageref] = ACTIONS(5127), - [anon_sym_BSLASHcref] = ACTIONS(5127), - [anon_sym_BSLASHCref] = ACTIONS(5127), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnameCref] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHlabelcref] = ACTIONS(5127), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnewlabel] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), - [anon_sym_BSLASHdef] = ACTIONS(5127), - [anon_sym_BSLASHlet] = ACTIONS(5127), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), - [anon_sym_BSLASHgls] = ACTIONS(5127), - [anon_sym_BSLASHGls] = ACTIONS(5127), - [anon_sym_BSLASHGLS] = ACTIONS(5127), - [anon_sym_BSLASHglspl] = ACTIONS(5127), - [anon_sym_BSLASHGlspl] = ACTIONS(5127), - [anon_sym_BSLASHGLSpl] = ACTIONS(5127), - [anon_sym_BSLASHglsdisp] = ACTIONS(5127), - [anon_sym_BSLASHglslink] = ACTIONS(5127), - [anon_sym_BSLASHglstext] = ACTIONS(5127), - [anon_sym_BSLASHGlstext] = ACTIONS(5127), - [anon_sym_BSLASHGLStext] = ACTIONS(5127), - [anon_sym_BSLASHglsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), - [anon_sym_BSLASHglsplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSplural] = ACTIONS(5127), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHglsname] = ACTIONS(5127), - [anon_sym_BSLASHGlsname] = ACTIONS(5127), - [anon_sym_BSLASHGLSname] = ACTIONS(5127), - [anon_sym_BSLASHglssymbol] = ACTIONS(5127), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), - [anon_sym_BSLASHglsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), - [anon_sym_BSLASHglsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), - [anon_sym_BSLASHglsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), - [anon_sym_BSLASHglsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), - [anon_sym_BSLASHglsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), - [anon_sym_BSLASHnewacronym] = ACTIONS(5127), - [anon_sym_BSLASHacrshort] = ACTIONS(5127), - [anon_sym_BSLASHAcrshort] = ACTIONS(5127), - [anon_sym_BSLASHACRshort] = ACTIONS(5127), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), - [anon_sym_BSLASHacrlong] = ACTIONS(5127), - [anon_sym_BSLASHAcrlong] = ACTIONS(5127), - [anon_sym_BSLASHACRlong] = ACTIONS(5127), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), - [anon_sym_BSLASHacrfull] = ACTIONS(5127), - [anon_sym_BSLASHAcrfull] = ACTIONS(5127), - [anon_sym_BSLASHACRfull] = ACTIONS(5127), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), - [anon_sym_BSLASHacs] = ACTIONS(5127), - [anon_sym_BSLASHAcs] = ACTIONS(5127), - [anon_sym_BSLASHacsp] = ACTIONS(5127), - [anon_sym_BSLASHAcsp] = ACTIONS(5127), - [anon_sym_BSLASHacl] = ACTIONS(5127), - [anon_sym_BSLASHAcl] = ACTIONS(5127), - [anon_sym_BSLASHaclp] = ACTIONS(5127), - [anon_sym_BSLASHAclp] = ACTIONS(5127), - [anon_sym_BSLASHacf] = ACTIONS(5127), - [anon_sym_BSLASHAcf] = ACTIONS(5127), - [anon_sym_BSLASHacfp] = ACTIONS(5127), - [anon_sym_BSLASHAcfp] = ACTIONS(5127), - [anon_sym_BSLASHac] = ACTIONS(5127), - [anon_sym_BSLASHAc] = ACTIONS(5127), - [anon_sym_BSLASHacp] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), - [anon_sym_BSLASHcolor] = ACTIONS(5127), - [anon_sym_BSLASHcolorbox] = ACTIONS(5127), - [anon_sym_BSLASHtextcolor] = ACTIONS(5127), - [anon_sym_BSLASHpagecolor] = ACTIONS(5127), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), - [anon_sym_BSLASHtext] = ACTIONS(5127), - [anon_sym_BSLASHintertext] = ACTIONS(5127), - [anon_sym_shortintertext] = ACTIONS(5127), + [sym_command_name] = ACTIONS(5206), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_COMMA] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_BSLASHpart] = ACTIONS(5206), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddpart] = ACTIONS(5206), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHchapter] = ACTIONS(5206), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddchap] = ACTIONS(5206), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsection] = ACTIONS(5206), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddsec] = ACTIONS(5206), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHparagraph] = ACTIONS(5206), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5206), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHitem] = ACTIONS(5206), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5204), + [sym_word] = ACTIONS(5206), + [sym_placeholder] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym__] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_SQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5204), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5204), + [anon_sym_BSLASHbegin] = ACTIONS(5206), + [anon_sym_BSLASHusepackage] = ACTIONS(5206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5206), + [anon_sym_BSLASHinclude] = ACTIONS(5206), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5206), + [anon_sym_BSLASHinput] = ACTIONS(5206), + [anon_sym_BSLASHsubfile] = ACTIONS(5206), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5206), + [anon_sym_BSLASHbibliography] = ACTIONS(5206), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5206), + [anon_sym_BSLASHincludesvg] = ACTIONS(5206), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5206), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5206), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5206), + [anon_sym_BSLASHimport] = ACTIONS(5206), + [anon_sym_BSLASHsubimport] = ACTIONS(5206), + [anon_sym_BSLASHinputfrom] = ACTIONS(5206), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5206), + [anon_sym_BSLASHincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHcaption] = ACTIONS(5206), + [anon_sym_BSLASHcite] = ACTIONS(5206), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCite] = ACTIONS(5206), + [anon_sym_BSLASHnocite] = ACTIONS(5206), + [anon_sym_BSLASHcitet] = ACTIONS(5206), + [anon_sym_BSLASHcitep] = ACTIONS(5206), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteauthor] = ACTIONS(5206), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5206), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitetitle] = ACTIONS(5206), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteyear] = ACTIONS(5206), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitedate] = ACTIONS(5206), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteurl] = ACTIONS(5206), + [anon_sym_BSLASHfullcite] = ACTIONS(5206), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5206), + [anon_sym_BSLASHcitealt] = ACTIONS(5206), + [anon_sym_BSLASHcitealp] = ACTIONS(5206), + [anon_sym_BSLASHcitetext] = ACTIONS(5206), + [anon_sym_BSLASHparencite] = ACTIONS(5206), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHParencite] = ACTIONS(5206), + [anon_sym_BSLASHfootcite] = ACTIONS(5206), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5206), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5206), + [anon_sym_BSLASHtextcite] = ACTIONS(5206), + [anon_sym_BSLASHTextcite] = ACTIONS(5206), + [anon_sym_BSLASHsmartcite] = ACTIONS(5206), + [anon_sym_BSLASHSmartcite] = ACTIONS(5206), + [anon_sym_BSLASHsupercite] = ACTIONS(5206), + [anon_sym_BSLASHautocite] = ACTIONS(5206), + [anon_sym_BSLASHAutocite] = ACTIONS(5206), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHvolcite] = ACTIONS(5206), + [anon_sym_BSLASHVolcite] = ACTIONS(5206), + [anon_sym_BSLASHpvolcite] = ACTIONS(5206), + [anon_sym_BSLASHPvolcite] = ACTIONS(5206), + [anon_sym_BSLASHfvolcite] = ACTIONS(5206), + [anon_sym_BSLASHftvolcite] = ACTIONS(5206), + [anon_sym_BSLASHsvolcite] = ACTIONS(5206), + [anon_sym_BSLASHSvolcite] = ACTIONS(5206), + [anon_sym_BSLASHtvolcite] = ACTIONS(5206), + [anon_sym_BSLASHTvolcite] = ACTIONS(5206), + [anon_sym_BSLASHavolcite] = ACTIONS(5206), + [anon_sym_BSLASHAvolcite] = ACTIONS(5206), + [anon_sym_BSLASHnotecite] = ACTIONS(5206), + [anon_sym_BSLASHNotecite] = ACTIONS(5206), + [anon_sym_BSLASHpnotecite] = ACTIONS(5206), + [anon_sym_BSLASHPnotecite] = ACTIONS(5206), + [anon_sym_BSLASHfnotecite] = ACTIONS(5206), + [anon_sym_BSLASHlabel] = ACTIONS(5206), + [anon_sym_BSLASHref] = ACTIONS(5206), + [anon_sym_BSLASHeqref] = ACTIONS(5206), + [anon_sym_BSLASHvref] = ACTIONS(5206), + [anon_sym_BSLASHVref] = ACTIONS(5206), + [anon_sym_BSLASHautoref] = ACTIONS(5206), + [anon_sym_BSLASHpageref] = ACTIONS(5206), + [anon_sym_BSLASHcref] = ACTIONS(5206), + [anon_sym_BSLASHCref] = ACTIONS(5206), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnameCref] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHlabelcref] = ACTIONS(5206), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCrefrange] = ACTIONS(5206), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnewlabel] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5206), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5206), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5206), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdef] = ACTIONS(5206), + [anon_sym_BSLASHlet] = ACTIONS(5206), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5206), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5206), + [anon_sym_BSLASHgls] = ACTIONS(5206), + [anon_sym_BSLASHGls] = ACTIONS(5206), + [anon_sym_BSLASHGLS] = ACTIONS(5206), + [anon_sym_BSLASHglspl] = ACTIONS(5206), + [anon_sym_BSLASHGlspl] = ACTIONS(5206), + [anon_sym_BSLASHGLSpl] = ACTIONS(5206), + [anon_sym_BSLASHglsdisp] = ACTIONS(5206), + [anon_sym_BSLASHglslink] = ACTIONS(5206), + [anon_sym_BSLASHglstext] = ACTIONS(5206), + [anon_sym_BSLASHGlstext] = ACTIONS(5206), + [anon_sym_BSLASHGLStext] = ACTIONS(5206), + [anon_sym_BSLASHglsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5206), + [anon_sym_BSLASHglsplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSplural] = ACTIONS(5206), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHglsname] = ACTIONS(5206), + [anon_sym_BSLASHGlsname] = ACTIONS(5206), + [anon_sym_BSLASHGLSname] = ACTIONS(5206), + [anon_sym_BSLASHglssymbol] = ACTIONS(5206), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5206), + [anon_sym_BSLASHglsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5206), + [anon_sym_BSLASHglsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5206), + [anon_sym_BSLASHglsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5206), + [anon_sym_BSLASHglsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5206), + [anon_sym_BSLASHglsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5206), + [anon_sym_BSLASHnewacronym] = ACTIONS(5206), + [anon_sym_BSLASHacrshort] = ACTIONS(5206), + [anon_sym_BSLASHAcrshort] = ACTIONS(5206), + [anon_sym_BSLASHACRshort] = ACTIONS(5206), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5206), + [anon_sym_BSLASHacrlong] = ACTIONS(5206), + [anon_sym_BSLASHAcrlong] = ACTIONS(5206), + [anon_sym_BSLASHACRlong] = ACTIONS(5206), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5206), + [anon_sym_BSLASHacrfull] = ACTIONS(5206), + [anon_sym_BSLASHAcrfull] = ACTIONS(5206), + [anon_sym_BSLASHACRfull] = ACTIONS(5206), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5206), + [anon_sym_BSLASHacs] = ACTIONS(5206), + [anon_sym_BSLASHAcs] = ACTIONS(5206), + [anon_sym_BSLASHacsp] = ACTIONS(5206), + [anon_sym_BSLASHAcsp] = ACTIONS(5206), + [anon_sym_BSLASHacl] = ACTIONS(5206), + [anon_sym_BSLASHAcl] = ACTIONS(5206), + [anon_sym_BSLASHaclp] = ACTIONS(5206), + [anon_sym_BSLASHAclp] = ACTIONS(5206), + [anon_sym_BSLASHacf] = ACTIONS(5206), + [anon_sym_BSLASHAcf] = ACTIONS(5206), + [anon_sym_BSLASHacfp] = ACTIONS(5206), + [anon_sym_BSLASHAcfp] = ACTIONS(5206), + [anon_sym_BSLASHac] = ACTIONS(5206), + [anon_sym_BSLASHAc] = ACTIONS(5206), + [anon_sym_BSLASHacp] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5206), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5206), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5206), + [anon_sym_BSLASHcolor] = ACTIONS(5206), + [anon_sym_BSLASHcolorbox] = ACTIONS(5206), + [anon_sym_BSLASHtextcolor] = ACTIONS(5206), + [anon_sym_BSLASHpagecolor] = ACTIONS(5206), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5206), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5206), + [anon_sym_BSLASHtext] = ACTIONS(5206), + [anon_sym_BSLASHintertext] = ACTIONS(5206), + [anon_sym_shortintertext] = ACTIONS(5206), }, [966] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_BSLASHpart] = ACTIONS(5153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddpart] = ACTIONS(5153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHchapter] = ACTIONS(5153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddchap] = ACTIONS(5153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsection] = ACTIONS(5153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddsec] = ACTIONS(5153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHparagraph] = ACTIONS(5153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHitem] = ACTIONS(5153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASHbegin] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_BSLASHpart] = ACTIONS(5232), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddpart] = ACTIONS(5232), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHchapter] = ACTIONS(5232), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddchap] = ACTIONS(5232), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsection] = ACTIONS(5232), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddsec] = ACTIONS(5232), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHparagraph] = ACTIONS(5232), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5232), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHitem] = ACTIONS(5232), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASHbegin] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [967] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_BSLASHpart] = ACTIONS(4921), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddpart] = ACTIONS(4921), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHchapter] = ACTIONS(4921), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddchap] = ACTIONS(4921), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsection] = ACTIONS(4921), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddsec] = ACTIONS(4921), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHparagraph] = ACTIONS(4921), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHitem] = ACTIONS(4921), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4919), - [anon_sym_BSLASHbegin] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_BSLASHpart] = ACTIONS(5000), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddpart] = ACTIONS(5000), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHchapter] = ACTIONS(5000), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddchap] = ACTIONS(5000), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsection] = ACTIONS(5000), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddsec] = ACTIONS(5000), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHparagraph] = ACTIONS(5000), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5000), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHitem] = ACTIONS(5000), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [968] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_BSLASHpart] = ACTIONS(4925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddpart] = ACTIONS(4925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHchapter] = ACTIONS(4925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddchap] = ACTIONS(4925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsection] = ACTIONS(4925), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddsec] = ACTIONS(4925), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHparagraph] = ACTIONS(4925), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHitem] = ACTIONS(4925), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4923), - [anon_sym_BSLASHbegin] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_BSLASHpart] = ACTIONS(5004), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddpart] = ACTIONS(5004), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHchapter] = ACTIONS(5004), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddchap] = ACTIONS(5004), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsection] = ACTIONS(5004), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddsec] = ACTIONS(5004), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHparagraph] = ACTIONS(5004), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5004), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHitem] = ACTIONS(5004), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5002), + [anon_sym_BSLASHbegin] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [969] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_BSLASHpart] = ACTIONS(5145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddpart] = ACTIONS(5145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHchapter] = ACTIONS(5145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddchap] = ACTIONS(5145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsection] = ACTIONS(5145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddsec] = ACTIONS(5145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHparagraph] = ACTIONS(5145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHitem] = ACTIONS(5145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [anon_sym_BSLASHbegin] = 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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_BSLASHpart] = ACTIONS(5224), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddpart] = ACTIONS(5224), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHchapter] = ACTIONS(5224), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddchap] = ACTIONS(5224), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsection] = ACTIONS(5224), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddsec] = ACTIONS(5224), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHparagraph] = ACTIONS(5224), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5224), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHitem] = ACTIONS(5224), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASHbegin] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [970] = { - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASH_RBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASH_RBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [971] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_BSLASHpart] = ACTIONS(5284), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddpart] = ACTIONS(5284), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHchapter] = ACTIONS(5284), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddchap] = ACTIONS(5284), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsection] = ACTIONS(5284), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddsec] = ACTIONS(5284), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHparagraph] = ACTIONS(5284), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5284), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHitem] = ACTIONS(5284), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASHbegin] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [972] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASH_RBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [973] = { - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_BSLASHpart] = ACTIONS(4969), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddpart] = ACTIONS(4969), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHchapter] = ACTIONS(4969), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddchap] = ACTIONS(4969), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsection] = ACTIONS(4969), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddsec] = ACTIONS(4969), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHparagraph] = ACTIONS(4969), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHitem] = ACTIONS(4969), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4967), - [anon_sym_BSLASHbegin] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_BSLASHpart] = ACTIONS(5048), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddpart] = ACTIONS(5048), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHchapter] = ACTIONS(5048), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddchap] = ACTIONS(5048), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsection] = ACTIONS(5048), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddsec] = ACTIONS(5048), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHparagraph] = ACTIONS(5048), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5048), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHitem] = ACTIONS(5048), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5046), + [anon_sym_BSLASHbegin] = ACTIONS(5048), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [974] = { - [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(4971), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_BSLASHpart] = ACTIONS(5052), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddpart] = ACTIONS(5052), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHchapter] = ACTIONS(5052), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddchap] = ACTIONS(5052), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsection] = ACTIONS(5052), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddsec] = ACTIONS(5052), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHparagraph] = ACTIONS(5052), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5052), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHitem] = ACTIONS(5052), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5050), + [anon_sym_BSLASHbegin] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [975] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_BSLASHpart] = ACTIONS(5149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddpart] = ACTIONS(5149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHchapter] = ACTIONS(5149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddchap] = ACTIONS(5149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsection] = ACTIONS(5149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddsec] = ACTIONS(5149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHparagraph] = ACTIONS(5149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHitem] = ACTIONS(5149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_BSLASHpart] = ACTIONS(5228), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddpart] = ACTIONS(5228), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHchapter] = ACTIONS(5228), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddchap] = ACTIONS(5228), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsection] = ACTIONS(5228), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddsec] = ACTIONS(5228), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHparagraph] = ACTIONS(5228), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5228), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHitem] = ACTIONS(5228), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASHbegin] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [976] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_BSLASHpart] = ACTIONS(5062), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddpart] = ACTIONS(5062), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHchapter] = ACTIONS(5062), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddchap] = ACTIONS(5062), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsection] = ACTIONS(5062), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddsec] = ACTIONS(5062), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHparagraph] = ACTIONS(5062), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5062), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHitem] = ACTIONS(5062), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5060), + [anon_sym_BSLASHbegin] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [977] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_BSLASHpart] = ACTIONS(5066), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddpart] = ACTIONS(5066), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHchapter] = ACTIONS(5066), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddchap] = ACTIONS(5066), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsection] = ACTIONS(5066), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddsec] = ACTIONS(5066), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHparagraph] = ACTIONS(5066), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5066), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHitem] = ACTIONS(5066), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5064), + [anon_sym_BSLASHbegin] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [978] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_BSLASHpart] = ACTIONS(5070), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddpart] = ACTIONS(5070), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHchapter] = ACTIONS(5070), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddchap] = ACTIONS(5070), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsection] = ACTIONS(5070), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddsec] = ACTIONS(5070), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHparagraph] = ACTIONS(5070), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5070), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHitem] = ACTIONS(5070), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5068), + [anon_sym_BSLASHbegin] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [979] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_BSLASHpart] = ACTIONS(5074), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddpart] = ACTIONS(5074), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHchapter] = ACTIONS(5074), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddchap] = ACTIONS(5074), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsection] = ACTIONS(5074), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddsec] = ACTIONS(5074), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHparagraph] = ACTIONS(5074), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5074), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHitem] = ACTIONS(5074), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5072), + [anon_sym_BSLASHbegin] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [980] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_BSLASHpart] = ACTIONS(5078), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddpart] = ACTIONS(5078), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHchapter] = ACTIONS(5078), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddchap] = ACTIONS(5078), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsection] = ACTIONS(5078), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddsec] = ACTIONS(5078), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHparagraph] = ACTIONS(5078), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5078), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHitem] = ACTIONS(5078), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5076), + [anon_sym_BSLASHbegin] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [981] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_BSLASHpart] = ACTIONS(5082), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddpart] = ACTIONS(5082), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHchapter] = ACTIONS(5082), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddchap] = ACTIONS(5082), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsection] = ACTIONS(5082), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddsec] = ACTIONS(5082), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHparagraph] = ACTIONS(5082), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5082), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHitem] = ACTIONS(5082), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5080), + [anon_sym_BSLASHbegin] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [982] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_BSLASHpart] = ACTIONS(5013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddpart] = ACTIONS(5013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHchapter] = ACTIONS(5013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddchap] = ACTIONS(5013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsection] = ACTIONS(5013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddsec] = ACTIONS(5013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHparagraph] = ACTIONS(5013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHitem] = ACTIONS(5013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5011), - [anon_sym_BSLASHbegin] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_BSLASHpart] = ACTIONS(5092), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddpart] = ACTIONS(5092), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHchapter] = ACTIONS(5092), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddchap] = ACTIONS(5092), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsection] = ACTIONS(5092), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddsec] = ACTIONS(5092), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHparagraph] = ACTIONS(5092), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5092), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHitem] = ACTIONS(5092), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5090), + [anon_sym_BSLASHbegin] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [983] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_BSLASHpart] = ACTIONS(5017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddpart] = ACTIONS(5017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHchapter] = ACTIONS(5017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddchap] = ACTIONS(5017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsection] = ACTIONS(5017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddsec] = ACTIONS(5017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHparagraph] = ACTIONS(5017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHitem] = ACTIONS(5017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5015), - [anon_sym_BSLASHbegin] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_BSLASHpart] = ACTIONS(5096), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddpart] = ACTIONS(5096), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHchapter] = ACTIONS(5096), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddchap] = ACTIONS(5096), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsection] = ACTIONS(5096), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddsec] = ACTIONS(5096), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHparagraph] = ACTIONS(5096), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5096), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHitem] = ACTIONS(5096), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5094), + [anon_sym_BSLASHbegin] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [984] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_BSLASHpart] = ACTIONS(5100), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddpart] = ACTIONS(5100), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHchapter] = ACTIONS(5100), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddchap] = ACTIONS(5100), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsection] = ACTIONS(5100), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddsec] = ACTIONS(5100), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHparagraph] = ACTIONS(5100), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5100), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHitem] = ACTIONS(5100), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5098), + [anon_sym_BSLASHbegin] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [985] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_BSLASHpart] = ACTIONS(5104), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddpart] = ACTIONS(5104), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHchapter] = ACTIONS(5104), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddchap] = ACTIONS(5104), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsection] = ACTIONS(5104), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddsec] = ACTIONS(5104), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHparagraph] = ACTIONS(5104), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5104), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHitem] = ACTIONS(5104), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5102), + [anon_sym_BSLASHbegin] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [986] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_BSLASHpart] = ACTIONS(5108), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddpart] = ACTIONS(5108), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHchapter] = ACTIONS(5108), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddchap] = ACTIONS(5108), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsection] = ACTIONS(5108), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddsec] = ACTIONS(5108), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHparagraph] = ACTIONS(5108), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5108), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHitem] = ACTIONS(5108), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5106), + [anon_sym_BSLASHbegin] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [987] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_BSLASHpart] = ACTIONS(5119), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddpart] = ACTIONS(5119), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHchapter] = ACTIONS(5119), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddchap] = ACTIONS(5119), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsection] = ACTIONS(5119), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddsec] = ACTIONS(5119), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHparagraph] = ACTIONS(5119), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHitem] = ACTIONS(5119), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5117), - [anon_sym_BSLASHbegin] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_BSLASHpart] = ACTIONS(5198), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddpart] = ACTIONS(5198), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHchapter] = ACTIONS(5198), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddchap] = ACTIONS(5198), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsection] = ACTIONS(5198), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddsec] = ACTIONS(5198), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHparagraph] = ACTIONS(5198), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5198), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHitem] = ACTIONS(5198), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5196), + [anon_sym_BSLASHbegin] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [988] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_BSLASHpart] = ACTIONS(5112), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddpart] = ACTIONS(5112), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHchapter] = ACTIONS(5112), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddchap] = ACTIONS(5112), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsection] = ACTIONS(5112), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddsec] = ACTIONS(5112), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHparagraph] = ACTIONS(5112), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5112), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHitem] = ACTIONS(5112), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5110), + [anon_sym_BSLASHbegin] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [989] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_BSLASHpart] = ACTIONS(5116), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddpart] = ACTIONS(5116), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHchapter] = ACTIONS(5116), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddchap] = ACTIONS(5116), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsection] = ACTIONS(5116), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddsec] = ACTIONS(5116), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHparagraph] = ACTIONS(5116), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5116), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHitem] = ACTIONS(5116), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5114), + [anon_sym_BSLASHbegin] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [990] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_BSLASHpart] = ACTIONS(5120), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddpart] = ACTIONS(5120), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHchapter] = ACTIONS(5120), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddchap] = ACTIONS(5120), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsection] = ACTIONS(5120), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddsec] = ACTIONS(5120), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHparagraph] = ACTIONS(5120), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5120), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHitem] = ACTIONS(5120), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5118), + [anon_sym_BSLASHbegin] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [991] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_BSLASHpart] = ACTIONS(5124), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddpart] = ACTIONS(5124), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHchapter] = ACTIONS(5124), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddchap] = ACTIONS(5124), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsection] = ACTIONS(5124), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddsec] = ACTIONS(5124), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHparagraph] = ACTIONS(5124), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5124), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHitem] = ACTIONS(5124), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5122), + [anon_sym_BSLASHbegin] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [992] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_BSLASHpart] = ACTIONS(5132), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddpart] = ACTIONS(5132), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHchapter] = ACTIONS(5132), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddchap] = ACTIONS(5132), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsection] = ACTIONS(5132), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddsec] = ACTIONS(5132), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHparagraph] = ACTIONS(5132), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5132), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHitem] = ACTIONS(5132), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5130), + [anon_sym_BSLASHbegin] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [993] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_BSLASHpart] = ACTIONS(5136), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddpart] = ACTIONS(5136), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHchapter] = ACTIONS(5136), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddchap] = ACTIONS(5136), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsection] = ACTIONS(5136), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddsec] = ACTIONS(5136), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHparagraph] = ACTIONS(5136), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5136), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHitem] = ACTIONS(5136), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5134), + [anon_sym_BSLASHbegin] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [994] = { - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_BSLASHpart] = ACTIONS(4969), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddpart] = ACTIONS(4969), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHchapter] = ACTIONS(4969), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddchap] = ACTIONS(4969), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsection] = ACTIONS(4969), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddsec] = ACTIONS(4969), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHparagraph] = ACTIONS(4969), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHitem] = ACTIONS(4969), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASHbegin] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_BSLASHpart] = ACTIONS(5048), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddpart] = ACTIONS(5048), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHchapter] = ACTIONS(5048), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddchap] = ACTIONS(5048), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsection] = ACTIONS(5048), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddsec] = ACTIONS(5048), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHparagraph] = ACTIONS(5048), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5048), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHitem] = ACTIONS(5048), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASHbegin] = ACTIONS(5048), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [995] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_BSLASHpart] = ACTIONS(5161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddpart] = ACTIONS(5161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHchapter] = ACTIONS(5161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddchap] = ACTIONS(5161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsection] = ACTIONS(5161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddsec] = ACTIONS(5161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHparagraph] = ACTIONS(5161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHitem] = ACTIONS(5161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASHbegin] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_BSLASHpart] = ACTIONS(5240), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddpart] = ACTIONS(5240), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHchapter] = ACTIONS(5240), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddchap] = ACTIONS(5240), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsection] = ACTIONS(5240), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddsec] = ACTIONS(5240), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHparagraph] = ACTIONS(5240), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5240), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHitem] = ACTIONS(5240), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASHbegin] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [996] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_BSLASHpart] = ACTIONS(5165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddpart] = ACTIONS(5165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHchapter] = ACTIONS(5165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddchap] = ACTIONS(5165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsection] = ACTIONS(5165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddsec] = ACTIONS(5165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHparagraph] = ACTIONS(5165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHitem] = ACTIONS(5165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASHbegin] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_BSLASHpart] = ACTIONS(5244), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddpart] = ACTIONS(5244), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHchapter] = ACTIONS(5244), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddchap] = ACTIONS(5244), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsection] = ACTIONS(5244), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddsec] = ACTIONS(5244), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHparagraph] = ACTIONS(5244), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5244), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHitem] = ACTIONS(5244), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASHbegin] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [997] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_BSLASHpart] = ACTIONS(5169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddpart] = ACTIONS(5169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHchapter] = ACTIONS(5169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddchap] = ACTIONS(5169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsection] = ACTIONS(5169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddsec] = ACTIONS(5169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHparagraph] = ACTIONS(5169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHitem] = ACTIONS(5169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASHbegin] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_BSLASHpart] = ACTIONS(5248), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddpart] = ACTIONS(5248), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHchapter] = ACTIONS(5248), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddchap] = ACTIONS(5248), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsection] = ACTIONS(5248), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddsec] = ACTIONS(5248), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHparagraph] = ACTIONS(5248), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5248), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHitem] = ACTIONS(5248), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASHbegin] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [998] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_BSLASHpart] = ACTIONS(5177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddpart] = ACTIONS(5177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHchapter] = ACTIONS(5177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddchap] = ACTIONS(5177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsection] = ACTIONS(5177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddsec] = ACTIONS(5177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHparagraph] = ACTIONS(5177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHitem] = ACTIONS(5177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASHbegin] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_BSLASHpart] = ACTIONS(5256), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddpart] = ACTIONS(5256), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHchapter] = ACTIONS(5256), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddchap] = ACTIONS(5256), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsection] = ACTIONS(5256), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddsec] = ACTIONS(5256), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHparagraph] = ACTIONS(5256), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5256), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHitem] = ACTIONS(5256), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASHbegin] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [999] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_BSLASHpart] = ACTIONS(5181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddpart] = ACTIONS(5181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHchapter] = ACTIONS(5181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddchap] = ACTIONS(5181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsection] = ACTIONS(5181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddsec] = ACTIONS(5181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHparagraph] = ACTIONS(5181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHitem] = ACTIONS(5181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASHbegin] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_BSLASHpart] = ACTIONS(5260), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddpart] = ACTIONS(5260), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHchapter] = ACTIONS(5260), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddchap] = ACTIONS(5260), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsection] = ACTIONS(5260), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddsec] = ACTIONS(5260), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHparagraph] = ACTIONS(5260), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5260), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHitem] = ACTIONS(5260), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASHbegin] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [1000] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_BSLASHpart] = ACTIONS(5264), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddpart] = ACTIONS(5264), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHchapter] = ACTIONS(5264), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddchap] = ACTIONS(5264), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsection] = ACTIONS(5264), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddsec] = ACTIONS(5264), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHparagraph] = ACTIONS(5264), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5264), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHitem] = ACTIONS(5264), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASHbegin] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [1001] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_BSLASHpart] = ACTIONS(5268), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddpart] = ACTIONS(5268), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHchapter] = ACTIONS(5268), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddchap] = ACTIONS(5268), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsection] = ACTIONS(5268), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddsec] = ACTIONS(5268), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHparagraph] = ACTIONS(5268), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5268), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHitem] = ACTIONS(5268), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASHbegin] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [1002] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_BSLASHpart] = ACTIONS(5272), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddpart] = ACTIONS(5272), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHchapter] = ACTIONS(5272), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddchap] = ACTIONS(5272), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsection] = ACTIONS(5272), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddsec] = ACTIONS(5272), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHparagraph] = ACTIONS(5272), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5272), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHitem] = ACTIONS(5272), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASHbegin] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [1003] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_BSLASHpart] = ACTIONS(5276), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddpart] = ACTIONS(5276), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHchapter] = ACTIONS(5276), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddchap] = ACTIONS(5276), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsection] = ACTIONS(5276), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddsec] = ACTIONS(5276), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHparagraph] = ACTIONS(5276), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5276), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHitem] = ACTIONS(5276), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASHbegin] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_BSLASHpart] = ACTIONS(5288), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddpart] = ACTIONS(5288), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHchapter] = ACTIONS(5288), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddchap] = ACTIONS(5288), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsection] = ACTIONS(5288), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddsec] = ACTIONS(5288), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHparagraph] = ACTIONS(5288), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5288), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHitem] = ACTIONS(5288), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASHbegin] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5213), - [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), + [sym_command_name] = ACTIONS(5292), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_BSLASHpart] = ACTIONS(5292), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddpart] = ACTIONS(5292), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHchapter] = ACTIONS(5292), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddchap] = ACTIONS(5292), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsection] = ACTIONS(5292), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddsec] = ACTIONS(5292), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHparagraph] = ACTIONS(5292), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5292), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHitem] = ACTIONS(5292), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [sym_word] = ACTIONS(5292), + [sym_placeholder] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_SQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5290), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5290), + [anon_sym_BSLASHbegin] = ACTIONS(5292), + [anon_sym_BSLASHusepackage] = ACTIONS(5292), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5292), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5292), + [anon_sym_BSLASHinclude] = ACTIONS(5292), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5292), + [anon_sym_BSLASHinput] = ACTIONS(5292), + [anon_sym_BSLASHsubfile] = ACTIONS(5292), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5292), + [anon_sym_BSLASHbibliography] = ACTIONS(5292), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5292), + [anon_sym_BSLASHincludesvg] = ACTIONS(5292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5292), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5292), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5292), + [anon_sym_BSLASHimport] = ACTIONS(5292), + [anon_sym_BSLASHsubimport] = ACTIONS(5292), + [anon_sym_BSLASHinputfrom] = ACTIONS(5292), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5292), + [anon_sym_BSLASHincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHcaption] = ACTIONS(5292), + [anon_sym_BSLASHcite] = ACTIONS(5292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCite] = ACTIONS(5292), + [anon_sym_BSLASHnocite] = ACTIONS(5292), + [anon_sym_BSLASHcitet] = ACTIONS(5292), + [anon_sym_BSLASHcitep] = ACTIONS(5292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteauthor] = ACTIONS(5292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitetitle] = ACTIONS(5292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteyear] = ACTIONS(5292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitedate] = ACTIONS(5292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteurl] = ACTIONS(5292), + [anon_sym_BSLASHfullcite] = ACTIONS(5292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5292), + [anon_sym_BSLASHcitealt] = ACTIONS(5292), + [anon_sym_BSLASHcitealp] = ACTIONS(5292), + [anon_sym_BSLASHcitetext] = ACTIONS(5292), + [anon_sym_BSLASHparencite] = ACTIONS(5292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHParencite] = ACTIONS(5292), + [anon_sym_BSLASHfootcite] = ACTIONS(5292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5292), + [anon_sym_BSLASHtextcite] = ACTIONS(5292), + [anon_sym_BSLASHTextcite] = ACTIONS(5292), + [anon_sym_BSLASHsmartcite] = ACTIONS(5292), + [anon_sym_BSLASHSmartcite] = ACTIONS(5292), + [anon_sym_BSLASHsupercite] = ACTIONS(5292), + [anon_sym_BSLASHautocite] = ACTIONS(5292), + [anon_sym_BSLASHAutocite] = ACTIONS(5292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHvolcite] = ACTIONS(5292), + [anon_sym_BSLASHVolcite] = ACTIONS(5292), + [anon_sym_BSLASHpvolcite] = ACTIONS(5292), + [anon_sym_BSLASHPvolcite] = ACTIONS(5292), + [anon_sym_BSLASHfvolcite] = ACTIONS(5292), + [anon_sym_BSLASHftvolcite] = ACTIONS(5292), + [anon_sym_BSLASHsvolcite] = ACTIONS(5292), + [anon_sym_BSLASHSvolcite] = ACTIONS(5292), + [anon_sym_BSLASHtvolcite] = ACTIONS(5292), + [anon_sym_BSLASHTvolcite] = ACTIONS(5292), + [anon_sym_BSLASHavolcite] = ACTIONS(5292), + [anon_sym_BSLASHAvolcite] = ACTIONS(5292), + [anon_sym_BSLASHnotecite] = ACTIONS(5292), + [anon_sym_BSLASHNotecite] = ACTIONS(5292), + [anon_sym_BSLASHpnotecite] = ACTIONS(5292), + [anon_sym_BSLASHPnotecite] = ACTIONS(5292), + [anon_sym_BSLASHfnotecite] = ACTIONS(5292), + [anon_sym_BSLASHlabel] = ACTIONS(5292), + [anon_sym_BSLASHref] = ACTIONS(5292), + [anon_sym_BSLASHeqref] = ACTIONS(5292), + [anon_sym_BSLASHvref] = ACTIONS(5292), + [anon_sym_BSLASHVref] = ACTIONS(5292), + [anon_sym_BSLASHautoref] = ACTIONS(5292), + [anon_sym_BSLASHpageref] = ACTIONS(5292), + [anon_sym_BSLASHcref] = ACTIONS(5292), + [anon_sym_BSLASHCref] = ACTIONS(5292), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnameCref] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHlabelcref] = ACTIONS(5292), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCrefrange] = ACTIONS(5292), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnewlabel] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5292), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5292), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5292), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdef] = ACTIONS(5292), + [anon_sym_BSLASHlet] = ACTIONS(5292), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5292), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5292), + [anon_sym_BSLASHgls] = ACTIONS(5292), + [anon_sym_BSLASHGls] = ACTIONS(5292), + [anon_sym_BSLASHGLS] = ACTIONS(5292), + [anon_sym_BSLASHglspl] = ACTIONS(5292), + [anon_sym_BSLASHGlspl] = ACTIONS(5292), + [anon_sym_BSLASHGLSpl] = ACTIONS(5292), + [anon_sym_BSLASHglsdisp] = ACTIONS(5292), + [anon_sym_BSLASHglslink] = ACTIONS(5292), + [anon_sym_BSLASHglstext] = ACTIONS(5292), + [anon_sym_BSLASHGlstext] = ACTIONS(5292), + [anon_sym_BSLASHGLStext] = ACTIONS(5292), + [anon_sym_BSLASHglsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5292), + [anon_sym_BSLASHglsplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSplural] = ACTIONS(5292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHglsname] = ACTIONS(5292), + [anon_sym_BSLASHGlsname] = ACTIONS(5292), + [anon_sym_BSLASHGLSname] = ACTIONS(5292), + [anon_sym_BSLASHglssymbol] = ACTIONS(5292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5292), + [anon_sym_BSLASHglsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5292), + [anon_sym_BSLASHglsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5292), + [anon_sym_BSLASHglsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5292), + [anon_sym_BSLASHglsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5292), + [anon_sym_BSLASHglsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5292), + [anon_sym_BSLASHnewacronym] = ACTIONS(5292), + [anon_sym_BSLASHacrshort] = ACTIONS(5292), + [anon_sym_BSLASHAcrshort] = ACTIONS(5292), + [anon_sym_BSLASHACRshort] = ACTIONS(5292), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5292), + [anon_sym_BSLASHacrlong] = ACTIONS(5292), + [anon_sym_BSLASHAcrlong] = ACTIONS(5292), + [anon_sym_BSLASHACRlong] = ACTIONS(5292), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5292), + [anon_sym_BSLASHacrfull] = ACTIONS(5292), + [anon_sym_BSLASHAcrfull] = ACTIONS(5292), + [anon_sym_BSLASHACRfull] = ACTIONS(5292), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5292), + [anon_sym_BSLASHacs] = ACTIONS(5292), + [anon_sym_BSLASHAcs] = ACTIONS(5292), + [anon_sym_BSLASHacsp] = ACTIONS(5292), + [anon_sym_BSLASHAcsp] = ACTIONS(5292), + [anon_sym_BSLASHacl] = ACTIONS(5292), + [anon_sym_BSLASHAcl] = ACTIONS(5292), + [anon_sym_BSLASHaclp] = ACTIONS(5292), + [anon_sym_BSLASHAclp] = ACTIONS(5292), + [anon_sym_BSLASHacf] = ACTIONS(5292), + [anon_sym_BSLASHAcf] = ACTIONS(5292), + [anon_sym_BSLASHacfp] = ACTIONS(5292), + [anon_sym_BSLASHAcfp] = ACTIONS(5292), + [anon_sym_BSLASHac] = ACTIONS(5292), + [anon_sym_BSLASHAc] = ACTIONS(5292), + [anon_sym_BSLASHacp] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5292), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5292), + [anon_sym_BSLASHcolorbox] = ACTIONS(5292), + [anon_sym_BSLASHtextcolor] = ACTIONS(5292), + [anon_sym_BSLASHpagecolor] = ACTIONS(5292), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5292), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5292), + [anon_sym_BSLASHtext] = ACTIONS(5292), + [anon_sym_BSLASHintertext] = ACTIONS(5292), + [anon_sym_shortintertext] = ACTIONS(5292), }, [1006] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5217), - [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), + [sym_command_name] = ACTIONS(5296), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5294), + [anon_sym_BSLASHpart] = ACTIONS(5296), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddpart] = ACTIONS(5296), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHchapter] = ACTIONS(5296), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddchap] = ACTIONS(5296), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsection] = ACTIONS(5296), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddsec] = ACTIONS(5296), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHparagraph] = ACTIONS(5296), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5296), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHitem] = ACTIONS(5296), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [sym_word] = ACTIONS(5296), + [sym_placeholder] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_SQUOTE] = ACTIONS(5296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5294), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5294), + [anon_sym_BSLASHbegin] = ACTIONS(5296), + [anon_sym_BSLASHusepackage] = ACTIONS(5296), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5296), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5296), + [anon_sym_BSLASHinclude] = ACTIONS(5296), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5296), + [anon_sym_BSLASHinput] = ACTIONS(5296), + [anon_sym_BSLASHsubfile] = ACTIONS(5296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5296), + [anon_sym_BSLASHbibliography] = ACTIONS(5296), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5296), + [anon_sym_BSLASHincludesvg] = ACTIONS(5296), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5296), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5296), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5296), + [anon_sym_BSLASHimport] = ACTIONS(5296), + [anon_sym_BSLASHsubimport] = ACTIONS(5296), + [anon_sym_BSLASHinputfrom] = ACTIONS(5296), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5296), + [anon_sym_BSLASHincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHcaption] = ACTIONS(5296), + [anon_sym_BSLASHcite] = ACTIONS(5296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCite] = ACTIONS(5296), + [anon_sym_BSLASHnocite] = ACTIONS(5296), + [anon_sym_BSLASHcitet] = ACTIONS(5296), + [anon_sym_BSLASHcitep] = ACTIONS(5296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteauthor] = ACTIONS(5296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitetitle] = ACTIONS(5296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteyear] = ACTIONS(5296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitedate] = ACTIONS(5296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteurl] = ACTIONS(5296), + [anon_sym_BSLASHfullcite] = ACTIONS(5296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5296), + [anon_sym_BSLASHcitealt] = ACTIONS(5296), + [anon_sym_BSLASHcitealp] = ACTIONS(5296), + [anon_sym_BSLASHcitetext] = ACTIONS(5296), + [anon_sym_BSLASHparencite] = ACTIONS(5296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHParencite] = ACTIONS(5296), + [anon_sym_BSLASHfootcite] = ACTIONS(5296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5296), + [anon_sym_BSLASHtextcite] = ACTIONS(5296), + [anon_sym_BSLASHTextcite] = ACTIONS(5296), + [anon_sym_BSLASHsmartcite] = ACTIONS(5296), + [anon_sym_BSLASHSmartcite] = ACTIONS(5296), + [anon_sym_BSLASHsupercite] = ACTIONS(5296), + [anon_sym_BSLASHautocite] = ACTIONS(5296), + [anon_sym_BSLASHAutocite] = ACTIONS(5296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHvolcite] = ACTIONS(5296), + [anon_sym_BSLASHVolcite] = ACTIONS(5296), + [anon_sym_BSLASHpvolcite] = ACTIONS(5296), + [anon_sym_BSLASHPvolcite] = ACTIONS(5296), + [anon_sym_BSLASHfvolcite] = ACTIONS(5296), + [anon_sym_BSLASHftvolcite] = ACTIONS(5296), + [anon_sym_BSLASHsvolcite] = ACTIONS(5296), + [anon_sym_BSLASHSvolcite] = ACTIONS(5296), + [anon_sym_BSLASHtvolcite] = ACTIONS(5296), + [anon_sym_BSLASHTvolcite] = ACTIONS(5296), + [anon_sym_BSLASHavolcite] = ACTIONS(5296), + [anon_sym_BSLASHAvolcite] = ACTIONS(5296), + [anon_sym_BSLASHnotecite] = ACTIONS(5296), + [anon_sym_BSLASHNotecite] = ACTIONS(5296), + [anon_sym_BSLASHpnotecite] = ACTIONS(5296), + [anon_sym_BSLASHPnotecite] = ACTIONS(5296), + [anon_sym_BSLASHfnotecite] = ACTIONS(5296), + [anon_sym_BSLASHlabel] = ACTIONS(5296), + [anon_sym_BSLASHref] = ACTIONS(5296), + [anon_sym_BSLASHeqref] = ACTIONS(5296), + [anon_sym_BSLASHvref] = ACTIONS(5296), + [anon_sym_BSLASHVref] = ACTIONS(5296), + [anon_sym_BSLASHautoref] = ACTIONS(5296), + [anon_sym_BSLASHpageref] = ACTIONS(5296), + [anon_sym_BSLASHcref] = ACTIONS(5296), + [anon_sym_BSLASHCref] = ACTIONS(5296), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnameCref] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHlabelcref] = ACTIONS(5296), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCrefrange] = ACTIONS(5296), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnewlabel] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5296), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5296), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5296), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdef] = ACTIONS(5296), + [anon_sym_BSLASHlet] = ACTIONS(5296), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5296), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5296), + [anon_sym_BSLASHgls] = ACTIONS(5296), + [anon_sym_BSLASHGls] = ACTIONS(5296), + [anon_sym_BSLASHGLS] = ACTIONS(5296), + [anon_sym_BSLASHglspl] = ACTIONS(5296), + [anon_sym_BSLASHGlspl] = ACTIONS(5296), + [anon_sym_BSLASHGLSpl] = ACTIONS(5296), + [anon_sym_BSLASHglsdisp] = ACTIONS(5296), + [anon_sym_BSLASHglslink] = ACTIONS(5296), + [anon_sym_BSLASHglstext] = ACTIONS(5296), + [anon_sym_BSLASHGlstext] = ACTIONS(5296), + [anon_sym_BSLASHGLStext] = ACTIONS(5296), + [anon_sym_BSLASHglsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5296), + [anon_sym_BSLASHglsplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSplural] = ACTIONS(5296), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHglsname] = ACTIONS(5296), + [anon_sym_BSLASHGlsname] = ACTIONS(5296), + [anon_sym_BSLASHGLSname] = ACTIONS(5296), + [anon_sym_BSLASHglssymbol] = ACTIONS(5296), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5296), + [anon_sym_BSLASHglsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5296), + [anon_sym_BSLASHglsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5296), + [anon_sym_BSLASHglsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5296), + [anon_sym_BSLASHglsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5296), + [anon_sym_BSLASHglsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5296), + [anon_sym_BSLASHnewacronym] = ACTIONS(5296), + [anon_sym_BSLASHacrshort] = ACTIONS(5296), + [anon_sym_BSLASHAcrshort] = ACTIONS(5296), + [anon_sym_BSLASHACRshort] = ACTIONS(5296), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5296), + [anon_sym_BSLASHacrlong] = ACTIONS(5296), + [anon_sym_BSLASHAcrlong] = ACTIONS(5296), + [anon_sym_BSLASHACRlong] = ACTIONS(5296), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5296), + [anon_sym_BSLASHacrfull] = ACTIONS(5296), + [anon_sym_BSLASHAcrfull] = ACTIONS(5296), + [anon_sym_BSLASHACRfull] = ACTIONS(5296), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5296), + [anon_sym_BSLASHacs] = ACTIONS(5296), + [anon_sym_BSLASHAcs] = ACTIONS(5296), + [anon_sym_BSLASHacsp] = ACTIONS(5296), + [anon_sym_BSLASHAcsp] = ACTIONS(5296), + [anon_sym_BSLASHacl] = ACTIONS(5296), + [anon_sym_BSLASHAcl] = ACTIONS(5296), + [anon_sym_BSLASHaclp] = ACTIONS(5296), + [anon_sym_BSLASHAclp] = ACTIONS(5296), + [anon_sym_BSLASHacf] = ACTIONS(5296), + [anon_sym_BSLASHAcf] = ACTIONS(5296), + [anon_sym_BSLASHacfp] = ACTIONS(5296), + [anon_sym_BSLASHAcfp] = ACTIONS(5296), + [anon_sym_BSLASHac] = ACTIONS(5296), + [anon_sym_BSLASHAc] = ACTIONS(5296), + [anon_sym_BSLASHacp] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5296), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5296), + [anon_sym_BSLASHcolor] = ACTIONS(5296), + [anon_sym_BSLASHcolorbox] = ACTIONS(5296), + [anon_sym_BSLASHtextcolor] = ACTIONS(5296), + [anon_sym_BSLASHpagecolor] = ACTIONS(5296), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5296), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5296), + [anon_sym_BSLASHtext] = ACTIONS(5296), + [anon_sym_BSLASHintertext] = ACTIONS(5296), + [anon_sym_shortintertext] = ACTIONS(5296), }, [1007] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5225), - [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), + [sym_command_name] = ACTIONS(5304), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_COMMA] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5302), + [anon_sym_BSLASHpart] = ACTIONS(5304), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddpart] = ACTIONS(5304), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHchapter] = ACTIONS(5304), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddchap] = ACTIONS(5304), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsection] = ACTIONS(5304), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddsec] = ACTIONS(5304), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHparagraph] = ACTIONS(5304), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5304), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHitem] = ACTIONS(5304), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5302), + [sym_word] = ACTIONS(5304), + [sym_placeholder] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_SLASH] = ACTIONS(5304), + [anon_sym_CARET] = ACTIONS(5304), + [anon_sym__] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_BANG] = ACTIONS(5304), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_SQUOTE] = ACTIONS(5304), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5302), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5302), + [anon_sym_BSLASHbegin] = ACTIONS(5304), + [anon_sym_BSLASHusepackage] = ACTIONS(5304), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5304), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5304), + [anon_sym_BSLASHinclude] = ACTIONS(5304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5304), + [anon_sym_BSLASHinput] = ACTIONS(5304), + [anon_sym_BSLASHsubfile] = ACTIONS(5304), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5304), + [anon_sym_BSLASHbibliography] = ACTIONS(5304), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5304), + [anon_sym_BSLASHincludesvg] = ACTIONS(5304), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5304), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5304), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5304), + [anon_sym_BSLASHimport] = ACTIONS(5304), + [anon_sym_BSLASHsubimport] = ACTIONS(5304), + [anon_sym_BSLASHinputfrom] = ACTIONS(5304), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5304), + [anon_sym_BSLASHincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHcaption] = ACTIONS(5304), + [anon_sym_BSLASHcite] = ACTIONS(5304), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCite] = ACTIONS(5304), + [anon_sym_BSLASHnocite] = ACTIONS(5304), + [anon_sym_BSLASHcitet] = ACTIONS(5304), + [anon_sym_BSLASHcitep] = ACTIONS(5304), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteauthor] = ACTIONS(5304), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5304), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitetitle] = ACTIONS(5304), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteyear] = ACTIONS(5304), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitedate] = ACTIONS(5304), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteurl] = ACTIONS(5304), + [anon_sym_BSLASHfullcite] = ACTIONS(5304), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5304), + [anon_sym_BSLASHcitealt] = ACTIONS(5304), + [anon_sym_BSLASHcitealp] = ACTIONS(5304), + [anon_sym_BSLASHcitetext] = ACTIONS(5304), + [anon_sym_BSLASHparencite] = ACTIONS(5304), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHParencite] = ACTIONS(5304), + [anon_sym_BSLASHfootcite] = ACTIONS(5304), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5304), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5304), + [anon_sym_BSLASHtextcite] = ACTIONS(5304), + [anon_sym_BSLASHTextcite] = ACTIONS(5304), + [anon_sym_BSLASHsmartcite] = ACTIONS(5304), + [anon_sym_BSLASHSmartcite] = ACTIONS(5304), + [anon_sym_BSLASHsupercite] = ACTIONS(5304), + [anon_sym_BSLASHautocite] = ACTIONS(5304), + [anon_sym_BSLASHAutocite] = ACTIONS(5304), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHvolcite] = ACTIONS(5304), + [anon_sym_BSLASHVolcite] = ACTIONS(5304), + [anon_sym_BSLASHpvolcite] = ACTIONS(5304), + [anon_sym_BSLASHPvolcite] = ACTIONS(5304), + [anon_sym_BSLASHfvolcite] = ACTIONS(5304), + [anon_sym_BSLASHftvolcite] = ACTIONS(5304), + [anon_sym_BSLASHsvolcite] = ACTIONS(5304), + [anon_sym_BSLASHSvolcite] = ACTIONS(5304), + [anon_sym_BSLASHtvolcite] = ACTIONS(5304), + [anon_sym_BSLASHTvolcite] = ACTIONS(5304), + [anon_sym_BSLASHavolcite] = ACTIONS(5304), + [anon_sym_BSLASHAvolcite] = ACTIONS(5304), + [anon_sym_BSLASHnotecite] = ACTIONS(5304), + [anon_sym_BSLASHNotecite] = ACTIONS(5304), + [anon_sym_BSLASHpnotecite] = ACTIONS(5304), + [anon_sym_BSLASHPnotecite] = ACTIONS(5304), + [anon_sym_BSLASHfnotecite] = ACTIONS(5304), + [anon_sym_BSLASHlabel] = ACTIONS(5304), + [anon_sym_BSLASHref] = ACTIONS(5304), + [anon_sym_BSLASHeqref] = ACTIONS(5304), + [anon_sym_BSLASHvref] = ACTIONS(5304), + [anon_sym_BSLASHVref] = ACTIONS(5304), + [anon_sym_BSLASHautoref] = ACTIONS(5304), + [anon_sym_BSLASHpageref] = ACTIONS(5304), + [anon_sym_BSLASHcref] = ACTIONS(5304), + [anon_sym_BSLASHCref] = ACTIONS(5304), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnameCref] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHlabelcref] = ACTIONS(5304), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCrefrange] = ACTIONS(5304), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnewlabel] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5304), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5304), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5304), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdef] = ACTIONS(5304), + [anon_sym_BSLASHlet] = ACTIONS(5304), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5304), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5304), + [anon_sym_BSLASHgls] = ACTIONS(5304), + [anon_sym_BSLASHGls] = ACTIONS(5304), + [anon_sym_BSLASHGLS] = ACTIONS(5304), + [anon_sym_BSLASHglspl] = ACTIONS(5304), + [anon_sym_BSLASHGlspl] = ACTIONS(5304), + [anon_sym_BSLASHGLSpl] = ACTIONS(5304), + [anon_sym_BSLASHglsdisp] = ACTIONS(5304), + [anon_sym_BSLASHglslink] = ACTIONS(5304), + [anon_sym_BSLASHglstext] = ACTIONS(5304), + [anon_sym_BSLASHGlstext] = ACTIONS(5304), + [anon_sym_BSLASHGLStext] = ACTIONS(5304), + [anon_sym_BSLASHglsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5304), + [anon_sym_BSLASHglsplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSplural] = ACTIONS(5304), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHglsname] = ACTIONS(5304), + [anon_sym_BSLASHGlsname] = ACTIONS(5304), + [anon_sym_BSLASHGLSname] = ACTIONS(5304), + [anon_sym_BSLASHglssymbol] = ACTIONS(5304), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5304), + [anon_sym_BSLASHglsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5304), + [anon_sym_BSLASHglsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5304), + [anon_sym_BSLASHglsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5304), + [anon_sym_BSLASHglsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5304), + [anon_sym_BSLASHglsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5304), + [anon_sym_BSLASHnewacronym] = ACTIONS(5304), + [anon_sym_BSLASHacrshort] = ACTIONS(5304), + [anon_sym_BSLASHAcrshort] = ACTIONS(5304), + [anon_sym_BSLASHACRshort] = ACTIONS(5304), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5304), + [anon_sym_BSLASHacrlong] = ACTIONS(5304), + [anon_sym_BSLASHAcrlong] = ACTIONS(5304), + [anon_sym_BSLASHACRlong] = ACTIONS(5304), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5304), + [anon_sym_BSLASHacrfull] = ACTIONS(5304), + [anon_sym_BSLASHAcrfull] = ACTIONS(5304), + [anon_sym_BSLASHACRfull] = ACTIONS(5304), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5304), + [anon_sym_BSLASHacs] = ACTIONS(5304), + [anon_sym_BSLASHAcs] = ACTIONS(5304), + [anon_sym_BSLASHacsp] = ACTIONS(5304), + [anon_sym_BSLASHAcsp] = ACTIONS(5304), + [anon_sym_BSLASHacl] = ACTIONS(5304), + [anon_sym_BSLASHAcl] = ACTIONS(5304), + [anon_sym_BSLASHaclp] = ACTIONS(5304), + [anon_sym_BSLASHAclp] = ACTIONS(5304), + [anon_sym_BSLASHacf] = ACTIONS(5304), + [anon_sym_BSLASHAcf] = ACTIONS(5304), + [anon_sym_BSLASHacfp] = ACTIONS(5304), + [anon_sym_BSLASHAcfp] = ACTIONS(5304), + [anon_sym_BSLASHac] = ACTIONS(5304), + [anon_sym_BSLASHAc] = ACTIONS(5304), + [anon_sym_BSLASHacp] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5304), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5304), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5304), + [anon_sym_BSLASHcolor] = ACTIONS(5304), + [anon_sym_BSLASHcolorbox] = ACTIONS(5304), + [anon_sym_BSLASHtextcolor] = ACTIONS(5304), + [anon_sym_BSLASHpagecolor] = ACTIONS(5304), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5304), + [anon_sym_BSLASHtext] = ACTIONS(5304), + [anon_sym_BSLASHintertext] = ACTIONS(5304), + [anon_sym_shortintertext] = ACTIONS(5304), }, [1008] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5229), - [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), + [sym_command_name] = ACTIONS(5308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_BSLASHpart] = ACTIONS(5308), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddpart] = ACTIONS(5308), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHchapter] = ACTIONS(5308), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddchap] = ACTIONS(5308), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsection] = ACTIONS(5308), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddsec] = ACTIONS(5308), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHparagraph] = ACTIONS(5308), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5308), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHitem] = ACTIONS(5308), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [sym_word] = ACTIONS(5308), + [sym_placeholder] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_SQUOTE] = ACTIONS(5308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5306), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5308), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5306), + [anon_sym_BSLASHbegin] = ACTIONS(5308), + [anon_sym_BSLASHusepackage] = ACTIONS(5308), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5308), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5308), + [anon_sym_BSLASHinclude] = ACTIONS(5308), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5308), + [anon_sym_BSLASHinput] = ACTIONS(5308), + [anon_sym_BSLASHsubfile] = ACTIONS(5308), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5308), + [anon_sym_BSLASHbibliography] = ACTIONS(5308), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5308), + [anon_sym_BSLASHincludesvg] = ACTIONS(5308), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5308), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5308), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5308), + [anon_sym_BSLASHimport] = ACTIONS(5308), + [anon_sym_BSLASHsubimport] = ACTIONS(5308), + [anon_sym_BSLASHinputfrom] = ACTIONS(5308), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5308), + [anon_sym_BSLASHincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHcaption] = ACTIONS(5308), + [anon_sym_BSLASHcite] = ACTIONS(5308), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCite] = ACTIONS(5308), + [anon_sym_BSLASHnocite] = ACTIONS(5308), + [anon_sym_BSLASHcitet] = ACTIONS(5308), + [anon_sym_BSLASHcitep] = ACTIONS(5308), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteauthor] = ACTIONS(5308), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5308), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitetitle] = ACTIONS(5308), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteyear] = ACTIONS(5308), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitedate] = ACTIONS(5308), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteurl] = ACTIONS(5308), + [anon_sym_BSLASHfullcite] = ACTIONS(5308), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5308), + [anon_sym_BSLASHcitealt] = ACTIONS(5308), + [anon_sym_BSLASHcitealp] = ACTIONS(5308), + [anon_sym_BSLASHcitetext] = ACTIONS(5308), + [anon_sym_BSLASHparencite] = ACTIONS(5308), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHParencite] = ACTIONS(5308), + [anon_sym_BSLASHfootcite] = ACTIONS(5308), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5308), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5308), + [anon_sym_BSLASHtextcite] = ACTIONS(5308), + [anon_sym_BSLASHTextcite] = ACTIONS(5308), + [anon_sym_BSLASHsmartcite] = ACTIONS(5308), + [anon_sym_BSLASHSmartcite] = ACTIONS(5308), + [anon_sym_BSLASHsupercite] = ACTIONS(5308), + [anon_sym_BSLASHautocite] = ACTIONS(5308), + [anon_sym_BSLASHAutocite] = ACTIONS(5308), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHvolcite] = ACTIONS(5308), + [anon_sym_BSLASHVolcite] = ACTIONS(5308), + [anon_sym_BSLASHpvolcite] = ACTIONS(5308), + [anon_sym_BSLASHPvolcite] = ACTIONS(5308), + [anon_sym_BSLASHfvolcite] = ACTIONS(5308), + [anon_sym_BSLASHftvolcite] = ACTIONS(5308), + [anon_sym_BSLASHsvolcite] = ACTIONS(5308), + [anon_sym_BSLASHSvolcite] = ACTIONS(5308), + [anon_sym_BSLASHtvolcite] = ACTIONS(5308), + [anon_sym_BSLASHTvolcite] = ACTIONS(5308), + [anon_sym_BSLASHavolcite] = ACTIONS(5308), + [anon_sym_BSLASHAvolcite] = ACTIONS(5308), + [anon_sym_BSLASHnotecite] = ACTIONS(5308), + [anon_sym_BSLASHNotecite] = ACTIONS(5308), + [anon_sym_BSLASHpnotecite] = ACTIONS(5308), + [anon_sym_BSLASHPnotecite] = ACTIONS(5308), + [anon_sym_BSLASHfnotecite] = ACTIONS(5308), + [anon_sym_BSLASHlabel] = ACTIONS(5308), + [anon_sym_BSLASHref] = ACTIONS(5308), + [anon_sym_BSLASHeqref] = ACTIONS(5308), + [anon_sym_BSLASHvref] = ACTIONS(5308), + [anon_sym_BSLASHVref] = ACTIONS(5308), + [anon_sym_BSLASHautoref] = ACTIONS(5308), + [anon_sym_BSLASHpageref] = ACTIONS(5308), + [anon_sym_BSLASHcref] = ACTIONS(5308), + [anon_sym_BSLASHCref] = ACTIONS(5308), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnameCref] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHlabelcref] = ACTIONS(5308), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCrefrange] = ACTIONS(5308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnewlabel] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5308), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5308), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5308), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdef] = ACTIONS(5308), + [anon_sym_BSLASHlet] = ACTIONS(5308), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5308), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5308), + [anon_sym_BSLASHgls] = ACTIONS(5308), + [anon_sym_BSLASHGls] = ACTIONS(5308), + [anon_sym_BSLASHGLS] = ACTIONS(5308), + [anon_sym_BSLASHglspl] = ACTIONS(5308), + [anon_sym_BSLASHGlspl] = ACTIONS(5308), + [anon_sym_BSLASHGLSpl] = ACTIONS(5308), + [anon_sym_BSLASHglsdisp] = ACTIONS(5308), + [anon_sym_BSLASHglslink] = ACTIONS(5308), + [anon_sym_BSLASHglstext] = ACTIONS(5308), + [anon_sym_BSLASHGlstext] = ACTIONS(5308), + [anon_sym_BSLASHGLStext] = ACTIONS(5308), + [anon_sym_BSLASHglsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5308), + [anon_sym_BSLASHglsplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSplural] = ACTIONS(5308), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHglsname] = ACTIONS(5308), + [anon_sym_BSLASHGlsname] = ACTIONS(5308), + [anon_sym_BSLASHGLSname] = ACTIONS(5308), + [anon_sym_BSLASHglssymbol] = ACTIONS(5308), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5308), + [anon_sym_BSLASHglsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5308), + [anon_sym_BSLASHglsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5308), + [anon_sym_BSLASHglsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5308), + [anon_sym_BSLASHglsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5308), + [anon_sym_BSLASHglsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5308), + [anon_sym_BSLASHnewacronym] = ACTIONS(5308), + [anon_sym_BSLASHacrshort] = ACTIONS(5308), + [anon_sym_BSLASHAcrshort] = ACTIONS(5308), + [anon_sym_BSLASHACRshort] = ACTIONS(5308), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5308), + [anon_sym_BSLASHacrlong] = ACTIONS(5308), + [anon_sym_BSLASHAcrlong] = ACTIONS(5308), + [anon_sym_BSLASHACRlong] = ACTIONS(5308), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5308), + [anon_sym_BSLASHacrfull] = ACTIONS(5308), + [anon_sym_BSLASHAcrfull] = ACTIONS(5308), + [anon_sym_BSLASHACRfull] = ACTIONS(5308), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5308), + [anon_sym_BSLASHacs] = ACTIONS(5308), + [anon_sym_BSLASHAcs] = ACTIONS(5308), + [anon_sym_BSLASHacsp] = ACTIONS(5308), + [anon_sym_BSLASHAcsp] = ACTIONS(5308), + [anon_sym_BSLASHacl] = ACTIONS(5308), + [anon_sym_BSLASHAcl] = ACTIONS(5308), + [anon_sym_BSLASHaclp] = ACTIONS(5308), + [anon_sym_BSLASHAclp] = ACTIONS(5308), + [anon_sym_BSLASHacf] = ACTIONS(5308), + [anon_sym_BSLASHAcf] = ACTIONS(5308), + [anon_sym_BSLASHacfp] = ACTIONS(5308), + [anon_sym_BSLASHAcfp] = ACTIONS(5308), + [anon_sym_BSLASHac] = ACTIONS(5308), + [anon_sym_BSLASHAc] = ACTIONS(5308), + [anon_sym_BSLASHacp] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5308), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5308), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5308), + [anon_sym_BSLASHcolor] = ACTIONS(5308), + [anon_sym_BSLASHcolorbox] = ACTIONS(5308), + [anon_sym_BSLASHtextcolor] = ACTIONS(5308), + [anon_sym_BSLASHpagecolor] = ACTIONS(5308), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5308), + [anon_sym_BSLASHtext] = ACTIONS(5308), + [anon_sym_BSLASHintertext] = ACTIONS(5308), + [anon_sym_shortintertext] = ACTIONS(5308), }, [1009] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5233), - [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), + [sym_command_name] = ACTIONS(5312), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_BSLASHpart] = ACTIONS(5312), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddpart] = ACTIONS(5312), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHchapter] = ACTIONS(5312), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddchap] = ACTIONS(5312), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsection] = ACTIONS(5312), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddsec] = ACTIONS(5312), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHparagraph] = ACTIONS(5312), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5312), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHitem] = ACTIONS(5312), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5312), + [sym_placeholder] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_SQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5310), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5310), + [anon_sym_BSLASHbegin] = ACTIONS(5312), + [anon_sym_BSLASHusepackage] = ACTIONS(5312), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5312), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5312), + [anon_sym_BSLASHinclude] = ACTIONS(5312), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5312), + [anon_sym_BSLASHinput] = ACTIONS(5312), + [anon_sym_BSLASHsubfile] = ACTIONS(5312), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5312), + [anon_sym_BSLASHbibliography] = ACTIONS(5312), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5312), + [anon_sym_BSLASHincludesvg] = ACTIONS(5312), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5312), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5312), + [anon_sym_BSLASHimport] = ACTIONS(5312), + [anon_sym_BSLASHsubimport] = ACTIONS(5312), + [anon_sym_BSLASHinputfrom] = ACTIONS(5312), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5312), + [anon_sym_BSLASHincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHcaption] = ACTIONS(5312), + [anon_sym_BSLASHcite] = ACTIONS(5312), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCite] = ACTIONS(5312), + [anon_sym_BSLASHnocite] = ACTIONS(5312), + [anon_sym_BSLASHcitet] = ACTIONS(5312), + [anon_sym_BSLASHcitep] = ACTIONS(5312), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteauthor] = ACTIONS(5312), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5312), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitetitle] = ACTIONS(5312), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteyear] = ACTIONS(5312), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitedate] = ACTIONS(5312), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteurl] = ACTIONS(5312), + [anon_sym_BSLASHfullcite] = ACTIONS(5312), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5312), + [anon_sym_BSLASHcitealt] = ACTIONS(5312), + [anon_sym_BSLASHcitealp] = ACTIONS(5312), + [anon_sym_BSLASHcitetext] = ACTIONS(5312), + [anon_sym_BSLASHparencite] = ACTIONS(5312), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHParencite] = ACTIONS(5312), + [anon_sym_BSLASHfootcite] = ACTIONS(5312), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5312), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5312), + [anon_sym_BSLASHtextcite] = ACTIONS(5312), + [anon_sym_BSLASHTextcite] = ACTIONS(5312), + [anon_sym_BSLASHsmartcite] = ACTIONS(5312), + [anon_sym_BSLASHSmartcite] = ACTIONS(5312), + [anon_sym_BSLASHsupercite] = ACTIONS(5312), + [anon_sym_BSLASHautocite] = ACTIONS(5312), + [anon_sym_BSLASHAutocite] = ACTIONS(5312), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHvolcite] = ACTIONS(5312), + [anon_sym_BSLASHVolcite] = ACTIONS(5312), + [anon_sym_BSLASHpvolcite] = ACTIONS(5312), + [anon_sym_BSLASHPvolcite] = ACTIONS(5312), + [anon_sym_BSLASHfvolcite] = ACTIONS(5312), + [anon_sym_BSLASHftvolcite] = ACTIONS(5312), + [anon_sym_BSLASHsvolcite] = ACTIONS(5312), + [anon_sym_BSLASHSvolcite] = ACTIONS(5312), + [anon_sym_BSLASHtvolcite] = ACTIONS(5312), + [anon_sym_BSLASHTvolcite] = ACTIONS(5312), + [anon_sym_BSLASHavolcite] = ACTIONS(5312), + [anon_sym_BSLASHAvolcite] = ACTIONS(5312), + [anon_sym_BSLASHnotecite] = ACTIONS(5312), + [anon_sym_BSLASHNotecite] = ACTIONS(5312), + [anon_sym_BSLASHpnotecite] = ACTIONS(5312), + [anon_sym_BSLASHPnotecite] = ACTIONS(5312), + [anon_sym_BSLASHfnotecite] = ACTIONS(5312), + [anon_sym_BSLASHlabel] = ACTIONS(5312), + [anon_sym_BSLASHref] = ACTIONS(5312), + [anon_sym_BSLASHeqref] = ACTIONS(5312), + [anon_sym_BSLASHvref] = ACTIONS(5312), + [anon_sym_BSLASHVref] = ACTIONS(5312), + [anon_sym_BSLASHautoref] = ACTIONS(5312), + [anon_sym_BSLASHpageref] = ACTIONS(5312), + [anon_sym_BSLASHcref] = ACTIONS(5312), + [anon_sym_BSLASHCref] = ACTIONS(5312), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnameCref] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHlabelcref] = ACTIONS(5312), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCrefrange] = ACTIONS(5312), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnewlabel] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5312), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5312), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5312), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdef] = ACTIONS(5312), + [anon_sym_BSLASHlet] = ACTIONS(5312), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5312), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5312), + [anon_sym_BSLASHgls] = ACTIONS(5312), + [anon_sym_BSLASHGls] = ACTIONS(5312), + [anon_sym_BSLASHGLS] = ACTIONS(5312), + [anon_sym_BSLASHglspl] = ACTIONS(5312), + [anon_sym_BSLASHGlspl] = ACTIONS(5312), + [anon_sym_BSLASHGLSpl] = ACTIONS(5312), + [anon_sym_BSLASHglsdisp] = ACTIONS(5312), + [anon_sym_BSLASHglslink] = ACTIONS(5312), + [anon_sym_BSLASHglstext] = ACTIONS(5312), + [anon_sym_BSLASHGlstext] = ACTIONS(5312), + [anon_sym_BSLASHGLStext] = ACTIONS(5312), + [anon_sym_BSLASHglsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5312), + [anon_sym_BSLASHglsplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSplural] = ACTIONS(5312), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHglsname] = ACTIONS(5312), + [anon_sym_BSLASHGlsname] = ACTIONS(5312), + [anon_sym_BSLASHGLSname] = ACTIONS(5312), + [anon_sym_BSLASHglssymbol] = ACTIONS(5312), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5312), + [anon_sym_BSLASHglsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5312), + [anon_sym_BSLASHglsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5312), + [anon_sym_BSLASHglsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5312), + [anon_sym_BSLASHglsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5312), + [anon_sym_BSLASHglsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5312), + [anon_sym_BSLASHnewacronym] = ACTIONS(5312), + [anon_sym_BSLASHacrshort] = ACTIONS(5312), + [anon_sym_BSLASHAcrshort] = ACTIONS(5312), + [anon_sym_BSLASHACRshort] = ACTIONS(5312), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5312), + [anon_sym_BSLASHacrlong] = ACTIONS(5312), + [anon_sym_BSLASHAcrlong] = ACTIONS(5312), + [anon_sym_BSLASHACRlong] = ACTIONS(5312), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5312), + [anon_sym_BSLASHacrfull] = ACTIONS(5312), + [anon_sym_BSLASHAcrfull] = ACTIONS(5312), + [anon_sym_BSLASHACRfull] = ACTIONS(5312), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5312), + [anon_sym_BSLASHacs] = ACTIONS(5312), + [anon_sym_BSLASHAcs] = ACTIONS(5312), + [anon_sym_BSLASHacsp] = ACTIONS(5312), + [anon_sym_BSLASHAcsp] = ACTIONS(5312), + [anon_sym_BSLASHacl] = ACTIONS(5312), + [anon_sym_BSLASHAcl] = ACTIONS(5312), + [anon_sym_BSLASHaclp] = ACTIONS(5312), + [anon_sym_BSLASHAclp] = ACTIONS(5312), + [anon_sym_BSLASHacf] = ACTIONS(5312), + [anon_sym_BSLASHAcf] = ACTIONS(5312), + [anon_sym_BSLASHacfp] = ACTIONS(5312), + [anon_sym_BSLASHAcfp] = ACTIONS(5312), + [anon_sym_BSLASHac] = ACTIONS(5312), + [anon_sym_BSLASHAc] = ACTIONS(5312), + [anon_sym_BSLASHacp] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5312), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5312), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5312), + [anon_sym_BSLASHcolor] = ACTIONS(5312), + [anon_sym_BSLASHcolorbox] = ACTIONS(5312), + [anon_sym_BSLASHtextcolor] = ACTIONS(5312), + [anon_sym_BSLASHpagecolor] = ACTIONS(5312), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5312), + [anon_sym_BSLASHtext] = ACTIONS(5312), + [anon_sym_BSLASHintertext] = ACTIONS(5312), + [anon_sym_shortintertext] = ACTIONS(5312), }, [1010] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_BSLASHpart] = ACTIONS(5316), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddpart] = ACTIONS(5316), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHchapter] = ACTIONS(5316), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddchap] = ACTIONS(5316), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsection] = ACTIONS(5316), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddsec] = ACTIONS(5316), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHparagraph] = ACTIONS(5316), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5316), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHitem] = ACTIONS(5316), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASHbegin] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [1011] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_BSLASHpart] = ACTIONS(5320), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddpart] = ACTIONS(5320), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHchapter] = ACTIONS(5320), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddchap] = ACTIONS(5320), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsection] = ACTIONS(5320), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddsec] = ACTIONS(5320), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHparagraph] = ACTIONS(5320), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5320), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHitem] = ACTIONS(5320), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASHbegin] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [1012] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_BSLASHpart] = ACTIONS(5324), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddpart] = ACTIONS(5324), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHchapter] = ACTIONS(5324), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddchap] = ACTIONS(5324), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsection] = ACTIONS(5324), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddsec] = ACTIONS(5324), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHparagraph] = ACTIONS(5324), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5324), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHitem] = ACTIONS(5324), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASHbegin] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [1013] = { - [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(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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_BSLASHpart] = ACTIONS(5328), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddpart] = ACTIONS(5328), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHchapter] = ACTIONS(5328), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddchap] = ACTIONS(5328), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsection] = ACTIONS(5328), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddsec] = ACTIONS(5328), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHparagraph] = ACTIONS(5328), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5328), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHitem] = ACTIONS(5328), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASHbegin] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [1014] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_BSLASHpart] = ACTIONS(5332), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddpart] = ACTIONS(5332), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHchapter] = ACTIONS(5332), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddchap] = ACTIONS(5332), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsection] = ACTIONS(5332), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddsec] = ACTIONS(5332), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHparagraph] = ACTIONS(5332), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5332), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHitem] = ACTIONS(5332), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASHbegin] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [1015] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_BSLASHpart] = ACTIONS(5336), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddpart] = ACTIONS(5336), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHchapter] = ACTIONS(5336), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddchap] = ACTIONS(5336), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsection] = ACTIONS(5336), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddsec] = ACTIONS(5336), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHparagraph] = ACTIONS(5336), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5336), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHitem] = ACTIONS(5336), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASHbegin] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [1016] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_BSLASHpart] = ACTIONS(5340), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddpart] = ACTIONS(5340), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHchapter] = ACTIONS(5340), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddchap] = ACTIONS(5340), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsection] = ACTIONS(5340), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddsec] = ACTIONS(5340), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHparagraph] = ACTIONS(5340), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5340), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHitem] = ACTIONS(5340), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASHbegin] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [1017] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_BSLASHpart] = ACTIONS(5344), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddpart] = ACTIONS(5344), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHchapter] = ACTIONS(5344), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddchap] = ACTIONS(5344), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsection] = ACTIONS(5344), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddsec] = ACTIONS(5344), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHparagraph] = ACTIONS(5344), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5344), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHitem] = ACTIONS(5344), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASHbegin] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [1018] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_BSLASHpart] = ACTIONS(5348), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddpart] = ACTIONS(5348), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHchapter] = ACTIONS(5348), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddchap] = ACTIONS(5348), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsection] = ACTIONS(5348), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddsec] = ACTIONS(5348), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHparagraph] = ACTIONS(5348), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5348), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHitem] = ACTIONS(5348), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASHbegin] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [1019] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_BSLASHpart] = ACTIONS(5352), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddpart] = ACTIONS(5352), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHchapter] = ACTIONS(5352), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddchap] = ACTIONS(5352), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsection] = ACTIONS(5352), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddsec] = ACTIONS(5352), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHparagraph] = ACTIONS(5352), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5352), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHitem] = ACTIONS(5352), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASHbegin] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [1020] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_BSLASHpart] = ACTIONS(5356), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddpart] = ACTIONS(5356), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHchapter] = ACTIONS(5356), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddchap] = ACTIONS(5356), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsection] = ACTIONS(5356), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddsec] = ACTIONS(5356), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHparagraph] = ACTIONS(5356), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5356), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHitem] = ACTIONS(5356), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASHbegin] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [1021] = { - [sym_command_name] = ACTIONS(4943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_BSLASHpart] = ACTIONS(4943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddpart] = ACTIONS(4943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHchapter] = ACTIONS(4943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddchap] = ACTIONS(4943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsection] = ACTIONS(4943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddsec] = ACTIONS(4943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHparagraph] = ACTIONS(4943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHitem] = ACTIONS(4943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4941), - [sym_word] = ACTIONS(4943), - [sym_placeholder] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4943), - [anon_sym__] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), - [anon_sym_BSLASHbegin] = ACTIONS(4943), - [anon_sym_BSLASHend] = ACTIONS(4943), - [anon_sym_BSLASHusepackage] = ACTIONS(4943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), - [anon_sym_BSLASHinclude] = ACTIONS(4943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), - [anon_sym_BSLASHinput] = ACTIONS(4943), - [anon_sym_BSLASHsubfile] = ACTIONS(4943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), - [anon_sym_BSLASHbibliography] = ACTIONS(4943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), - [anon_sym_BSLASHincludesvg] = ACTIONS(4943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), - [anon_sym_BSLASHimport] = ACTIONS(4943), - [anon_sym_BSLASHsubimport] = ACTIONS(4943), - [anon_sym_BSLASHinputfrom] = ACTIONS(4943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), - [anon_sym_BSLASHincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHcaption] = ACTIONS(4943), - [anon_sym_BSLASHcite] = ACTIONS(4943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCite] = ACTIONS(4943), - [anon_sym_BSLASHnocite] = ACTIONS(4943), - [anon_sym_BSLASHcitet] = ACTIONS(4943), - [anon_sym_BSLASHcitep] = ACTIONS(4943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteyear] = ACTIONS(4943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitedate] = ACTIONS(4943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteurl] = ACTIONS(4943), - [anon_sym_BSLASHfullcite] = ACTIONS(4943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), - [anon_sym_BSLASHcitealt] = ACTIONS(4943), - [anon_sym_BSLASHcitealp] = ACTIONS(4943), - [anon_sym_BSLASHcitetext] = ACTIONS(4943), - [anon_sym_BSLASHparencite] = ACTIONS(4943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHParencite] = ACTIONS(4943), - [anon_sym_BSLASHfootcite] = ACTIONS(4943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), - [anon_sym_BSLASHtextcite] = ACTIONS(4943), - [anon_sym_BSLASHTextcite] = ACTIONS(4943), - [anon_sym_BSLASHsmartcite] = ACTIONS(4943), - [anon_sym_BSLASHSmartcite] = ACTIONS(4943), - [anon_sym_BSLASHsupercite] = ACTIONS(4943), - [anon_sym_BSLASHautocite] = ACTIONS(4943), - [anon_sym_BSLASHAutocite] = ACTIONS(4943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHvolcite] = ACTIONS(4943), - [anon_sym_BSLASHVolcite] = ACTIONS(4943), - [anon_sym_BSLASHpvolcite] = ACTIONS(4943), - [anon_sym_BSLASHPvolcite] = ACTIONS(4943), - [anon_sym_BSLASHfvolcite] = ACTIONS(4943), - [anon_sym_BSLASHftvolcite] = ACTIONS(4943), - [anon_sym_BSLASHsvolcite] = ACTIONS(4943), - [anon_sym_BSLASHSvolcite] = ACTIONS(4943), - [anon_sym_BSLASHtvolcite] = ACTIONS(4943), - [anon_sym_BSLASHTvolcite] = ACTIONS(4943), - [anon_sym_BSLASHavolcite] = ACTIONS(4943), - [anon_sym_BSLASHAvolcite] = ACTIONS(4943), - [anon_sym_BSLASHnotecite] = ACTIONS(4943), - [anon_sym_BSLASHNotecite] = ACTIONS(4943), - [anon_sym_BSLASHpnotecite] = ACTIONS(4943), - [anon_sym_BSLASHPnotecite] = ACTIONS(4943), - [anon_sym_BSLASHfnotecite] = ACTIONS(4943), - [anon_sym_BSLASHlabel] = ACTIONS(4943), - [anon_sym_BSLASHref] = ACTIONS(4943), - [anon_sym_BSLASHeqref] = ACTIONS(4943), - [anon_sym_BSLASHvref] = ACTIONS(4943), - [anon_sym_BSLASHVref] = ACTIONS(4943), - [anon_sym_BSLASHautoref] = ACTIONS(4943), - [anon_sym_BSLASHpageref] = ACTIONS(4943), - [anon_sym_BSLASHcref] = ACTIONS(4943), - [anon_sym_BSLASHCref] = ACTIONS(4943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnameCref] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHlabelcref] = ACTIONS(4943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnewlabel] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), - [anon_sym_BSLASHdef] = ACTIONS(4943), - [anon_sym_BSLASHlet] = ACTIONS(4943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), - [anon_sym_BSLASHgls] = ACTIONS(4943), - [anon_sym_BSLASHGls] = ACTIONS(4943), - [anon_sym_BSLASHGLS] = ACTIONS(4943), - [anon_sym_BSLASHglspl] = ACTIONS(4943), - [anon_sym_BSLASHGlspl] = ACTIONS(4943), - [anon_sym_BSLASHGLSpl] = ACTIONS(4943), - [anon_sym_BSLASHglsdisp] = ACTIONS(4943), - [anon_sym_BSLASHglslink] = ACTIONS(4943), - [anon_sym_BSLASHglstext] = ACTIONS(4943), - [anon_sym_BSLASHGlstext] = ACTIONS(4943), - [anon_sym_BSLASHGLStext] = ACTIONS(4943), - [anon_sym_BSLASHglsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), - [anon_sym_BSLASHglsplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSplural] = ACTIONS(4943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHglsname] = ACTIONS(4943), - [anon_sym_BSLASHGlsname] = ACTIONS(4943), - [anon_sym_BSLASHGLSname] = ACTIONS(4943), - [anon_sym_BSLASHglssymbol] = ACTIONS(4943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), - [anon_sym_BSLASHglsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), - [anon_sym_BSLASHglsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), - [anon_sym_BSLASHglsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), - [anon_sym_BSLASHglsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), - [anon_sym_BSLASHglsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), - [anon_sym_BSLASHnewacronym] = ACTIONS(4943), - [anon_sym_BSLASHacrshort] = ACTIONS(4943), - [anon_sym_BSLASHAcrshort] = ACTIONS(4943), - [anon_sym_BSLASHACRshort] = ACTIONS(4943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), - [anon_sym_BSLASHacrlong] = ACTIONS(4943), - [anon_sym_BSLASHAcrlong] = ACTIONS(4943), - [anon_sym_BSLASHACRlong] = ACTIONS(4943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), - [anon_sym_BSLASHacrfull] = ACTIONS(4943), - [anon_sym_BSLASHAcrfull] = ACTIONS(4943), - [anon_sym_BSLASHACRfull] = ACTIONS(4943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), - [anon_sym_BSLASHacs] = ACTIONS(4943), - [anon_sym_BSLASHAcs] = ACTIONS(4943), - [anon_sym_BSLASHacsp] = ACTIONS(4943), - [anon_sym_BSLASHAcsp] = ACTIONS(4943), - [anon_sym_BSLASHacl] = ACTIONS(4943), - [anon_sym_BSLASHAcl] = ACTIONS(4943), - [anon_sym_BSLASHaclp] = ACTIONS(4943), - [anon_sym_BSLASHAclp] = ACTIONS(4943), - [anon_sym_BSLASHacf] = ACTIONS(4943), - [anon_sym_BSLASHAcf] = ACTIONS(4943), - [anon_sym_BSLASHacfp] = ACTIONS(4943), - [anon_sym_BSLASHAcfp] = ACTIONS(4943), - [anon_sym_BSLASHac] = ACTIONS(4943), - [anon_sym_BSLASHAc] = ACTIONS(4943), - [anon_sym_BSLASHacp] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), - [anon_sym_BSLASHcolor] = ACTIONS(4943), - [anon_sym_BSLASHcolorbox] = ACTIONS(4943), - [anon_sym_BSLASHtextcolor] = ACTIONS(4943), - [anon_sym_BSLASHpagecolor] = ACTIONS(4943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), - [anon_sym_BSLASHtext] = ACTIONS(4943), - [anon_sym_BSLASHintertext] = ACTIONS(4943), - [anon_sym_shortintertext] = ACTIONS(4943), + [sym_command_name] = ACTIONS(5022), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_BSLASHpart] = ACTIONS(5022), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddpart] = ACTIONS(5022), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHchapter] = ACTIONS(5022), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddchap] = ACTIONS(5022), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsection] = ACTIONS(5022), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddsec] = ACTIONS(5022), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHparagraph] = ACTIONS(5022), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5022), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHitem] = ACTIONS(5022), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [sym_word] = ACTIONS(5022), + [sym_placeholder] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5020), + [anon_sym_BSLASHbegin] = ACTIONS(5022), + [anon_sym_BSLASHend] = ACTIONS(5022), + [anon_sym_BSLASHusepackage] = ACTIONS(5022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5022), + [anon_sym_BSLASHinclude] = ACTIONS(5022), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5022), + [anon_sym_BSLASHinput] = ACTIONS(5022), + [anon_sym_BSLASHsubfile] = ACTIONS(5022), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5022), + [anon_sym_BSLASHbibliography] = ACTIONS(5022), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5022), + [anon_sym_BSLASHincludesvg] = ACTIONS(5022), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5022), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), + [anon_sym_BSLASHimport] = ACTIONS(5022), + [anon_sym_BSLASHsubimport] = ACTIONS(5022), + [anon_sym_BSLASHinputfrom] = ACTIONS(5022), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5022), + [anon_sym_BSLASHincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHcaption] = ACTIONS(5022), + [anon_sym_BSLASHcite] = ACTIONS(5022), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCite] = ACTIONS(5022), + [anon_sym_BSLASHnocite] = ACTIONS(5022), + [anon_sym_BSLASHcitet] = ACTIONS(5022), + [anon_sym_BSLASHcitep] = ACTIONS(5022), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteauthor] = ACTIONS(5022), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5022), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitetitle] = ACTIONS(5022), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteyear] = ACTIONS(5022), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitedate] = ACTIONS(5022), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteurl] = ACTIONS(5022), + [anon_sym_BSLASHfullcite] = ACTIONS(5022), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5022), + [anon_sym_BSLASHcitealt] = ACTIONS(5022), + [anon_sym_BSLASHcitealp] = ACTIONS(5022), + [anon_sym_BSLASHcitetext] = ACTIONS(5022), + [anon_sym_BSLASHparencite] = ACTIONS(5022), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHParencite] = ACTIONS(5022), + [anon_sym_BSLASHfootcite] = ACTIONS(5022), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5022), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5022), + [anon_sym_BSLASHtextcite] = ACTIONS(5022), + [anon_sym_BSLASHTextcite] = ACTIONS(5022), + [anon_sym_BSLASHsmartcite] = ACTIONS(5022), + [anon_sym_BSLASHSmartcite] = ACTIONS(5022), + [anon_sym_BSLASHsupercite] = ACTIONS(5022), + [anon_sym_BSLASHautocite] = ACTIONS(5022), + [anon_sym_BSLASHAutocite] = ACTIONS(5022), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHvolcite] = ACTIONS(5022), + [anon_sym_BSLASHVolcite] = ACTIONS(5022), + [anon_sym_BSLASHpvolcite] = ACTIONS(5022), + [anon_sym_BSLASHPvolcite] = ACTIONS(5022), + [anon_sym_BSLASHfvolcite] = ACTIONS(5022), + [anon_sym_BSLASHftvolcite] = ACTIONS(5022), + [anon_sym_BSLASHsvolcite] = ACTIONS(5022), + [anon_sym_BSLASHSvolcite] = ACTIONS(5022), + [anon_sym_BSLASHtvolcite] = ACTIONS(5022), + [anon_sym_BSLASHTvolcite] = ACTIONS(5022), + [anon_sym_BSLASHavolcite] = ACTIONS(5022), + [anon_sym_BSLASHAvolcite] = ACTIONS(5022), + [anon_sym_BSLASHnotecite] = ACTIONS(5022), + [anon_sym_BSLASHNotecite] = ACTIONS(5022), + [anon_sym_BSLASHpnotecite] = ACTIONS(5022), + [anon_sym_BSLASHPnotecite] = ACTIONS(5022), + [anon_sym_BSLASHfnotecite] = ACTIONS(5022), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [anon_sym_BSLASHref] = ACTIONS(5022), + [anon_sym_BSLASHeqref] = ACTIONS(5022), + [anon_sym_BSLASHvref] = ACTIONS(5022), + [anon_sym_BSLASHVref] = ACTIONS(5022), + [anon_sym_BSLASHautoref] = ACTIONS(5022), + [anon_sym_BSLASHpageref] = ACTIONS(5022), + [anon_sym_BSLASHcref] = ACTIONS(5022), + [anon_sym_BSLASHCref] = ACTIONS(5022), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnameCref] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHlabelcref] = ACTIONS(5022), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCrefrange] = ACTIONS(5022), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnewlabel] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5022), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5022), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5022), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdef] = ACTIONS(5022), + [anon_sym_BSLASHlet] = ACTIONS(5022), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5022), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5022), + [anon_sym_BSLASHgls] = ACTIONS(5022), + [anon_sym_BSLASHGls] = ACTIONS(5022), + [anon_sym_BSLASHGLS] = ACTIONS(5022), + [anon_sym_BSLASHglspl] = ACTIONS(5022), + [anon_sym_BSLASHGlspl] = ACTIONS(5022), + [anon_sym_BSLASHGLSpl] = ACTIONS(5022), + [anon_sym_BSLASHglsdisp] = ACTIONS(5022), + [anon_sym_BSLASHglslink] = ACTIONS(5022), + [anon_sym_BSLASHglstext] = ACTIONS(5022), + [anon_sym_BSLASHGlstext] = ACTIONS(5022), + [anon_sym_BSLASHGLStext] = ACTIONS(5022), + [anon_sym_BSLASHglsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5022), + [anon_sym_BSLASHglsplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSplural] = ACTIONS(5022), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHglsname] = ACTIONS(5022), + [anon_sym_BSLASHGlsname] = ACTIONS(5022), + [anon_sym_BSLASHGLSname] = ACTIONS(5022), + [anon_sym_BSLASHglssymbol] = ACTIONS(5022), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5022), + [anon_sym_BSLASHglsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5022), + [anon_sym_BSLASHglsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5022), + [anon_sym_BSLASHglsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5022), + [anon_sym_BSLASHglsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5022), + [anon_sym_BSLASHglsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5022), + [anon_sym_BSLASHnewacronym] = ACTIONS(5022), + [anon_sym_BSLASHacrshort] = ACTIONS(5022), + [anon_sym_BSLASHAcrshort] = ACTIONS(5022), + [anon_sym_BSLASHACRshort] = ACTIONS(5022), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5022), + [anon_sym_BSLASHacrlong] = ACTIONS(5022), + [anon_sym_BSLASHAcrlong] = ACTIONS(5022), + [anon_sym_BSLASHACRlong] = ACTIONS(5022), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5022), + [anon_sym_BSLASHacrfull] = ACTIONS(5022), + [anon_sym_BSLASHAcrfull] = ACTIONS(5022), + [anon_sym_BSLASHACRfull] = ACTIONS(5022), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5022), + [anon_sym_BSLASHacs] = ACTIONS(5022), + [anon_sym_BSLASHAcs] = ACTIONS(5022), + [anon_sym_BSLASHacsp] = ACTIONS(5022), + [anon_sym_BSLASHAcsp] = ACTIONS(5022), + [anon_sym_BSLASHacl] = ACTIONS(5022), + [anon_sym_BSLASHAcl] = ACTIONS(5022), + [anon_sym_BSLASHaclp] = ACTIONS(5022), + [anon_sym_BSLASHAclp] = ACTIONS(5022), + [anon_sym_BSLASHacf] = ACTIONS(5022), + [anon_sym_BSLASHAcf] = ACTIONS(5022), + [anon_sym_BSLASHacfp] = ACTIONS(5022), + [anon_sym_BSLASHAcfp] = ACTIONS(5022), + [anon_sym_BSLASHac] = ACTIONS(5022), + [anon_sym_BSLASHAc] = ACTIONS(5022), + [anon_sym_BSLASHacp] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5022), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5022), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5022), + [anon_sym_BSLASHcolor] = ACTIONS(5022), + [anon_sym_BSLASHcolorbox] = ACTIONS(5022), + [anon_sym_BSLASHtextcolor] = ACTIONS(5022), + [anon_sym_BSLASHpagecolor] = ACTIONS(5022), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5022), + [anon_sym_BSLASHtext] = ACTIONS(5022), + [anon_sym_BSLASHintertext] = ACTIONS(5022), + [anon_sym_shortintertext] = ACTIONS(5022), }, [1022] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_BSLASHpart] = ACTIONS(5281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddpart] = ACTIONS(5281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHchapter] = ACTIONS(5281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddchap] = ACTIONS(5281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsection] = ACTIONS(5281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddsec] = ACTIONS(5281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHparagraph] = ACTIONS(5281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHitem] = ACTIONS(5281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASHbegin] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_BSLASHpart] = ACTIONS(5360), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddpart] = ACTIONS(5360), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHchapter] = ACTIONS(5360), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddchap] = ACTIONS(5360), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsection] = ACTIONS(5360), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddsec] = ACTIONS(5360), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHparagraph] = ACTIONS(5360), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5360), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHitem] = ACTIONS(5360), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASHbegin] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [1023] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_BSLASHpart] = ACTIONS(5309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddpart] = ACTIONS(5309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHchapter] = ACTIONS(5309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddchap] = ACTIONS(5309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsection] = ACTIONS(5309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddsec] = ACTIONS(5309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHparagraph] = ACTIONS(5309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHitem] = ACTIONS(5309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASHbegin] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_BSLASHpart] = ACTIONS(5388), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddpart] = ACTIONS(5388), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHchapter] = ACTIONS(5388), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddchap] = ACTIONS(5388), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsection] = ACTIONS(5388), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddsec] = ACTIONS(5388), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHparagraph] = ACTIONS(5388), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5388), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHitem] = ACTIONS(5388), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASHbegin] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [1024] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_BSLASHpart] = ACTIONS(5157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddpart] = ACTIONS(5157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHchapter] = ACTIONS(5157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddchap] = ACTIONS(5157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsection] = ACTIONS(5157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddsec] = ACTIONS(5157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHparagraph] = ACTIONS(5157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHitem] = ACTIONS(5157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASHbegin] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_BSLASHpart] = ACTIONS(5236), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddpart] = ACTIONS(5236), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHchapter] = ACTIONS(5236), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddchap] = ACTIONS(5236), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsection] = ACTIONS(5236), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddsec] = ACTIONS(5236), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHparagraph] = ACTIONS(5236), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5236), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHitem] = ACTIONS(5236), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASHbegin] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [1025] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5081), - [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), + [sym_command_name] = ACTIONS(5160), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_BSLASHpart] = ACTIONS(5160), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddpart] = ACTIONS(5160), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHchapter] = ACTIONS(5160), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddchap] = ACTIONS(5160), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsection] = ACTIONS(5160), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddsec] = ACTIONS(5160), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHparagraph] = ACTIONS(5160), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5160), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHitem] = ACTIONS(5160), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [sym_word] = ACTIONS(5160), + [sym_placeholder] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym__] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_SQUOTE] = ACTIONS(5160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5158), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5158), + [anon_sym_BSLASHbegin] = ACTIONS(5160), + [anon_sym_BSLASHusepackage] = ACTIONS(5160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5160), + [anon_sym_BSLASHinclude] = ACTIONS(5160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5160), + [anon_sym_BSLASHinput] = ACTIONS(5160), + [anon_sym_BSLASHsubfile] = ACTIONS(5160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5160), + [anon_sym_BSLASHbibliography] = ACTIONS(5160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5160), + [anon_sym_BSLASHincludesvg] = ACTIONS(5160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5160), + [anon_sym_BSLASHimport] = ACTIONS(5160), + [anon_sym_BSLASHsubimport] = ACTIONS(5160), + [anon_sym_BSLASHinputfrom] = ACTIONS(5160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5160), + [anon_sym_BSLASHincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHcaption] = ACTIONS(5160), + [anon_sym_BSLASHcite] = ACTIONS(5160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCite] = ACTIONS(5160), + [anon_sym_BSLASHnocite] = ACTIONS(5160), + [anon_sym_BSLASHcitet] = ACTIONS(5160), + [anon_sym_BSLASHcitep] = ACTIONS(5160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteauthor] = ACTIONS(5160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitetitle] = ACTIONS(5160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteyear] = ACTIONS(5160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitedate] = ACTIONS(5160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteurl] = ACTIONS(5160), + [anon_sym_BSLASHfullcite] = ACTIONS(5160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5160), + [anon_sym_BSLASHcitealt] = ACTIONS(5160), + [anon_sym_BSLASHcitealp] = ACTIONS(5160), + [anon_sym_BSLASHcitetext] = ACTIONS(5160), + [anon_sym_BSLASHparencite] = ACTIONS(5160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHParencite] = ACTIONS(5160), + [anon_sym_BSLASHfootcite] = ACTIONS(5160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5160), + [anon_sym_BSLASHtextcite] = ACTIONS(5160), + [anon_sym_BSLASHTextcite] = ACTIONS(5160), + [anon_sym_BSLASHsmartcite] = ACTIONS(5160), + [anon_sym_BSLASHSmartcite] = ACTIONS(5160), + [anon_sym_BSLASHsupercite] = ACTIONS(5160), + [anon_sym_BSLASHautocite] = ACTIONS(5160), + [anon_sym_BSLASHAutocite] = ACTIONS(5160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHvolcite] = ACTIONS(5160), + [anon_sym_BSLASHVolcite] = ACTIONS(5160), + [anon_sym_BSLASHpvolcite] = ACTIONS(5160), + [anon_sym_BSLASHPvolcite] = ACTIONS(5160), + [anon_sym_BSLASHfvolcite] = ACTIONS(5160), + [anon_sym_BSLASHftvolcite] = ACTIONS(5160), + [anon_sym_BSLASHsvolcite] = ACTIONS(5160), + [anon_sym_BSLASHSvolcite] = ACTIONS(5160), + [anon_sym_BSLASHtvolcite] = ACTIONS(5160), + [anon_sym_BSLASHTvolcite] = ACTIONS(5160), + [anon_sym_BSLASHavolcite] = ACTIONS(5160), + [anon_sym_BSLASHAvolcite] = ACTIONS(5160), + [anon_sym_BSLASHnotecite] = ACTIONS(5160), + [anon_sym_BSLASHNotecite] = ACTIONS(5160), + [anon_sym_BSLASHpnotecite] = ACTIONS(5160), + [anon_sym_BSLASHPnotecite] = ACTIONS(5160), + [anon_sym_BSLASHfnotecite] = ACTIONS(5160), + [anon_sym_BSLASHlabel] = ACTIONS(5160), + [anon_sym_BSLASHref] = ACTIONS(5160), + [anon_sym_BSLASHeqref] = ACTIONS(5160), + [anon_sym_BSLASHvref] = ACTIONS(5160), + [anon_sym_BSLASHVref] = ACTIONS(5160), + [anon_sym_BSLASHautoref] = ACTIONS(5160), + [anon_sym_BSLASHpageref] = ACTIONS(5160), + [anon_sym_BSLASHcref] = ACTIONS(5160), + [anon_sym_BSLASHCref] = ACTIONS(5160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnameCref] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHlabelcref] = ACTIONS(5160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCrefrange] = ACTIONS(5160), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnewlabel] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5160), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5160), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdef] = ACTIONS(5160), + [anon_sym_BSLASHlet] = ACTIONS(5160), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5160), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5160), + [anon_sym_BSLASHgls] = ACTIONS(5160), + [anon_sym_BSLASHGls] = ACTIONS(5160), + [anon_sym_BSLASHGLS] = ACTIONS(5160), + [anon_sym_BSLASHglspl] = ACTIONS(5160), + [anon_sym_BSLASHGlspl] = ACTIONS(5160), + [anon_sym_BSLASHGLSpl] = ACTIONS(5160), + [anon_sym_BSLASHglsdisp] = ACTIONS(5160), + [anon_sym_BSLASHglslink] = ACTIONS(5160), + [anon_sym_BSLASHglstext] = ACTIONS(5160), + [anon_sym_BSLASHGlstext] = ACTIONS(5160), + [anon_sym_BSLASHGLStext] = ACTIONS(5160), + [anon_sym_BSLASHglsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5160), + [anon_sym_BSLASHglsplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSplural] = ACTIONS(5160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHglsname] = ACTIONS(5160), + [anon_sym_BSLASHGlsname] = ACTIONS(5160), + [anon_sym_BSLASHGLSname] = ACTIONS(5160), + [anon_sym_BSLASHglssymbol] = ACTIONS(5160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5160), + [anon_sym_BSLASHglsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5160), + [anon_sym_BSLASHglsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5160), + [anon_sym_BSLASHglsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5160), + [anon_sym_BSLASHglsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5160), + [anon_sym_BSLASHglsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5160), + [anon_sym_BSLASHnewacronym] = ACTIONS(5160), + [anon_sym_BSLASHacrshort] = ACTIONS(5160), + [anon_sym_BSLASHAcrshort] = ACTIONS(5160), + [anon_sym_BSLASHACRshort] = ACTIONS(5160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5160), + [anon_sym_BSLASHacrlong] = ACTIONS(5160), + [anon_sym_BSLASHAcrlong] = ACTIONS(5160), + [anon_sym_BSLASHACRlong] = ACTIONS(5160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5160), + [anon_sym_BSLASHacrfull] = ACTIONS(5160), + [anon_sym_BSLASHAcrfull] = ACTIONS(5160), + [anon_sym_BSLASHACRfull] = ACTIONS(5160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5160), + [anon_sym_BSLASHacs] = ACTIONS(5160), + [anon_sym_BSLASHAcs] = ACTIONS(5160), + [anon_sym_BSLASHacsp] = ACTIONS(5160), + [anon_sym_BSLASHAcsp] = ACTIONS(5160), + [anon_sym_BSLASHacl] = ACTIONS(5160), + [anon_sym_BSLASHAcl] = ACTIONS(5160), + [anon_sym_BSLASHaclp] = ACTIONS(5160), + [anon_sym_BSLASHAclp] = ACTIONS(5160), + [anon_sym_BSLASHacf] = ACTIONS(5160), + [anon_sym_BSLASHAcf] = ACTIONS(5160), + [anon_sym_BSLASHacfp] = ACTIONS(5160), + [anon_sym_BSLASHAcfp] = ACTIONS(5160), + [anon_sym_BSLASHac] = ACTIONS(5160), + [anon_sym_BSLASHAc] = ACTIONS(5160), + [anon_sym_BSLASHacp] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5160), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5160), + [anon_sym_BSLASHcolor] = ACTIONS(5160), + [anon_sym_BSLASHcolorbox] = ACTIONS(5160), + [anon_sym_BSLASHtextcolor] = ACTIONS(5160), + [anon_sym_BSLASHpagecolor] = ACTIONS(5160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5160), + [anon_sym_BSLASHtext] = ACTIONS(5160), + [anon_sym_BSLASHintertext] = ACTIONS(5160), + [anon_sym_shortintertext] = ACTIONS(5160), }, [1026] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5085), - [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), + [sym_command_name] = ACTIONS(5164), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_BSLASHpart] = ACTIONS(5164), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddpart] = ACTIONS(5164), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHchapter] = ACTIONS(5164), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddchap] = ACTIONS(5164), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsection] = ACTIONS(5164), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddsec] = ACTIONS(5164), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHparagraph] = ACTIONS(5164), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5164), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHitem] = ACTIONS(5164), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [sym_word] = ACTIONS(5164), + [sym_placeholder] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym__] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_SQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5162), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5162), + [anon_sym_BSLASHbegin] = ACTIONS(5164), + [anon_sym_BSLASHusepackage] = ACTIONS(5164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5164), + [anon_sym_BSLASHinclude] = ACTIONS(5164), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5164), + [anon_sym_BSLASHinput] = ACTIONS(5164), + [anon_sym_BSLASHsubfile] = ACTIONS(5164), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5164), + [anon_sym_BSLASHbibliography] = ACTIONS(5164), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), + [anon_sym_BSLASHincludesvg] = ACTIONS(5164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5164), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5164), + [anon_sym_BSLASHimport] = ACTIONS(5164), + [anon_sym_BSLASHsubimport] = ACTIONS(5164), + [anon_sym_BSLASHinputfrom] = ACTIONS(5164), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5164), + [anon_sym_BSLASHincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHcaption] = ACTIONS(5164), + [anon_sym_BSLASHcite] = ACTIONS(5164), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCite] = ACTIONS(5164), + [anon_sym_BSLASHnocite] = ACTIONS(5164), + [anon_sym_BSLASHcitet] = ACTIONS(5164), + [anon_sym_BSLASHcitep] = ACTIONS(5164), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteauthor] = ACTIONS(5164), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5164), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitetitle] = ACTIONS(5164), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteyear] = ACTIONS(5164), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitedate] = ACTIONS(5164), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteurl] = ACTIONS(5164), + [anon_sym_BSLASHfullcite] = ACTIONS(5164), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5164), + [anon_sym_BSLASHcitealt] = ACTIONS(5164), + [anon_sym_BSLASHcitealp] = ACTIONS(5164), + [anon_sym_BSLASHcitetext] = ACTIONS(5164), + [anon_sym_BSLASHparencite] = ACTIONS(5164), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHParencite] = ACTIONS(5164), + [anon_sym_BSLASHfootcite] = ACTIONS(5164), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5164), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5164), + [anon_sym_BSLASHtextcite] = ACTIONS(5164), + [anon_sym_BSLASHTextcite] = ACTIONS(5164), + [anon_sym_BSLASHsmartcite] = ACTIONS(5164), + [anon_sym_BSLASHSmartcite] = ACTIONS(5164), + [anon_sym_BSLASHsupercite] = ACTIONS(5164), + [anon_sym_BSLASHautocite] = ACTIONS(5164), + [anon_sym_BSLASHAutocite] = ACTIONS(5164), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHvolcite] = ACTIONS(5164), + [anon_sym_BSLASHVolcite] = ACTIONS(5164), + [anon_sym_BSLASHpvolcite] = ACTIONS(5164), + [anon_sym_BSLASHPvolcite] = ACTIONS(5164), + [anon_sym_BSLASHfvolcite] = ACTIONS(5164), + [anon_sym_BSLASHftvolcite] = ACTIONS(5164), + [anon_sym_BSLASHsvolcite] = ACTIONS(5164), + [anon_sym_BSLASHSvolcite] = ACTIONS(5164), + [anon_sym_BSLASHtvolcite] = ACTIONS(5164), + [anon_sym_BSLASHTvolcite] = ACTIONS(5164), + [anon_sym_BSLASHavolcite] = ACTIONS(5164), + [anon_sym_BSLASHAvolcite] = ACTIONS(5164), + [anon_sym_BSLASHnotecite] = ACTIONS(5164), + [anon_sym_BSLASHNotecite] = ACTIONS(5164), + [anon_sym_BSLASHpnotecite] = ACTIONS(5164), + [anon_sym_BSLASHPnotecite] = ACTIONS(5164), + [anon_sym_BSLASHfnotecite] = ACTIONS(5164), + [anon_sym_BSLASHlabel] = ACTIONS(5164), + [anon_sym_BSLASHref] = ACTIONS(5164), + [anon_sym_BSLASHeqref] = ACTIONS(5164), + [anon_sym_BSLASHvref] = ACTIONS(5164), + [anon_sym_BSLASHVref] = ACTIONS(5164), + [anon_sym_BSLASHautoref] = ACTIONS(5164), + [anon_sym_BSLASHpageref] = ACTIONS(5164), + [anon_sym_BSLASHcref] = ACTIONS(5164), + [anon_sym_BSLASHCref] = ACTIONS(5164), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnameCref] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHlabelcref] = ACTIONS(5164), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCrefrange] = ACTIONS(5164), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnewlabel] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5164), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5164), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5164), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdef] = ACTIONS(5164), + [anon_sym_BSLASHlet] = ACTIONS(5164), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5164), + [anon_sym_BSLASHgls] = ACTIONS(5164), + [anon_sym_BSLASHGls] = ACTIONS(5164), + [anon_sym_BSLASHGLS] = ACTIONS(5164), + [anon_sym_BSLASHglspl] = ACTIONS(5164), + [anon_sym_BSLASHGlspl] = ACTIONS(5164), + [anon_sym_BSLASHGLSpl] = ACTIONS(5164), + [anon_sym_BSLASHglsdisp] = ACTIONS(5164), + [anon_sym_BSLASHglslink] = ACTIONS(5164), + [anon_sym_BSLASHglstext] = ACTIONS(5164), + [anon_sym_BSLASHGlstext] = ACTIONS(5164), + [anon_sym_BSLASHGLStext] = ACTIONS(5164), + [anon_sym_BSLASHglsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5164), + [anon_sym_BSLASHglsplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSplural] = ACTIONS(5164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHglsname] = ACTIONS(5164), + [anon_sym_BSLASHGlsname] = ACTIONS(5164), + [anon_sym_BSLASHGLSname] = ACTIONS(5164), + [anon_sym_BSLASHglssymbol] = ACTIONS(5164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5164), + [anon_sym_BSLASHglsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5164), + [anon_sym_BSLASHglsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5164), + [anon_sym_BSLASHglsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5164), + [anon_sym_BSLASHglsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5164), + [anon_sym_BSLASHglsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5164), + [anon_sym_BSLASHnewacronym] = ACTIONS(5164), + [anon_sym_BSLASHacrshort] = ACTIONS(5164), + [anon_sym_BSLASHAcrshort] = ACTIONS(5164), + [anon_sym_BSLASHACRshort] = ACTIONS(5164), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5164), + [anon_sym_BSLASHacrlong] = ACTIONS(5164), + [anon_sym_BSLASHAcrlong] = ACTIONS(5164), + [anon_sym_BSLASHACRlong] = ACTIONS(5164), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5164), + [anon_sym_BSLASHacrfull] = ACTIONS(5164), + [anon_sym_BSLASHAcrfull] = ACTIONS(5164), + [anon_sym_BSLASHACRfull] = ACTIONS(5164), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5164), + [anon_sym_BSLASHacs] = ACTIONS(5164), + [anon_sym_BSLASHAcs] = ACTIONS(5164), + [anon_sym_BSLASHacsp] = ACTIONS(5164), + [anon_sym_BSLASHAcsp] = ACTIONS(5164), + [anon_sym_BSLASHacl] = ACTIONS(5164), + [anon_sym_BSLASHAcl] = ACTIONS(5164), + [anon_sym_BSLASHaclp] = ACTIONS(5164), + [anon_sym_BSLASHAclp] = ACTIONS(5164), + [anon_sym_BSLASHacf] = ACTIONS(5164), + [anon_sym_BSLASHAcf] = ACTIONS(5164), + [anon_sym_BSLASHacfp] = ACTIONS(5164), + [anon_sym_BSLASHAcfp] = ACTIONS(5164), + [anon_sym_BSLASHac] = ACTIONS(5164), + [anon_sym_BSLASHAc] = ACTIONS(5164), + [anon_sym_BSLASHacp] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5164), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5164), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5164), + [anon_sym_BSLASHcolor] = ACTIONS(5164), + [anon_sym_BSLASHcolorbox] = ACTIONS(5164), + [anon_sym_BSLASHtextcolor] = ACTIONS(5164), + [anon_sym_BSLASHpagecolor] = ACTIONS(5164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5164), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5164), + [anon_sym_BSLASHtext] = ACTIONS(5164), + [anon_sym_BSLASHintertext] = ACTIONS(5164), + [anon_sym_shortintertext] = ACTIONS(5164), }, [1027] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5089), - [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), + [sym_command_name] = ACTIONS(5168), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_BSLASHpart] = ACTIONS(5168), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddpart] = ACTIONS(5168), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHchapter] = ACTIONS(5168), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddchap] = ACTIONS(5168), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsection] = ACTIONS(5168), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddsec] = ACTIONS(5168), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHparagraph] = ACTIONS(5168), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5168), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHitem] = ACTIONS(5168), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [sym_word] = ACTIONS(5168), + [sym_placeholder] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym__] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_SQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5166), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(5168), + [anon_sym_BSLASHusepackage] = ACTIONS(5168), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5168), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5168), + [anon_sym_BSLASHinclude] = ACTIONS(5168), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5168), + [anon_sym_BSLASHinput] = ACTIONS(5168), + [anon_sym_BSLASHsubfile] = ACTIONS(5168), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5168), + [anon_sym_BSLASHbibliography] = ACTIONS(5168), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5168), + [anon_sym_BSLASHincludesvg] = ACTIONS(5168), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5168), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5168), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5168), + [anon_sym_BSLASHimport] = ACTIONS(5168), + [anon_sym_BSLASHsubimport] = ACTIONS(5168), + [anon_sym_BSLASHinputfrom] = ACTIONS(5168), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5168), + [anon_sym_BSLASHincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(5168), + [anon_sym_BSLASHcite] = ACTIONS(5168), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCite] = ACTIONS(5168), + [anon_sym_BSLASHnocite] = ACTIONS(5168), + [anon_sym_BSLASHcitet] = ACTIONS(5168), + [anon_sym_BSLASHcitep] = ACTIONS(5168), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteauthor] = ACTIONS(5168), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5168), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitetitle] = ACTIONS(5168), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteyear] = ACTIONS(5168), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitedate] = ACTIONS(5168), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteurl] = ACTIONS(5168), + [anon_sym_BSLASHfullcite] = ACTIONS(5168), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5168), + [anon_sym_BSLASHcitealt] = ACTIONS(5168), + [anon_sym_BSLASHcitealp] = ACTIONS(5168), + [anon_sym_BSLASHcitetext] = ACTIONS(5168), + [anon_sym_BSLASHparencite] = ACTIONS(5168), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHParencite] = ACTIONS(5168), + [anon_sym_BSLASHfootcite] = ACTIONS(5168), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5168), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5168), + [anon_sym_BSLASHtextcite] = ACTIONS(5168), + [anon_sym_BSLASHTextcite] = ACTIONS(5168), + [anon_sym_BSLASHsmartcite] = ACTIONS(5168), + [anon_sym_BSLASHSmartcite] = ACTIONS(5168), + [anon_sym_BSLASHsupercite] = ACTIONS(5168), + [anon_sym_BSLASHautocite] = ACTIONS(5168), + [anon_sym_BSLASHAutocite] = ACTIONS(5168), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHvolcite] = ACTIONS(5168), + [anon_sym_BSLASHVolcite] = ACTIONS(5168), + [anon_sym_BSLASHpvolcite] = ACTIONS(5168), + [anon_sym_BSLASHPvolcite] = ACTIONS(5168), + [anon_sym_BSLASHfvolcite] = ACTIONS(5168), + [anon_sym_BSLASHftvolcite] = ACTIONS(5168), + [anon_sym_BSLASHsvolcite] = ACTIONS(5168), + [anon_sym_BSLASHSvolcite] = ACTIONS(5168), + [anon_sym_BSLASHtvolcite] = ACTIONS(5168), + [anon_sym_BSLASHTvolcite] = ACTIONS(5168), + [anon_sym_BSLASHavolcite] = ACTIONS(5168), + [anon_sym_BSLASHAvolcite] = ACTIONS(5168), + [anon_sym_BSLASHnotecite] = ACTIONS(5168), + [anon_sym_BSLASHNotecite] = ACTIONS(5168), + [anon_sym_BSLASHpnotecite] = ACTIONS(5168), + [anon_sym_BSLASHPnotecite] = ACTIONS(5168), + [anon_sym_BSLASHfnotecite] = ACTIONS(5168), + [anon_sym_BSLASHlabel] = ACTIONS(5168), + [anon_sym_BSLASHref] = ACTIONS(5168), + [anon_sym_BSLASHeqref] = ACTIONS(5168), + [anon_sym_BSLASHvref] = ACTIONS(5168), + [anon_sym_BSLASHVref] = ACTIONS(5168), + [anon_sym_BSLASHautoref] = ACTIONS(5168), + [anon_sym_BSLASHpageref] = ACTIONS(5168), + [anon_sym_BSLASHcref] = ACTIONS(5168), + [anon_sym_BSLASHCref] = ACTIONS(5168), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnameCref] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHlabelcref] = ACTIONS(5168), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCrefrange] = ACTIONS(5168), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnewlabel] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5168), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5168), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5168), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdef] = ACTIONS(5168), + [anon_sym_BSLASHlet] = ACTIONS(5168), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5168), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5168), + [anon_sym_BSLASHgls] = ACTIONS(5168), + [anon_sym_BSLASHGls] = ACTIONS(5168), + [anon_sym_BSLASHGLS] = ACTIONS(5168), + [anon_sym_BSLASHglspl] = ACTIONS(5168), + [anon_sym_BSLASHGlspl] = ACTIONS(5168), + [anon_sym_BSLASHGLSpl] = ACTIONS(5168), + [anon_sym_BSLASHglsdisp] = ACTIONS(5168), + [anon_sym_BSLASHglslink] = ACTIONS(5168), + [anon_sym_BSLASHglstext] = ACTIONS(5168), + [anon_sym_BSLASHGlstext] = ACTIONS(5168), + [anon_sym_BSLASHGLStext] = ACTIONS(5168), + [anon_sym_BSLASHglsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5168), + [anon_sym_BSLASHglsplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSplural] = ACTIONS(5168), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHglsname] = ACTIONS(5168), + [anon_sym_BSLASHGlsname] = ACTIONS(5168), + [anon_sym_BSLASHGLSname] = ACTIONS(5168), + [anon_sym_BSLASHglssymbol] = ACTIONS(5168), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5168), + [anon_sym_BSLASHglsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5168), + [anon_sym_BSLASHglsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5168), + [anon_sym_BSLASHglsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5168), + [anon_sym_BSLASHglsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5168), + [anon_sym_BSLASHglsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5168), + [anon_sym_BSLASHnewacronym] = ACTIONS(5168), + [anon_sym_BSLASHacrshort] = ACTIONS(5168), + [anon_sym_BSLASHAcrshort] = ACTIONS(5168), + [anon_sym_BSLASHACRshort] = ACTIONS(5168), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5168), + [anon_sym_BSLASHacrlong] = ACTIONS(5168), + [anon_sym_BSLASHAcrlong] = ACTIONS(5168), + [anon_sym_BSLASHACRlong] = ACTIONS(5168), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5168), + [anon_sym_BSLASHacrfull] = ACTIONS(5168), + [anon_sym_BSLASHAcrfull] = ACTIONS(5168), + [anon_sym_BSLASHACRfull] = ACTIONS(5168), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5168), + [anon_sym_BSLASHacs] = ACTIONS(5168), + [anon_sym_BSLASHAcs] = ACTIONS(5168), + [anon_sym_BSLASHacsp] = ACTIONS(5168), + [anon_sym_BSLASHAcsp] = ACTIONS(5168), + [anon_sym_BSLASHacl] = ACTIONS(5168), + [anon_sym_BSLASHAcl] = ACTIONS(5168), + [anon_sym_BSLASHaclp] = ACTIONS(5168), + [anon_sym_BSLASHAclp] = ACTIONS(5168), + [anon_sym_BSLASHacf] = ACTIONS(5168), + [anon_sym_BSLASHAcf] = ACTIONS(5168), + [anon_sym_BSLASHacfp] = ACTIONS(5168), + [anon_sym_BSLASHAcfp] = ACTIONS(5168), + [anon_sym_BSLASHac] = ACTIONS(5168), + [anon_sym_BSLASHAc] = ACTIONS(5168), + [anon_sym_BSLASHacp] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5168), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5168), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5168), + [anon_sym_BSLASHcolor] = ACTIONS(5168), + [anon_sym_BSLASHcolorbox] = ACTIONS(5168), + [anon_sym_BSLASHtextcolor] = ACTIONS(5168), + [anon_sym_BSLASHpagecolor] = ACTIONS(5168), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5168), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5168), + [anon_sym_BSLASHtext] = ACTIONS(5168), + [anon_sym_BSLASHintertext] = ACTIONS(5168), + [anon_sym_shortintertext] = ACTIONS(5168), }, [1028] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5093), - [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), + [sym_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_BSLASHpart] = ACTIONS(5172), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddpart] = ACTIONS(5172), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHchapter] = ACTIONS(5172), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddchap] = ACTIONS(5172), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsection] = ACTIONS(5172), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddsec] = ACTIONS(5172), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHparagraph] = ACTIONS(5172), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5172), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHitem] = ACTIONS(5172), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [sym_word] = ACTIONS(5172), + [sym_placeholder] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym__] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5172), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_SQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5170), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5170), + [anon_sym_BSLASHbegin] = ACTIONS(5172), + [anon_sym_BSLASHusepackage] = ACTIONS(5172), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5172), + [anon_sym_BSLASHinclude] = ACTIONS(5172), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5172), + [anon_sym_BSLASHinput] = ACTIONS(5172), + [anon_sym_BSLASHsubfile] = ACTIONS(5172), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5172), + [anon_sym_BSLASHbibliography] = ACTIONS(5172), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5172), + [anon_sym_BSLASHincludesvg] = ACTIONS(5172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5172), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5172), + [anon_sym_BSLASHimport] = ACTIONS(5172), + [anon_sym_BSLASHsubimport] = ACTIONS(5172), + [anon_sym_BSLASHinputfrom] = ACTIONS(5172), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5172), + [anon_sym_BSLASHincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHcaption] = ACTIONS(5172), + [anon_sym_BSLASHcite] = ACTIONS(5172), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCite] = ACTIONS(5172), + [anon_sym_BSLASHnocite] = ACTIONS(5172), + [anon_sym_BSLASHcitet] = ACTIONS(5172), + [anon_sym_BSLASHcitep] = ACTIONS(5172), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteauthor] = ACTIONS(5172), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5172), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitetitle] = ACTIONS(5172), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteyear] = ACTIONS(5172), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitedate] = ACTIONS(5172), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteurl] = ACTIONS(5172), + [anon_sym_BSLASHfullcite] = ACTIONS(5172), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5172), + [anon_sym_BSLASHcitealt] = ACTIONS(5172), + [anon_sym_BSLASHcitealp] = ACTIONS(5172), + [anon_sym_BSLASHcitetext] = ACTIONS(5172), + [anon_sym_BSLASHparencite] = ACTIONS(5172), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHParencite] = ACTIONS(5172), + [anon_sym_BSLASHfootcite] = ACTIONS(5172), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5172), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5172), + [anon_sym_BSLASHtextcite] = ACTIONS(5172), + [anon_sym_BSLASHTextcite] = ACTIONS(5172), + [anon_sym_BSLASHsmartcite] = ACTIONS(5172), + [anon_sym_BSLASHSmartcite] = ACTIONS(5172), + [anon_sym_BSLASHsupercite] = ACTIONS(5172), + [anon_sym_BSLASHautocite] = ACTIONS(5172), + [anon_sym_BSLASHAutocite] = ACTIONS(5172), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHvolcite] = ACTIONS(5172), + [anon_sym_BSLASHVolcite] = ACTIONS(5172), + [anon_sym_BSLASHpvolcite] = ACTIONS(5172), + [anon_sym_BSLASHPvolcite] = ACTIONS(5172), + [anon_sym_BSLASHfvolcite] = ACTIONS(5172), + [anon_sym_BSLASHftvolcite] = ACTIONS(5172), + [anon_sym_BSLASHsvolcite] = ACTIONS(5172), + [anon_sym_BSLASHSvolcite] = ACTIONS(5172), + [anon_sym_BSLASHtvolcite] = ACTIONS(5172), + [anon_sym_BSLASHTvolcite] = ACTIONS(5172), + [anon_sym_BSLASHavolcite] = ACTIONS(5172), + [anon_sym_BSLASHAvolcite] = ACTIONS(5172), + [anon_sym_BSLASHnotecite] = ACTIONS(5172), + [anon_sym_BSLASHNotecite] = ACTIONS(5172), + [anon_sym_BSLASHpnotecite] = ACTIONS(5172), + [anon_sym_BSLASHPnotecite] = ACTIONS(5172), + [anon_sym_BSLASHfnotecite] = ACTIONS(5172), + [anon_sym_BSLASHlabel] = ACTIONS(5172), + [anon_sym_BSLASHref] = ACTIONS(5172), + [anon_sym_BSLASHeqref] = ACTIONS(5172), + [anon_sym_BSLASHvref] = ACTIONS(5172), + [anon_sym_BSLASHVref] = ACTIONS(5172), + [anon_sym_BSLASHautoref] = ACTIONS(5172), + [anon_sym_BSLASHpageref] = ACTIONS(5172), + [anon_sym_BSLASHcref] = ACTIONS(5172), + [anon_sym_BSLASHCref] = ACTIONS(5172), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnameCref] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHlabelcref] = ACTIONS(5172), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCrefrange] = ACTIONS(5172), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnewlabel] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5172), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5172), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5172), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdef] = ACTIONS(5172), + [anon_sym_BSLASHlet] = ACTIONS(5172), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5172), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5172), + [anon_sym_BSLASHgls] = ACTIONS(5172), + [anon_sym_BSLASHGls] = ACTIONS(5172), + [anon_sym_BSLASHGLS] = ACTIONS(5172), + [anon_sym_BSLASHglspl] = ACTIONS(5172), + [anon_sym_BSLASHGlspl] = ACTIONS(5172), + [anon_sym_BSLASHGLSpl] = ACTIONS(5172), + [anon_sym_BSLASHglsdisp] = ACTIONS(5172), + [anon_sym_BSLASHglslink] = ACTIONS(5172), + [anon_sym_BSLASHglstext] = ACTIONS(5172), + [anon_sym_BSLASHGlstext] = ACTIONS(5172), + [anon_sym_BSLASHGLStext] = ACTIONS(5172), + [anon_sym_BSLASHglsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5172), + [anon_sym_BSLASHglsplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSplural] = ACTIONS(5172), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHglsname] = ACTIONS(5172), + [anon_sym_BSLASHGlsname] = ACTIONS(5172), + [anon_sym_BSLASHGLSname] = ACTIONS(5172), + [anon_sym_BSLASHglssymbol] = ACTIONS(5172), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5172), + [anon_sym_BSLASHglsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5172), + [anon_sym_BSLASHglsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5172), + [anon_sym_BSLASHglsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5172), + [anon_sym_BSLASHglsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5172), + [anon_sym_BSLASHglsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5172), + [anon_sym_BSLASHnewacronym] = ACTIONS(5172), + [anon_sym_BSLASHacrshort] = ACTIONS(5172), + [anon_sym_BSLASHAcrshort] = ACTIONS(5172), + [anon_sym_BSLASHACRshort] = ACTIONS(5172), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5172), + [anon_sym_BSLASHacrlong] = ACTIONS(5172), + [anon_sym_BSLASHAcrlong] = ACTIONS(5172), + [anon_sym_BSLASHACRlong] = ACTIONS(5172), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5172), + [anon_sym_BSLASHacrfull] = ACTIONS(5172), + [anon_sym_BSLASHAcrfull] = ACTIONS(5172), + [anon_sym_BSLASHACRfull] = ACTIONS(5172), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5172), + [anon_sym_BSLASHacs] = ACTIONS(5172), + [anon_sym_BSLASHAcs] = ACTIONS(5172), + [anon_sym_BSLASHacsp] = ACTIONS(5172), + [anon_sym_BSLASHAcsp] = ACTIONS(5172), + [anon_sym_BSLASHacl] = ACTIONS(5172), + [anon_sym_BSLASHAcl] = ACTIONS(5172), + [anon_sym_BSLASHaclp] = ACTIONS(5172), + [anon_sym_BSLASHAclp] = ACTIONS(5172), + [anon_sym_BSLASHacf] = ACTIONS(5172), + [anon_sym_BSLASHAcf] = ACTIONS(5172), + [anon_sym_BSLASHacfp] = ACTIONS(5172), + [anon_sym_BSLASHAcfp] = ACTIONS(5172), + [anon_sym_BSLASHac] = ACTIONS(5172), + [anon_sym_BSLASHAc] = ACTIONS(5172), + [anon_sym_BSLASHacp] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5172), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5172), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5172), + [anon_sym_BSLASHcolor] = ACTIONS(5172), + [anon_sym_BSLASHcolorbox] = ACTIONS(5172), + [anon_sym_BSLASHtextcolor] = ACTIONS(5172), + [anon_sym_BSLASHpagecolor] = ACTIONS(5172), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5172), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5172), + [anon_sym_BSLASHtext] = ACTIONS(5172), + [anon_sym_BSLASHintertext] = ACTIONS(5172), + [anon_sym_shortintertext] = ACTIONS(5172), }, [1029] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5097), - [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), + [sym_command_name] = ACTIONS(5176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_BSLASHpart] = ACTIONS(5176), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddpart] = ACTIONS(5176), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHchapter] = ACTIONS(5176), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddchap] = ACTIONS(5176), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsection] = ACTIONS(5176), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddsec] = ACTIONS(5176), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHparagraph] = ACTIONS(5176), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5176), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHitem] = ACTIONS(5176), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5174), + [sym_word] = ACTIONS(5176), + [sym_placeholder] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym__] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_SQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5176), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5174), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5174), + [anon_sym_BSLASHbegin] = ACTIONS(5176), + [anon_sym_BSLASHusepackage] = ACTIONS(5176), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5176), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5176), + [anon_sym_BSLASHinclude] = ACTIONS(5176), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5176), + [anon_sym_BSLASHinput] = ACTIONS(5176), + [anon_sym_BSLASHsubfile] = ACTIONS(5176), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5176), + [anon_sym_BSLASHbibliography] = ACTIONS(5176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5176), + [anon_sym_BSLASHincludesvg] = ACTIONS(5176), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5176), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5176), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5176), + [anon_sym_BSLASHimport] = ACTIONS(5176), + [anon_sym_BSLASHsubimport] = ACTIONS(5176), + [anon_sym_BSLASHinputfrom] = ACTIONS(5176), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), + [anon_sym_BSLASHincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHcaption] = ACTIONS(5176), + [anon_sym_BSLASHcite] = ACTIONS(5176), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCite] = ACTIONS(5176), + [anon_sym_BSLASHnocite] = ACTIONS(5176), + [anon_sym_BSLASHcitet] = ACTIONS(5176), + [anon_sym_BSLASHcitep] = ACTIONS(5176), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteauthor] = ACTIONS(5176), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5176), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitetitle] = ACTIONS(5176), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteyear] = ACTIONS(5176), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitedate] = ACTIONS(5176), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteurl] = ACTIONS(5176), + [anon_sym_BSLASHfullcite] = ACTIONS(5176), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5176), + [anon_sym_BSLASHcitealt] = ACTIONS(5176), + [anon_sym_BSLASHcitealp] = ACTIONS(5176), + [anon_sym_BSLASHcitetext] = ACTIONS(5176), + [anon_sym_BSLASHparencite] = ACTIONS(5176), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHParencite] = ACTIONS(5176), + [anon_sym_BSLASHfootcite] = ACTIONS(5176), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5176), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5176), + [anon_sym_BSLASHtextcite] = ACTIONS(5176), + [anon_sym_BSLASHTextcite] = ACTIONS(5176), + [anon_sym_BSLASHsmartcite] = ACTIONS(5176), + [anon_sym_BSLASHSmartcite] = ACTIONS(5176), + [anon_sym_BSLASHsupercite] = ACTIONS(5176), + [anon_sym_BSLASHautocite] = ACTIONS(5176), + [anon_sym_BSLASHAutocite] = ACTIONS(5176), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHvolcite] = ACTIONS(5176), + [anon_sym_BSLASHVolcite] = ACTIONS(5176), + [anon_sym_BSLASHpvolcite] = ACTIONS(5176), + [anon_sym_BSLASHPvolcite] = ACTIONS(5176), + [anon_sym_BSLASHfvolcite] = ACTIONS(5176), + [anon_sym_BSLASHftvolcite] = ACTIONS(5176), + [anon_sym_BSLASHsvolcite] = ACTIONS(5176), + [anon_sym_BSLASHSvolcite] = ACTIONS(5176), + [anon_sym_BSLASHtvolcite] = ACTIONS(5176), + [anon_sym_BSLASHTvolcite] = ACTIONS(5176), + [anon_sym_BSLASHavolcite] = ACTIONS(5176), + [anon_sym_BSLASHAvolcite] = ACTIONS(5176), + [anon_sym_BSLASHnotecite] = ACTIONS(5176), + [anon_sym_BSLASHNotecite] = ACTIONS(5176), + [anon_sym_BSLASHpnotecite] = ACTIONS(5176), + [anon_sym_BSLASHPnotecite] = ACTIONS(5176), + [anon_sym_BSLASHfnotecite] = ACTIONS(5176), + [anon_sym_BSLASHlabel] = ACTIONS(5176), + [anon_sym_BSLASHref] = ACTIONS(5176), + [anon_sym_BSLASHeqref] = ACTIONS(5176), + [anon_sym_BSLASHvref] = ACTIONS(5176), + [anon_sym_BSLASHVref] = ACTIONS(5176), + [anon_sym_BSLASHautoref] = ACTIONS(5176), + [anon_sym_BSLASHpageref] = ACTIONS(5176), + [anon_sym_BSLASHcref] = ACTIONS(5176), + [anon_sym_BSLASHCref] = ACTIONS(5176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnameCref] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHlabelcref] = ACTIONS(5176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCrefrange] = ACTIONS(5176), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnewlabel] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5176), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5176), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5176), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdef] = ACTIONS(5176), + [anon_sym_BSLASHlet] = ACTIONS(5176), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5176), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5176), + [anon_sym_BSLASHgls] = ACTIONS(5176), + [anon_sym_BSLASHGls] = ACTIONS(5176), + [anon_sym_BSLASHGLS] = ACTIONS(5176), + [anon_sym_BSLASHglspl] = ACTIONS(5176), + [anon_sym_BSLASHGlspl] = ACTIONS(5176), + [anon_sym_BSLASHGLSpl] = ACTIONS(5176), + [anon_sym_BSLASHglsdisp] = ACTIONS(5176), + [anon_sym_BSLASHglslink] = ACTIONS(5176), + [anon_sym_BSLASHglstext] = ACTIONS(5176), + [anon_sym_BSLASHGlstext] = ACTIONS(5176), + [anon_sym_BSLASHGLStext] = ACTIONS(5176), + [anon_sym_BSLASHglsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5176), + [anon_sym_BSLASHglsplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSplural] = ACTIONS(5176), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHglsname] = ACTIONS(5176), + [anon_sym_BSLASHGlsname] = ACTIONS(5176), + [anon_sym_BSLASHGLSname] = ACTIONS(5176), + [anon_sym_BSLASHglssymbol] = ACTIONS(5176), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5176), + [anon_sym_BSLASHglsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5176), + [anon_sym_BSLASHglsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5176), + [anon_sym_BSLASHglsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5176), + [anon_sym_BSLASHglsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5176), + [anon_sym_BSLASHglsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5176), + [anon_sym_BSLASHnewacronym] = ACTIONS(5176), + [anon_sym_BSLASHacrshort] = ACTIONS(5176), + [anon_sym_BSLASHAcrshort] = ACTIONS(5176), + [anon_sym_BSLASHACRshort] = ACTIONS(5176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5176), + [anon_sym_BSLASHacrlong] = ACTIONS(5176), + [anon_sym_BSLASHAcrlong] = ACTIONS(5176), + [anon_sym_BSLASHACRlong] = ACTIONS(5176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5176), + [anon_sym_BSLASHacrfull] = ACTIONS(5176), + [anon_sym_BSLASHAcrfull] = ACTIONS(5176), + [anon_sym_BSLASHACRfull] = ACTIONS(5176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5176), + [anon_sym_BSLASHacs] = ACTIONS(5176), + [anon_sym_BSLASHAcs] = ACTIONS(5176), + [anon_sym_BSLASHacsp] = ACTIONS(5176), + [anon_sym_BSLASHAcsp] = ACTIONS(5176), + [anon_sym_BSLASHacl] = ACTIONS(5176), + [anon_sym_BSLASHAcl] = ACTIONS(5176), + [anon_sym_BSLASHaclp] = ACTIONS(5176), + [anon_sym_BSLASHAclp] = ACTIONS(5176), + [anon_sym_BSLASHacf] = ACTIONS(5176), + [anon_sym_BSLASHAcf] = ACTIONS(5176), + [anon_sym_BSLASHacfp] = ACTIONS(5176), + [anon_sym_BSLASHAcfp] = ACTIONS(5176), + [anon_sym_BSLASHac] = ACTIONS(5176), + [anon_sym_BSLASHAc] = ACTIONS(5176), + [anon_sym_BSLASHacp] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5176), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5176), + [anon_sym_BSLASHcolor] = ACTIONS(5176), + [anon_sym_BSLASHcolorbox] = ACTIONS(5176), + [anon_sym_BSLASHtextcolor] = ACTIONS(5176), + [anon_sym_BSLASHpagecolor] = ACTIONS(5176), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5176), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5176), + [anon_sym_BSLASHtext] = ACTIONS(5176), + [anon_sym_BSLASHintertext] = ACTIONS(5176), + [anon_sym_shortintertext] = ACTIONS(5176), }, [1030] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5101), - [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), + [sym_command_name] = ACTIONS(5180), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_BSLASHpart] = ACTIONS(5180), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddpart] = ACTIONS(5180), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHchapter] = ACTIONS(5180), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddchap] = ACTIONS(5180), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsection] = ACTIONS(5180), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddsec] = ACTIONS(5180), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHparagraph] = ACTIONS(5180), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5180), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHitem] = ACTIONS(5180), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5178), + [sym_word] = ACTIONS(5180), + [sym_placeholder] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym__] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_SQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5178), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5178), + [anon_sym_BSLASHbegin] = ACTIONS(5180), + [anon_sym_BSLASHusepackage] = ACTIONS(5180), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5180), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5180), + [anon_sym_BSLASHinclude] = ACTIONS(5180), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5180), + [anon_sym_BSLASHinput] = ACTIONS(5180), + [anon_sym_BSLASHsubfile] = ACTIONS(5180), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5180), + [anon_sym_BSLASHbibliography] = ACTIONS(5180), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5180), + [anon_sym_BSLASHincludesvg] = ACTIONS(5180), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5180), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5180), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5180), + [anon_sym_BSLASHimport] = ACTIONS(5180), + [anon_sym_BSLASHsubimport] = ACTIONS(5180), + [anon_sym_BSLASHinputfrom] = ACTIONS(5180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5180), + [anon_sym_BSLASHincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHcaption] = ACTIONS(5180), + [anon_sym_BSLASHcite] = ACTIONS(5180), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCite] = ACTIONS(5180), + [anon_sym_BSLASHnocite] = ACTIONS(5180), + [anon_sym_BSLASHcitet] = ACTIONS(5180), + [anon_sym_BSLASHcitep] = ACTIONS(5180), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteauthor] = ACTIONS(5180), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5180), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitetitle] = ACTIONS(5180), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteyear] = ACTIONS(5180), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitedate] = ACTIONS(5180), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteurl] = ACTIONS(5180), + [anon_sym_BSLASHfullcite] = ACTIONS(5180), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5180), + [anon_sym_BSLASHcitealt] = ACTIONS(5180), + [anon_sym_BSLASHcitealp] = ACTIONS(5180), + [anon_sym_BSLASHcitetext] = ACTIONS(5180), + [anon_sym_BSLASHparencite] = ACTIONS(5180), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHParencite] = ACTIONS(5180), + [anon_sym_BSLASHfootcite] = ACTIONS(5180), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5180), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5180), + [anon_sym_BSLASHtextcite] = ACTIONS(5180), + [anon_sym_BSLASHTextcite] = ACTIONS(5180), + [anon_sym_BSLASHsmartcite] = ACTIONS(5180), + [anon_sym_BSLASHSmartcite] = ACTIONS(5180), + [anon_sym_BSLASHsupercite] = ACTIONS(5180), + [anon_sym_BSLASHautocite] = ACTIONS(5180), + [anon_sym_BSLASHAutocite] = ACTIONS(5180), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHvolcite] = ACTIONS(5180), + [anon_sym_BSLASHVolcite] = ACTIONS(5180), + [anon_sym_BSLASHpvolcite] = ACTIONS(5180), + [anon_sym_BSLASHPvolcite] = ACTIONS(5180), + [anon_sym_BSLASHfvolcite] = ACTIONS(5180), + [anon_sym_BSLASHftvolcite] = ACTIONS(5180), + [anon_sym_BSLASHsvolcite] = ACTIONS(5180), + [anon_sym_BSLASHSvolcite] = ACTIONS(5180), + [anon_sym_BSLASHtvolcite] = ACTIONS(5180), + [anon_sym_BSLASHTvolcite] = ACTIONS(5180), + [anon_sym_BSLASHavolcite] = ACTIONS(5180), + [anon_sym_BSLASHAvolcite] = ACTIONS(5180), + [anon_sym_BSLASHnotecite] = ACTIONS(5180), + [anon_sym_BSLASHNotecite] = ACTIONS(5180), + [anon_sym_BSLASHpnotecite] = ACTIONS(5180), + [anon_sym_BSLASHPnotecite] = ACTIONS(5180), + [anon_sym_BSLASHfnotecite] = ACTIONS(5180), + [anon_sym_BSLASHlabel] = ACTIONS(5180), + [anon_sym_BSLASHref] = ACTIONS(5180), + [anon_sym_BSLASHeqref] = ACTIONS(5180), + [anon_sym_BSLASHvref] = ACTIONS(5180), + [anon_sym_BSLASHVref] = ACTIONS(5180), + [anon_sym_BSLASHautoref] = ACTIONS(5180), + [anon_sym_BSLASHpageref] = ACTIONS(5180), + [anon_sym_BSLASHcref] = ACTIONS(5180), + [anon_sym_BSLASHCref] = ACTIONS(5180), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnameCref] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHlabelcref] = ACTIONS(5180), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCrefrange] = ACTIONS(5180), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnewlabel] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5180), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5180), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5180), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdef] = ACTIONS(5180), + [anon_sym_BSLASHlet] = ACTIONS(5180), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5180), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5180), + [anon_sym_BSLASHgls] = ACTIONS(5180), + [anon_sym_BSLASHGls] = ACTIONS(5180), + [anon_sym_BSLASHGLS] = ACTIONS(5180), + [anon_sym_BSLASHglspl] = ACTIONS(5180), + [anon_sym_BSLASHGlspl] = ACTIONS(5180), + [anon_sym_BSLASHGLSpl] = ACTIONS(5180), + [anon_sym_BSLASHglsdisp] = ACTIONS(5180), + [anon_sym_BSLASHglslink] = ACTIONS(5180), + [anon_sym_BSLASHglstext] = ACTIONS(5180), + [anon_sym_BSLASHGlstext] = ACTIONS(5180), + [anon_sym_BSLASHGLStext] = ACTIONS(5180), + [anon_sym_BSLASHglsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5180), + [anon_sym_BSLASHglsplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSplural] = ACTIONS(5180), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHglsname] = ACTIONS(5180), + [anon_sym_BSLASHGlsname] = ACTIONS(5180), + [anon_sym_BSLASHGLSname] = ACTIONS(5180), + [anon_sym_BSLASHglssymbol] = ACTIONS(5180), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5180), + [anon_sym_BSLASHglsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5180), + [anon_sym_BSLASHglsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5180), + [anon_sym_BSLASHglsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5180), + [anon_sym_BSLASHglsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5180), + [anon_sym_BSLASHglsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5180), + [anon_sym_BSLASHnewacronym] = ACTIONS(5180), + [anon_sym_BSLASHacrshort] = ACTIONS(5180), + [anon_sym_BSLASHAcrshort] = ACTIONS(5180), + [anon_sym_BSLASHACRshort] = ACTIONS(5180), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5180), + [anon_sym_BSLASHacrlong] = ACTIONS(5180), + [anon_sym_BSLASHAcrlong] = ACTIONS(5180), + [anon_sym_BSLASHACRlong] = ACTIONS(5180), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5180), + [anon_sym_BSLASHacrfull] = ACTIONS(5180), + [anon_sym_BSLASHAcrfull] = ACTIONS(5180), + [anon_sym_BSLASHACRfull] = ACTIONS(5180), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5180), + [anon_sym_BSLASHacs] = ACTIONS(5180), + [anon_sym_BSLASHAcs] = ACTIONS(5180), + [anon_sym_BSLASHacsp] = ACTIONS(5180), + [anon_sym_BSLASHAcsp] = ACTIONS(5180), + [anon_sym_BSLASHacl] = ACTIONS(5180), + [anon_sym_BSLASHAcl] = ACTIONS(5180), + [anon_sym_BSLASHaclp] = ACTIONS(5180), + [anon_sym_BSLASHAclp] = ACTIONS(5180), + [anon_sym_BSLASHacf] = ACTIONS(5180), + [anon_sym_BSLASHAcf] = ACTIONS(5180), + [anon_sym_BSLASHacfp] = ACTIONS(5180), + [anon_sym_BSLASHAcfp] = ACTIONS(5180), + [anon_sym_BSLASHac] = ACTIONS(5180), + [anon_sym_BSLASHAc] = ACTIONS(5180), + [anon_sym_BSLASHacp] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5180), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5180), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5180), + [anon_sym_BSLASHcolor] = ACTIONS(5180), + [anon_sym_BSLASHcolorbox] = ACTIONS(5180), + [anon_sym_BSLASHtextcolor] = ACTIONS(5180), + [anon_sym_BSLASHpagecolor] = ACTIONS(5180), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5180), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5180), + [anon_sym_BSLASHtext] = ACTIONS(5180), + [anon_sym_BSLASHintertext] = ACTIONS(5180), + [anon_sym_shortintertext] = ACTIONS(5180), }, [1031] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5105), - [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), + [sym_command_name] = ACTIONS(5184), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_BSLASHpart] = ACTIONS(5184), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddpart] = ACTIONS(5184), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHchapter] = ACTIONS(5184), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddchap] = ACTIONS(5184), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsection] = ACTIONS(5184), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddsec] = ACTIONS(5184), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHparagraph] = ACTIONS(5184), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5184), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHitem] = ACTIONS(5184), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [sym_word] = ACTIONS(5184), + [sym_placeholder] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym__] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5182), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5182), + [anon_sym_BSLASHbegin] = ACTIONS(5184), + [anon_sym_BSLASHusepackage] = ACTIONS(5184), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5184), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5184), + [anon_sym_BSLASHinclude] = ACTIONS(5184), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5184), + [anon_sym_BSLASHinput] = ACTIONS(5184), + [anon_sym_BSLASHsubfile] = ACTIONS(5184), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5184), + [anon_sym_BSLASHbibliography] = ACTIONS(5184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5184), + [anon_sym_BSLASHincludesvg] = ACTIONS(5184), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5184), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5184), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5184), + [anon_sym_BSLASHimport] = ACTIONS(5184), + [anon_sym_BSLASHsubimport] = ACTIONS(5184), + [anon_sym_BSLASHinputfrom] = ACTIONS(5184), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5184), + [anon_sym_BSLASHincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHcaption] = ACTIONS(5184), + [anon_sym_BSLASHcite] = ACTIONS(5184), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCite] = ACTIONS(5184), + [anon_sym_BSLASHnocite] = ACTIONS(5184), + [anon_sym_BSLASHcitet] = ACTIONS(5184), + [anon_sym_BSLASHcitep] = ACTIONS(5184), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteauthor] = ACTIONS(5184), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5184), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitetitle] = ACTIONS(5184), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteyear] = ACTIONS(5184), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitedate] = ACTIONS(5184), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteurl] = ACTIONS(5184), + [anon_sym_BSLASHfullcite] = ACTIONS(5184), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5184), + [anon_sym_BSLASHcitealt] = ACTIONS(5184), + [anon_sym_BSLASHcitealp] = ACTIONS(5184), + [anon_sym_BSLASHcitetext] = ACTIONS(5184), + [anon_sym_BSLASHparencite] = ACTIONS(5184), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHParencite] = ACTIONS(5184), + [anon_sym_BSLASHfootcite] = ACTIONS(5184), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5184), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5184), + [anon_sym_BSLASHtextcite] = ACTIONS(5184), + [anon_sym_BSLASHTextcite] = ACTIONS(5184), + [anon_sym_BSLASHsmartcite] = ACTIONS(5184), + [anon_sym_BSLASHSmartcite] = ACTIONS(5184), + [anon_sym_BSLASHsupercite] = ACTIONS(5184), + [anon_sym_BSLASHautocite] = ACTIONS(5184), + [anon_sym_BSLASHAutocite] = ACTIONS(5184), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHvolcite] = ACTIONS(5184), + [anon_sym_BSLASHVolcite] = ACTIONS(5184), + [anon_sym_BSLASHpvolcite] = ACTIONS(5184), + [anon_sym_BSLASHPvolcite] = ACTIONS(5184), + [anon_sym_BSLASHfvolcite] = ACTIONS(5184), + [anon_sym_BSLASHftvolcite] = ACTIONS(5184), + [anon_sym_BSLASHsvolcite] = ACTIONS(5184), + [anon_sym_BSLASHSvolcite] = ACTIONS(5184), + [anon_sym_BSLASHtvolcite] = ACTIONS(5184), + [anon_sym_BSLASHTvolcite] = ACTIONS(5184), + [anon_sym_BSLASHavolcite] = ACTIONS(5184), + [anon_sym_BSLASHAvolcite] = ACTIONS(5184), + [anon_sym_BSLASHnotecite] = ACTIONS(5184), + [anon_sym_BSLASHNotecite] = ACTIONS(5184), + [anon_sym_BSLASHpnotecite] = ACTIONS(5184), + [anon_sym_BSLASHPnotecite] = ACTIONS(5184), + [anon_sym_BSLASHfnotecite] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5184), + [anon_sym_BSLASHref] = ACTIONS(5184), + [anon_sym_BSLASHeqref] = ACTIONS(5184), + [anon_sym_BSLASHvref] = ACTIONS(5184), + [anon_sym_BSLASHVref] = ACTIONS(5184), + [anon_sym_BSLASHautoref] = ACTIONS(5184), + [anon_sym_BSLASHpageref] = ACTIONS(5184), + [anon_sym_BSLASHcref] = ACTIONS(5184), + [anon_sym_BSLASHCref] = ACTIONS(5184), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnameCref] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHlabelcref] = ACTIONS(5184), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCrefrange] = ACTIONS(5184), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnewlabel] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5184), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5184), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5184), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdef] = ACTIONS(5184), + [anon_sym_BSLASHlet] = ACTIONS(5184), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5184), + [anon_sym_BSLASHgls] = ACTIONS(5184), + [anon_sym_BSLASHGls] = ACTIONS(5184), + [anon_sym_BSLASHGLS] = ACTIONS(5184), + [anon_sym_BSLASHglspl] = ACTIONS(5184), + [anon_sym_BSLASHGlspl] = ACTIONS(5184), + [anon_sym_BSLASHGLSpl] = ACTIONS(5184), + [anon_sym_BSLASHglsdisp] = ACTIONS(5184), + [anon_sym_BSLASHglslink] = ACTIONS(5184), + [anon_sym_BSLASHglstext] = ACTIONS(5184), + [anon_sym_BSLASHGlstext] = ACTIONS(5184), + [anon_sym_BSLASHGLStext] = ACTIONS(5184), + [anon_sym_BSLASHglsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5184), + [anon_sym_BSLASHglsplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSplural] = ACTIONS(5184), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHglsname] = ACTIONS(5184), + [anon_sym_BSLASHGlsname] = ACTIONS(5184), + [anon_sym_BSLASHGLSname] = ACTIONS(5184), + [anon_sym_BSLASHglssymbol] = ACTIONS(5184), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5184), + [anon_sym_BSLASHglsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5184), + [anon_sym_BSLASHglsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5184), + [anon_sym_BSLASHglsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5184), + [anon_sym_BSLASHglsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5184), + [anon_sym_BSLASHglsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5184), + [anon_sym_BSLASHnewacronym] = ACTIONS(5184), + [anon_sym_BSLASHacrshort] = ACTIONS(5184), + [anon_sym_BSLASHAcrshort] = ACTIONS(5184), + [anon_sym_BSLASHACRshort] = ACTIONS(5184), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5184), + [anon_sym_BSLASHacrlong] = ACTIONS(5184), + [anon_sym_BSLASHAcrlong] = ACTIONS(5184), + [anon_sym_BSLASHACRlong] = ACTIONS(5184), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5184), + [anon_sym_BSLASHacrfull] = ACTIONS(5184), + [anon_sym_BSLASHAcrfull] = ACTIONS(5184), + [anon_sym_BSLASHACRfull] = ACTIONS(5184), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5184), + [anon_sym_BSLASHacs] = ACTIONS(5184), + [anon_sym_BSLASHAcs] = ACTIONS(5184), + [anon_sym_BSLASHacsp] = ACTIONS(5184), + [anon_sym_BSLASHAcsp] = ACTIONS(5184), + [anon_sym_BSLASHacl] = ACTIONS(5184), + [anon_sym_BSLASHAcl] = ACTIONS(5184), + [anon_sym_BSLASHaclp] = ACTIONS(5184), + [anon_sym_BSLASHAclp] = ACTIONS(5184), + [anon_sym_BSLASHacf] = ACTIONS(5184), + [anon_sym_BSLASHAcf] = ACTIONS(5184), + [anon_sym_BSLASHacfp] = ACTIONS(5184), + [anon_sym_BSLASHAcfp] = ACTIONS(5184), + [anon_sym_BSLASHac] = ACTIONS(5184), + [anon_sym_BSLASHAc] = ACTIONS(5184), + [anon_sym_BSLASHacp] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5184), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5184), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5184), + [anon_sym_BSLASHcolor] = ACTIONS(5184), + [anon_sym_BSLASHcolorbox] = ACTIONS(5184), + [anon_sym_BSLASHtextcolor] = ACTIONS(5184), + [anon_sym_BSLASHpagecolor] = ACTIONS(5184), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5184), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5184), + [anon_sym_BSLASHtext] = ACTIONS(5184), + [anon_sym_BSLASHintertext] = ACTIONS(5184), + [anon_sym_shortintertext] = ACTIONS(5184), }, [1032] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_BSLASHpart] = ACTIONS(4887), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddpart] = ACTIONS(4887), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHchapter] = ACTIONS(4887), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddchap] = ACTIONS(4887), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsection] = ACTIONS(4887), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddsec] = ACTIONS(4887), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHparagraph] = ACTIONS(4887), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHitem] = ACTIONS(4887), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4885), - [anon_sym_BSLASHbegin] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BSLASHpart] = ACTIONS(4966), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddpart] = ACTIONS(4966), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHchapter] = ACTIONS(4966), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddchap] = ACTIONS(4966), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsection] = ACTIONS(4966), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddsec] = ACTIONS(4966), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHparagraph] = ACTIONS(4966), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4966), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHitem] = ACTIONS(4966), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4964), + [anon_sym_BSLASHbegin] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [1033] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_BSLASHpart] = ACTIONS(4955), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddpart] = ACTIONS(4955), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHchapter] = ACTIONS(4955), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddchap] = ACTIONS(4955), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsection] = ACTIONS(4955), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddsec] = ACTIONS(4955), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHparagraph] = ACTIONS(4955), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHitem] = ACTIONS(4955), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASHbegin] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_BSLASHpart] = ACTIONS(5034), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddpart] = ACTIONS(5034), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHchapter] = ACTIONS(5034), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddchap] = ACTIONS(5034), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsection] = ACTIONS(5034), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddsec] = ACTIONS(5034), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHparagraph] = ACTIONS(5034), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5034), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHitem] = ACTIONS(5034), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASHbegin] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [1034] = { - [sym_command_name] = ACTIONS(4951), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_BSLASHpart] = ACTIONS(4951), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddpart] = ACTIONS(4951), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHchapter] = ACTIONS(4951), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddchap] = ACTIONS(4951), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsection] = ACTIONS(4951), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddsec] = ACTIONS(4951), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHparagraph] = ACTIONS(4951), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHitem] = ACTIONS(4951), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), - [sym_word] = ACTIONS(4951), - [sym_placeholder] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), - [anon_sym_BSLASHbegin] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4951), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), - [anon_sym_BSLASHinclude] = ACTIONS(4951), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), - [anon_sym_BSLASHinput] = ACTIONS(4951), - [anon_sym_BSLASHsubfile] = ACTIONS(4951), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), - [anon_sym_BSLASHbibliography] = ACTIONS(4951), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), - [anon_sym_BSLASHincludesvg] = ACTIONS(4951), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), - [anon_sym_BSLASHimport] = ACTIONS(4951), - [anon_sym_BSLASHsubimport] = ACTIONS(4951), - [anon_sym_BSLASHinputfrom] = ACTIONS(4951), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), - [anon_sym_BSLASHincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHcaption] = ACTIONS(4951), - [anon_sym_BSLASHcite] = ACTIONS(4951), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCite] = ACTIONS(4951), - [anon_sym_BSLASHnocite] = ACTIONS(4951), - [anon_sym_BSLASHcitet] = ACTIONS(4951), - [anon_sym_BSLASHcitep] = ACTIONS(4951), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteyear] = ACTIONS(4951), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitedate] = ACTIONS(4951), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteurl] = ACTIONS(4951), - [anon_sym_BSLASHfullcite] = ACTIONS(4951), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), - [anon_sym_BSLASHcitealt] = ACTIONS(4951), - [anon_sym_BSLASHcitealp] = ACTIONS(4951), - [anon_sym_BSLASHcitetext] = ACTIONS(4951), - [anon_sym_BSLASHparencite] = ACTIONS(4951), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHParencite] = ACTIONS(4951), - [anon_sym_BSLASHfootcite] = ACTIONS(4951), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), - [anon_sym_BSLASHtextcite] = ACTIONS(4951), - [anon_sym_BSLASHTextcite] = ACTIONS(4951), - [anon_sym_BSLASHsmartcite] = ACTIONS(4951), - [anon_sym_BSLASHSmartcite] = ACTIONS(4951), - [anon_sym_BSLASHsupercite] = ACTIONS(4951), - [anon_sym_BSLASHautocite] = ACTIONS(4951), - [anon_sym_BSLASHAutocite] = ACTIONS(4951), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHvolcite] = ACTIONS(4951), - [anon_sym_BSLASHVolcite] = ACTIONS(4951), - [anon_sym_BSLASHpvolcite] = ACTIONS(4951), - [anon_sym_BSLASHPvolcite] = ACTIONS(4951), - [anon_sym_BSLASHfvolcite] = ACTIONS(4951), - [anon_sym_BSLASHftvolcite] = ACTIONS(4951), - [anon_sym_BSLASHsvolcite] = ACTIONS(4951), - [anon_sym_BSLASHSvolcite] = ACTIONS(4951), - [anon_sym_BSLASHtvolcite] = ACTIONS(4951), - [anon_sym_BSLASHTvolcite] = ACTIONS(4951), - [anon_sym_BSLASHavolcite] = ACTIONS(4951), - [anon_sym_BSLASHAvolcite] = ACTIONS(4951), - [anon_sym_BSLASHnotecite] = ACTIONS(4951), - [anon_sym_BSLASHNotecite] = ACTIONS(4951), - [anon_sym_BSLASHpnotecite] = ACTIONS(4951), - [anon_sym_BSLASHPnotecite] = ACTIONS(4951), - [anon_sym_BSLASHfnotecite] = ACTIONS(4951), - [anon_sym_BSLASHlabel] = ACTIONS(4951), - [anon_sym_BSLASHref] = ACTIONS(4951), - [anon_sym_BSLASHeqref] = ACTIONS(4951), - [anon_sym_BSLASHvref] = ACTIONS(4951), - [anon_sym_BSLASHVref] = ACTIONS(4951), - [anon_sym_BSLASHautoref] = ACTIONS(4951), - [anon_sym_BSLASHpageref] = ACTIONS(4951), - [anon_sym_BSLASHcref] = ACTIONS(4951), - [anon_sym_BSLASHCref] = ACTIONS(4951), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnameCref] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHlabelcref] = ACTIONS(4951), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnewlabel] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), - [anon_sym_BSLASHdef] = ACTIONS(4951), - [anon_sym_BSLASHlet] = ACTIONS(4951), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), - [anon_sym_BSLASHgls] = ACTIONS(4951), - [anon_sym_BSLASHGls] = ACTIONS(4951), - [anon_sym_BSLASHGLS] = ACTIONS(4951), - [anon_sym_BSLASHglspl] = ACTIONS(4951), - [anon_sym_BSLASHGlspl] = ACTIONS(4951), - [anon_sym_BSLASHGLSpl] = ACTIONS(4951), - [anon_sym_BSLASHglsdisp] = ACTIONS(4951), - [anon_sym_BSLASHglslink] = ACTIONS(4951), - [anon_sym_BSLASHglstext] = ACTIONS(4951), - [anon_sym_BSLASHGlstext] = ACTIONS(4951), - [anon_sym_BSLASHGLStext] = ACTIONS(4951), - [anon_sym_BSLASHglsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), - [anon_sym_BSLASHglsplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSplural] = ACTIONS(4951), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHglsname] = ACTIONS(4951), - [anon_sym_BSLASHGlsname] = ACTIONS(4951), - [anon_sym_BSLASHGLSname] = ACTIONS(4951), - [anon_sym_BSLASHglssymbol] = ACTIONS(4951), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), - [anon_sym_BSLASHglsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), - [anon_sym_BSLASHglsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), - [anon_sym_BSLASHglsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), - [anon_sym_BSLASHglsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), - [anon_sym_BSLASHglsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), - [anon_sym_BSLASHnewacronym] = ACTIONS(4951), - [anon_sym_BSLASHacrshort] = ACTIONS(4951), - [anon_sym_BSLASHAcrshort] = ACTIONS(4951), - [anon_sym_BSLASHACRshort] = ACTIONS(4951), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), - [anon_sym_BSLASHacrlong] = ACTIONS(4951), - [anon_sym_BSLASHAcrlong] = ACTIONS(4951), - [anon_sym_BSLASHACRlong] = ACTIONS(4951), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), - [anon_sym_BSLASHacrfull] = ACTIONS(4951), - [anon_sym_BSLASHAcrfull] = ACTIONS(4951), - [anon_sym_BSLASHACRfull] = ACTIONS(4951), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), - [anon_sym_BSLASHacs] = ACTIONS(4951), - [anon_sym_BSLASHAcs] = ACTIONS(4951), - [anon_sym_BSLASHacsp] = ACTIONS(4951), - [anon_sym_BSLASHAcsp] = ACTIONS(4951), - [anon_sym_BSLASHacl] = ACTIONS(4951), - [anon_sym_BSLASHAcl] = ACTIONS(4951), - [anon_sym_BSLASHaclp] = ACTIONS(4951), - [anon_sym_BSLASHAclp] = ACTIONS(4951), - [anon_sym_BSLASHacf] = ACTIONS(4951), - [anon_sym_BSLASHAcf] = ACTIONS(4951), - [anon_sym_BSLASHacfp] = ACTIONS(4951), - [anon_sym_BSLASHAcfp] = ACTIONS(4951), - [anon_sym_BSLASHac] = ACTIONS(4951), - [anon_sym_BSLASHAc] = ACTIONS(4951), - [anon_sym_BSLASHacp] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), - [anon_sym_BSLASHcolor] = ACTIONS(4951), - [anon_sym_BSLASHcolorbox] = ACTIONS(4951), - [anon_sym_BSLASHtextcolor] = ACTIONS(4951), - [anon_sym_BSLASHpagecolor] = ACTIONS(4951), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), - [anon_sym_BSLASHtext] = ACTIONS(4951), - [anon_sym_BSLASHintertext] = ACTIONS(4951), - [anon_sym_shortintertext] = ACTIONS(4951), + [sym_command_name] = ACTIONS(5030), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_BSLASHpart] = ACTIONS(5030), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddpart] = ACTIONS(5030), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHchapter] = ACTIONS(5030), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddchap] = ACTIONS(5030), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsection] = ACTIONS(5030), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddsec] = ACTIONS(5030), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHparagraph] = ACTIONS(5030), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5030), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHitem] = ACTIONS(5030), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [sym_word] = ACTIONS(5030), + [sym_placeholder] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5028), + [anon_sym_BSLASHbegin] = ACTIONS(5030), + [anon_sym_BSLASHusepackage] = ACTIONS(5030), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5030), + [anon_sym_BSLASHinclude] = ACTIONS(5030), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5030), + [anon_sym_BSLASHinput] = ACTIONS(5030), + [anon_sym_BSLASHsubfile] = ACTIONS(5030), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5030), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5030), + [anon_sym_BSLASHincludesvg] = ACTIONS(5030), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5030), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5030), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5030), + [anon_sym_BSLASHimport] = ACTIONS(5030), + [anon_sym_BSLASHsubimport] = ACTIONS(5030), + [anon_sym_BSLASHinputfrom] = ACTIONS(5030), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5030), + [anon_sym_BSLASHincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHcaption] = ACTIONS(5030), + [anon_sym_BSLASHcite] = ACTIONS(5030), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCite] = ACTIONS(5030), + [anon_sym_BSLASHnocite] = ACTIONS(5030), + [anon_sym_BSLASHcitet] = ACTIONS(5030), + [anon_sym_BSLASHcitep] = ACTIONS(5030), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteauthor] = ACTIONS(5030), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5030), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitetitle] = ACTIONS(5030), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteyear] = ACTIONS(5030), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitedate] = ACTIONS(5030), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteurl] = ACTIONS(5030), + [anon_sym_BSLASHfullcite] = ACTIONS(5030), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5030), + [anon_sym_BSLASHcitealt] = ACTIONS(5030), + [anon_sym_BSLASHcitealp] = ACTIONS(5030), + [anon_sym_BSLASHcitetext] = ACTIONS(5030), + [anon_sym_BSLASHparencite] = ACTIONS(5030), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHParencite] = ACTIONS(5030), + [anon_sym_BSLASHfootcite] = ACTIONS(5030), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5030), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5030), + [anon_sym_BSLASHtextcite] = ACTIONS(5030), + [anon_sym_BSLASHTextcite] = ACTIONS(5030), + [anon_sym_BSLASHsmartcite] = ACTIONS(5030), + [anon_sym_BSLASHSmartcite] = ACTIONS(5030), + [anon_sym_BSLASHsupercite] = ACTIONS(5030), + [anon_sym_BSLASHautocite] = ACTIONS(5030), + [anon_sym_BSLASHAutocite] = ACTIONS(5030), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHvolcite] = ACTIONS(5030), + [anon_sym_BSLASHVolcite] = ACTIONS(5030), + [anon_sym_BSLASHpvolcite] = ACTIONS(5030), + [anon_sym_BSLASHPvolcite] = ACTIONS(5030), + [anon_sym_BSLASHfvolcite] = ACTIONS(5030), + [anon_sym_BSLASHftvolcite] = ACTIONS(5030), + [anon_sym_BSLASHsvolcite] = ACTIONS(5030), + [anon_sym_BSLASHSvolcite] = ACTIONS(5030), + [anon_sym_BSLASHtvolcite] = ACTIONS(5030), + [anon_sym_BSLASHTvolcite] = ACTIONS(5030), + [anon_sym_BSLASHavolcite] = ACTIONS(5030), + [anon_sym_BSLASHAvolcite] = ACTIONS(5030), + [anon_sym_BSLASHnotecite] = ACTIONS(5030), + [anon_sym_BSLASHNotecite] = ACTIONS(5030), + [anon_sym_BSLASHpnotecite] = ACTIONS(5030), + [anon_sym_BSLASHPnotecite] = ACTIONS(5030), + [anon_sym_BSLASHfnotecite] = ACTIONS(5030), + [anon_sym_BSLASHlabel] = ACTIONS(5030), + [anon_sym_BSLASHref] = ACTIONS(5030), + [anon_sym_BSLASHeqref] = ACTIONS(5030), + [anon_sym_BSLASHvref] = ACTIONS(5030), + [anon_sym_BSLASHVref] = ACTIONS(5030), + [anon_sym_BSLASHautoref] = ACTIONS(5030), + [anon_sym_BSLASHpageref] = ACTIONS(5030), + [anon_sym_BSLASHcref] = ACTIONS(5030), + [anon_sym_BSLASHCref] = ACTIONS(5030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnameCref] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHlabelcref] = ACTIONS(5030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCrefrange] = ACTIONS(5030), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5030), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5030), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5030), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdef] = ACTIONS(5030), + [anon_sym_BSLASHlet] = ACTIONS(5030), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5030), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5030), + [anon_sym_BSLASHgls] = ACTIONS(5030), + [anon_sym_BSLASHGls] = ACTIONS(5030), + [anon_sym_BSLASHGLS] = ACTIONS(5030), + [anon_sym_BSLASHglspl] = ACTIONS(5030), + [anon_sym_BSLASHGlspl] = ACTIONS(5030), + [anon_sym_BSLASHGLSpl] = ACTIONS(5030), + [anon_sym_BSLASHglsdisp] = ACTIONS(5030), + [anon_sym_BSLASHglslink] = ACTIONS(5030), + [anon_sym_BSLASHglstext] = ACTIONS(5030), + [anon_sym_BSLASHGlstext] = ACTIONS(5030), + [anon_sym_BSLASHGLStext] = ACTIONS(5030), + [anon_sym_BSLASHglsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5030), + [anon_sym_BSLASHglsplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSplural] = ACTIONS(5030), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHglsname] = ACTIONS(5030), + [anon_sym_BSLASHGlsname] = ACTIONS(5030), + [anon_sym_BSLASHGLSname] = ACTIONS(5030), + [anon_sym_BSLASHglssymbol] = ACTIONS(5030), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5030), + [anon_sym_BSLASHglsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5030), + [anon_sym_BSLASHglsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5030), + [anon_sym_BSLASHglsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5030), + [anon_sym_BSLASHglsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5030), + [anon_sym_BSLASHglsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5030), + [anon_sym_BSLASHnewacronym] = ACTIONS(5030), + [anon_sym_BSLASHacrshort] = ACTIONS(5030), + [anon_sym_BSLASHAcrshort] = ACTIONS(5030), + [anon_sym_BSLASHACRshort] = ACTIONS(5030), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5030), + [anon_sym_BSLASHacrlong] = ACTIONS(5030), + [anon_sym_BSLASHAcrlong] = ACTIONS(5030), + [anon_sym_BSLASHACRlong] = ACTIONS(5030), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5030), + [anon_sym_BSLASHacrfull] = ACTIONS(5030), + [anon_sym_BSLASHAcrfull] = ACTIONS(5030), + [anon_sym_BSLASHACRfull] = ACTIONS(5030), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5030), + [anon_sym_BSLASHacs] = ACTIONS(5030), + [anon_sym_BSLASHAcs] = ACTIONS(5030), + [anon_sym_BSLASHacsp] = ACTIONS(5030), + [anon_sym_BSLASHAcsp] = ACTIONS(5030), + [anon_sym_BSLASHacl] = ACTIONS(5030), + [anon_sym_BSLASHAcl] = ACTIONS(5030), + [anon_sym_BSLASHaclp] = ACTIONS(5030), + [anon_sym_BSLASHAclp] = ACTIONS(5030), + [anon_sym_BSLASHacf] = ACTIONS(5030), + [anon_sym_BSLASHAcf] = ACTIONS(5030), + [anon_sym_BSLASHacfp] = ACTIONS(5030), + [anon_sym_BSLASHAcfp] = ACTIONS(5030), + [anon_sym_BSLASHac] = ACTIONS(5030), + [anon_sym_BSLASHAc] = ACTIONS(5030), + [anon_sym_BSLASHacp] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5030), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5030), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5030), + [anon_sym_BSLASHcolor] = ACTIONS(5030), + [anon_sym_BSLASHcolorbox] = ACTIONS(5030), + [anon_sym_BSLASHtextcolor] = ACTIONS(5030), + [anon_sym_BSLASHpagecolor] = ACTIONS(5030), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5030), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5030), + [anon_sym_BSLASHtext] = ACTIONS(5030), + [anon_sym_BSLASHintertext] = ACTIONS(5030), + [anon_sym_shortintertext] = ACTIONS(5030), }, [1035] = { - [sym_command_name] = ACTIONS(4947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_BSLASHpart] = ACTIONS(4947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddpart] = ACTIONS(4947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHchapter] = ACTIONS(4947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddchap] = ACTIONS(4947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsection] = ACTIONS(4947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddsec] = ACTIONS(4947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHparagraph] = ACTIONS(4947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHitem] = ACTIONS(4947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4945), - [sym_word] = ACTIONS(4947), - [sym_placeholder] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4947), - [anon_sym__] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), - [anon_sym_BSLASHbegin] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), - [anon_sym_BSLASHinclude] = ACTIONS(4947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), - [anon_sym_BSLASHinput] = ACTIONS(4947), - [anon_sym_BSLASHsubfile] = ACTIONS(4947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), - [anon_sym_BSLASHbibliography] = ACTIONS(4947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), - [anon_sym_BSLASHincludesvg] = ACTIONS(4947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), - [anon_sym_BSLASHimport] = ACTIONS(4947), - [anon_sym_BSLASHsubimport] = ACTIONS(4947), - [anon_sym_BSLASHinputfrom] = ACTIONS(4947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), - [anon_sym_BSLASHincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHcaption] = ACTIONS(4947), - [anon_sym_BSLASHcite] = ACTIONS(4947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCite] = ACTIONS(4947), - [anon_sym_BSLASHnocite] = ACTIONS(4947), - [anon_sym_BSLASHcitet] = ACTIONS(4947), - [anon_sym_BSLASHcitep] = ACTIONS(4947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteyear] = ACTIONS(4947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitedate] = ACTIONS(4947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteurl] = ACTIONS(4947), - [anon_sym_BSLASHfullcite] = ACTIONS(4947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), - [anon_sym_BSLASHcitealt] = ACTIONS(4947), - [anon_sym_BSLASHcitealp] = ACTIONS(4947), - [anon_sym_BSLASHcitetext] = ACTIONS(4947), - [anon_sym_BSLASHparencite] = ACTIONS(4947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHParencite] = ACTIONS(4947), - [anon_sym_BSLASHfootcite] = ACTIONS(4947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), - [anon_sym_BSLASHtextcite] = ACTIONS(4947), - [anon_sym_BSLASHTextcite] = ACTIONS(4947), - [anon_sym_BSLASHsmartcite] = ACTIONS(4947), - [anon_sym_BSLASHSmartcite] = ACTIONS(4947), - [anon_sym_BSLASHsupercite] = ACTIONS(4947), - [anon_sym_BSLASHautocite] = ACTIONS(4947), - [anon_sym_BSLASHAutocite] = ACTIONS(4947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHvolcite] = ACTIONS(4947), - [anon_sym_BSLASHVolcite] = ACTIONS(4947), - [anon_sym_BSLASHpvolcite] = ACTIONS(4947), - [anon_sym_BSLASHPvolcite] = ACTIONS(4947), - [anon_sym_BSLASHfvolcite] = ACTIONS(4947), - [anon_sym_BSLASHftvolcite] = ACTIONS(4947), - [anon_sym_BSLASHsvolcite] = ACTIONS(4947), - [anon_sym_BSLASHSvolcite] = ACTIONS(4947), - [anon_sym_BSLASHtvolcite] = ACTIONS(4947), - [anon_sym_BSLASHTvolcite] = ACTIONS(4947), - [anon_sym_BSLASHavolcite] = ACTIONS(4947), - [anon_sym_BSLASHAvolcite] = ACTIONS(4947), - [anon_sym_BSLASHnotecite] = ACTIONS(4947), - [anon_sym_BSLASHNotecite] = ACTIONS(4947), - [anon_sym_BSLASHpnotecite] = ACTIONS(4947), - [anon_sym_BSLASHPnotecite] = ACTIONS(4947), - [anon_sym_BSLASHfnotecite] = ACTIONS(4947), - [anon_sym_BSLASHlabel] = ACTIONS(4947), - [anon_sym_BSLASHref] = ACTIONS(4947), - [anon_sym_BSLASHeqref] = ACTIONS(4947), - [anon_sym_BSLASHvref] = ACTIONS(4947), - [anon_sym_BSLASHVref] = ACTIONS(4947), - [anon_sym_BSLASHautoref] = ACTIONS(4947), - [anon_sym_BSLASHpageref] = ACTIONS(4947), - [anon_sym_BSLASHcref] = ACTIONS(4947), - [anon_sym_BSLASHCref] = ACTIONS(4947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnameCref] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHlabelcref] = ACTIONS(4947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnewlabel] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), - [anon_sym_BSLASHdef] = ACTIONS(4947), - [anon_sym_BSLASHlet] = ACTIONS(4947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), - [anon_sym_BSLASHgls] = ACTIONS(4947), - [anon_sym_BSLASHGls] = ACTIONS(4947), - [anon_sym_BSLASHGLS] = ACTIONS(4947), - [anon_sym_BSLASHglspl] = ACTIONS(4947), - [anon_sym_BSLASHGlspl] = ACTIONS(4947), - [anon_sym_BSLASHGLSpl] = ACTIONS(4947), - [anon_sym_BSLASHglsdisp] = ACTIONS(4947), - [anon_sym_BSLASHglslink] = ACTIONS(4947), - [anon_sym_BSLASHglstext] = ACTIONS(4947), - [anon_sym_BSLASHGlstext] = ACTIONS(4947), - [anon_sym_BSLASHGLStext] = ACTIONS(4947), - [anon_sym_BSLASHglsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), - [anon_sym_BSLASHglsplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSplural] = ACTIONS(4947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHglsname] = ACTIONS(4947), - [anon_sym_BSLASHGlsname] = ACTIONS(4947), - [anon_sym_BSLASHGLSname] = ACTIONS(4947), - [anon_sym_BSLASHglssymbol] = ACTIONS(4947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), - [anon_sym_BSLASHglsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), - [anon_sym_BSLASHglsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), - [anon_sym_BSLASHglsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), - [anon_sym_BSLASHglsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), - [anon_sym_BSLASHglsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), - [anon_sym_BSLASHnewacronym] = ACTIONS(4947), - [anon_sym_BSLASHacrshort] = ACTIONS(4947), - [anon_sym_BSLASHAcrshort] = ACTIONS(4947), - [anon_sym_BSLASHACRshort] = ACTIONS(4947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), - [anon_sym_BSLASHacrlong] = ACTIONS(4947), - [anon_sym_BSLASHAcrlong] = ACTIONS(4947), - [anon_sym_BSLASHACRlong] = ACTIONS(4947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), - [anon_sym_BSLASHacrfull] = ACTIONS(4947), - [anon_sym_BSLASHAcrfull] = ACTIONS(4947), - [anon_sym_BSLASHACRfull] = ACTIONS(4947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), - [anon_sym_BSLASHacs] = ACTIONS(4947), - [anon_sym_BSLASHAcs] = ACTIONS(4947), - [anon_sym_BSLASHacsp] = ACTIONS(4947), - [anon_sym_BSLASHAcsp] = ACTIONS(4947), - [anon_sym_BSLASHacl] = ACTIONS(4947), - [anon_sym_BSLASHAcl] = ACTIONS(4947), - [anon_sym_BSLASHaclp] = ACTIONS(4947), - [anon_sym_BSLASHAclp] = ACTIONS(4947), - [anon_sym_BSLASHacf] = ACTIONS(4947), - [anon_sym_BSLASHAcf] = ACTIONS(4947), - [anon_sym_BSLASHacfp] = ACTIONS(4947), - [anon_sym_BSLASHAcfp] = ACTIONS(4947), - [anon_sym_BSLASHac] = ACTIONS(4947), - [anon_sym_BSLASHAc] = ACTIONS(4947), - [anon_sym_BSLASHacp] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), - [anon_sym_BSLASHcolor] = ACTIONS(4947), - [anon_sym_BSLASHcolorbox] = ACTIONS(4947), - [anon_sym_BSLASHtextcolor] = ACTIONS(4947), - [anon_sym_BSLASHpagecolor] = ACTIONS(4947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), - [anon_sym_BSLASHtext] = ACTIONS(4947), - [anon_sym_BSLASHintertext] = ACTIONS(4947), - [anon_sym_shortintertext] = ACTIONS(4947), + [sym_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_BSLASHpart] = ACTIONS(5026), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddpart] = ACTIONS(5026), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHchapter] = ACTIONS(5026), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddchap] = ACTIONS(5026), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsection] = ACTIONS(5026), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddsec] = ACTIONS(5026), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHparagraph] = ACTIONS(5026), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5026), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHitem] = ACTIONS(5026), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [sym_word] = ACTIONS(5026), + [sym_placeholder] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5024), + [anon_sym_BSLASHbegin] = ACTIONS(5026), + [anon_sym_BSLASHusepackage] = ACTIONS(5026), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5026), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5026), + [anon_sym_BSLASHinclude] = ACTIONS(5026), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5026), + [anon_sym_BSLASHinput] = ACTIONS(5026), + [anon_sym_BSLASHsubfile] = ACTIONS(5026), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5026), + [anon_sym_BSLASHbibliography] = ACTIONS(5026), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5026), + [anon_sym_BSLASHincludesvg] = ACTIONS(5026), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5026), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5026), + [anon_sym_BSLASHimport] = ACTIONS(5026), + [anon_sym_BSLASHsubimport] = ACTIONS(5026), + [anon_sym_BSLASHinputfrom] = ACTIONS(5026), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5026), + [anon_sym_BSLASHincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHcaption] = ACTIONS(5026), + [anon_sym_BSLASHcite] = ACTIONS(5026), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCite] = ACTIONS(5026), + [anon_sym_BSLASHnocite] = ACTIONS(5026), + [anon_sym_BSLASHcitet] = ACTIONS(5026), + [anon_sym_BSLASHcitep] = ACTIONS(5026), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteauthor] = ACTIONS(5026), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5026), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitetitle] = ACTIONS(5026), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteyear] = ACTIONS(5026), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitedate] = ACTIONS(5026), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteurl] = ACTIONS(5026), + [anon_sym_BSLASHfullcite] = ACTIONS(5026), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5026), + [anon_sym_BSLASHcitealt] = ACTIONS(5026), + [anon_sym_BSLASHcitealp] = ACTIONS(5026), + [anon_sym_BSLASHcitetext] = ACTIONS(5026), + [anon_sym_BSLASHparencite] = ACTIONS(5026), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHParencite] = ACTIONS(5026), + [anon_sym_BSLASHfootcite] = ACTIONS(5026), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5026), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5026), + [anon_sym_BSLASHtextcite] = ACTIONS(5026), + [anon_sym_BSLASHTextcite] = ACTIONS(5026), + [anon_sym_BSLASHsmartcite] = ACTIONS(5026), + [anon_sym_BSLASHSmartcite] = ACTIONS(5026), + [anon_sym_BSLASHsupercite] = ACTIONS(5026), + [anon_sym_BSLASHautocite] = ACTIONS(5026), + [anon_sym_BSLASHAutocite] = ACTIONS(5026), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHvolcite] = ACTIONS(5026), + [anon_sym_BSLASHVolcite] = ACTIONS(5026), + [anon_sym_BSLASHpvolcite] = ACTIONS(5026), + [anon_sym_BSLASHPvolcite] = ACTIONS(5026), + [anon_sym_BSLASHfvolcite] = ACTIONS(5026), + [anon_sym_BSLASHftvolcite] = ACTIONS(5026), + [anon_sym_BSLASHsvolcite] = ACTIONS(5026), + [anon_sym_BSLASHSvolcite] = ACTIONS(5026), + [anon_sym_BSLASHtvolcite] = ACTIONS(5026), + [anon_sym_BSLASHTvolcite] = ACTIONS(5026), + [anon_sym_BSLASHavolcite] = ACTIONS(5026), + [anon_sym_BSLASHAvolcite] = ACTIONS(5026), + [anon_sym_BSLASHnotecite] = ACTIONS(5026), + [anon_sym_BSLASHNotecite] = ACTIONS(5026), + [anon_sym_BSLASHpnotecite] = ACTIONS(5026), + [anon_sym_BSLASHPnotecite] = ACTIONS(5026), + [anon_sym_BSLASHfnotecite] = ACTIONS(5026), + [anon_sym_BSLASHlabel] = ACTIONS(5026), + [anon_sym_BSLASHref] = ACTIONS(5026), + [anon_sym_BSLASHeqref] = ACTIONS(5026), + [anon_sym_BSLASHvref] = ACTIONS(5026), + [anon_sym_BSLASHVref] = ACTIONS(5026), + [anon_sym_BSLASHautoref] = ACTIONS(5026), + [anon_sym_BSLASHpageref] = ACTIONS(5026), + [anon_sym_BSLASHcref] = ACTIONS(5026), + [anon_sym_BSLASHCref] = ACTIONS(5026), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnameCref] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHlabelcref] = ACTIONS(5026), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCrefrange] = ACTIONS(5026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnewlabel] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5026), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5026), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5026), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdef] = ACTIONS(5026), + [anon_sym_BSLASHlet] = ACTIONS(5026), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5026), + [anon_sym_BSLASHgls] = ACTIONS(5026), + [anon_sym_BSLASHGls] = ACTIONS(5026), + [anon_sym_BSLASHGLS] = ACTIONS(5026), + [anon_sym_BSLASHglspl] = ACTIONS(5026), + [anon_sym_BSLASHGlspl] = ACTIONS(5026), + [anon_sym_BSLASHGLSpl] = ACTIONS(5026), + [anon_sym_BSLASHglsdisp] = ACTIONS(5026), + [anon_sym_BSLASHglslink] = ACTIONS(5026), + [anon_sym_BSLASHglstext] = ACTIONS(5026), + [anon_sym_BSLASHGlstext] = ACTIONS(5026), + [anon_sym_BSLASHGLStext] = ACTIONS(5026), + [anon_sym_BSLASHglsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5026), + [anon_sym_BSLASHglsplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSplural] = ACTIONS(5026), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHglsname] = ACTIONS(5026), + [anon_sym_BSLASHGlsname] = ACTIONS(5026), + [anon_sym_BSLASHGLSname] = ACTIONS(5026), + [anon_sym_BSLASHglssymbol] = ACTIONS(5026), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5026), + [anon_sym_BSLASHglsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5026), + [anon_sym_BSLASHglsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5026), + [anon_sym_BSLASHglsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5026), + [anon_sym_BSLASHglsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5026), + [anon_sym_BSLASHglsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5026), + [anon_sym_BSLASHnewacronym] = ACTIONS(5026), + [anon_sym_BSLASHacrshort] = ACTIONS(5026), + [anon_sym_BSLASHAcrshort] = ACTIONS(5026), + [anon_sym_BSLASHACRshort] = ACTIONS(5026), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5026), + [anon_sym_BSLASHacrlong] = ACTIONS(5026), + [anon_sym_BSLASHAcrlong] = ACTIONS(5026), + [anon_sym_BSLASHACRlong] = ACTIONS(5026), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5026), + [anon_sym_BSLASHacrfull] = ACTIONS(5026), + [anon_sym_BSLASHAcrfull] = ACTIONS(5026), + [anon_sym_BSLASHACRfull] = ACTIONS(5026), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5026), + [anon_sym_BSLASHacs] = ACTIONS(5026), + [anon_sym_BSLASHAcs] = ACTIONS(5026), + [anon_sym_BSLASHacsp] = ACTIONS(5026), + [anon_sym_BSLASHAcsp] = ACTIONS(5026), + [anon_sym_BSLASHacl] = ACTIONS(5026), + [anon_sym_BSLASHAcl] = ACTIONS(5026), + [anon_sym_BSLASHaclp] = ACTIONS(5026), + [anon_sym_BSLASHAclp] = ACTIONS(5026), + [anon_sym_BSLASHacf] = ACTIONS(5026), + [anon_sym_BSLASHAcf] = ACTIONS(5026), + [anon_sym_BSLASHacfp] = ACTIONS(5026), + [anon_sym_BSLASHAcfp] = ACTIONS(5026), + [anon_sym_BSLASHac] = ACTIONS(5026), + [anon_sym_BSLASHAc] = ACTIONS(5026), + [anon_sym_BSLASHacp] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5026), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5026), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5026), + [anon_sym_BSLASHcolor] = ACTIONS(5026), + [anon_sym_BSLASHcolorbox] = ACTIONS(5026), + [anon_sym_BSLASHtextcolor] = ACTIONS(5026), + [anon_sym_BSLASHpagecolor] = ACTIONS(5026), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5026), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5026), + [anon_sym_BSLASHtext] = ACTIONS(5026), + [anon_sym_BSLASHintertext] = ACTIONS(5026), + [anon_sym_shortintertext] = ACTIONS(5026), }, [1036] = { - [sym_command_name] = ACTIONS(4943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_BSLASHpart] = ACTIONS(4943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddpart] = ACTIONS(4943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHchapter] = ACTIONS(4943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddchap] = ACTIONS(4943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsection] = ACTIONS(4943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddsec] = ACTIONS(4943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHparagraph] = ACTIONS(4943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHitem] = ACTIONS(4943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4941), - [sym_word] = ACTIONS(4943), - [sym_placeholder] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4943), - [anon_sym__] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), - [anon_sym_BSLASHbegin] = ACTIONS(4943), - [anon_sym_BSLASHusepackage] = ACTIONS(4943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), - [anon_sym_BSLASHinclude] = ACTIONS(4943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), - [anon_sym_BSLASHinput] = ACTIONS(4943), - [anon_sym_BSLASHsubfile] = ACTIONS(4943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), - [anon_sym_BSLASHbibliography] = ACTIONS(4943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), - [anon_sym_BSLASHincludesvg] = ACTIONS(4943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), - [anon_sym_BSLASHimport] = ACTIONS(4943), - [anon_sym_BSLASHsubimport] = ACTIONS(4943), - [anon_sym_BSLASHinputfrom] = ACTIONS(4943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), - [anon_sym_BSLASHincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHcaption] = ACTIONS(4943), - [anon_sym_BSLASHcite] = ACTIONS(4943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCite] = ACTIONS(4943), - [anon_sym_BSLASHnocite] = ACTIONS(4943), - [anon_sym_BSLASHcitet] = ACTIONS(4943), - [anon_sym_BSLASHcitep] = ACTIONS(4943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteyear] = ACTIONS(4943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitedate] = ACTIONS(4943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteurl] = ACTIONS(4943), - [anon_sym_BSLASHfullcite] = ACTIONS(4943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), - [anon_sym_BSLASHcitealt] = ACTIONS(4943), - [anon_sym_BSLASHcitealp] = ACTIONS(4943), - [anon_sym_BSLASHcitetext] = ACTIONS(4943), - [anon_sym_BSLASHparencite] = ACTIONS(4943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHParencite] = ACTIONS(4943), - [anon_sym_BSLASHfootcite] = ACTIONS(4943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), - [anon_sym_BSLASHtextcite] = ACTIONS(4943), - [anon_sym_BSLASHTextcite] = ACTIONS(4943), - [anon_sym_BSLASHsmartcite] = ACTIONS(4943), - [anon_sym_BSLASHSmartcite] = ACTIONS(4943), - [anon_sym_BSLASHsupercite] = ACTIONS(4943), - [anon_sym_BSLASHautocite] = ACTIONS(4943), - [anon_sym_BSLASHAutocite] = ACTIONS(4943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHvolcite] = ACTIONS(4943), - [anon_sym_BSLASHVolcite] = ACTIONS(4943), - [anon_sym_BSLASHpvolcite] = ACTIONS(4943), - [anon_sym_BSLASHPvolcite] = ACTIONS(4943), - [anon_sym_BSLASHfvolcite] = ACTIONS(4943), - [anon_sym_BSLASHftvolcite] = ACTIONS(4943), - [anon_sym_BSLASHsvolcite] = ACTIONS(4943), - [anon_sym_BSLASHSvolcite] = ACTIONS(4943), - [anon_sym_BSLASHtvolcite] = ACTIONS(4943), - [anon_sym_BSLASHTvolcite] = ACTIONS(4943), - [anon_sym_BSLASHavolcite] = ACTIONS(4943), - [anon_sym_BSLASHAvolcite] = ACTIONS(4943), - [anon_sym_BSLASHnotecite] = ACTIONS(4943), - [anon_sym_BSLASHNotecite] = ACTIONS(4943), - [anon_sym_BSLASHpnotecite] = ACTIONS(4943), - [anon_sym_BSLASHPnotecite] = ACTIONS(4943), - [anon_sym_BSLASHfnotecite] = ACTIONS(4943), - [anon_sym_BSLASHlabel] = ACTIONS(4943), - [anon_sym_BSLASHref] = ACTIONS(4943), - [anon_sym_BSLASHeqref] = ACTIONS(4943), - [anon_sym_BSLASHvref] = ACTIONS(4943), - [anon_sym_BSLASHVref] = ACTIONS(4943), - [anon_sym_BSLASHautoref] = ACTIONS(4943), - [anon_sym_BSLASHpageref] = ACTIONS(4943), - [anon_sym_BSLASHcref] = ACTIONS(4943), - [anon_sym_BSLASHCref] = ACTIONS(4943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnameCref] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHlabelcref] = ACTIONS(4943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnewlabel] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), - [anon_sym_BSLASHdef] = ACTIONS(4943), - [anon_sym_BSLASHlet] = ACTIONS(4943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), - [anon_sym_BSLASHgls] = ACTIONS(4943), - [anon_sym_BSLASHGls] = ACTIONS(4943), - [anon_sym_BSLASHGLS] = ACTIONS(4943), - [anon_sym_BSLASHglspl] = ACTIONS(4943), - [anon_sym_BSLASHGlspl] = ACTIONS(4943), - [anon_sym_BSLASHGLSpl] = ACTIONS(4943), - [anon_sym_BSLASHglsdisp] = ACTIONS(4943), - [anon_sym_BSLASHglslink] = ACTIONS(4943), - [anon_sym_BSLASHglstext] = ACTIONS(4943), - [anon_sym_BSLASHGlstext] = ACTIONS(4943), - [anon_sym_BSLASHGLStext] = ACTIONS(4943), - [anon_sym_BSLASHglsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), - [anon_sym_BSLASHglsplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSplural] = ACTIONS(4943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHglsname] = ACTIONS(4943), - [anon_sym_BSLASHGlsname] = ACTIONS(4943), - [anon_sym_BSLASHGLSname] = ACTIONS(4943), - [anon_sym_BSLASHglssymbol] = ACTIONS(4943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), - [anon_sym_BSLASHglsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), - [anon_sym_BSLASHglsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), - [anon_sym_BSLASHglsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), - [anon_sym_BSLASHglsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), - [anon_sym_BSLASHglsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), - [anon_sym_BSLASHnewacronym] = ACTIONS(4943), - [anon_sym_BSLASHacrshort] = ACTIONS(4943), - [anon_sym_BSLASHAcrshort] = ACTIONS(4943), - [anon_sym_BSLASHACRshort] = ACTIONS(4943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), - [anon_sym_BSLASHacrlong] = ACTIONS(4943), - [anon_sym_BSLASHAcrlong] = ACTIONS(4943), - [anon_sym_BSLASHACRlong] = ACTIONS(4943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), - [anon_sym_BSLASHacrfull] = ACTIONS(4943), - [anon_sym_BSLASHAcrfull] = ACTIONS(4943), - [anon_sym_BSLASHACRfull] = ACTIONS(4943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), - [anon_sym_BSLASHacs] = ACTIONS(4943), - [anon_sym_BSLASHAcs] = ACTIONS(4943), - [anon_sym_BSLASHacsp] = ACTIONS(4943), - [anon_sym_BSLASHAcsp] = ACTIONS(4943), - [anon_sym_BSLASHacl] = ACTIONS(4943), - [anon_sym_BSLASHAcl] = ACTIONS(4943), - [anon_sym_BSLASHaclp] = ACTIONS(4943), - [anon_sym_BSLASHAclp] = ACTIONS(4943), - [anon_sym_BSLASHacf] = ACTIONS(4943), - [anon_sym_BSLASHAcf] = ACTIONS(4943), - [anon_sym_BSLASHacfp] = ACTIONS(4943), - [anon_sym_BSLASHAcfp] = ACTIONS(4943), - [anon_sym_BSLASHac] = ACTIONS(4943), - [anon_sym_BSLASHAc] = ACTIONS(4943), - [anon_sym_BSLASHacp] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), - [anon_sym_BSLASHcolor] = ACTIONS(4943), - [anon_sym_BSLASHcolorbox] = ACTIONS(4943), - [anon_sym_BSLASHtextcolor] = ACTIONS(4943), - [anon_sym_BSLASHpagecolor] = ACTIONS(4943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), - [anon_sym_BSLASHtext] = ACTIONS(4943), - [anon_sym_BSLASHintertext] = ACTIONS(4943), - [anon_sym_shortintertext] = ACTIONS(4943), + [sym_command_name] = ACTIONS(5022), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_BSLASHpart] = ACTIONS(5022), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddpart] = ACTIONS(5022), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHchapter] = ACTIONS(5022), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddchap] = ACTIONS(5022), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsection] = ACTIONS(5022), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddsec] = ACTIONS(5022), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHparagraph] = ACTIONS(5022), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5022), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHitem] = ACTIONS(5022), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [sym_word] = ACTIONS(5022), + [sym_placeholder] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5020), + [anon_sym_BSLASHbegin] = ACTIONS(5022), + [anon_sym_BSLASHusepackage] = ACTIONS(5022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5022), + [anon_sym_BSLASHinclude] = ACTIONS(5022), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5022), + [anon_sym_BSLASHinput] = ACTIONS(5022), + [anon_sym_BSLASHsubfile] = ACTIONS(5022), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5022), + [anon_sym_BSLASHbibliography] = ACTIONS(5022), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5022), + [anon_sym_BSLASHincludesvg] = ACTIONS(5022), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5022), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), + [anon_sym_BSLASHimport] = ACTIONS(5022), + [anon_sym_BSLASHsubimport] = ACTIONS(5022), + [anon_sym_BSLASHinputfrom] = ACTIONS(5022), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5022), + [anon_sym_BSLASHincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHcaption] = ACTIONS(5022), + [anon_sym_BSLASHcite] = ACTIONS(5022), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCite] = ACTIONS(5022), + [anon_sym_BSLASHnocite] = ACTIONS(5022), + [anon_sym_BSLASHcitet] = ACTIONS(5022), + [anon_sym_BSLASHcitep] = ACTIONS(5022), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteauthor] = ACTIONS(5022), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5022), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitetitle] = ACTIONS(5022), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteyear] = ACTIONS(5022), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitedate] = ACTIONS(5022), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteurl] = ACTIONS(5022), + [anon_sym_BSLASHfullcite] = ACTIONS(5022), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5022), + [anon_sym_BSLASHcitealt] = ACTIONS(5022), + [anon_sym_BSLASHcitealp] = ACTIONS(5022), + [anon_sym_BSLASHcitetext] = ACTIONS(5022), + [anon_sym_BSLASHparencite] = ACTIONS(5022), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHParencite] = ACTIONS(5022), + [anon_sym_BSLASHfootcite] = ACTIONS(5022), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5022), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5022), + [anon_sym_BSLASHtextcite] = ACTIONS(5022), + [anon_sym_BSLASHTextcite] = ACTIONS(5022), + [anon_sym_BSLASHsmartcite] = ACTIONS(5022), + [anon_sym_BSLASHSmartcite] = ACTIONS(5022), + [anon_sym_BSLASHsupercite] = ACTIONS(5022), + [anon_sym_BSLASHautocite] = ACTIONS(5022), + [anon_sym_BSLASHAutocite] = ACTIONS(5022), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHvolcite] = ACTIONS(5022), + [anon_sym_BSLASHVolcite] = ACTIONS(5022), + [anon_sym_BSLASHpvolcite] = ACTIONS(5022), + [anon_sym_BSLASHPvolcite] = ACTIONS(5022), + [anon_sym_BSLASHfvolcite] = ACTIONS(5022), + [anon_sym_BSLASHftvolcite] = ACTIONS(5022), + [anon_sym_BSLASHsvolcite] = ACTIONS(5022), + [anon_sym_BSLASHSvolcite] = ACTIONS(5022), + [anon_sym_BSLASHtvolcite] = ACTIONS(5022), + [anon_sym_BSLASHTvolcite] = ACTIONS(5022), + [anon_sym_BSLASHavolcite] = ACTIONS(5022), + [anon_sym_BSLASHAvolcite] = ACTIONS(5022), + [anon_sym_BSLASHnotecite] = ACTIONS(5022), + [anon_sym_BSLASHNotecite] = ACTIONS(5022), + [anon_sym_BSLASHpnotecite] = ACTIONS(5022), + [anon_sym_BSLASHPnotecite] = ACTIONS(5022), + [anon_sym_BSLASHfnotecite] = ACTIONS(5022), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [anon_sym_BSLASHref] = ACTIONS(5022), + [anon_sym_BSLASHeqref] = ACTIONS(5022), + [anon_sym_BSLASHvref] = ACTIONS(5022), + [anon_sym_BSLASHVref] = ACTIONS(5022), + [anon_sym_BSLASHautoref] = ACTIONS(5022), + [anon_sym_BSLASHpageref] = ACTIONS(5022), + [anon_sym_BSLASHcref] = ACTIONS(5022), + [anon_sym_BSLASHCref] = ACTIONS(5022), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnameCref] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHlabelcref] = ACTIONS(5022), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCrefrange] = ACTIONS(5022), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnewlabel] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5022), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5022), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5022), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdef] = ACTIONS(5022), + [anon_sym_BSLASHlet] = ACTIONS(5022), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5022), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5022), + [anon_sym_BSLASHgls] = ACTIONS(5022), + [anon_sym_BSLASHGls] = ACTIONS(5022), + [anon_sym_BSLASHGLS] = ACTIONS(5022), + [anon_sym_BSLASHglspl] = ACTIONS(5022), + [anon_sym_BSLASHGlspl] = ACTIONS(5022), + [anon_sym_BSLASHGLSpl] = ACTIONS(5022), + [anon_sym_BSLASHglsdisp] = ACTIONS(5022), + [anon_sym_BSLASHglslink] = ACTIONS(5022), + [anon_sym_BSLASHglstext] = ACTIONS(5022), + [anon_sym_BSLASHGlstext] = ACTIONS(5022), + [anon_sym_BSLASHGLStext] = ACTIONS(5022), + [anon_sym_BSLASHglsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5022), + [anon_sym_BSLASHglsplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSplural] = ACTIONS(5022), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHglsname] = ACTIONS(5022), + [anon_sym_BSLASHGlsname] = ACTIONS(5022), + [anon_sym_BSLASHGLSname] = ACTIONS(5022), + [anon_sym_BSLASHglssymbol] = ACTIONS(5022), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5022), + [anon_sym_BSLASHglsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5022), + [anon_sym_BSLASHglsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5022), + [anon_sym_BSLASHglsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5022), + [anon_sym_BSLASHglsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5022), + [anon_sym_BSLASHglsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5022), + [anon_sym_BSLASHnewacronym] = ACTIONS(5022), + [anon_sym_BSLASHacrshort] = ACTIONS(5022), + [anon_sym_BSLASHAcrshort] = ACTIONS(5022), + [anon_sym_BSLASHACRshort] = ACTIONS(5022), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5022), + [anon_sym_BSLASHacrlong] = ACTIONS(5022), + [anon_sym_BSLASHAcrlong] = ACTIONS(5022), + [anon_sym_BSLASHACRlong] = ACTIONS(5022), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5022), + [anon_sym_BSLASHacrfull] = ACTIONS(5022), + [anon_sym_BSLASHAcrfull] = ACTIONS(5022), + [anon_sym_BSLASHACRfull] = ACTIONS(5022), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5022), + [anon_sym_BSLASHacs] = ACTIONS(5022), + [anon_sym_BSLASHAcs] = ACTIONS(5022), + [anon_sym_BSLASHacsp] = ACTIONS(5022), + [anon_sym_BSLASHAcsp] = ACTIONS(5022), + [anon_sym_BSLASHacl] = ACTIONS(5022), + [anon_sym_BSLASHAcl] = ACTIONS(5022), + [anon_sym_BSLASHaclp] = ACTIONS(5022), + [anon_sym_BSLASHAclp] = ACTIONS(5022), + [anon_sym_BSLASHacf] = ACTIONS(5022), + [anon_sym_BSLASHAcf] = ACTIONS(5022), + [anon_sym_BSLASHacfp] = ACTIONS(5022), + [anon_sym_BSLASHAcfp] = ACTIONS(5022), + [anon_sym_BSLASHac] = ACTIONS(5022), + [anon_sym_BSLASHAc] = ACTIONS(5022), + [anon_sym_BSLASHacp] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5022), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5022), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5022), + [anon_sym_BSLASHcolor] = ACTIONS(5022), + [anon_sym_BSLASHcolorbox] = ACTIONS(5022), + [anon_sym_BSLASHtextcolor] = ACTIONS(5022), + [anon_sym_BSLASHpagecolor] = ACTIONS(5022), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5022), + [anon_sym_BSLASHtext] = ACTIONS(5022), + [anon_sym_BSLASHintertext] = ACTIONS(5022), + [anon_sym_shortintertext] = ACTIONS(5022), }, [1037] = { - [sym_command_name] = ACTIONS(5131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_BSLASHpart] = ACTIONS(5131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddpart] = ACTIONS(5131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHchapter] = ACTIONS(5131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddchap] = ACTIONS(5131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsection] = ACTIONS(5131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddsec] = ACTIONS(5131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHparagraph] = ACTIONS(5131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHitem] = ACTIONS(5131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5129), - [sym_word] = ACTIONS(5131), - [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_DOLLAR_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5129), - [anon_sym_BSLASHbegin] = ACTIONS(5131), - [anon_sym_BSLASHusepackage] = ACTIONS(5131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), - [anon_sym_BSLASHinclude] = ACTIONS(5131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), - [anon_sym_BSLASHinput] = ACTIONS(5131), - [anon_sym_BSLASHsubfile] = ACTIONS(5131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), - [anon_sym_BSLASHbibliography] = ACTIONS(5131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), - [anon_sym_BSLASHincludesvg] = ACTIONS(5131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), - [anon_sym_BSLASHimport] = ACTIONS(5131), - [anon_sym_BSLASHsubimport] = ACTIONS(5131), - [anon_sym_BSLASHinputfrom] = ACTIONS(5131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), - [anon_sym_BSLASHincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHcaption] = ACTIONS(5131), - [anon_sym_BSLASHcite] = ACTIONS(5131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCite] = ACTIONS(5131), - [anon_sym_BSLASHnocite] = ACTIONS(5131), - [anon_sym_BSLASHcitet] = ACTIONS(5131), - [anon_sym_BSLASHcitep] = ACTIONS(5131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor] = ACTIONS(5131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle] = ACTIONS(5131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteyear] = ACTIONS(5131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitedate] = ACTIONS(5131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteurl] = ACTIONS(5131), - [anon_sym_BSLASHfullcite] = ACTIONS(5131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), - [anon_sym_BSLASHcitealt] = ACTIONS(5131), - [anon_sym_BSLASHcitealp] = ACTIONS(5131), - [anon_sym_BSLASHcitetext] = ACTIONS(5131), - [anon_sym_BSLASHparencite] = ACTIONS(5131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHParencite] = ACTIONS(5131), - [anon_sym_BSLASHfootcite] = ACTIONS(5131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), - [anon_sym_BSLASHtextcite] = ACTIONS(5131), - [anon_sym_BSLASHTextcite] = ACTIONS(5131), - [anon_sym_BSLASHsmartcite] = ACTIONS(5131), - [anon_sym_BSLASHSmartcite] = ACTIONS(5131), - [anon_sym_BSLASHsupercite] = ACTIONS(5131), - [anon_sym_BSLASHautocite] = ACTIONS(5131), - [anon_sym_BSLASHAutocite] = ACTIONS(5131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHvolcite] = ACTIONS(5131), - [anon_sym_BSLASHVolcite] = ACTIONS(5131), - [anon_sym_BSLASHpvolcite] = ACTIONS(5131), - [anon_sym_BSLASHPvolcite] = ACTIONS(5131), - [anon_sym_BSLASHfvolcite] = ACTIONS(5131), - [anon_sym_BSLASHftvolcite] = ACTIONS(5131), - [anon_sym_BSLASHsvolcite] = ACTIONS(5131), - [anon_sym_BSLASHSvolcite] = ACTIONS(5131), - [anon_sym_BSLASHtvolcite] = ACTIONS(5131), - [anon_sym_BSLASHTvolcite] = ACTIONS(5131), - [anon_sym_BSLASHavolcite] = ACTIONS(5131), - [anon_sym_BSLASHAvolcite] = ACTIONS(5131), - [anon_sym_BSLASHnotecite] = ACTIONS(5131), - [anon_sym_BSLASHNotecite] = ACTIONS(5131), - [anon_sym_BSLASHpnotecite] = ACTIONS(5131), - [anon_sym_BSLASHPnotecite] = ACTIONS(5131), - [anon_sym_BSLASHfnotecite] = ACTIONS(5131), - [anon_sym_BSLASHlabel] = ACTIONS(5131), - [anon_sym_BSLASHref] = ACTIONS(5131), - [anon_sym_BSLASHeqref] = ACTIONS(5131), - [anon_sym_BSLASHvref] = ACTIONS(5131), - [anon_sym_BSLASHVref] = ACTIONS(5131), - [anon_sym_BSLASHautoref] = ACTIONS(5131), - [anon_sym_BSLASHpageref] = ACTIONS(5131), - [anon_sym_BSLASHcref] = ACTIONS(5131), - [anon_sym_BSLASHCref] = ACTIONS(5131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnameCref] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHlabelcref] = ACTIONS(5131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange] = ACTIONS(5131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnewlabel] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), - [anon_sym_BSLASHdef] = ACTIONS(5131), - [anon_sym_BSLASHlet] = ACTIONS(5131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), - [anon_sym_BSLASHgls] = ACTIONS(5131), - [anon_sym_BSLASHGls] = ACTIONS(5131), - [anon_sym_BSLASHGLS] = ACTIONS(5131), - [anon_sym_BSLASHglspl] = ACTIONS(5131), - [anon_sym_BSLASHGlspl] = ACTIONS(5131), - [anon_sym_BSLASHGLSpl] = ACTIONS(5131), - [anon_sym_BSLASHglsdisp] = ACTIONS(5131), - [anon_sym_BSLASHglslink] = ACTIONS(5131), - [anon_sym_BSLASHglstext] = ACTIONS(5131), - [anon_sym_BSLASHGlstext] = ACTIONS(5131), - [anon_sym_BSLASHGLStext] = ACTIONS(5131), - [anon_sym_BSLASHglsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), - [anon_sym_BSLASHglsplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSplural] = ACTIONS(5131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHglsname] = ACTIONS(5131), - [anon_sym_BSLASHGlsname] = ACTIONS(5131), - [anon_sym_BSLASHGLSname] = ACTIONS(5131), - [anon_sym_BSLASHglssymbol] = ACTIONS(5131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), - [anon_sym_BSLASHglsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), - [anon_sym_BSLASHglsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), - [anon_sym_BSLASHglsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), - [anon_sym_BSLASHglsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), - [anon_sym_BSLASHglsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), - [anon_sym_BSLASHnewacronym] = ACTIONS(5131), - [anon_sym_BSLASHacrshort] = ACTIONS(5131), - [anon_sym_BSLASHAcrshort] = ACTIONS(5131), - [anon_sym_BSLASHACRshort] = ACTIONS(5131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), - [anon_sym_BSLASHacrlong] = ACTIONS(5131), - [anon_sym_BSLASHAcrlong] = ACTIONS(5131), - [anon_sym_BSLASHACRlong] = ACTIONS(5131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), - [anon_sym_BSLASHacrfull] = ACTIONS(5131), - [anon_sym_BSLASHAcrfull] = ACTIONS(5131), - [anon_sym_BSLASHACRfull] = ACTIONS(5131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), - [anon_sym_BSLASHacs] = ACTIONS(5131), - [anon_sym_BSLASHAcs] = ACTIONS(5131), - [anon_sym_BSLASHacsp] = ACTIONS(5131), - [anon_sym_BSLASHAcsp] = ACTIONS(5131), - [anon_sym_BSLASHacl] = ACTIONS(5131), - [anon_sym_BSLASHAcl] = ACTIONS(5131), - [anon_sym_BSLASHaclp] = ACTIONS(5131), - [anon_sym_BSLASHAclp] = ACTIONS(5131), - [anon_sym_BSLASHacf] = ACTIONS(5131), - [anon_sym_BSLASHAcf] = ACTIONS(5131), - [anon_sym_BSLASHacfp] = ACTIONS(5131), - [anon_sym_BSLASHAcfp] = ACTIONS(5131), - [anon_sym_BSLASHac] = ACTIONS(5131), - [anon_sym_BSLASHAc] = ACTIONS(5131), - [anon_sym_BSLASHacp] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), - [anon_sym_BSLASHcolor] = ACTIONS(5131), - [anon_sym_BSLASHcolorbox] = ACTIONS(5131), - [anon_sym_BSLASHtextcolor] = ACTIONS(5131), - [anon_sym_BSLASHpagecolor] = ACTIONS(5131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), - [anon_sym_BSLASHtext] = ACTIONS(5131), - [anon_sym_BSLASHintertext] = ACTIONS(5131), - [anon_sym_shortintertext] = ACTIONS(5131), + [sym_command_name] = ACTIONS(5210), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_BSLASHpart] = ACTIONS(5210), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddpart] = ACTIONS(5210), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHchapter] = ACTIONS(5210), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddchap] = ACTIONS(5210), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsection] = ACTIONS(5210), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddsec] = ACTIONS(5210), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHparagraph] = ACTIONS(5210), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5210), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHitem] = ACTIONS(5210), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5208), + [sym_word] = ACTIONS(5210), + [sym_placeholder] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym__] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_SQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5208), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5208), + [anon_sym_BSLASHbegin] = ACTIONS(5210), + [anon_sym_BSLASHusepackage] = ACTIONS(5210), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5210), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5210), + [anon_sym_BSLASHinclude] = ACTIONS(5210), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5210), + [anon_sym_BSLASHinput] = ACTIONS(5210), + [anon_sym_BSLASHsubfile] = ACTIONS(5210), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5210), + [anon_sym_BSLASHbibliography] = ACTIONS(5210), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5210), + [anon_sym_BSLASHincludesvg] = ACTIONS(5210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5210), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5210), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5210), + [anon_sym_BSLASHimport] = ACTIONS(5210), + [anon_sym_BSLASHsubimport] = ACTIONS(5210), + [anon_sym_BSLASHinputfrom] = ACTIONS(5210), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5210), + [anon_sym_BSLASHincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHcaption] = ACTIONS(5210), + [anon_sym_BSLASHcite] = ACTIONS(5210), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCite] = ACTIONS(5210), + [anon_sym_BSLASHnocite] = ACTIONS(5210), + [anon_sym_BSLASHcitet] = ACTIONS(5210), + [anon_sym_BSLASHcitep] = ACTIONS(5210), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteauthor] = ACTIONS(5210), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5210), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitetitle] = ACTIONS(5210), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteyear] = ACTIONS(5210), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitedate] = ACTIONS(5210), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteurl] = ACTIONS(5210), + [anon_sym_BSLASHfullcite] = ACTIONS(5210), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5210), + [anon_sym_BSLASHcitealt] = ACTIONS(5210), + [anon_sym_BSLASHcitealp] = ACTIONS(5210), + [anon_sym_BSLASHcitetext] = ACTIONS(5210), + [anon_sym_BSLASHparencite] = ACTIONS(5210), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHParencite] = ACTIONS(5210), + [anon_sym_BSLASHfootcite] = ACTIONS(5210), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5210), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5210), + [anon_sym_BSLASHtextcite] = ACTIONS(5210), + [anon_sym_BSLASHTextcite] = ACTIONS(5210), + [anon_sym_BSLASHsmartcite] = ACTIONS(5210), + [anon_sym_BSLASHSmartcite] = ACTIONS(5210), + [anon_sym_BSLASHsupercite] = ACTIONS(5210), + [anon_sym_BSLASHautocite] = ACTIONS(5210), + [anon_sym_BSLASHAutocite] = ACTIONS(5210), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHvolcite] = ACTIONS(5210), + [anon_sym_BSLASHVolcite] = ACTIONS(5210), + [anon_sym_BSLASHpvolcite] = ACTIONS(5210), + [anon_sym_BSLASHPvolcite] = ACTIONS(5210), + [anon_sym_BSLASHfvolcite] = ACTIONS(5210), + [anon_sym_BSLASHftvolcite] = ACTIONS(5210), + [anon_sym_BSLASHsvolcite] = ACTIONS(5210), + [anon_sym_BSLASHSvolcite] = ACTIONS(5210), + [anon_sym_BSLASHtvolcite] = ACTIONS(5210), + [anon_sym_BSLASHTvolcite] = ACTIONS(5210), + [anon_sym_BSLASHavolcite] = ACTIONS(5210), + [anon_sym_BSLASHAvolcite] = ACTIONS(5210), + [anon_sym_BSLASHnotecite] = ACTIONS(5210), + [anon_sym_BSLASHNotecite] = ACTIONS(5210), + [anon_sym_BSLASHpnotecite] = ACTIONS(5210), + [anon_sym_BSLASHPnotecite] = ACTIONS(5210), + [anon_sym_BSLASHfnotecite] = ACTIONS(5210), + [anon_sym_BSLASHlabel] = ACTIONS(5210), + [anon_sym_BSLASHref] = ACTIONS(5210), + [anon_sym_BSLASHeqref] = ACTIONS(5210), + [anon_sym_BSLASHvref] = ACTIONS(5210), + [anon_sym_BSLASHVref] = ACTIONS(5210), + [anon_sym_BSLASHautoref] = ACTIONS(5210), + [anon_sym_BSLASHpageref] = ACTIONS(5210), + [anon_sym_BSLASHcref] = ACTIONS(5210), + [anon_sym_BSLASHCref] = ACTIONS(5210), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnameCref] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHlabelcref] = ACTIONS(5210), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCrefrange] = ACTIONS(5210), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnewlabel] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdef] = ACTIONS(5210), + [anon_sym_BSLASHlet] = ACTIONS(5210), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5210), + [anon_sym_BSLASHgls] = ACTIONS(5210), + [anon_sym_BSLASHGls] = ACTIONS(5210), + [anon_sym_BSLASHGLS] = ACTIONS(5210), + [anon_sym_BSLASHglspl] = ACTIONS(5210), + [anon_sym_BSLASHGlspl] = ACTIONS(5210), + [anon_sym_BSLASHGLSpl] = ACTIONS(5210), + [anon_sym_BSLASHglsdisp] = ACTIONS(5210), + [anon_sym_BSLASHglslink] = ACTIONS(5210), + [anon_sym_BSLASHglstext] = ACTIONS(5210), + [anon_sym_BSLASHGlstext] = ACTIONS(5210), + [anon_sym_BSLASHGLStext] = ACTIONS(5210), + [anon_sym_BSLASHglsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5210), + [anon_sym_BSLASHglsplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSplural] = ACTIONS(5210), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHglsname] = ACTIONS(5210), + [anon_sym_BSLASHGlsname] = ACTIONS(5210), + [anon_sym_BSLASHGLSname] = ACTIONS(5210), + [anon_sym_BSLASHglssymbol] = ACTIONS(5210), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5210), + [anon_sym_BSLASHglsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5210), + [anon_sym_BSLASHglsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5210), + [anon_sym_BSLASHglsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5210), + [anon_sym_BSLASHglsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5210), + [anon_sym_BSLASHglsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5210), + [anon_sym_BSLASHnewacronym] = ACTIONS(5210), + [anon_sym_BSLASHacrshort] = ACTIONS(5210), + [anon_sym_BSLASHAcrshort] = ACTIONS(5210), + [anon_sym_BSLASHACRshort] = ACTIONS(5210), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5210), + [anon_sym_BSLASHacrlong] = ACTIONS(5210), + [anon_sym_BSLASHAcrlong] = ACTIONS(5210), + [anon_sym_BSLASHACRlong] = ACTIONS(5210), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5210), + [anon_sym_BSLASHacrfull] = ACTIONS(5210), + [anon_sym_BSLASHAcrfull] = ACTIONS(5210), + [anon_sym_BSLASHACRfull] = ACTIONS(5210), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5210), + [anon_sym_BSLASHacs] = ACTIONS(5210), + [anon_sym_BSLASHAcs] = ACTIONS(5210), + [anon_sym_BSLASHacsp] = ACTIONS(5210), + [anon_sym_BSLASHAcsp] = ACTIONS(5210), + [anon_sym_BSLASHacl] = ACTIONS(5210), + [anon_sym_BSLASHAcl] = ACTIONS(5210), + [anon_sym_BSLASHaclp] = ACTIONS(5210), + [anon_sym_BSLASHAclp] = ACTIONS(5210), + [anon_sym_BSLASHacf] = ACTIONS(5210), + [anon_sym_BSLASHAcf] = ACTIONS(5210), + [anon_sym_BSLASHacfp] = ACTIONS(5210), + [anon_sym_BSLASHAcfp] = ACTIONS(5210), + [anon_sym_BSLASHac] = ACTIONS(5210), + [anon_sym_BSLASHAc] = ACTIONS(5210), + [anon_sym_BSLASHacp] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5210), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5210), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5210), + [anon_sym_BSLASHcolor] = ACTIONS(5210), + [anon_sym_BSLASHcolorbox] = ACTIONS(5210), + [anon_sym_BSLASHtextcolor] = ACTIONS(5210), + [anon_sym_BSLASHpagecolor] = ACTIONS(5210), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5210), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5210), + [anon_sym_BSLASHtext] = ACTIONS(5210), + [anon_sym_BSLASHintertext] = ACTIONS(5210), + [anon_sym_shortintertext] = ACTIONS(5210), }, [1038] = { - [sym_command_name] = ACTIONS(4935), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4933), - [anon_sym_BSLASHpart] = ACTIONS(4935), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddpart] = ACTIONS(4935), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHchapter] = ACTIONS(4935), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddchap] = ACTIONS(4935), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsection] = ACTIONS(4935), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddsec] = ACTIONS(4935), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHparagraph] = ACTIONS(4935), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHitem] = ACTIONS(4935), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4933), - [sym_word] = ACTIONS(4935), - [sym_placeholder] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_CARET] = ACTIONS(4935), - [anon_sym__] = ACTIONS(4935), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4935), - [anon_sym_COLON] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), - [anon_sym_DOLLAR] = ACTIONS(4935), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), - [anon_sym_BSLASHbegin] = ACTIONS(4935), - [anon_sym_BSLASHusepackage] = ACTIONS(4935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), - [anon_sym_BSLASHinclude] = ACTIONS(4935), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), - [anon_sym_BSLASHinput] = ACTIONS(4935), - [anon_sym_BSLASHsubfile] = ACTIONS(4935), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), - [anon_sym_BSLASHbibliography] = ACTIONS(4935), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), - [anon_sym_BSLASHincludesvg] = ACTIONS(4935), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), - [anon_sym_BSLASHimport] = ACTIONS(4935), - [anon_sym_BSLASHsubimport] = ACTIONS(4935), - [anon_sym_BSLASHinputfrom] = ACTIONS(4935), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), - [anon_sym_BSLASHincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHcaption] = ACTIONS(4935), - [anon_sym_BSLASHcite] = ACTIONS(4935), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCite] = ACTIONS(4935), - [anon_sym_BSLASHnocite] = ACTIONS(4935), - [anon_sym_BSLASHcitet] = ACTIONS(4935), - [anon_sym_BSLASHcitep] = ACTIONS(4935), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteauthor] = ACTIONS(4935), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitetitle] = ACTIONS(4935), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteyear] = ACTIONS(4935), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitedate] = ACTIONS(4935), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteurl] = ACTIONS(4935), - [anon_sym_BSLASHfullcite] = ACTIONS(4935), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), - [anon_sym_BSLASHcitealt] = ACTIONS(4935), - [anon_sym_BSLASHcitealp] = ACTIONS(4935), - [anon_sym_BSLASHcitetext] = ACTIONS(4935), - [anon_sym_BSLASHparencite] = ACTIONS(4935), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHParencite] = ACTIONS(4935), - [anon_sym_BSLASHfootcite] = ACTIONS(4935), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), - [anon_sym_BSLASHtextcite] = ACTIONS(4935), - [anon_sym_BSLASHTextcite] = ACTIONS(4935), - [anon_sym_BSLASHsmartcite] = ACTIONS(4935), - [anon_sym_BSLASHSmartcite] = ACTIONS(4935), - [anon_sym_BSLASHsupercite] = ACTIONS(4935), - [anon_sym_BSLASHautocite] = ACTIONS(4935), - [anon_sym_BSLASHAutocite] = ACTIONS(4935), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHvolcite] = ACTIONS(4935), - [anon_sym_BSLASHVolcite] = ACTIONS(4935), - [anon_sym_BSLASHpvolcite] = ACTIONS(4935), - [anon_sym_BSLASHPvolcite] = ACTIONS(4935), - [anon_sym_BSLASHfvolcite] = ACTIONS(4935), - [anon_sym_BSLASHftvolcite] = ACTIONS(4935), - [anon_sym_BSLASHsvolcite] = ACTIONS(4935), - [anon_sym_BSLASHSvolcite] = ACTIONS(4935), - [anon_sym_BSLASHtvolcite] = ACTIONS(4935), - [anon_sym_BSLASHTvolcite] = ACTIONS(4935), - [anon_sym_BSLASHavolcite] = ACTIONS(4935), - [anon_sym_BSLASHAvolcite] = ACTIONS(4935), - [anon_sym_BSLASHnotecite] = ACTIONS(4935), - [anon_sym_BSLASHNotecite] = ACTIONS(4935), - [anon_sym_BSLASHpnotecite] = ACTIONS(4935), - [anon_sym_BSLASHPnotecite] = ACTIONS(4935), - [anon_sym_BSLASHfnotecite] = ACTIONS(4935), - [anon_sym_BSLASHlabel] = ACTIONS(4935), - [anon_sym_BSLASHref] = ACTIONS(4935), - [anon_sym_BSLASHeqref] = ACTIONS(4935), - [anon_sym_BSLASHvref] = ACTIONS(4935), - [anon_sym_BSLASHVref] = ACTIONS(4935), - [anon_sym_BSLASHautoref] = ACTIONS(4935), - [anon_sym_BSLASHpageref] = ACTIONS(4935), - [anon_sym_BSLASHcref] = ACTIONS(4935), - [anon_sym_BSLASHCref] = ACTIONS(4935), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnameCref] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHlabelcref] = ACTIONS(4935), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCrefrange] = ACTIONS(4935), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnewlabel] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), - [anon_sym_BSLASHdef] = ACTIONS(4935), - [anon_sym_BSLASHlet] = ACTIONS(4935), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), - [anon_sym_BSLASHgls] = ACTIONS(4935), - [anon_sym_BSLASHGls] = ACTIONS(4935), - [anon_sym_BSLASHGLS] = ACTIONS(4935), - [anon_sym_BSLASHglspl] = ACTIONS(4935), - [anon_sym_BSLASHGlspl] = ACTIONS(4935), - [anon_sym_BSLASHGLSpl] = ACTIONS(4935), - [anon_sym_BSLASHglsdisp] = ACTIONS(4935), - [anon_sym_BSLASHglslink] = ACTIONS(4935), - [anon_sym_BSLASHglstext] = ACTIONS(4935), - [anon_sym_BSLASHGlstext] = ACTIONS(4935), - [anon_sym_BSLASHGLStext] = ACTIONS(4935), - [anon_sym_BSLASHglsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), - [anon_sym_BSLASHglsplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSplural] = ACTIONS(4935), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHglsname] = ACTIONS(4935), - [anon_sym_BSLASHGlsname] = ACTIONS(4935), - [anon_sym_BSLASHGLSname] = ACTIONS(4935), - [anon_sym_BSLASHglssymbol] = ACTIONS(4935), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), - [anon_sym_BSLASHglsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), - [anon_sym_BSLASHglsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), - [anon_sym_BSLASHglsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), - [anon_sym_BSLASHglsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), - [anon_sym_BSLASHglsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), - [anon_sym_BSLASHnewacronym] = ACTIONS(4935), - [anon_sym_BSLASHacrshort] = ACTIONS(4935), - [anon_sym_BSLASHAcrshort] = ACTIONS(4935), - [anon_sym_BSLASHACRshort] = ACTIONS(4935), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), - [anon_sym_BSLASHacrlong] = ACTIONS(4935), - [anon_sym_BSLASHAcrlong] = ACTIONS(4935), - [anon_sym_BSLASHACRlong] = ACTIONS(4935), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), - [anon_sym_BSLASHacrfull] = ACTIONS(4935), - [anon_sym_BSLASHAcrfull] = ACTIONS(4935), - [anon_sym_BSLASHACRfull] = ACTIONS(4935), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), - [anon_sym_BSLASHacs] = ACTIONS(4935), - [anon_sym_BSLASHAcs] = ACTIONS(4935), - [anon_sym_BSLASHacsp] = ACTIONS(4935), - [anon_sym_BSLASHAcsp] = ACTIONS(4935), - [anon_sym_BSLASHacl] = ACTIONS(4935), - [anon_sym_BSLASHAcl] = ACTIONS(4935), - [anon_sym_BSLASHaclp] = ACTIONS(4935), - [anon_sym_BSLASHAclp] = ACTIONS(4935), - [anon_sym_BSLASHacf] = ACTIONS(4935), - [anon_sym_BSLASHAcf] = ACTIONS(4935), - [anon_sym_BSLASHacfp] = ACTIONS(4935), - [anon_sym_BSLASHAcfp] = ACTIONS(4935), - [anon_sym_BSLASHac] = ACTIONS(4935), - [anon_sym_BSLASHAc] = ACTIONS(4935), - [anon_sym_BSLASHacp] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), - [anon_sym_BSLASHcolor] = ACTIONS(4935), - [anon_sym_BSLASHcolorbox] = ACTIONS(4935), - [anon_sym_BSLASHtextcolor] = ACTIONS(4935), - [anon_sym_BSLASHpagecolor] = ACTIONS(4935), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - [anon_sym_BSLASHtext] = ACTIONS(4935), - [anon_sym_BSLASHintertext] = ACTIONS(4935), - [anon_sym_shortintertext] = ACTIONS(4935), + [sym_command_name] = ACTIONS(5014), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_BSLASHpart] = ACTIONS(5014), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddpart] = ACTIONS(5014), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHchapter] = ACTIONS(5014), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddchap] = ACTIONS(5014), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsection] = ACTIONS(5014), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddsec] = ACTIONS(5014), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHparagraph] = ACTIONS(5014), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5014), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHitem] = ACTIONS(5014), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [sym_word] = ACTIONS(5014), + [sym_placeholder] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5012), + [anon_sym_BSLASHbegin] = ACTIONS(5014), + [anon_sym_BSLASHusepackage] = ACTIONS(5014), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5014), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5014), + [anon_sym_BSLASHinclude] = ACTIONS(5014), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5014), + [anon_sym_BSLASHinput] = ACTIONS(5014), + [anon_sym_BSLASHsubfile] = ACTIONS(5014), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5014), + [anon_sym_BSLASHbibliography] = ACTIONS(5014), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5014), + [anon_sym_BSLASHincludesvg] = ACTIONS(5014), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5014), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5014), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5014), + [anon_sym_BSLASHimport] = ACTIONS(5014), + [anon_sym_BSLASHsubimport] = ACTIONS(5014), + [anon_sym_BSLASHinputfrom] = ACTIONS(5014), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5014), + [anon_sym_BSLASHincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHcaption] = ACTIONS(5014), + [anon_sym_BSLASHcite] = ACTIONS(5014), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCite] = ACTIONS(5014), + [anon_sym_BSLASHnocite] = ACTIONS(5014), + [anon_sym_BSLASHcitet] = ACTIONS(5014), + [anon_sym_BSLASHcitep] = ACTIONS(5014), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteauthor] = ACTIONS(5014), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5014), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitetitle] = ACTIONS(5014), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteyear] = ACTIONS(5014), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitedate] = ACTIONS(5014), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteurl] = ACTIONS(5014), + [anon_sym_BSLASHfullcite] = ACTIONS(5014), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5014), + [anon_sym_BSLASHcitealt] = ACTIONS(5014), + [anon_sym_BSLASHcitealp] = ACTIONS(5014), + [anon_sym_BSLASHcitetext] = ACTIONS(5014), + [anon_sym_BSLASHparencite] = ACTIONS(5014), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHParencite] = ACTIONS(5014), + [anon_sym_BSLASHfootcite] = ACTIONS(5014), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5014), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5014), + [anon_sym_BSLASHtextcite] = ACTIONS(5014), + [anon_sym_BSLASHTextcite] = ACTIONS(5014), + [anon_sym_BSLASHsmartcite] = ACTIONS(5014), + [anon_sym_BSLASHSmartcite] = ACTIONS(5014), + [anon_sym_BSLASHsupercite] = ACTIONS(5014), + [anon_sym_BSLASHautocite] = ACTIONS(5014), + [anon_sym_BSLASHAutocite] = ACTIONS(5014), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHvolcite] = ACTIONS(5014), + [anon_sym_BSLASHVolcite] = ACTIONS(5014), + [anon_sym_BSLASHpvolcite] = ACTIONS(5014), + [anon_sym_BSLASHPvolcite] = ACTIONS(5014), + [anon_sym_BSLASHfvolcite] = ACTIONS(5014), + [anon_sym_BSLASHftvolcite] = ACTIONS(5014), + [anon_sym_BSLASHsvolcite] = ACTIONS(5014), + [anon_sym_BSLASHSvolcite] = ACTIONS(5014), + [anon_sym_BSLASHtvolcite] = ACTIONS(5014), + [anon_sym_BSLASHTvolcite] = ACTIONS(5014), + [anon_sym_BSLASHavolcite] = ACTIONS(5014), + [anon_sym_BSLASHAvolcite] = ACTIONS(5014), + [anon_sym_BSLASHnotecite] = ACTIONS(5014), + [anon_sym_BSLASHNotecite] = ACTIONS(5014), + [anon_sym_BSLASHpnotecite] = ACTIONS(5014), + [anon_sym_BSLASHPnotecite] = ACTIONS(5014), + [anon_sym_BSLASHfnotecite] = ACTIONS(5014), + [anon_sym_BSLASHlabel] = ACTIONS(5014), + [anon_sym_BSLASHref] = ACTIONS(5014), + [anon_sym_BSLASHeqref] = ACTIONS(5014), + [anon_sym_BSLASHvref] = ACTIONS(5014), + [anon_sym_BSLASHVref] = ACTIONS(5014), + [anon_sym_BSLASHautoref] = ACTIONS(5014), + [anon_sym_BSLASHpageref] = ACTIONS(5014), + [anon_sym_BSLASHcref] = ACTIONS(5014), + [anon_sym_BSLASHCref] = ACTIONS(5014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnameCref] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHlabelcref] = ACTIONS(5014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCrefrange] = ACTIONS(5014), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnewlabel] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5014), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5014), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5014), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdef] = ACTIONS(5014), + [anon_sym_BSLASHlet] = ACTIONS(5014), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5014), + [anon_sym_BSLASHgls] = ACTIONS(5014), + [anon_sym_BSLASHGls] = ACTIONS(5014), + [anon_sym_BSLASHGLS] = ACTIONS(5014), + [anon_sym_BSLASHglspl] = ACTIONS(5014), + [anon_sym_BSLASHGlspl] = ACTIONS(5014), + [anon_sym_BSLASHGLSpl] = ACTIONS(5014), + [anon_sym_BSLASHglsdisp] = ACTIONS(5014), + [anon_sym_BSLASHglslink] = ACTIONS(5014), + [anon_sym_BSLASHglstext] = ACTIONS(5014), + [anon_sym_BSLASHGlstext] = ACTIONS(5014), + [anon_sym_BSLASHGLStext] = ACTIONS(5014), + [anon_sym_BSLASHglsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5014), + [anon_sym_BSLASHglsplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSplural] = ACTIONS(5014), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHglsname] = ACTIONS(5014), + [anon_sym_BSLASHGlsname] = ACTIONS(5014), + [anon_sym_BSLASHGLSname] = ACTIONS(5014), + [anon_sym_BSLASHglssymbol] = ACTIONS(5014), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5014), + [anon_sym_BSLASHglsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5014), + [anon_sym_BSLASHglsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5014), + [anon_sym_BSLASHglsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5014), + [anon_sym_BSLASHglsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5014), + [anon_sym_BSLASHglsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5014), + [anon_sym_BSLASHnewacronym] = ACTIONS(5014), + [anon_sym_BSLASHacrshort] = ACTIONS(5014), + [anon_sym_BSLASHAcrshort] = ACTIONS(5014), + [anon_sym_BSLASHACRshort] = ACTIONS(5014), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5014), + [anon_sym_BSLASHacrlong] = ACTIONS(5014), + [anon_sym_BSLASHAcrlong] = ACTIONS(5014), + [anon_sym_BSLASHACRlong] = ACTIONS(5014), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5014), + [anon_sym_BSLASHacrfull] = ACTIONS(5014), + [anon_sym_BSLASHAcrfull] = ACTIONS(5014), + [anon_sym_BSLASHACRfull] = ACTIONS(5014), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5014), + [anon_sym_BSLASHacs] = ACTIONS(5014), + [anon_sym_BSLASHAcs] = ACTIONS(5014), + [anon_sym_BSLASHacsp] = ACTIONS(5014), + [anon_sym_BSLASHAcsp] = ACTIONS(5014), + [anon_sym_BSLASHacl] = ACTIONS(5014), + [anon_sym_BSLASHAcl] = ACTIONS(5014), + [anon_sym_BSLASHaclp] = ACTIONS(5014), + [anon_sym_BSLASHAclp] = ACTIONS(5014), + [anon_sym_BSLASHacf] = ACTIONS(5014), + [anon_sym_BSLASHAcf] = ACTIONS(5014), + [anon_sym_BSLASHacfp] = ACTIONS(5014), + [anon_sym_BSLASHAcfp] = ACTIONS(5014), + [anon_sym_BSLASHac] = ACTIONS(5014), + [anon_sym_BSLASHAc] = ACTIONS(5014), + [anon_sym_BSLASHacp] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5014), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5014), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5014), + [anon_sym_BSLASHcolor] = ACTIONS(5014), + [anon_sym_BSLASHcolorbox] = ACTIONS(5014), + [anon_sym_BSLASHtextcolor] = ACTIONS(5014), + [anon_sym_BSLASHpagecolor] = ACTIONS(5014), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5014), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5014), + [anon_sym_BSLASHtext] = ACTIONS(5014), + [anon_sym_BSLASHintertext] = ACTIONS(5014), + [anon_sym_shortintertext] = ACTIONS(5014), }, [1039] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_BSLASHpart] = ACTIONS(5214), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddpart] = ACTIONS(5214), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHchapter] = ACTIONS(5214), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddchap] = ACTIONS(5214), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsection] = ACTIONS(5214), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddsec] = ACTIONS(5214), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHparagraph] = ACTIONS(5214), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5214), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHitem] = ACTIONS(5214), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5212), + [anon_sym_BSLASHbegin] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [1040] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_BSLASHpart] = ACTIONS(5157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddpart] = ACTIONS(5157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHchapter] = ACTIONS(5157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddchap] = ACTIONS(5157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsection] = ACTIONS(5157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddsec] = ACTIONS(5157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHparagraph] = ACTIONS(5157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHitem] = ACTIONS(5157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5155), - [anon_sym_BSLASHbegin] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_BSLASHpart] = ACTIONS(5236), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddpart] = ACTIONS(5236), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHchapter] = ACTIONS(5236), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddchap] = ACTIONS(5236), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsection] = ACTIONS(5236), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddsec] = ACTIONS(5236), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHparagraph] = ACTIONS(5236), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5236), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHitem] = ACTIONS(5236), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5234), + [anon_sym_BSLASHbegin] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [1041] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_BSLASHpart] = ACTIONS(5309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddpart] = ACTIONS(5309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHchapter] = ACTIONS(5309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddchap] = ACTIONS(5309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsection] = ACTIONS(5309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddsec] = ACTIONS(5309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHparagraph] = ACTIONS(5309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHitem] = ACTIONS(5309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5307), - [anon_sym_BSLASHbegin] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_BSLASHpart] = ACTIONS(5388), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddpart] = ACTIONS(5388), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHchapter] = ACTIONS(5388), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddchap] = ACTIONS(5388), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsection] = ACTIONS(5388), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddsec] = ACTIONS(5388), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHparagraph] = ACTIONS(5388), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5388), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHitem] = ACTIONS(5388), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5386), + [anon_sym_BSLASHbegin] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [1042] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_BSLASHpart] = ACTIONS(5281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddpart] = ACTIONS(5281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHchapter] = ACTIONS(5281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddchap] = ACTIONS(5281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsection] = ACTIONS(5281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddsec] = ACTIONS(5281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHparagraph] = ACTIONS(5281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHitem] = ACTIONS(5281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5279), - [anon_sym_BSLASHbegin] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_BSLASHpart] = ACTIONS(5360), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddpart] = ACTIONS(5360), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHchapter] = ACTIONS(5360), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddchap] = ACTIONS(5360), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsection] = ACTIONS(5360), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddsec] = ACTIONS(5360), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHparagraph] = ACTIONS(5360), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5360), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHitem] = ACTIONS(5360), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5358), + [anon_sym_BSLASHbegin] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [1043] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_BSLASHpart] = ACTIONS(5356), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddpart] = ACTIONS(5356), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHchapter] = ACTIONS(5356), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddchap] = ACTIONS(5356), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsection] = ACTIONS(5356), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddsec] = ACTIONS(5356), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHparagraph] = ACTIONS(5356), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5356), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHitem] = ACTIONS(5356), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5354), + [anon_sym_BSLASHbegin] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [1044] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_BSLASHpart] = ACTIONS(5352), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddpart] = ACTIONS(5352), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHchapter] = ACTIONS(5352), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddchap] = ACTIONS(5352), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsection] = ACTIONS(5352), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddsec] = ACTIONS(5352), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHparagraph] = ACTIONS(5352), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5352), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHitem] = ACTIONS(5352), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5350), + [anon_sym_BSLASHbegin] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [1045] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_BSLASHpart] = ACTIONS(5348), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddpart] = ACTIONS(5348), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHchapter] = ACTIONS(5348), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddchap] = ACTIONS(5348), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsection] = ACTIONS(5348), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddsec] = ACTIONS(5348), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHparagraph] = ACTIONS(5348), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5348), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHitem] = ACTIONS(5348), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5346), + [anon_sym_BSLASHbegin] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [1046] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_BSLASHpart] = ACTIONS(5344), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddpart] = ACTIONS(5344), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHchapter] = ACTIONS(5344), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddchap] = ACTIONS(5344), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsection] = ACTIONS(5344), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddsec] = ACTIONS(5344), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHparagraph] = ACTIONS(5344), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5344), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHitem] = ACTIONS(5344), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5342), + [anon_sym_BSLASHbegin] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [1047] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_BSLASHpart] = ACTIONS(5340), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddpart] = ACTIONS(5340), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHchapter] = ACTIONS(5340), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddchap] = ACTIONS(5340), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsection] = ACTIONS(5340), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddsec] = ACTIONS(5340), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHparagraph] = ACTIONS(5340), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5340), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHitem] = ACTIONS(5340), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5338), + [anon_sym_BSLASHbegin] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [1048] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_BSLASHpart] = ACTIONS(5336), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddpart] = ACTIONS(5336), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHchapter] = ACTIONS(5336), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddchap] = ACTIONS(5336), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsection] = ACTIONS(5336), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddsec] = ACTIONS(5336), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHparagraph] = ACTIONS(5336), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5336), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHitem] = ACTIONS(5336), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5334), + [anon_sym_BSLASHbegin] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [1049] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_BSLASHpart] = ACTIONS(5332), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddpart] = ACTIONS(5332), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHchapter] = ACTIONS(5332), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddchap] = ACTIONS(5332), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsection] = ACTIONS(5332), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddsec] = ACTIONS(5332), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHparagraph] = ACTIONS(5332), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5332), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHitem] = ACTIONS(5332), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5330), + [anon_sym_BSLASHbegin] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [1050] = { - [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(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_BSLASH_RBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_BSLASHpart] = ACTIONS(5328), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddpart] = ACTIONS(5328), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHchapter] = ACTIONS(5328), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddchap] = ACTIONS(5328), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsection] = ACTIONS(5328), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddsec] = ACTIONS(5328), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHparagraph] = ACTIONS(5328), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5328), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHitem] = ACTIONS(5328), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5326), + [anon_sym_BSLASHbegin] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [1051] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_BSLASHpart] = ACTIONS(5324), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddpart] = ACTIONS(5324), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHchapter] = ACTIONS(5324), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddchap] = ACTIONS(5324), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsection] = ACTIONS(5324), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddsec] = ACTIONS(5324), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHparagraph] = ACTIONS(5324), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5324), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHitem] = ACTIONS(5324), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5322), + [anon_sym_BSLASHbegin] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [1052] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_BSLASHpart] = ACTIONS(5320), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddpart] = ACTIONS(5320), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHchapter] = ACTIONS(5320), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddchap] = ACTIONS(5320), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsection] = ACTIONS(5320), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddsec] = ACTIONS(5320), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHparagraph] = ACTIONS(5320), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5320), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHitem] = ACTIONS(5320), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5318), + [anon_sym_BSLASHbegin] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [1053] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_BSLASHpart] = ACTIONS(5214), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddpart] = ACTIONS(5214), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5212), + [anon_sym_BSLASHchapter] = ACTIONS(5214), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddchap] = ACTIONS(5214), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsection] = ACTIONS(5214), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHaddsec] = ACTIONS(5214), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5214), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5212), + [anon_sym_BSLASHparagraph] = ACTIONS(5214), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5214), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5212), + [anon_sym_BSLASHitem] = ACTIONS(5214), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASHbegin] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [1054] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_BSLASHpart] = ACTIONS(5316), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddpart] = ACTIONS(5316), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHchapter] = ACTIONS(5316), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddchap] = ACTIONS(5316), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsection] = ACTIONS(5316), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddsec] = ACTIONS(5316), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHparagraph] = ACTIONS(5316), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5316), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHitem] = ACTIONS(5316), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5314), + [anon_sym_BSLASHbegin] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [1055] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5233), - [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), + [sym_command_name] = ACTIONS(5312), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_BSLASHpart] = ACTIONS(5312), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddpart] = ACTIONS(5312), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHchapter] = ACTIONS(5312), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddchap] = ACTIONS(5312), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsection] = ACTIONS(5312), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddsec] = ACTIONS(5312), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHparagraph] = ACTIONS(5312), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5312), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHitem] = ACTIONS(5312), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5312), + [sym_placeholder] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_SQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5310), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5310), + [anon_sym_BSLASHbegin] = ACTIONS(5312), + [anon_sym_BSLASHusepackage] = ACTIONS(5312), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5312), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5312), + [anon_sym_BSLASHinclude] = ACTIONS(5312), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5312), + [anon_sym_BSLASHinput] = ACTIONS(5312), + [anon_sym_BSLASHsubfile] = ACTIONS(5312), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5312), + [anon_sym_BSLASHbibliography] = ACTIONS(5312), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5312), + [anon_sym_BSLASHincludesvg] = ACTIONS(5312), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5312), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5312), + [anon_sym_BSLASHimport] = ACTIONS(5312), + [anon_sym_BSLASHsubimport] = ACTIONS(5312), + [anon_sym_BSLASHinputfrom] = ACTIONS(5312), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5312), + [anon_sym_BSLASHincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHcaption] = ACTIONS(5312), + [anon_sym_BSLASHcite] = ACTIONS(5312), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCite] = ACTIONS(5312), + [anon_sym_BSLASHnocite] = ACTIONS(5312), + [anon_sym_BSLASHcitet] = ACTIONS(5312), + [anon_sym_BSLASHcitep] = ACTIONS(5312), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteauthor] = ACTIONS(5312), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5312), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitetitle] = ACTIONS(5312), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteyear] = ACTIONS(5312), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitedate] = ACTIONS(5312), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteurl] = ACTIONS(5312), + [anon_sym_BSLASHfullcite] = ACTIONS(5312), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5312), + [anon_sym_BSLASHcitealt] = ACTIONS(5312), + [anon_sym_BSLASHcitealp] = ACTIONS(5312), + [anon_sym_BSLASHcitetext] = ACTIONS(5312), + [anon_sym_BSLASHparencite] = ACTIONS(5312), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHParencite] = ACTIONS(5312), + [anon_sym_BSLASHfootcite] = ACTIONS(5312), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5312), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5312), + [anon_sym_BSLASHtextcite] = ACTIONS(5312), + [anon_sym_BSLASHTextcite] = ACTIONS(5312), + [anon_sym_BSLASHsmartcite] = ACTIONS(5312), + [anon_sym_BSLASHSmartcite] = ACTIONS(5312), + [anon_sym_BSLASHsupercite] = ACTIONS(5312), + [anon_sym_BSLASHautocite] = ACTIONS(5312), + [anon_sym_BSLASHAutocite] = ACTIONS(5312), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHvolcite] = ACTIONS(5312), + [anon_sym_BSLASHVolcite] = ACTIONS(5312), + [anon_sym_BSLASHpvolcite] = ACTIONS(5312), + [anon_sym_BSLASHPvolcite] = ACTIONS(5312), + [anon_sym_BSLASHfvolcite] = ACTIONS(5312), + [anon_sym_BSLASHftvolcite] = ACTIONS(5312), + [anon_sym_BSLASHsvolcite] = ACTIONS(5312), + [anon_sym_BSLASHSvolcite] = ACTIONS(5312), + [anon_sym_BSLASHtvolcite] = ACTIONS(5312), + [anon_sym_BSLASHTvolcite] = ACTIONS(5312), + [anon_sym_BSLASHavolcite] = ACTIONS(5312), + [anon_sym_BSLASHAvolcite] = ACTIONS(5312), + [anon_sym_BSLASHnotecite] = ACTIONS(5312), + [anon_sym_BSLASHNotecite] = ACTIONS(5312), + [anon_sym_BSLASHpnotecite] = ACTIONS(5312), + [anon_sym_BSLASHPnotecite] = ACTIONS(5312), + [anon_sym_BSLASHfnotecite] = ACTIONS(5312), + [anon_sym_BSLASHlabel] = ACTIONS(5312), + [anon_sym_BSLASHref] = ACTIONS(5312), + [anon_sym_BSLASHeqref] = ACTIONS(5312), + [anon_sym_BSLASHvref] = ACTIONS(5312), + [anon_sym_BSLASHVref] = ACTIONS(5312), + [anon_sym_BSLASHautoref] = ACTIONS(5312), + [anon_sym_BSLASHpageref] = ACTIONS(5312), + [anon_sym_BSLASHcref] = ACTIONS(5312), + [anon_sym_BSLASHCref] = ACTIONS(5312), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnameCref] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHlabelcref] = ACTIONS(5312), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCrefrange] = ACTIONS(5312), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnewlabel] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5312), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5312), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5312), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdef] = ACTIONS(5312), + [anon_sym_BSLASHlet] = ACTIONS(5312), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5312), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5312), + [anon_sym_BSLASHgls] = ACTIONS(5312), + [anon_sym_BSLASHGls] = ACTIONS(5312), + [anon_sym_BSLASHGLS] = ACTIONS(5312), + [anon_sym_BSLASHglspl] = ACTIONS(5312), + [anon_sym_BSLASHGlspl] = ACTIONS(5312), + [anon_sym_BSLASHGLSpl] = ACTIONS(5312), + [anon_sym_BSLASHglsdisp] = ACTIONS(5312), + [anon_sym_BSLASHglslink] = ACTIONS(5312), + [anon_sym_BSLASHglstext] = ACTIONS(5312), + [anon_sym_BSLASHGlstext] = ACTIONS(5312), + [anon_sym_BSLASHGLStext] = ACTIONS(5312), + [anon_sym_BSLASHglsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5312), + [anon_sym_BSLASHglsplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSplural] = ACTIONS(5312), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHglsname] = ACTIONS(5312), + [anon_sym_BSLASHGlsname] = ACTIONS(5312), + [anon_sym_BSLASHGLSname] = ACTIONS(5312), + [anon_sym_BSLASHglssymbol] = ACTIONS(5312), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5312), + [anon_sym_BSLASHglsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5312), + [anon_sym_BSLASHglsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5312), + [anon_sym_BSLASHglsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5312), + [anon_sym_BSLASHglsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5312), + [anon_sym_BSLASHglsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5312), + [anon_sym_BSLASHnewacronym] = ACTIONS(5312), + [anon_sym_BSLASHacrshort] = ACTIONS(5312), + [anon_sym_BSLASHAcrshort] = ACTIONS(5312), + [anon_sym_BSLASHACRshort] = ACTIONS(5312), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5312), + [anon_sym_BSLASHacrlong] = ACTIONS(5312), + [anon_sym_BSLASHAcrlong] = ACTIONS(5312), + [anon_sym_BSLASHACRlong] = ACTIONS(5312), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5312), + [anon_sym_BSLASHacrfull] = ACTIONS(5312), + [anon_sym_BSLASHAcrfull] = ACTIONS(5312), + [anon_sym_BSLASHACRfull] = ACTIONS(5312), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5312), + [anon_sym_BSLASHacs] = ACTIONS(5312), + [anon_sym_BSLASHAcs] = ACTIONS(5312), + [anon_sym_BSLASHacsp] = ACTIONS(5312), + [anon_sym_BSLASHAcsp] = ACTIONS(5312), + [anon_sym_BSLASHacl] = ACTIONS(5312), + [anon_sym_BSLASHAcl] = ACTIONS(5312), + [anon_sym_BSLASHaclp] = ACTIONS(5312), + [anon_sym_BSLASHAclp] = ACTIONS(5312), + [anon_sym_BSLASHacf] = ACTIONS(5312), + [anon_sym_BSLASHAcf] = ACTIONS(5312), + [anon_sym_BSLASHacfp] = ACTIONS(5312), + [anon_sym_BSLASHAcfp] = ACTIONS(5312), + [anon_sym_BSLASHac] = ACTIONS(5312), + [anon_sym_BSLASHAc] = ACTIONS(5312), + [anon_sym_BSLASHacp] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5312), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5312), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5312), + [anon_sym_BSLASHcolor] = ACTIONS(5312), + [anon_sym_BSLASHcolorbox] = ACTIONS(5312), + [anon_sym_BSLASHtextcolor] = ACTIONS(5312), + [anon_sym_BSLASHpagecolor] = ACTIONS(5312), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5312), + [anon_sym_BSLASHtext] = ACTIONS(5312), + [anon_sym_BSLASHintertext] = ACTIONS(5312), + [anon_sym_shortintertext] = ACTIONS(5312), }, [1056] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5229), - [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), + [sym_command_name] = ACTIONS(5308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_BSLASHpart] = ACTIONS(5308), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddpart] = ACTIONS(5308), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHchapter] = ACTIONS(5308), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddchap] = ACTIONS(5308), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsection] = ACTIONS(5308), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddsec] = ACTIONS(5308), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHparagraph] = ACTIONS(5308), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5308), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHitem] = ACTIONS(5308), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [sym_word] = ACTIONS(5308), + [sym_placeholder] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_SQUOTE] = ACTIONS(5308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5308), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5306), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5306), + [anon_sym_BSLASHbegin] = ACTIONS(5308), + [anon_sym_BSLASHusepackage] = ACTIONS(5308), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5308), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5308), + [anon_sym_BSLASHinclude] = ACTIONS(5308), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5308), + [anon_sym_BSLASHinput] = ACTIONS(5308), + [anon_sym_BSLASHsubfile] = ACTIONS(5308), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5308), + [anon_sym_BSLASHbibliography] = ACTIONS(5308), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5308), + [anon_sym_BSLASHincludesvg] = ACTIONS(5308), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5308), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5308), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5308), + [anon_sym_BSLASHimport] = ACTIONS(5308), + [anon_sym_BSLASHsubimport] = ACTIONS(5308), + [anon_sym_BSLASHinputfrom] = ACTIONS(5308), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5308), + [anon_sym_BSLASHincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHcaption] = ACTIONS(5308), + [anon_sym_BSLASHcite] = ACTIONS(5308), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCite] = ACTIONS(5308), + [anon_sym_BSLASHnocite] = ACTIONS(5308), + [anon_sym_BSLASHcitet] = ACTIONS(5308), + [anon_sym_BSLASHcitep] = ACTIONS(5308), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteauthor] = ACTIONS(5308), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5308), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitetitle] = ACTIONS(5308), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteyear] = ACTIONS(5308), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitedate] = ACTIONS(5308), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteurl] = ACTIONS(5308), + [anon_sym_BSLASHfullcite] = ACTIONS(5308), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5308), + [anon_sym_BSLASHcitealt] = ACTIONS(5308), + [anon_sym_BSLASHcitealp] = ACTIONS(5308), + [anon_sym_BSLASHcitetext] = ACTIONS(5308), + [anon_sym_BSLASHparencite] = ACTIONS(5308), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHParencite] = ACTIONS(5308), + [anon_sym_BSLASHfootcite] = ACTIONS(5308), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5308), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5308), + [anon_sym_BSLASHtextcite] = ACTIONS(5308), + [anon_sym_BSLASHTextcite] = ACTIONS(5308), + [anon_sym_BSLASHsmartcite] = ACTIONS(5308), + [anon_sym_BSLASHSmartcite] = ACTIONS(5308), + [anon_sym_BSLASHsupercite] = ACTIONS(5308), + [anon_sym_BSLASHautocite] = ACTIONS(5308), + [anon_sym_BSLASHAutocite] = ACTIONS(5308), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHvolcite] = ACTIONS(5308), + [anon_sym_BSLASHVolcite] = ACTIONS(5308), + [anon_sym_BSLASHpvolcite] = ACTIONS(5308), + [anon_sym_BSLASHPvolcite] = ACTIONS(5308), + [anon_sym_BSLASHfvolcite] = ACTIONS(5308), + [anon_sym_BSLASHftvolcite] = ACTIONS(5308), + [anon_sym_BSLASHsvolcite] = ACTIONS(5308), + [anon_sym_BSLASHSvolcite] = ACTIONS(5308), + [anon_sym_BSLASHtvolcite] = ACTIONS(5308), + [anon_sym_BSLASHTvolcite] = ACTIONS(5308), + [anon_sym_BSLASHavolcite] = ACTIONS(5308), + [anon_sym_BSLASHAvolcite] = ACTIONS(5308), + [anon_sym_BSLASHnotecite] = ACTIONS(5308), + [anon_sym_BSLASHNotecite] = ACTIONS(5308), + [anon_sym_BSLASHpnotecite] = ACTIONS(5308), + [anon_sym_BSLASHPnotecite] = ACTIONS(5308), + [anon_sym_BSLASHfnotecite] = ACTIONS(5308), + [anon_sym_BSLASHlabel] = ACTIONS(5308), + [anon_sym_BSLASHref] = ACTIONS(5308), + [anon_sym_BSLASHeqref] = ACTIONS(5308), + [anon_sym_BSLASHvref] = ACTIONS(5308), + [anon_sym_BSLASHVref] = ACTIONS(5308), + [anon_sym_BSLASHautoref] = ACTIONS(5308), + [anon_sym_BSLASHpageref] = ACTIONS(5308), + [anon_sym_BSLASHcref] = ACTIONS(5308), + [anon_sym_BSLASHCref] = ACTIONS(5308), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnameCref] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHlabelcref] = ACTIONS(5308), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCrefrange] = ACTIONS(5308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnewlabel] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5308), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5308), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5308), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdef] = ACTIONS(5308), + [anon_sym_BSLASHlet] = ACTIONS(5308), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5308), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5308), + [anon_sym_BSLASHgls] = ACTIONS(5308), + [anon_sym_BSLASHGls] = ACTIONS(5308), + [anon_sym_BSLASHGLS] = ACTIONS(5308), + [anon_sym_BSLASHglspl] = ACTIONS(5308), + [anon_sym_BSLASHGlspl] = ACTIONS(5308), + [anon_sym_BSLASHGLSpl] = ACTIONS(5308), + [anon_sym_BSLASHglsdisp] = ACTIONS(5308), + [anon_sym_BSLASHglslink] = ACTIONS(5308), + [anon_sym_BSLASHglstext] = ACTIONS(5308), + [anon_sym_BSLASHGlstext] = ACTIONS(5308), + [anon_sym_BSLASHGLStext] = ACTIONS(5308), + [anon_sym_BSLASHglsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5308), + [anon_sym_BSLASHglsplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSplural] = ACTIONS(5308), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHglsname] = ACTIONS(5308), + [anon_sym_BSLASHGlsname] = ACTIONS(5308), + [anon_sym_BSLASHGLSname] = ACTIONS(5308), + [anon_sym_BSLASHglssymbol] = ACTIONS(5308), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5308), + [anon_sym_BSLASHglsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5308), + [anon_sym_BSLASHglsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5308), + [anon_sym_BSLASHglsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5308), + [anon_sym_BSLASHglsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5308), + [anon_sym_BSLASHglsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5308), + [anon_sym_BSLASHnewacronym] = ACTIONS(5308), + [anon_sym_BSLASHacrshort] = ACTIONS(5308), + [anon_sym_BSLASHAcrshort] = ACTIONS(5308), + [anon_sym_BSLASHACRshort] = ACTIONS(5308), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5308), + [anon_sym_BSLASHacrlong] = ACTIONS(5308), + [anon_sym_BSLASHAcrlong] = ACTIONS(5308), + [anon_sym_BSLASHACRlong] = ACTIONS(5308), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5308), + [anon_sym_BSLASHacrfull] = ACTIONS(5308), + [anon_sym_BSLASHAcrfull] = ACTIONS(5308), + [anon_sym_BSLASHACRfull] = ACTIONS(5308), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5308), + [anon_sym_BSLASHacs] = ACTIONS(5308), + [anon_sym_BSLASHAcs] = ACTIONS(5308), + [anon_sym_BSLASHacsp] = ACTIONS(5308), + [anon_sym_BSLASHAcsp] = ACTIONS(5308), + [anon_sym_BSLASHacl] = ACTIONS(5308), + [anon_sym_BSLASHAcl] = ACTIONS(5308), + [anon_sym_BSLASHaclp] = ACTIONS(5308), + [anon_sym_BSLASHAclp] = ACTIONS(5308), + [anon_sym_BSLASHacf] = ACTIONS(5308), + [anon_sym_BSLASHAcf] = ACTIONS(5308), + [anon_sym_BSLASHacfp] = ACTIONS(5308), + [anon_sym_BSLASHAcfp] = ACTIONS(5308), + [anon_sym_BSLASHac] = ACTIONS(5308), + [anon_sym_BSLASHAc] = ACTIONS(5308), + [anon_sym_BSLASHacp] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5308), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5308), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5308), + [anon_sym_BSLASHcolor] = ACTIONS(5308), + [anon_sym_BSLASHcolorbox] = ACTIONS(5308), + [anon_sym_BSLASHtextcolor] = ACTIONS(5308), + [anon_sym_BSLASHpagecolor] = ACTIONS(5308), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5308), + [anon_sym_BSLASHtext] = ACTIONS(5308), + [anon_sym_BSLASHintertext] = ACTIONS(5308), + [anon_sym_shortintertext] = ACTIONS(5308), }, [1057] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5225), - [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), + [sym_command_name] = ACTIONS(5304), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_COMMA] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5302), + [anon_sym_BSLASHpart] = ACTIONS(5304), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddpart] = ACTIONS(5304), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHchapter] = ACTIONS(5304), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddchap] = ACTIONS(5304), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsection] = ACTIONS(5304), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddsec] = ACTIONS(5304), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHparagraph] = ACTIONS(5304), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5304), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHitem] = ACTIONS(5304), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5302), + [sym_word] = ACTIONS(5304), + [sym_placeholder] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_SLASH] = ACTIONS(5304), + [anon_sym_CARET] = ACTIONS(5304), + [anon_sym__] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_BANG] = ACTIONS(5304), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_SQUOTE] = ACTIONS(5304), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5302), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5302), + [anon_sym_BSLASHbegin] = ACTIONS(5304), + [anon_sym_BSLASHusepackage] = ACTIONS(5304), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5304), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5304), + [anon_sym_BSLASHinclude] = ACTIONS(5304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5304), + [anon_sym_BSLASHinput] = ACTIONS(5304), + [anon_sym_BSLASHsubfile] = ACTIONS(5304), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5304), + [anon_sym_BSLASHbibliography] = ACTIONS(5304), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5304), + [anon_sym_BSLASHincludesvg] = ACTIONS(5304), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5304), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5304), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5304), + [anon_sym_BSLASHimport] = ACTIONS(5304), + [anon_sym_BSLASHsubimport] = ACTIONS(5304), + [anon_sym_BSLASHinputfrom] = ACTIONS(5304), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5304), + [anon_sym_BSLASHincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHcaption] = ACTIONS(5304), + [anon_sym_BSLASHcite] = ACTIONS(5304), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCite] = ACTIONS(5304), + [anon_sym_BSLASHnocite] = ACTIONS(5304), + [anon_sym_BSLASHcitet] = ACTIONS(5304), + [anon_sym_BSLASHcitep] = ACTIONS(5304), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteauthor] = ACTIONS(5304), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5304), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitetitle] = ACTIONS(5304), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteyear] = ACTIONS(5304), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitedate] = ACTIONS(5304), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteurl] = ACTIONS(5304), + [anon_sym_BSLASHfullcite] = ACTIONS(5304), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5304), + [anon_sym_BSLASHcitealt] = ACTIONS(5304), + [anon_sym_BSLASHcitealp] = ACTIONS(5304), + [anon_sym_BSLASHcitetext] = ACTIONS(5304), + [anon_sym_BSLASHparencite] = ACTIONS(5304), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHParencite] = ACTIONS(5304), + [anon_sym_BSLASHfootcite] = ACTIONS(5304), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5304), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5304), + [anon_sym_BSLASHtextcite] = ACTIONS(5304), + [anon_sym_BSLASHTextcite] = ACTIONS(5304), + [anon_sym_BSLASHsmartcite] = ACTIONS(5304), + [anon_sym_BSLASHSmartcite] = ACTIONS(5304), + [anon_sym_BSLASHsupercite] = ACTIONS(5304), + [anon_sym_BSLASHautocite] = ACTIONS(5304), + [anon_sym_BSLASHAutocite] = ACTIONS(5304), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHvolcite] = ACTIONS(5304), + [anon_sym_BSLASHVolcite] = ACTIONS(5304), + [anon_sym_BSLASHpvolcite] = ACTIONS(5304), + [anon_sym_BSLASHPvolcite] = ACTIONS(5304), + [anon_sym_BSLASHfvolcite] = ACTIONS(5304), + [anon_sym_BSLASHftvolcite] = ACTIONS(5304), + [anon_sym_BSLASHsvolcite] = ACTIONS(5304), + [anon_sym_BSLASHSvolcite] = ACTIONS(5304), + [anon_sym_BSLASHtvolcite] = ACTIONS(5304), + [anon_sym_BSLASHTvolcite] = ACTIONS(5304), + [anon_sym_BSLASHavolcite] = ACTIONS(5304), + [anon_sym_BSLASHAvolcite] = ACTIONS(5304), + [anon_sym_BSLASHnotecite] = ACTIONS(5304), + [anon_sym_BSLASHNotecite] = ACTIONS(5304), + [anon_sym_BSLASHpnotecite] = ACTIONS(5304), + [anon_sym_BSLASHPnotecite] = ACTIONS(5304), + [anon_sym_BSLASHfnotecite] = ACTIONS(5304), + [anon_sym_BSLASHlabel] = ACTIONS(5304), + [anon_sym_BSLASHref] = ACTIONS(5304), + [anon_sym_BSLASHeqref] = ACTIONS(5304), + [anon_sym_BSLASHvref] = ACTIONS(5304), + [anon_sym_BSLASHVref] = ACTIONS(5304), + [anon_sym_BSLASHautoref] = ACTIONS(5304), + [anon_sym_BSLASHpageref] = ACTIONS(5304), + [anon_sym_BSLASHcref] = ACTIONS(5304), + [anon_sym_BSLASHCref] = ACTIONS(5304), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnameCref] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHlabelcref] = ACTIONS(5304), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCrefrange] = ACTIONS(5304), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnewlabel] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5304), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5304), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5304), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdef] = ACTIONS(5304), + [anon_sym_BSLASHlet] = ACTIONS(5304), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5304), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5304), + [anon_sym_BSLASHgls] = ACTIONS(5304), + [anon_sym_BSLASHGls] = ACTIONS(5304), + [anon_sym_BSLASHGLS] = ACTIONS(5304), + [anon_sym_BSLASHglspl] = ACTIONS(5304), + [anon_sym_BSLASHGlspl] = ACTIONS(5304), + [anon_sym_BSLASHGLSpl] = ACTIONS(5304), + [anon_sym_BSLASHglsdisp] = ACTIONS(5304), + [anon_sym_BSLASHglslink] = ACTIONS(5304), + [anon_sym_BSLASHglstext] = ACTIONS(5304), + [anon_sym_BSLASHGlstext] = ACTIONS(5304), + [anon_sym_BSLASHGLStext] = ACTIONS(5304), + [anon_sym_BSLASHglsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5304), + [anon_sym_BSLASHglsplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSplural] = ACTIONS(5304), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHglsname] = ACTIONS(5304), + [anon_sym_BSLASHGlsname] = ACTIONS(5304), + [anon_sym_BSLASHGLSname] = ACTIONS(5304), + [anon_sym_BSLASHglssymbol] = ACTIONS(5304), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5304), + [anon_sym_BSLASHglsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5304), + [anon_sym_BSLASHglsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5304), + [anon_sym_BSLASHglsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5304), + [anon_sym_BSLASHglsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5304), + [anon_sym_BSLASHglsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5304), + [anon_sym_BSLASHnewacronym] = ACTIONS(5304), + [anon_sym_BSLASHacrshort] = ACTIONS(5304), + [anon_sym_BSLASHAcrshort] = ACTIONS(5304), + [anon_sym_BSLASHACRshort] = ACTIONS(5304), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5304), + [anon_sym_BSLASHacrlong] = ACTIONS(5304), + [anon_sym_BSLASHAcrlong] = ACTIONS(5304), + [anon_sym_BSLASHACRlong] = ACTIONS(5304), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5304), + [anon_sym_BSLASHacrfull] = ACTIONS(5304), + [anon_sym_BSLASHAcrfull] = ACTIONS(5304), + [anon_sym_BSLASHACRfull] = ACTIONS(5304), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5304), + [anon_sym_BSLASHacs] = ACTIONS(5304), + [anon_sym_BSLASHAcs] = ACTIONS(5304), + [anon_sym_BSLASHacsp] = ACTIONS(5304), + [anon_sym_BSLASHAcsp] = ACTIONS(5304), + [anon_sym_BSLASHacl] = ACTIONS(5304), + [anon_sym_BSLASHAcl] = ACTIONS(5304), + [anon_sym_BSLASHaclp] = ACTIONS(5304), + [anon_sym_BSLASHAclp] = ACTIONS(5304), + [anon_sym_BSLASHacf] = ACTIONS(5304), + [anon_sym_BSLASHAcf] = ACTIONS(5304), + [anon_sym_BSLASHacfp] = ACTIONS(5304), + [anon_sym_BSLASHAcfp] = ACTIONS(5304), + [anon_sym_BSLASHac] = ACTIONS(5304), + [anon_sym_BSLASHAc] = ACTIONS(5304), + [anon_sym_BSLASHacp] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5304), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5304), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5304), + [anon_sym_BSLASHcolor] = ACTIONS(5304), + [anon_sym_BSLASHcolorbox] = ACTIONS(5304), + [anon_sym_BSLASHtextcolor] = ACTIONS(5304), + [anon_sym_BSLASHpagecolor] = ACTIONS(5304), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5304), + [anon_sym_BSLASHtext] = ACTIONS(5304), + [anon_sym_BSLASHintertext] = ACTIONS(5304), + [anon_sym_shortintertext] = ACTIONS(5304), }, [1058] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5217), - [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), + [sym_command_name] = ACTIONS(5296), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5294), + [anon_sym_BSLASHpart] = ACTIONS(5296), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddpart] = ACTIONS(5296), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHchapter] = ACTIONS(5296), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddchap] = ACTIONS(5296), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsection] = ACTIONS(5296), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddsec] = ACTIONS(5296), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHparagraph] = ACTIONS(5296), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5296), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHitem] = ACTIONS(5296), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [sym_word] = ACTIONS(5296), + [sym_placeholder] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_SQUOTE] = ACTIONS(5296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5294), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5294), + [anon_sym_BSLASHbegin] = ACTIONS(5296), + [anon_sym_BSLASHusepackage] = ACTIONS(5296), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5296), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5296), + [anon_sym_BSLASHinclude] = ACTIONS(5296), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5296), + [anon_sym_BSLASHinput] = ACTIONS(5296), + [anon_sym_BSLASHsubfile] = ACTIONS(5296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5296), + [anon_sym_BSLASHbibliography] = ACTIONS(5296), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5296), + [anon_sym_BSLASHincludesvg] = ACTIONS(5296), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5296), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5296), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5296), + [anon_sym_BSLASHimport] = ACTIONS(5296), + [anon_sym_BSLASHsubimport] = ACTIONS(5296), + [anon_sym_BSLASHinputfrom] = ACTIONS(5296), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5296), + [anon_sym_BSLASHincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHcaption] = ACTIONS(5296), + [anon_sym_BSLASHcite] = ACTIONS(5296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCite] = ACTIONS(5296), + [anon_sym_BSLASHnocite] = ACTIONS(5296), + [anon_sym_BSLASHcitet] = ACTIONS(5296), + [anon_sym_BSLASHcitep] = ACTIONS(5296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteauthor] = ACTIONS(5296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitetitle] = ACTIONS(5296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteyear] = ACTIONS(5296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitedate] = ACTIONS(5296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteurl] = ACTIONS(5296), + [anon_sym_BSLASHfullcite] = ACTIONS(5296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5296), + [anon_sym_BSLASHcitealt] = ACTIONS(5296), + [anon_sym_BSLASHcitealp] = ACTIONS(5296), + [anon_sym_BSLASHcitetext] = ACTIONS(5296), + [anon_sym_BSLASHparencite] = ACTIONS(5296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHParencite] = ACTIONS(5296), + [anon_sym_BSLASHfootcite] = ACTIONS(5296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5296), + [anon_sym_BSLASHtextcite] = ACTIONS(5296), + [anon_sym_BSLASHTextcite] = ACTIONS(5296), + [anon_sym_BSLASHsmartcite] = ACTIONS(5296), + [anon_sym_BSLASHSmartcite] = ACTIONS(5296), + [anon_sym_BSLASHsupercite] = ACTIONS(5296), + [anon_sym_BSLASHautocite] = ACTIONS(5296), + [anon_sym_BSLASHAutocite] = ACTIONS(5296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHvolcite] = ACTIONS(5296), + [anon_sym_BSLASHVolcite] = ACTIONS(5296), + [anon_sym_BSLASHpvolcite] = ACTIONS(5296), + [anon_sym_BSLASHPvolcite] = ACTIONS(5296), + [anon_sym_BSLASHfvolcite] = ACTIONS(5296), + [anon_sym_BSLASHftvolcite] = ACTIONS(5296), + [anon_sym_BSLASHsvolcite] = ACTIONS(5296), + [anon_sym_BSLASHSvolcite] = ACTIONS(5296), + [anon_sym_BSLASHtvolcite] = ACTIONS(5296), + [anon_sym_BSLASHTvolcite] = ACTIONS(5296), + [anon_sym_BSLASHavolcite] = ACTIONS(5296), + [anon_sym_BSLASHAvolcite] = ACTIONS(5296), + [anon_sym_BSLASHnotecite] = ACTIONS(5296), + [anon_sym_BSLASHNotecite] = ACTIONS(5296), + [anon_sym_BSLASHpnotecite] = ACTIONS(5296), + [anon_sym_BSLASHPnotecite] = ACTIONS(5296), + [anon_sym_BSLASHfnotecite] = ACTIONS(5296), + [anon_sym_BSLASHlabel] = ACTIONS(5296), + [anon_sym_BSLASHref] = ACTIONS(5296), + [anon_sym_BSLASHeqref] = ACTIONS(5296), + [anon_sym_BSLASHvref] = ACTIONS(5296), + [anon_sym_BSLASHVref] = ACTIONS(5296), + [anon_sym_BSLASHautoref] = ACTIONS(5296), + [anon_sym_BSLASHpageref] = ACTIONS(5296), + [anon_sym_BSLASHcref] = ACTIONS(5296), + [anon_sym_BSLASHCref] = ACTIONS(5296), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnameCref] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHlabelcref] = ACTIONS(5296), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCrefrange] = ACTIONS(5296), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnewlabel] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5296), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5296), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5296), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdef] = ACTIONS(5296), + [anon_sym_BSLASHlet] = ACTIONS(5296), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5296), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5296), + [anon_sym_BSLASHgls] = ACTIONS(5296), + [anon_sym_BSLASHGls] = ACTIONS(5296), + [anon_sym_BSLASHGLS] = ACTIONS(5296), + [anon_sym_BSLASHglspl] = ACTIONS(5296), + [anon_sym_BSLASHGlspl] = ACTIONS(5296), + [anon_sym_BSLASHGLSpl] = ACTIONS(5296), + [anon_sym_BSLASHglsdisp] = ACTIONS(5296), + [anon_sym_BSLASHglslink] = ACTIONS(5296), + [anon_sym_BSLASHglstext] = ACTIONS(5296), + [anon_sym_BSLASHGlstext] = ACTIONS(5296), + [anon_sym_BSLASHGLStext] = ACTIONS(5296), + [anon_sym_BSLASHglsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5296), + [anon_sym_BSLASHglsplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSplural] = ACTIONS(5296), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHglsname] = ACTIONS(5296), + [anon_sym_BSLASHGlsname] = ACTIONS(5296), + [anon_sym_BSLASHGLSname] = ACTIONS(5296), + [anon_sym_BSLASHglssymbol] = ACTIONS(5296), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5296), + [anon_sym_BSLASHglsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5296), + [anon_sym_BSLASHglsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5296), + [anon_sym_BSLASHglsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5296), + [anon_sym_BSLASHglsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5296), + [anon_sym_BSLASHglsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5296), + [anon_sym_BSLASHnewacronym] = ACTIONS(5296), + [anon_sym_BSLASHacrshort] = ACTIONS(5296), + [anon_sym_BSLASHAcrshort] = ACTIONS(5296), + [anon_sym_BSLASHACRshort] = ACTIONS(5296), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5296), + [anon_sym_BSLASHacrlong] = ACTIONS(5296), + [anon_sym_BSLASHAcrlong] = ACTIONS(5296), + [anon_sym_BSLASHACRlong] = ACTIONS(5296), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5296), + [anon_sym_BSLASHacrfull] = ACTIONS(5296), + [anon_sym_BSLASHAcrfull] = ACTIONS(5296), + [anon_sym_BSLASHACRfull] = ACTIONS(5296), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5296), + [anon_sym_BSLASHacs] = ACTIONS(5296), + [anon_sym_BSLASHAcs] = ACTIONS(5296), + [anon_sym_BSLASHacsp] = ACTIONS(5296), + [anon_sym_BSLASHAcsp] = ACTIONS(5296), + [anon_sym_BSLASHacl] = ACTIONS(5296), + [anon_sym_BSLASHAcl] = ACTIONS(5296), + [anon_sym_BSLASHaclp] = ACTIONS(5296), + [anon_sym_BSLASHAclp] = ACTIONS(5296), + [anon_sym_BSLASHacf] = ACTIONS(5296), + [anon_sym_BSLASHAcf] = ACTIONS(5296), + [anon_sym_BSLASHacfp] = ACTIONS(5296), + [anon_sym_BSLASHAcfp] = ACTIONS(5296), + [anon_sym_BSLASHac] = ACTIONS(5296), + [anon_sym_BSLASHAc] = ACTIONS(5296), + [anon_sym_BSLASHacp] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5296), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5296), + [anon_sym_BSLASHcolor] = ACTIONS(5296), + [anon_sym_BSLASHcolorbox] = ACTIONS(5296), + [anon_sym_BSLASHtextcolor] = ACTIONS(5296), + [anon_sym_BSLASHpagecolor] = ACTIONS(5296), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5296), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5296), + [anon_sym_BSLASHtext] = ACTIONS(5296), + [anon_sym_BSLASHintertext] = ACTIONS(5296), + [anon_sym_shortintertext] = ACTIONS(5296), }, [1059] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5213), - [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), + [sym_command_name] = ACTIONS(5292), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_BSLASHpart] = ACTIONS(5292), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddpart] = ACTIONS(5292), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHchapter] = ACTIONS(5292), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddchap] = ACTIONS(5292), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsection] = ACTIONS(5292), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddsec] = ACTIONS(5292), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHparagraph] = ACTIONS(5292), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5292), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHitem] = ACTIONS(5292), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [sym_word] = ACTIONS(5292), + [sym_placeholder] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_SQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5290), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5290), + [anon_sym_BSLASHbegin] = ACTIONS(5292), + [anon_sym_BSLASHusepackage] = ACTIONS(5292), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5292), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5292), + [anon_sym_BSLASHinclude] = ACTIONS(5292), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5292), + [anon_sym_BSLASHinput] = ACTIONS(5292), + [anon_sym_BSLASHsubfile] = ACTIONS(5292), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5292), + [anon_sym_BSLASHbibliography] = ACTIONS(5292), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5292), + [anon_sym_BSLASHincludesvg] = ACTIONS(5292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5292), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5292), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5292), + [anon_sym_BSLASHimport] = ACTIONS(5292), + [anon_sym_BSLASHsubimport] = ACTIONS(5292), + [anon_sym_BSLASHinputfrom] = ACTIONS(5292), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5292), + [anon_sym_BSLASHincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHcaption] = ACTIONS(5292), + [anon_sym_BSLASHcite] = ACTIONS(5292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCite] = ACTIONS(5292), + [anon_sym_BSLASHnocite] = ACTIONS(5292), + [anon_sym_BSLASHcitet] = ACTIONS(5292), + [anon_sym_BSLASHcitep] = ACTIONS(5292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteauthor] = ACTIONS(5292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitetitle] = ACTIONS(5292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteyear] = ACTIONS(5292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitedate] = ACTIONS(5292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteurl] = ACTIONS(5292), + [anon_sym_BSLASHfullcite] = ACTIONS(5292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5292), + [anon_sym_BSLASHcitealt] = ACTIONS(5292), + [anon_sym_BSLASHcitealp] = ACTIONS(5292), + [anon_sym_BSLASHcitetext] = ACTIONS(5292), + [anon_sym_BSLASHparencite] = ACTIONS(5292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHParencite] = ACTIONS(5292), + [anon_sym_BSLASHfootcite] = ACTIONS(5292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5292), + [anon_sym_BSLASHtextcite] = ACTIONS(5292), + [anon_sym_BSLASHTextcite] = ACTIONS(5292), + [anon_sym_BSLASHsmartcite] = ACTIONS(5292), + [anon_sym_BSLASHSmartcite] = ACTIONS(5292), + [anon_sym_BSLASHsupercite] = ACTIONS(5292), + [anon_sym_BSLASHautocite] = ACTIONS(5292), + [anon_sym_BSLASHAutocite] = ACTIONS(5292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHvolcite] = ACTIONS(5292), + [anon_sym_BSLASHVolcite] = ACTIONS(5292), + [anon_sym_BSLASHpvolcite] = ACTIONS(5292), + [anon_sym_BSLASHPvolcite] = ACTIONS(5292), + [anon_sym_BSLASHfvolcite] = ACTIONS(5292), + [anon_sym_BSLASHftvolcite] = ACTIONS(5292), + [anon_sym_BSLASHsvolcite] = ACTIONS(5292), + [anon_sym_BSLASHSvolcite] = ACTIONS(5292), + [anon_sym_BSLASHtvolcite] = ACTIONS(5292), + [anon_sym_BSLASHTvolcite] = ACTIONS(5292), + [anon_sym_BSLASHavolcite] = ACTIONS(5292), + [anon_sym_BSLASHAvolcite] = ACTIONS(5292), + [anon_sym_BSLASHnotecite] = ACTIONS(5292), + [anon_sym_BSLASHNotecite] = ACTIONS(5292), + [anon_sym_BSLASHpnotecite] = ACTIONS(5292), + [anon_sym_BSLASHPnotecite] = ACTIONS(5292), + [anon_sym_BSLASHfnotecite] = ACTIONS(5292), + [anon_sym_BSLASHlabel] = ACTIONS(5292), + [anon_sym_BSLASHref] = ACTIONS(5292), + [anon_sym_BSLASHeqref] = ACTIONS(5292), + [anon_sym_BSLASHvref] = ACTIONS(5292), + [anon_sym_BSLASHVref] = ACTIONS(5292), + [anon_sym_BSLASHautoref] = ACTIONS(5292), + [anon_sym_BSLASHpageref] = ACTIONS(5292), + [anon_sym_BSLASHcref] = ACTIONS(5292), + [anon_sym_BSLASHCref] = ACTIONS(5292), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnameCref] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHlabelcref] = ACTIONS(5292), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCrefrange] = ACTIONS(5292), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnewlabel] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5292), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5292), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5292), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdef] = ACTIONS(5292), + [anon_sym_BSLASHlet] = ACTIONS(5292), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5292), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5292), + [anon_sym_BSLASHgls] = ACTIONS(5292), + [anon_sym_BSLASHGls] = ACTIONS(5292), + [anon_sym_BSLASHGLS] = ACTIONS(5292), + [anon_sym_BSLASHglspl] = ACTIONS(5292), + [anon_sym_BSLASHGlspl] = ACTIONS(5292), + [anon_sym_BSLASHGLSpl] = ACTIONS(5292), + [anon_sym_BSLASHglsdisp] = ACTIONS(5292), + [anon_sym_BSLASHglslink] = ACTIONS(5292), + [anon_sym_BSLASHglstext] = ACTIONS(5292), + [anon_sym_BSLASHGlstext] = ACTIONS(5292), + [anon_sym_BSLASHGLStext] = ACTIONS(5292), + [anon_sym_BSLASHglsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5292), + [anon_sym_BSLASHglsplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSplural] = ACTIONS(5292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHglsname] = ACTIONS(5292), + [anon_sym_BSLASHGlsname] = ACTIONS(5292), + [anon_sym_BSLASHGLSname] = ACTIONS(5292), + [anon_sym_BSLASHglssymbol] = ACTIONS(5292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5292), + [anon_sym_BSLASHglsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5292), + [anon_sym_BSLASHglsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5292), + [anon_sym_BSLASHglsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5292), + [anon_sym_BSLASHglsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5292), + [anon_sym_BSLASHglsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5292), + [anon_sym_BSLASHnewacronym] = ACTIONS(5292), + [anon_sym_BSLASHacrshort] = ACTIONS(5292), + [anon_sym_BSLASHAcrshort] = ACTIONS(5292), + [anon_sym_BSLASHACRshort] = ACTIONS(5292), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5292), + [anon_sym_BSLASHacrlong] = ACTIONS(5292), + [anon_sym_BSLASHAcrlong] = ACTIONS(5292), + [anon_sym_BSLASHACRlong] = ACTIONS(5292), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5292), + [anon_sym_BSLASHacrfull] = ACTIONS(5292), + [anon_sym_BSLASHAcrfull] = ACTIONS(5292), + [anon_sym_BSLASHACRfull] = ACTIONS(5292), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5292), + [anon_sym_BSLASHacs] = ACTIONS(5292), + [anon_sym_BSLASHAcs] = ACTIONS(5292), + [anon_sym_BSLASHacsp] = ACTIONS(5292), + [anon_sym_BSLASHAcsp] = ACTIONS(5292), + [anon_sym_BSLASHacl] = ACTIONS(5292), + [anon_sym_BSLASHAcl] = ACTIONS(5292), + [anon_sym_BSLASHaclp] = ACTIONS(5292), + [anon_sym_BSLASHAclp] = ACTIONS(5292), + [anon_sym_BSLASHacf] = ACTIONS(5292), + [anon_sym_BSLASHAcf] = ACTIONS(5292), + [anon_sym_BSLASHacfp] = ACTIONS(5292), + [anon_sym_BSLASHAcfp] = ACTIONS(5292), + [anon_sym_BSLASHac] = ACTIONS(5292), + [anon_sym_BSLASHAc] = ACTIONS(5292), + [anon_sym_BSLASHacp] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5292), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5292), + [anon_sym_BSLASHcolorbox] = ACTIONS(5292), + [anon_sym_BSLASHtextcolor] = ACTIONS(5292), + [anon_sym_BSLASHpagecolor] = ACTIONS(5292), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5292), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5292), + [anon_sym_BSLASHtext] = ACTIONS(5292), + [anon_sym_BSLASHintertext] = ACTIONS(5292), + [anon_sym_shortintertext] = ACTIONS(5292), }, [1060] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_BSLASHpart] = ACTIONS(5288), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddpart] = ACTIONS(5288), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHchapter] = ACTIONS(5288), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddchap] = ACTIONS(5288), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsection] = ACTIONS(5288), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddsec] = ACTIONS(5288), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHparagraph] = ACTIONS(5288), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5288), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHitem] = ACTIONS(5288), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5286), + [anon_sym_BSLASHbegin] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [1061] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_BSLASHpart] = ACTIONS(5280), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddpart] = ACTIONS(5280), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHchapter] = ACTIONS(5280), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddchap] = ACTIONS(5280), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsection] = ACTIONS(5280), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddsec] = ACTIONS(5280), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHparagraph] = ACTIONS(5280), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5280), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHitem] = ACTIONS(5280), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5278), + [anon_sym_BSLASHbegin] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [1062] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_BSLASHpart] = ACTIONS(5276), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddpart] = ACTIONS(5276), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHchapter] = ACTIONS(5276), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddchap] = ACTIONS(5276), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsection] = ACTIONS(5276), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddsec] = ACTIONS(5276), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHparagraph] = ACTIONS(5276), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5276), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHitem] = ACTIONS(5276), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5274), + [anon_sym_BSLASHbegin] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [1063] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_BSLASHpart] = ACTIONS(5272), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddpart] = ACTIONS(5272), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHchapter] = ACTIONS(5272), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddchap] = ACTIONS(5272), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsection] = ACTIONS(5272), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddsec] = ACTIONS(5272), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHparagraph] = ACTIONS(5272), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5272), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHitem] = ACTIONS(5272), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5270), + [anon_sym_BSLASHbegin] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [1064] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_BSLASHpart] = ACTIONS(5268), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddpart] = ACTIONS(5268), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHchapter] = ACTIONS(5268), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddchap] = ACTIONS(5268), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsection] = ACTIONS(5268), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddsec] = ACTIONS(5268), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHparagraph] = ACTIONS(5268), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5268), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHitem] = ACTIONS(5268), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5266), + [anon_sym_BSLASHbegin] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [1065] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_BSLASHpart] = ACTIONS(5264), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddpart] = ACTIONS(5264), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHchapter] = ACTIONS(5264), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddchap] = ACTIONS(5264), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsection] = ACTIONS(5264), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddsec] = ACTIONS(5264), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHparagraph] = ACTIONS(5264), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5264), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHitem] = ACTIONS(5264), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5262), + [anon_sym_BSLASHbegin] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [1066] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_BSLASHpart] = ACTIONS(5181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddpart] = ACTIONS(5181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHchapter] = ACTIONS(5181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddchap] = ACTIONS(5181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsection] = ACTIONS(5181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddsec] = ACTIONS(5181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHparagraph] = ACTIONS(5181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHitem] = ACTIONS(5181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5179), - [anon_sym_BSLASHbegin] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_BSLASHpart] = ACTIONS(5260), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddpart] = ACTIONS(5260), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHchapter] = ACTIONS(5260), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddchap] = ACTIONS(5260), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsection] = ACTIONS(5260), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddsec] = ACTIONS(5260), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHparagraph] = ACTIONS(5260), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5260), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHitem] = ACTIONS(5260), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5258), + [anon_sym_BSLASHbegin] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [1067] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_BSLASHpart] = ACTIONS(5177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddpart] = ACTIONS(5177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHchapter] = ACTIONS(5177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddchap] = ACTIONS(5177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsection] = ACTIONS(5177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddsec] = ACTIONS(5177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHparagraph] = ACTIONS(5177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHitem] = ACTIONS(5177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5175), - [anon_sym_BSLASHbegin] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_BSLASHpart] = ACTIONS(5256), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddpart] = ACTIONS(5256), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHchapter] = ACTIONS(5256), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddchap] = ACTIONS(5256), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsection] = ACTIONS(5256), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddsec] = ACTIONS(5256), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHparagraph] = ACTIONS(5256), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5256), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHitem] = ACTIONS(5256), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5254), + [anon_sym_BSLASHbegin] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [1068] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_BSLASHpart] = ACTIONS(5169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddpart] = ACTIONS(5169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHchapter] = ACTIONS(5169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddchap] = ACTIONS(5169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsection] = ACTIONS(5169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddsec] = ACTIONS(5169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHparagraph] = ACTIONS(5169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHitem] = ACTIONS(5169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5167), - [anon_sym_BSLASHbegin] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_BSLASHpart] = ACTIONS(5248), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddpart] = ACTIONS(5248), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHchapter] = ACTIONS(5248), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddchap] = ACTIONS(5248), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsection] = ACTIONS(5248), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddsec] = ACTIONS(5248), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHparagraph] = ACTIONS(5248), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5248), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHitem] = ACTIONS(5248), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5246), + [anon_sym_BSLASHbegin] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [1069] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_BSLASHpart] = ACTIONS(5165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddpart] = ACTIONS(5165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHchapter] = ACTIONS(5165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddchap] = ACTIONS(5165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsection] = ACTIONS(5165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddsec] = ACTIONS(5165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHparagraph] = ACTIONS(5165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHitem] = ACTIONS(5165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5163), - [anon_sym_BSLASHbegin] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_BSLASHpart] = ACTIONS(5244), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddpart] = ACTIONS(5244), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHchapter] = ACTIONS(5244), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddchap] = ACTIONS(5244), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsection] = ACTIONS(5244), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddsec] = ACTIONS(5244), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHparagraph] = ACTIONS(5244), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5244), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHitem] = ACTIONS(5244), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5242), + [anon_sym_BSLASHbegin] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [1070] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_BSLASHpart] = ACTIONS(5161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddpart] = ACTIONS(5161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHchapter] = ACTIONS(5161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddchap] = ACTIONS(5161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsection] = ACTIONS(5161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddsec] = ACTIONS(5161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHparagraph] = ACTIONS(5161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHitem] = ACTIONS(5161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5159), - [anon_sym_BSLASHbegin] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_BSLASHpart] = ACTIONS(5240), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddpart] = ACTIONS(5240), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHchapter] = ACTIONS(5240), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddchap] = ACTIONS(5240), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsection] = ACTIONS(5240), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddsec] = ACTIONS(5240), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHparagraph] = ACTIONS(5240), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5240), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHitem] = ACTIONS(5240), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5238), + [anon_sym_BSLASHbegin] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [1071] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_BSLASHpart] = ACTIONS(5153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddpart] = ACTIONS(5153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHchapter] = ACTIONS(5153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddchap] = ACTIONS(5153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsection] = ACTIONS(5153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddsec] = ACTIONS(5153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHparagraph] = ACTIONS(5153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHitem] = ACTIONS(5153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5151), - [anon_sym_BSLASHbegin] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_BSLASHpart] = ACTIONS(5232), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddpart] = ACTIONS(5232), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHchapter] = ACTIONS(5232), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddchap] = ACTIONS(5232), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsection] = ACTIONS(5232), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddsec] = ACTIONS(5232), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHparagraph] = ACTIONS(5232), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5232), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHitem] = ACTIONS(5232), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5230), + [anon_sym_BSLASHbegin] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [1072] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_BSLASHpart] = ACTIONS(5149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddpart] = ACTIONS(5149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHchapter] = ACTIONS(5149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddchap] = ACTIONS(5149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsection] = ACTIONS(5149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddsec] = ACTIONS(5149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHparagraph] = ACTIONS(5149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHitem] = ACTIONS(5149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_BSLASHpart] = ACTIONS(5228), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddpart] = ACTIONS(5228), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHchapter] = ACTIONS(5228), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddchap] = ACTIONS(5228), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsection] = ACTIONS(5228), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddsec] = ACTIONS(5228), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHparagraph] = ACTIONS(5228), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5228), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHitem] = ACTIONS(5228), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5226), + [anon_sym_BSLASHbegin] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [1073] = { - [sym_command_name] = ACTIONS(5131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_BSLASHpart] = ACTIONS(5131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddpart] = ACTIONS(5131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHchapter] = ACTIONS(5131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddchap] = ACTIONS(5131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsection] = ACTIONS(5131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddsec] = ACTIONS(5131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHparagraph] = ACTIONS(5131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHitem] = ACTIONS(5131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5129), - [sym_word] = ACTIONS(5131), - [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_DOLLAR_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5129), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), - [anon_sym_BSLASHbegin] = ACTIONS(5131), - [anon_sym_BSLASHusepackage] = ACTIONS(5131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), - [anon_sym_BSLASHinclude] = ACTIONS(5131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), - [anon_sym_BSLASHinput] = ACTIONS(5131), - [anon_sym_BSLASHsubfile] = ACTIONS(5131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), - [anon_sym_BSLASHbibliography] = ACTIONS(5131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), - [anon_sym_BSLASHincludesvg] = ACTIONS(5131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), - [anon_sym_BSLASHimport] = ACTIONS(5131), - [anon_sym_BSLASHsubimport] = ACTIONS(5131), - [anon_sym_BSLASHinputfrom] = ACTIONS(5131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), - [anon_sym_BSLASHincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHcaption] = ACTIONS(5131), - [anon_sym_BSLASHcite] = ACTIONS(5131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCite] = ACTIONS(5131), - [anon_sym_BSLASHnocite] = ACTIONS(5131), - [anon_sym_BSLASHcitet] = ACTIONS(5131), - [anon_sym_BSLASHcitep] = ACTIONS(5131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor] = ACTIONS(5131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle] = ACTIONS(5131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteyear] = ACTIONS(5131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitedate] = ACTIONS(5131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteurl] = ACTIONS(5131), - [anon_sym_BSLASHfullcite] = ACTIONS(5131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), - [anon_sym_BSLASHcitealt] = ACTIONS(5131), - [anon_sym_BSLASHcitealp] = ACTIONS(5131), - [anon_sym_BSLASHcitetext] = ACTIONS(5131), - [anon_sym_BSLASHparencite] = ACTIONS(5131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHParencite] = ACTIONS(5131), - [anon_sym_BSLASHfootcite] = ACTIONS(5131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), - [anon_sym_BSLASHtextcite] = ACTIONS(5131), - [anon_sym_BSLASHTextcite] = ACTIONS(5131), - [anon_sym_BSLASHsmartcite] = ACTIONS(5131), - [anon_sym_BSLASHSmartcite] = ACTIONS(5131), - [anon_sym_BSLASHsupercite] = ACTIONS(5131), - [anon_sym_BSLASHautocite] = ACTIONS(5131), - [anon_sym_BSLASHAutocite] = ACTIONS(5131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHvolcite] = ACTIONS(5131), - [anon_sym_BSLASHVolcite] = ACTIONS(5131), - [anon_sym_BSLASHpvolcite] = ACTIONS(5131), - [anon_sym_BSLASHPvolcite] = ACTIONS(5131), - [anon_sym_BSLASHfvolcite] = ACTIONS(5131), - [anon_sym_BSLASHftvolcite] = ACTIONS(5131), - [anon_sym_BSLASHsvolcite] = ACTIONS(5131), - [anon_sym_BSLASHSvolcite] = ACTIONS(5131), - [anon_sym_BSLASHtvolcite] = ACTIONS(5131), - [anon_sym_BSLASHTvolcite] = ACTIONS(5131), - [anon_sym_BSLASHavolcite] = ACTIONS(5131), - [anon_sym_BSLASHAvolcite] = ACTIONS(5131), - [anon_sym_BSLASHnotecite] = ACTIONS(5131), - [anon_sym_BSLASHNotecite] = ACTIONS(5131), - [anon_sym_BSLASHpnotecite] = ACTIONS(5131), - [anon_sym_BSLASHPnotecite] = ACTIONS(5131), - [anon_sym_BSLASHfnotecite] = ACTIONS(5131), - [anon_sym_BSLASHlabel] = ACTIONS(5131), - [anon_sym_BSLASHref] = ACTIONS(5131), - [anon_sym_BSLASHeqref] = ACTIONS(5131), - [anon_sym_BSLASHvref] = ACTIONS(5131), - [anon_sym_BSLASHVref] = ACTIONS(5131), - [anon_sym_BSLASHautoref] = ACTIONS(5131), - [anon_sym_BSLASHpageref] = ACTIONS(5131), - [anon_sym_BSLASHcref] = ACTIONS(5131), - [anon_sym_BSLASHCref] = ACTIONS(5131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnameCref] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHlabelcref] = ACTIONS(5131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange] = ACTIONS(5131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnewlabel] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), - [anon_sym_BSLASHdef] = ACTIONS(5131), - [anon_sym_BSLASHlet] = ACTIONS(5131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), - [anon_sym_BSLASHgls] = ACTIONS(5131), - [anon_sym_BSLASHGls] = ACTIONS(5131), - [anon_sym_BSLASHGLS] = ACTIONS(5131), - [anon_sym_BSLASHglspl] = ACTIONS(5131), - [anon_sym_BSLASHGlspl] = ACTIONS(5131), - [anon_sym_BSLASHGLSpl] = ACTIONS(5131), - [anon_sym_BSLASHglsdisp] = ACTIONS(5131), - [anon_sym_BSLASHglslink] = ACTIONS(5131), - [anon_sym_BSLASHglstext] = ACTIONS(5131), - [anon_sym_BSLASHGlstext] = ACTIONS(5131), - [anon_sym_BSLASHGLStext] = ACTIONS(5131), - [anon_sym_BSLASHglsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), - [anon_sym_BSLASHglsplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSplural] = ACTIONS(5131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHglsname] = ACTIONS(5131), - [anon_sym_BSLASHGlsname] = ACTIONS(5131), - [anon_sym_BSLASHGLSname] = ACTIONS(5131), - [anon_sym_BSLASHglssymbol] = ACTIONS(5131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), - [anon_sym_BSLASHglsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), - [anon_sym_BSLASHglsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), - [anon_sym_BSLASHglsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), - [anon_sym_BSLASHglsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), - [anon_sym_BSLASHglsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), - [anon_sym_BSLASHnewacronym] = ACTIONS(5131), - [anon_sym_BSLASHacrshort] = ACTIONS(5131), - [anon_sym_BSLASHAcrshort] = ACTIONS(5131), - [anon_sym_BSLASHACRshort] = ACTIONS(5131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), - [anon_sym_BSLASHacrlong] = ACTIONS(5131), - [anon_sym_BSLASHAcrlong] = ACTIONS(5131), - [anon_sym_BSLASHACRlong] = ACTIONS(5131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), - [anon_sym_BSLASHacrfull] = ACTIONS(5131), - [anon_sym_BSLASHAcrfull] = ACTIONS(5131), - [anon_sym_BSLASHACRfull] = ACTIONS(5131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), - [anon_sym_BSLASHacs] = ACTIONS(5131), - [anon_sym_BSLASHAcs] = ACTIONS(5131), - [anon_sym_BSLASHacsp] = ACTIONS(5131), - [anon_sym_BSLASHAcsp] = ACTIONS(5131), - [anon_sym_BSLASHacl] = ACTIONS(5131), - [anon_sym_BSLASHAcl] = ACTIONS(5131), - [anon_sym_BSLASHaclp] = ACTIONS(5131), - [anon_sym_BSLASHAclp] = ACTIONS(5131), - [anon_sym_BSLASHacf] = ACTIONS(5131), - [anon_sym_BSLASHAcf] = ACTIONS(5131), - [anon_sym_BSLASHacfp] = ACTIONS(5131), - [anon_sym_BSLASHAcfp] = ACTIONS(5131), - [anon_sym_BSLASHac] = ACTIONS(5131), - [anon_sym_BSLASHAc] = ACTIONS(5131), - [anon_sym_BSLASHacp] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), - [anon_sym_BSLASHcolor] = ACTIONS(5131), - [anon_sym_BSLASHcolorbox] = ACTIONS(5131), - [anon_sym_BSLASHtextcolor] = ACTIONS(5131), - [anon_sym_BSLASHpagecolor] = ACTIONS(5131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), - [anon_sym_BSLASHtext] = ACTIONS(5131), - [anon_sym_BSLASHintertext] = ACTIONS(5131), - [anon_sym_shortintertext] = ACTIONS(5131), + [sym_command_name] = ACTIONS(5210), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_BSLASHpart] = ACTIONS(5210), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddpart] = ACTIONS(5210), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHchapter] = ACTIONS(5210), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddchap] = ACTIONS(5210), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsection] = ACTIONS(5210), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddsec] = ACTIONS(5210), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHparagraph] = ACTIONS(5210), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5210), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHitem] = ACTIONS(5210), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5208), + [sym_word] = ACTIONS(5210), + [sym_placeholder] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym__] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_SQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5208), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5208), + [anon_sym_BSLASHbegin] = ACTIONS(5210), + [anon_sym_BSLASHusepackage] = ACTIONS(5210), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5210), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5210), + [anon_sym_BSLASHinclude] = ACTIONS(5210), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5210), + [anon_sym_BSLASHinput] = ACTIONS(5210), + [anon_sym_BSLASHsubfile] = ACTIONS(5210), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5210), + [anon_sym_BSLASHbibliography] = ACTIONS(5210), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5210), + [anon_sym_BSLASHincludesvg] = ACTIONS(5210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5210), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5210), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5210), + [anon_sym_BSLASHimport] = ACTIONS(5210), + [anon_sym_BSLASHsubimport] = ACTIONS(5210), + [anon_sym_BSLASHinputfrom] = ACTIONS(5210), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5210), + [anon_sym_BSLASHincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHcaption] = ACTIONS(5210), + [anon_sym_BSLASHcite] = ACTIONS(5210), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCite] = ACTIONS(5210), + [anon_sym_BSLASHnocite] = ACTIONS(5210), + [anon_sym_BSLASHcitet] = ACTIONS(5210), + [anon_sym_BSLASHcitep] = ACTIONS(5210), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteauthor] = ACTIONS(5210), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5210), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitetitle] = ACTIONS(5210), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteyear] = ACTIONS(5210), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitedate] = ACTIONS(5210), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteurl] = ACTIONS(5210), + [anon_sym_BSLASHfullcite] = ACTIONS(5210), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5210), + [anon_sym_BSLASHcitealt] = ACTIONS(5210), + [anon_sym_BSLASHcitealp] = ACTIONS(5210), + [anon_sym_BSLASHcitetext] = ACTIONS(5210), + [anon_sym_BSLASHparencite] = ACTIONS(5210), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHParencite] = ACTIONS(5210), + [anon_sym_BSLASHfootcite] = ACTIONS(5210), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5210), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5210), + [anon_sym_BSLASHtextcite] = ACTIONS(5210), + [anon_sym_BSLASHTextcite] = ACTIONS(5210), + [anon_sym_BSLASHsmartcite] = ACTIONS(5210), + [anon_sym_BSLASHSmartcite] = ACTIONS(5210), + [anon_sym_BSLASHsupercite] = ACTIONS(5210), + [anon_sym_BSLASHautocite] = ACTIONS(5210), + [anon_sym_BSLASHAutocite] = ACTIONS(5210), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHvolcite] = ACTIONS(5210), + [anon_sym_BSLASHVolcite] = ACTIONS(5210), + [anon_sym_BSLASHpvolcite] = ACTIONS(5210), + [anon_sym_BSLASHPvolcite] = ACTIONS(5210), + [anon_sym_BSLASHfvolcite] = ACTIONS(5210), + [anon_sym_BSLASHftvolcite] = ACTIONS(5210), + [anon_sym_BSLASHsvolcite] = ACTIONS(5210), + [anon_sym_BSLASHSvolcite] = ACTIONS(5210), + [anon_sym_BSLASHtvolcite] = ACTIONS(5210), + [anon_sym_BSLASHTvolcite] = ACTIONS(5210), + [anon_sym_BSLASHavolcite] = ACTIONS(5210), + [anon_sym_BSLASHAvolcite] = ACTIONS(5210), + [anon_sym_BSLASHnotecite] = ACTIONS(5210), + [anon_sym_BSLASHNotecite] = ACTIONS(5210), + [anon_sym_BSLASHpnotecite] = ACTIONS(5210), + [anon_sym_BSLASHPnotecite] = ACTIONS(5210), + [anon_sym_BSLASHfnotecite] = ACTIONS(5210), + [anon_sym_BSLASHlabel] = ACTIONS(5210), + [anon_sym_BSLASHref] = ACTIONS(5210), + [anon_sym_BSLASHeqref] = ACTIONS(5210), + [anon_sym_BSLASHvref] = ACTIONS(5210), + [anon_sym_BSLASHVref] = ACTIONS(5210), + [anon_sym_BSLASHautoref] = ACTIONS(5210), + [anon_sym_BSLASHpageref] = ACTIONS(5210), + [anon_sym_BSLASHcref] = ACTIONS(5210), + [anon_sym_BSLASHCref] = ACTIONS(5210), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnameCref] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHlabelcref] = ACTIONS(5210), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCrefrange] = ACTIONS(5210), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnewlabel] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdef] = ACTIONS(5210), + [anon_sym_BSLASHlet] = ACTIONS(5210), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5210), + [anon_sym_BSLASHgls] = ACTIONS(5210), + [anon_sym_BSLASHGls] = ACTIONS(5210), + [anon_sym_BSLASHGLS] = ACTIONS(5210), + [anon_sym_BSLASHglspl] = ACTIONS(5210), + [anon_sym_BSLASHGlspl] = ACTIONS(5210), + [anon_sym_BSLASHGLSpl] = ACTIONS(5210), + [anon_sym_BSLASHglsdisp] = ACTIONS(5210), + [anon_sym_BSLASHglslink] = ACTIONS(5210), + [anon_sym_BSLASHglstext] = ACTIONS(5210), + [anon_sym_BSLASHGlstext] = ACTIONS(5210), + [anon_sym_BSLASHGLStext] = ACTIONS(5210), + [anon_sym_BSLASHglsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5210), + [anon_sym_BSLASHglsplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSplural] = ACTIONS(5210), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHglsname] = ACTIONS(5210), + [anon_sym_BSLASHGlsname] = ACTIONS(5210), + [anon_sym_BSLASHGLSname] = ACTIONS(5210), + [anon_sym_BSLASHglssymbol] = ACTIONS(5210), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5210), + [anon_sym_BSLASHglsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5210), + [anon_sym_BSLASHglsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5210), + [anon_sym_BSLASHglsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5210), + [anon_sym_BSLASHglsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5210), + [anon_sym_BSLASHglsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5210), + [anon_sym_BSLASHnewacronym] = ACTIONS(5210), + [anon_sym_BSLASHacrshort] = ACTIONS(5210), + [anon_sym_BSLASHAcrshort] = ACTIONS(5210), + [anon_sym_BSLASHACRshort] = ACTIONS(5210), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5210), + [anon_sym_BSLASHacrlong] = ACTIONS(5210), + [anon_sym_BSLASHAcrlong] = ACTIONS(5210), + [anon_sym_BSLASHACRlong] = ACTIONS(5210), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5210), + [anon_sym_BSLASHacrfull] = ACTIONS(5210), + [anon_sym_BSLASHAcrfull] = ACTIONS(5210), + [anon_sym_BSLASHACRfull] = ACTIONS(5210), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5210), + [anon_sym_BSLASHacs] = ACTIONS(5210), + [anon_sym_BSLASHAcs] = ACTIONS(5210), + [anon_sym_BSLASHacsp] = ACTIONS(5210), + [anon_sym_BSLASHAcsp] = ACTIONS(5210), + [anon_sym_BSLASHacl] = ACTIONS(5210), + [anon_sym_BSLASHAcl] = ACTIONS(5210), + [anon_sym_BSLASHaclp] = ACTIONS(5210), + [anon_sym_BSLASHAclp] = ACTIONS(5210), + [anon_sym_BSLASHacf] = ACTIONS(5210), + [anon_sym_BSLASHAcf] = ACTIONS(5210), + [anon_sym_BSLASHacfp] = ACTIONS(5210), + [anon_sym_BSLASHAcfp] = ACTIONS(5210), + [anon_sym_BSLASHac] = ACTIONS(5210), + [anon_sym_BSLASHAc] = ACTIONS(5210), + [anon_sym_BSLASHacp] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5210), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5210), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5210), + [anon_sym_BSLASHcolor] = ACTIONS(5210), + [anon_sym_BSLASHcolorbox] = ACTIONS(5210), + [anon_sym_BSLASHtextcolor] = ACTIONS(5210), + [anon_sym_BSLASHpagecolor] = ACTIONS(5210), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5210), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5210), + [anon_sym_BSLASHtext] = ACTIONS(5210), + [anon_sym_BSLASHintertext] = ACTIONS(5210), + [anon_sym_shortintertext] = ACTIONS(5210), }, [1074] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_BSLASHpart] = ACTIONS(4887), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddpart] = ACTIONS(4887), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHchapter] = ACTIONS(4887), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddchap] = ACTIONS(4887), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsection] = ACTIONS(4887), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddsec] = ACTIONS(4887), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHparagraph] = ACTIONS(4887), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHitem] = ACTIONS(4887), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASHbegin] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BSLASHpart] = ACTIONS(4966), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddpart] = ACTIONS(4966), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHchapter] = ACTIONS(4966), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddchap] = ACTIONS(4966), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsection] = ACTIONS(4966), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddsec] = ACTIONS(4966), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHparagraph] = ACTIONS(4966), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4966), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHitem] = ACTIONS(4966), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASHbegin] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [1075] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5105), - [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), + [sym_command_name] = ACTIONS(5184), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_BSLASHpart] = ACTIONS(5184), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddpart] = ACTIONS(5184), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHchapter] = ACTIONS(5184), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddchap] = ACTIONS(5184), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsection] = ACTIONS(5184), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddsec] = ACTIONS(5184), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHparagraph] = ACTIONS(5184), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5184), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHitem] = ACTIONS(5184), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [sym_word] = ACTIONS(5184), + [sym_placeholder] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym__] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5182), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5182), + [anon_sym_BSLASHbegin] = ACTIONS(5184), + [anon_sym_BSLASHusepackage] = ACTIONS(5184), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5184), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5184), + [anon_sym_BSLASHinclude] = ACTIONS(5184), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5184), + [anon_sym_BSLASHinput] = ACTIONS(5184), + [anon_sym_BSLASHsubfile] = ACTIONS(5184), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5184), + [anon_sym_BSLASHbibliography] = ACTIONS(5184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5184), + [anon_sym_BSLASHincludesvg] = ACTIONS(5184), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5184), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5184), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5184), + [anon_sym_BSLASHimport] = ACTIONS(5184), + [anon_sym_BSLASHsubimport] = ACTIONS(5184), + [anon_sym_BSLASHinputfrom] = ACTIONS(5184), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5184), + [anon_sym_BSLASHincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHcaption] = ACTIONS(5184), + [anon_sym_BSLASHcite] = ACTIONS(5184), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCite] = ACTIONS(5184), + [anon_sym_BSLASHnocite] = ACTIONS(5184), + [anon_sym_BSLASHcitet] = ACTIONS(5184), + [anon_sym_BSLASHcitep] = ACTIONS(5184), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteauthor] = ACTIONS(5184), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5184), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitetitle] = ACTIONS(5184), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteyear] = ACTIONS(5184), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitedate] = ACTIONS(5184), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteurl] = ACTIONS(5184), + [anon_sym_BSLASHfullcite] = ACTIONS(5184), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5184), + [anon_sym_BSLASHcitealt] = ACTIONS(5184), + [anon_sym_BSLASHcitealp] = ACTIONS(5184), + [anon_sym_BSLASHcitetext] = ACTIONS(5184), + [anon_sym_BSLASHparencite] = ACTIONS(5184), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHParencite] = ACTIONS(5184), + [anon_sym_BSLASHfootcite] = ACTIONS(5184), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5184), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5184), + [anon_sym_BSLASHtextcite] = ACTIONS(5184), + [anon_sym_BSLASHTextcite] = ACTIONS(5184), + [anon_sym_BSLASHsmartcite] = ACTIONS(5184), + [anon_sym_BSLASHSmartcite] = ACTIONS(5184), + [anon_sym_BSLASHsupercite] = ACTIONS(5184), + [anon_sym_BSLASHautocite] = ACTIONS(5184), + [anon_sym_BSLASHAutocite] = ACTIONS(5184), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHvolcite] = ACTIONS(5184), + [anon_sym_BSLASHVolcite] = ACTIONS(5184), + [anon_sym_BSLASHpvolcite] = ACTIONS(5184), + [anon_sym_BSLASHPvolcite] = ACTIONS(5184), + [anon_sym_BSLASHfvolcite] = ACTIONS(5184), + [anon_sym_BSLASHftvolcite] = ACTIONS(5184), + [anon_sym_BSLASHsvolcite] = ACTIONS(5184), + [anon_sym_BSLASHSvolcite] = ACTIONS(5184), + [anon_sym_BSLASHtvolcite] = ACTIONS(5184), + [anon_sym_BSLASHTvolcite] = ACTIONS(5184), + [anon_sym_BSLASHavolcite] = ACTIONS(5184), + [anon_sym_BSLASHAvolcite] = ACTIONS(5184), + [anon_sym_BSLASHnotecite] = ACTIONS(5184), + [anon_sym_BSLASHNotecite] = ACTIONS(5184), + [anon_sym_BSLASHpnotecite] = ACTIONS(5184), + [anon_sym_BSLASHPnotecite] = ACTIONS(5184), + [anon_sym_BSLASHfnotecite] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5184), + [anon_sym_BSLASHref] = ACTIONS(5184), + [anon_sym_BSLASHeqref] = ACTIONS(5184), + [anon_sym_BSLASHvref] = ACTIONS(5184), + [anon_sym_BSLASHVref] = ACTIONS(5184), + [anon_sym_BSLASHautoref] = ACTIONS(5184), + [anon_sym_BSLASHpageref] = ACTIONS(5184), + [anon_sym_BSLASHcref] = ACTIONS(5184), + [anon_sym_BSLASHCref] = ACTIONS(5184), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnameCref] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHlabelcref] = ACTIONS(5184), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCrefrange] = ACTIONS(5184), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnewlabel] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5184), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5184), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5184), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdef] = ACTIONS(5184), + [anon_sym_BSLASHlet] = ACTIONS(5184), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5184), + [anon_sym_BSLASHgls] = ACTIONS(5184), + [anon_sym_BSLASHGls] = ACTIONS(5184), + [anon_sym_BSLASHGLS] = ACTIONS(5184), + [anon_sym_BSLASHglspl] = ACTIONS(5184), + [anon_sym_BSLASHGlspl] = ACTIONS(5184), + [anon_sym_BSLASHGLSpl] = ACTIONS(5184), + [anon_sym_BSLASHglsdisp] = ACTIONS(5184), + [anon_sym_BSLASHglslink] = ACTIONS(5184), + [anon_sym_BSLASHglstext] = ACTIONS(5184), + [anon_sym_BSLASHGlstext] = ACTIONS(5184), + [anon_sym_BSLASHGLStext] = ACTIONS(5184), + [anon_sym_BSLASHglsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5184), + [anon_sym_BSLASHglsplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSplural] = ACTIONS(5184), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHglsname] = ACTIONS(5184), + [anon_sym_BSLASHGlsname] = ACTIONS(5184), + [anon_sym_BSLASHGLSname] = ACTIONS(5184), + [anon_sym_BSLASHglssymbol] = ACTIONS(5184), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5184), + [anon_sym_BSLASHglsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5184), + [anon_sym_BSLASHglsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5184), + [anon_sym_BSLASHglsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5184), + [anon_sym_BSLASHglsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5184), + [anon_sym_BSLASHglsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5184), + [anon_sym_BSLASHnewacronym] = ACTIONS(5184), + [anon_sym_BSLASHacrshort] = ACTIONS(5184), + [anon_sym_BSLASHAcrshort] = ACTIONS(5184), + [anon_sym_BSLASHACRshort] = ACTIONS(5184), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5184), + [anon_sym_BSLASHacrlong] = ACTIONS(5184), + [anon_sym_BSLASHAcrlong] = ACTIONS(5184), + [anon_sym_BSLASHACRlong] = ACTIONS(5184), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5184), + [anon_sym_BSLASHacrfull] = ACTIONS(5184), + [anon_sym_BSLASHAcrfull] = ACTIONS(5184), + [anon_sym_BSLASHACRfull] = ACTIONS(5184), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5184), + [anon_sym_BSLASHacs] = ACTIONS(5184), + [anon_sym_BSLASHAcs] = ACTIONS(5184), + [anon_sym_BSLASHacsp] = ACTIONS(5184), + [anon_sym_BSLASHAcsp] = ACTIONS(5184), + [anon_sym_BSLASHacl] = ACTIONS(5184), + [anon_sym_BSLASHAcl] = ACTIONS(5184), + [anon_sym_BSLASHaclp] = ACTIONS(5184), + [anon_sym_BSLASHAclp] = ACTIONS(5184), + [anon_sym_BSLASHacf] = ACTIONS(5184), + [anon_sym_BSLASHAcf] = ACTIONS(5184), + [anon_sym_BSLASHacfp] = ACTIONS(5184), + [anon_sym_BSLASHAcfp] = ACTIONS(5184), + [anon_sym_BSLASHac] = ACTIONS(5184), + [anon_sym_BSLASHAc] = ACTIONS(5184), + [anon_sym_BSLASHacp] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5184), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5184), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5184), + [anon_sym_BSLASHcolor] = ACTIONS(5184), + [anon_sym_BSLASHcolorbox] = ACTIONS(5184), + [anon_sym_BSLASHtextcolor] = ACTIONS(5184), + [anon_sym_BSLASHpagecolor] = ACTIONS(5184), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5184), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5184), + [anon_sym_BSLASHtext] = ACTIONS(5184), + [anon_sym_BSLASHintertext] = ACTIONS(5184), + [anon_sym_shortintertext] = ACTIONS(5184), }, [1076] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5101), - [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), + [sym_command_name] = ACTIONS(5180), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_BSLASHpart] = ACTIONS(5180), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddpart] = ACTIONS(5180), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHchapter] = ACTIONS(5180), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddchap] = ACTIONS(5180), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsection] = ACTIONS(5180), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddsec] = ACTIONS(5180), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHparagraph] = ACTIONS(5180), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5180), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHitem] = ACTIONS(5180), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5178), + [sym_word] = ACTIONS(5180), + [sym_placeholder] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym__] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_SQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5178), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5178), + [anon_sym_BSLASHbegin] = ACTIONS(5180), + [anon_sym_BSLASHusepackage] = ACTIONS(5180), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5180), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5180), + [anon_sym_BSLASHinclude] = ACTIONS(5180), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5180), + [anon_sym_BSLASHinput] = ACTIONS(5180), + [anon_sym_BSLASHsubfile] = ACTIONS(5180), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5180), + [anon_sym_BSLASHbibliography] = ACTIONS(5180), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5180), + [anon_sym_BSLASHincludesvg] = ACTIONS(5180), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5180), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5180), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5180), + [anon_sym_BSLASHimport] = ACTIONS(5180), + [anon_sym_BSLASHsubimport] = ACTIONS(5180), + [anon_sym_BSLASHinputfrom] = ACTIONS(5180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5180), + [anon_sym_BSLASHincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHcaption] = ACTIONS(5180), + [anon_sym_BSLASHcite] = ACTIONS(5180), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCite] = ACTIONS(5180), + [anon_sym_BSLASHnocite] = ACTIONS(5180), + [anon_sym_BSLASHcitet] = ACTIONS(5180), + [anon_sym_BSLASHcitep] = ACTIONS(5180), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteauthor] = ACTIONS(5180), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5180), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitetitle] = ACTIONS(5180), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteyear] = ACTIONS(5180), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitedate] = ACTIONS(5180), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteurl] = ACTIONS(5180), + [anon_sym_BSLASHfullcite] = ACTIONS(5180), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5180), + [anon_sym_BSLASHcitealt] = ACTIONS(5180), + [anon_sym_BSLASHcitealp] = ACTIONS(5180), + [anon_sym_BSLASHcitetext] = ACTIONS(5180), + [anon_sym_BSLASHparencite] = ACTIONS(5180), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHParencite] = ACTIONS(5180), + [anon_sym_BSLASHfootcite] = ACTIONS(5180), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5180), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5180), + [anon_sym_BSLASHtextcite] = ACTIONS(5180), + [anon_sym_BSLASHTextcite] = ACTIONS(5180), + [anon_sym_BSLASHsmartcite] = ACTIONS(5180), + [anon_sym_BSLASHSmartcite] = ACTIONS(5180), + [anon_sym_BSLASHsupercite] = ACTIONS(5180), + [anon_sym_BSLASHautocite] = ACTIONS(5180), + [anon_sym_BSLASHAutocite] = ACTIONS(5180), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHvolcite] = ACTIONS(5180), + [anon_sym_BSLASHVolcite] = ACTIONS(5180), + [anon_sym_BSLASHpvolcite] = ACTIONS(5180), + [anon_sym_BSLASHPvolcite] = ACTIONS(5180), + [anon_sym_BSLASHfvolcite] = ACTIONS(5180), + [anon_sym_BSLASHftvolcite] = ACTIONS(5180), + [anon_sym_BSLASHsvolcite] = ACTIONS(5180), + [anon_sym_BSLASHSvolcite] = ACTIONS(5180), + [anon_sym_BSLASHtvolcite] = ACTIONS(5180), + [anon_sym_BSLASHTvolcite] = ACTIONS(5180), + [anon_sym_BSLASHavolcite] = ACTIONS(5180), + [anon_sym_BSLASHAvolcite] = ACTIONS(5180), + [anon_sym_BSLASHnotecite] = ACTIONS(5180), + [anon_sym_BSLASHNotecite] = ACTIONS(5180), + [anon_sym_BSLASHpnotecite] = ACTIONS(5180), + [anon_sym_BSLASHPnotecite] = ACTIONS(5180), + [anon_sym_BSLASHfnotecite] = ACTIONS(5180), + [anon_sym_BSLASHlabel] = ACTIONS(5180), + [anon_sym_BSLASHref] = ACTIONS(5180), + [anon_sym_BSLASHeqref] = ACTIONS(5180), + [anon_sym_BSLASHvref] = ACTIONS(5180), + [anon_sym_BSLASHVref] = ACTIONS(5180), + [anon_sym_BSLASHautoref] = ACTIONS(5180), + [anon_sym_BSLASHpageref] = ACTIONS(5180), + [anon_sym_BSLASHcref] = ACTIONS(5180), + [anon_sym_BSLASHCref] = ACTIONS(5180), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnameCref] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHlabelcref] = ACTIONS(5180), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCrefrange] = ACTIONS(5180), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnewlabel] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5180), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5180), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5180), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdef] = ACTIONS(5180), + [anon_sym_BSLASHlet] = ACTIONS(5180), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5180), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5180), + [anon_sym_BSLASHgls] = ACTIONS(5180), + [anon_sym_BSLASHGls] = ACTIONS(5180), + [anon_sym_BSLASHGLS] = ACTIONS(5180), + [anon_sym_BSLASHglspl] = ACTIONS(5180), + [anon_sym_BSLASHGlspl] = ACTIONS(5180), + [anon_sym_BSLASHGLSpl] = ACTIONS(5180), + [anon_sym_BSLASHglsdisp] = ACTIONS(5180), + [anon_sym_BSLASHglslink] = ACTIONS(5180), + [anon_sym_BSLASHglstext] = ACTIONS(5180), + [anon_sym_BSLASHGlstext] = ACTIONS(5180), + [anon_sym_BSLASHGLStext] = ACTIONS(5180), + [anon_sym_BSLASHglsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5180), + [anon_sym_BSLASHglsplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSplural] = ACTIONS(5180), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHglsname] = ACTIONS(5180), + [anon_sym_BSLASHGlsname] = ACTIONS(5180), + [anon_sym_BSLASHGLSname] = ACTIONS(5180), + [anon_sym_BSLASHglssymbol] = ACTIONS(5180), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5180), + [anon_sym_BSLASHglsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5180), + [anon_sym_BSLASHglsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5180), + [anon_sym_BSLASHglsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5180), + [anon_sym_BSLASHglsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5180), + [anon_sym_BSLASHglsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5180), + [anon_sym_BSLASHnewacronym] = ACTIONS(5180), + [anon_sym_BSLASHacrshort] = ACTIONS(5180), + [anon_sym_BSLASHAcrshort] = ACTIONS(5180), + [anon_sym_BSLASHACRshort] = ACTIONS(5180), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5180), + [anon_sym_BSLASHacrlong] = ACTIONS(5180), + [anon_sym_BSLASHAcrlong] = ACTIONS(5180), + [anon_sym_BSLASHACRlong] = ACTIONS(5180), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5180), + [anon_sym_BSLASHacrfull] = ACTIONS(5180), + [anon_sym_BSLASHAcrfull] = ACTIONS(5180), + [anon_sym_BSLASHACRfull] = ACTIONS(5180), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5180), + [anon_sym_BSLASHacs] = ACTIONS(5180), + [anon_sym_BSLASHAcs] = ACTIONS(5180), + [anon_sym_BSLASHacsp] = ACTIONS(5180), + [anon_sym_BSLASHAcsp] = ACTIONS(5180), + [anon_sym_BSLASHacl] = ACTIONS(5180), + [anon_sym_BSLASHAcl] = ACTIONS(5180), + [anon_sym_BSLASHaclp] = ACTIONS(5180), + [anon_sym_BSLASHAclp] = ACTIONS(5180), + [anon_sym_BSLASHacf] = ACTIONS(5180), + [anon_sym_BSLASHAcf] = ACTIONS(5180), + [anon_sym_BSLASHacfp] = ACTIONS(5180), + [anon_sym_BSLASHAcfp] = ACTIONS(5180), + [anon_sym_BSLASHac] = ACTIONS(5180), + [anon_sym_BSLASHAc] = ACTIONS(5180), + [anon_sym_BSLASHacp] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5180), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5180), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5180), + [anon_sym_BSLASHcolor] = ACTIONS(5180), + [anon_sym_BSLASHcolorbox] = ACTIONS(5180), + [anon_sym_BSLASHtextcolor] = ACTIONS(5180), + [anon_sym_BSLASHpagecolor] = ACTIONS(5180), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5180), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5180), + [anon_sym_BSLASHtext] = ACTIONS(5180), + [anon_sym_BSLASHintertext] = ACTIONS(5180), + [anon_sym_shortintertext] = ACTIONS(5180), }, [1077] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5097), - [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), + [sym_command_name] = ACTIONS(5176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_BSLASHpart] = ACTIONS(5176), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddpart] = ACTIONS(5176), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHchapter] = ACTIONS(5176), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddchap] = ACTIONS(5176), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsection] = ACTIONS(5176), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddsec] = ACTIONS(5176), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHparagraph] = ACTIONS(5176), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5176), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHitem] = ACTIONS(5176), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5174), + [sym_word] = ACTIONS(5176), + [sym_placeholder] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym__] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_SQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5174), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5176), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5174), + [anon_sym_BSLASHbegin] = ACTIONS(5176), + [anon_sym_BSLASHusepackage] = ACTIONS(5176), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5176), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5176), + [anon_sym_BSLASHinclude] = ACTIONS(5176), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5176), + [anon_sym_BSLASHinput] = ACTIONS(5176), + [anon_sym_BSLASHsubfile] = ACTIONS(5176), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5176), + [anon_sym_BSLASHbibliography] = ACTIONS(5176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5176), + [anon_sym_BSLASHincludesvg] = ACTIONS(5176), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5176), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5176), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5176), + [anon_sym_BSLASHimport] = ACTIONS(5176), + [anon_sym_BSLASHsubimport] = ACTIONS(5176), + [anon_sym_BSLASHinputfrom] = ACTIONS(5176), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), + [anon_sym_BSLASHincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHcaption] = ACTIONS(5176), + [anon_sym_BSLASHcite] = ACTIONS(5176), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCite] = ACTIONS(5176), + [anon_sym_BSLASHnocite] = ACTIONS(5176), + [anon_sym_BSLASHcitet] = ACTIONS(5176), + [anon_sym_BSLASHcitep] = ACTIONS(5176), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteauthor] = ACTIONS(5176), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5176), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitetitle] = ACTIONS(5176), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteyear] = ACTIONS(5176), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitedate] = ACTIONS(5176), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteurl] = ACTIONS(5176), + [anon_sym_BSLASHfullcite] = ACTIONS(5176), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5176), + [anon_sym_BSLASHcitealt] = ACTIONS(5176), + [anon_sym_BSLASHcitealp] = ACTIONS(5176), + [anon_sym_BSLASHcitetext] = ACTIONS(5176), + [anon_sym_BSLASHparencite] = ACTIONS(5176), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHParencite] = ACTIONS(5176), + [anon_sym_BSLASHfootcite] = ACTIONS(5176), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5176), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5176), + [anon_sym_BSLASHtextcite] = ACTIONS(5176), + [anon_sym_BSLASHTextcite] = ACTIONS(5176), + [anon_sym_BSLASHsmartcite] = ACTIONS(5176), + [anon_sym_BSLASHSmartcite] = ACTIONS(5176), + [anon_sym_BSLASHsupercite] = ACTIONS(5176), + [anon_sym_BSLASHautocite] = ACTIONS(5176), + [anon_sym_BSLASHAutocite] = ACTIONS(5176), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHvolcite] = ACTIONS(5176), + [anon_sym_BSLASHVolcite] = ACTIONS(5176), + [anon_sym_BSLASHpvolcite] = ACTIONS(5176), + [anon_sym_BSLASHPvolcite] = ACTIONS(5176), + [anon_sym_BSLASHfvolcite] = ACTIONS(5176), + [anon_sym_BSLASHftvolcite] = ACTIONS(5176), + [anon_sym_BSLASHsvolcite] = ACTIONS(5176), + [anon_sym_BSLASHSvolcite] = ACTIONS(5176), + [anon_sym_BSLASHtvolcite] = ACTIONS(5176), + [anon_sym_BSLASHTvolcite] = ACTIONS(5176), + [anon_sym_BSLASHavolcite] = ACTIONS(5176), + [anon_sym_BSLASHAvolcite] = ACTIONS(5176), + [anon_sym_BSLASHnotecite] = ACTIONS(5176), + [anon_sym_BSLASHNotecite] = ACTIONS(5176), + [anon_sym_BSLASHpnotecite] = ACTIONS(5176), + [anon_sym_BSLASHPnotecite] = ACTIONS(5176), + [anon_sym_BSLASHfnotecite] = ACTIONS(5176), + [anon_sym_BSLASHlabel] = ACTIONS(5176), + [anon_sym_BSLASHref] = ACTIONS(5176), + [anon_sym_BSLASHeqref] = ACTIONS(5176), + [anon_sym_BSLASHvref] = ACTIONS(5176), + [anon_sym_BSLASHVref] = ACTIONS(5176), + [anon_sym_BSLASHautoref] = ACTIONS(5176), + [anon_sym_BSLASHpageref] = ACTIONS(5176), + [anon_sym_BSLASHcref] = ACTIONS(5176), + [anon_sym_BSLASHCref] = ACTIONS(5176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnameCref] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHlabelcref] = ACTIONS(5176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCrefrange] = ACTIONS(5176), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnewlabel] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5176), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5176), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5176), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdef] = ACTIONS(5176), + [anon_sym_BSLASHlet] = ACTIONS(5176), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5176), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5176), + [anon_sym_BSLASHgls] = ACTIONS(5176), + [anon_sym_BSLASHGls] = ACTIONS(5176), + [anon_sym_BSLASHGLS] = ACTIONS(5176), + [anon_sym_BSLASHglspl] = ACTIONS(5176), + [anon_sym_BSLASHGlspl] = ACTIONS(5176), + [anon_sym_BSLASHGLSpl] = ACTIONS(5176), + [anon_sym_BSLASHglsdisp] = ACTIONS(5176), + [anon_sym_BSLASHglslink] = ACTIONS(5176), + [anon_sym_BSLASHglstext] = ACTIONS(5176), + [anon_sym_BSLASHGlstext] = ACTIONS(5176), + [anon_sym_BSLASHGLStext] = ACTIONS(5176), + [anon_sym_BSLASHglsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5176), + [anon_sym_BSLASHglsplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSplural] = ACTIONS(5176), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHglsname] = ACTIONS(5176), + [anon_sym_BSLASHGlsname] = ACTIONS(5176), + [anon_sym_BSLASHGLSname] = ACTIONS(5176), + [anon_sym_BSLASHglssymbol] = ACTIONS(5176), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5176), + [anon_sym_BSLASHglsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5176), + [anon_sym_BSLASHglsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5176), + [anon_sym_BSLASHglsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5176), + [anon_sym_BSLASHglsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5176), + [anon_sym_BSLASHglsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5176), + [anon_sym_BSLASHnewacronym] = ACTIONS(5176), + [anon_sym_BSLASHacrshort] = ACTIONS(5176), + [anon_sym_BSLASHAcrshort] = ACTIONS(5176), + [anon_sym_BSLASHACRshort] = ACTIONS(5176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5176), + [anon_sym_BSLASHacrlong] = ACTIONS(5176), + [anon_sym_BSLASHAcrlong] = ACTIONS(5176), + [anon_sym_BSLASHACRlong] = ACTIONS(5176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5176), + [anon_sym_BSLASHacrfull] = ACTIONS(5176), + [anon_sym_BSLASHAcrfull] = ACTIONS(5176), + [anon_sym_BSLASHACRfull] = ACTIONS(5176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5176), + [anon_sym_BSLASHacs] = ACTIONS(5176), + [anon_sym_BSLASHAcs] = ACTIONS(5176), + [anon_sym_BSLASHacsp] = ACTIONS(5176), + [anon_sym_BSLASHAcsp] = ACTIONS(5176), + [anon_sym_BSLASHacl] = ACTIONS(5176), + [anon_sym_BSLASHAcl] = ACTIONS(5176), + [anon_sym_BSLASHaclp] = ACTIONS(5176), + [anon_sym_BSLASHAclp] = ACTIONS(5176), + [anon_sym_BSLASHacf] = ACTIONS(5176), + [anon_sym_BSLASHAcf] = ACTIONS(5176), + [anon_sym_BSLASHacfp] = ACTIONS(5176), + [anon_sym_BSLASHAcfp] = ACTIONS(5176), + [anon_sym_BSLASHac] = ACTIONS(5176), + [anon_sym_BSLASHAc] = ACTIONS(5176), + [anon_sym_BSLASHacp] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5176), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5176), + [anon_sym_BSLASHcolor] = ACTIONS(5176), + [anon_sym_BSLASHcolorbox] = ACTIONS(5176), + [anon_sym_BSLASHtextcolor] = ACTIONS(5176), + [anon_sym_BSLASHpagecolor] = ACTIONS(5176), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5176), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5176), + [anon_sym_BSLASHtext] = ACTIONS(5176), + [anon_sym_BSLASHintertext] = ACTIONS(5176), + [anon_sym_shortintertext] = ACTIONS(5176), }, [1078] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5093), - [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), + [sym_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_BSLASHpart] = ACTIONS(5172), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddpart] = ACTIONS(5172), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHchapter] = ACTIONS(5172), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddchap] = ACTIONS(5172), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsection] = ACTIONS(5172), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddsec] = ACTIONS(5172), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHparagraph] = ACTIONS(5172), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5172), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHitem] = ACTIONS(5172), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [sym_word] = ACTIONS(5172), + [sym_placeholder] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym__] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5172), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_SQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5170), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5170), + [anon_sym_BSLASHbegin] = ACTIONS(5172), + [anon_sym_BSLASHusepackage] = ACTIONS(5172), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5172), + [anon_sym_BSLASHinclude] = ACTIONS(5172), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5172), + [anon_sym_BSLASHinput] = ACTIONS(5172), + [anon_sym_BSLASHsubfile] = ACTIONS(5172), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5172), + [anon_sym_BSLASHbibliography] = ACTIONS(5172), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5172), + [anon_sym_BSLASHincludesvg] = ACTIONS(5172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5172), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5172), + [anon_sym_BSLASHimport] = ACTIONS(5172), + [anon_sym_BSLASHsubimport] = ACTIONS(5172), + [anon_sym_BSLASHinputfrom] = ACTIONS(5172), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5172), + [anon_sym_BSLASHincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHcaption] = ACTIONS(5172), + [anon_sym_BSLASHcite] = ACTIONS(5172), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCite] = ACTIONS(5172), + [anon_sym_BSLASHnocite] = ACTIONS(5172), + [anon_sym_BSLASHcitet] = ACTIONS(5172), + [anon_sym_BSLASHcitep] = ACTIONS(5172), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteauthor] = ACTIONS(5172), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5172), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitetitle] = ACTIONS(5172), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteyear] = ACTIONS(5172), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitedate] = ACTIONS(5172), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteurl] = ACTIONS(5172), + [anon_sym_BSLASHfullcite] = ACTIONS(5172), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5172), + [anon_sym_BSLASHcitealt] = ACTIONS(5172), + [anon_sym_BSLASHcitealp] = ACTIONS(5172), + [anon_sym_BSLASHcitetext] = ACTIONS(5172), + [anon_sym_BSLASHparencite] = ACTIONS(5172), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHParencite] = ACTIONS(5172), + [anon_sym_BSLASHfootcite] = ACTIONS(5172), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5172), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5172), + [anon_sym_BSLASHtextcite] = ACTIONS(5172), + [anon_sym_BSLASHTextcite] = ACTIONS(5172), + [anon_sym_BSLASHsmartcite] = ACTIONS(5172), + [anon_sym_BSLASHSmartcite] = ACTIONS(5172), + [anon_sym_BSLASHsupercite] = ACTIONS(5172), + [anon_sym_BSLASHautocite] = ACTIONS(5172), + [anon_sym_BSLASHAutocite] = ACTIONS(5172), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHvolcite] = ACTIONS(5172), + [anon_sym_BSLASHVolcite] = ACTIONS(5172), + [anon_sym_BSLASHpvolcite] = ACTIONS(5172), + [anon_sym_BSLASHPvolcite] = ACTIONS(5172), + [anon_sym_BSLASHfvolcite] = ACTIONS(5172), + [anon_sym_BSLASHftvolcite] = ACTIONS(5172), + [anon_sym_BSLASHsvolcite] = ACTIONS(5172), + [anon_sym_BSLASHSvolcite] = ACTIONS(5172), + [anon_sym_BSLASHtvolcite] = ACTIONS(5172), + [anon_sym_BSLASHTvolcite] = ACTIONS(5172), + [anon_sym_BSLASHavolcite] = ACTIONS(5172), + [anon_sym_BSLASHAvolcite] = ACTIONS(5172), + [anon_sym_BSLASHnotecite] = ACTIONS(5172), + [anon_sym_BSLASHNotecite] = ACTIONS(5172), + [anon_sym_BSLASHpnotecite] = ACTIONS(5172), + [anon_sym_BSLASHPnotecite] = ACTIONS(5172), + [anon_sym_BSLASHfnotecite] = ACTIONS(5172), + [anon_sym_BSLASHlabel] = ACTIONS(5172), + [anon_sym_BSLASHref] = ACTIONS(5172), + [anon_sym_BSLASHeqref] = ACTIONS(5172), + [anon_sym_BSLASHvref] = ACTIONS(5172), + [anon_sym_BSLASHVref] = ACTIONS(5172), + [anon_sym_BSLASHautoref] = ACTIONS(5172), + [anon_sym_BSLASHpageref] = ACTIONS(5172), + [anon_sym_BSLASHcref] = ACTIONS(5172), + [anon_sym_BSLASHCref] = ACTIONS(5172), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnameCref] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHlabelcref] = ACTIONS(5172), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCrefrange] = ACTIONS(5172), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnewlabel] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5172), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5172), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5172), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdef] = ACTIONS(5172), + [anon_sym_BSLASHlet] = ACTIONS(5172), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5172), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5172), + [anon_sym_BSLASHgls] = ACTIONS(5172), + [anon_sym_BSLASHGls] = ACTIONS(5172), + [anon_sym_BSLASHGLS] = ACTIONS(5172), + [anon_sym_BSLASHglspl] = ACTIONS(5172), + [anon_sym_BSLASHGlspl] = ACTIONS(5172), + [anon_sym_BSLASHGLSpl] = ACTIONS(5172), + [anon_sym_BSLASHglsdisp] = ACTIONS(5172), + [anon_sym_BSLASHglslink] = ACTIONS(5172), + [anon_sym_BSLASHglstext] = ACTIONS(5172), + [anon_sym_BSLASHGlstext] = ACTIONS(5172), + [anon_sym_BSLASHGLStext] = ACTIONS(5172), + [anon_sym_BSLASHglsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5172), + [anon_sym_BSLASHglsplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSplural] = ACTIONS(5172), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHglsname] = ACTIONS(5172), + [anon_sym_BSLASHGlsname] = ACTIONS(5172), + [anon_sym_BSLASHGLSname] = ACTIONS(5172), + [anon_sym_BSLASHglssymbol] = ACTIONS(5172), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5172), + [anon_sym_BSLASHglsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5172), + [anon_sym_BSLASHglsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5172), + [anon_sym_BSLASHglsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5172), + [anon_sym_BSLASHglsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5172), + [anon_sym_BSLASHglsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5172), + [anon_sym_BSLASHnewacronym] = ACTIONS(5172), + [anon_sym_BSLASHacrshort] = ACTIONS(5172), + [anon_sym_BSLASHAcrshort] = ACTIONS(5172), + [anon_sym_BSLASHACRshort] = ACTIONS(5172), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5172), + [anon_sym_BSLASHacrlong] = ACTIONS(5172), + [anon_sym_BSLASHAcrlong] = ACTIONS(5172), + [anon_sym_BSLASHACRlong] = ACTIONS(5172), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5172), + [anon_sym_BSLASHacrfull] = ACTIONS(5172), + [anon_sym_BSLASHAcrfull] = ACTIONS(5172), + [anon_sym_BSLASHACRfull] = ACTIONS(5172), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5172), + [anon_sym_BSLASHacs] = ACTIONS(5172), + [anon_sym_BSLASHAcs] = ACTIONS(5172), + [anon_sym_BSLASHacsp] = ACTIONS(5172), + [anon_sym_BSLASHAcsp] = ACTIONS(5172), + [anon_sym_BSLASHacl] = ACTIONS(5172), + [anon_sym_BSLASHAcl] = ACTIONS(5172), + [anon_sym_BSLASHaclp] = ACTIONS(5172), + [anon_sym_BSLASHAclp] = ACTIONS(5172), + [anon_sym_BSLASHacf] = ACTIONS(5172), + [anon_sym_BSLASHAcf] = ACTIONS(5172), + [anon_sym_BSLASHacfp] = ACTIONS(5172), + [anon_sym_BSLASHAcfp] = ACTIONS(5172), + [anon_sym_BSLASHac] = ACTIONS(5172), + [anon_sym_BSLASHAc] = ACTIONS(5172), + [anon_sym_BSLASHacp] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5172), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5172), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5172), + [anon_sym_BSLASHcolor] = ACTIONS(5172), + [anon_sym_BSLASHcolorbox] = ACTIONS(5172), + [anon_sym_BSLASHtextcolor] = ACTIONS(5172), + [anon_sym_BSLASHpagecolor] = ACTIONS(5172), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5172), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5172), + [anon_sym_BSLASHtext] = ACTIONS(5172), + [anon_sym_BSLASHintertext] = ACTIONS(5172), + [anon_sym_shortintertext] = ACTIONS(5172), }, [1079] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5089), - [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), + [sym_command_name] = ACTIONS(5168), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_BSLASHpart] = ACTIONS(5168), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddpart] = ACTIONS(5168), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHchapter] = ACTIONS(5168), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddchap] = ACTIONS(5168), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsection] = ACTIONS(5168), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddsec] = ACTIONS(5168), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHparagraph] = ACTIONS(5168), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5168), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHitem] = ACTIONS(5168), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [sym_word] = ACTIONS(5168), + [sym_placeholder] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym__] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_SQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5166), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(5168), + [anon_sym_BSLASHusepackage] = ACTIONS(5168), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5168), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5168), + [anon_sym_BSLASHinclude] = ACTIONS(5168), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5168), + [anon_sym_BSLASHinput] = ACTIONS(5168), + [anon_sym_BSLASHsubfile] = ACTIONS(5168), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5168), + [anon_sym_BSLASHbibliography] = ACTIONS(5168), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5168), + [anon_sym_BSLASHincludesvg] = ACTIONS(5168), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5168), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5168), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5168), + [anon_sym_BSLASHimport] = ACTIONS(5168), + [anon_sym_BSLASHsubimport] = ACTIONS(5168), + [anon_sym_BSLASHinputfrom] = ACTIONS(5168), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5168), + [anon_sym_BSLASHincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(5168), + [anon_sym_BSLASHcite] = ACTIONS(5168), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCite] = ACTIONS(5168), + [anon_sym_BSLASHnocite] = ACTIONS(5168), + [anon_sym_BSLASHcitet] = ACTIONS(5168), + [anon_sym_BSLASHcitep] = ACTIONS(5168), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteauthor] = ACTIONS(5168), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5168), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitetitle] = ACTIONS(5168), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteyear] = ACTIONS(5168), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitedate] = ACTIONS(5168), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteurl] = ACTIONS(5168), + [anon_sym_BSLASHfullcite] = ACTIONS(5168), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5168), + [anon_sym_BSLASHcitealt] = ACTIONS(5168), + [anon_sym_BSLASHcitealp] = ACTIONS(5168), + [anon_sym_BSLASHcitetext] = ACTIONS(5168), + [anon_sym_BSLASHparencite] = ACTIONS(5168), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHParencite] = ACTIONS(5168), + [anon_sym_BSLASHfootcite] = ACTIONS(5168), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5168), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5168), + [anon_sym_BSLASHtextcite] = ACTIONS(5168), + [anon_sym_BSLASHTextcite] = ACTIONS(5168), + [anon_sym_BSLASHsmartcite] = ACTIONS(5168), + [anon_sym_BSLASHSmartcite] = ACTIONS(5168), + [anon_sym_BSLASHsupercite] = ACTIONS(5168), + [anon_sym_BSLASHautocite] = ACTIONS(5168), + [anon_sym_BSLASHAutocite] = ACTIONS(5168), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHvolcite] = ACTIONS(5168), + [anon_sym_BSLASHVolcite] = ACTIONS(5168), + [anon_sym_BSLASHpvolcite] = ACTIONS(5168), + [anon_sym_BSLASHPvolcite] = ACTIONS(5168), + [anon_sym_BSLASHfvolcite] = ACTIONS(5168), + [anon_sym_BSLASHftvolcite] = ACTIONS(5168), + [anon_sym_BSLASHsvolcite] = ACTIONS(5168), + [anon_sym_BSLASHSvolcite] = ACTIONS(5168), + [anon_sym_BSLASHtvolcite] = ACTIONS(5168), + [anon_sym_BSLASHTvolcite] = ACTIONS(5168), + [anon_sym_BSLASHavolcite] = ACTIONS(5168), + [anon_sym_BSLASHAvolcite] = ACTIONS(5168), + [anon_sym_BSLASHnotecite] = ACTIONS(5168), + [anon_sym_BSLASHNotecite] = ACTIONS(5168), + [anon_sym_BSLASHpnotecite] = ACTIONS(5168), + [anon_sym_BSLASHPnotecite] = ACTIONS(5168), + [anon_sym_BSLASHfnotecite] = ACTIONS(5168), + [anon_sym_BSLASHlabel] = ACTIONS(5168), + [anon_sym_BSLASHref] = ACTIONS(5168), + [anon_sym_BSLASHeqref] = ACTIONS(5168), + [anon_sym_BSLASHvref] = ACTIONS(5168), + [anon_sym_BSLASHVref] = ACTIONS(5168), + [anon_sym_BSLASHautoref] = ACTIONS(5168), + [anon_sym_BSLASHpageref] = ACTIONS(5168), + [anon_sym_BSLASHcref] = ACTIONS(5168), + [anon_sym_BSLASHCref] = ACTIONS(5168), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnameCref] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHlabelcref] = ACTIONS(5168), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCrefrange] = ACTIONS(5168), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnewlabel] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5168), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5168), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5168), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdef] = ACTIONS(5168), + [anon_sym_BSLASHlet] = ACTIONS(5168), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5168), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5168), + [anon_sym_BSLASHgls] = ACTIONS(5168), + [anon_sym_BSLASHGls] = ACTIONS(5168), + [anon_sym_BSLASHGLS] = ACTIONS(5168), + [anon_sym_BSLASHglspl] = ACTIONS(5168), + [anon_sym_BSLASHGlspl] = ACTIONS(5168), + [anon_sym_BSLASHGLSpl] = ACTIONS(5168), + [anon_sym_BSLASHglsdisp] = ACTIONS(5168), + [anon_sym_BSLASHglslink] = ACTIONS(5168), + [anon_sym_BSLASHglstext] = ACTIONS(5168), + [anon_sym_BSLASHGlstext] = ACTIONS(5168), + [anon_sym_BSLASHGLStext] = ACTIONS(5168), + [anon_sym_BSLASHglsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5168), + [anon_sym_BSLASHglsplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSplural] = ACTIONS(5168), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHglsname] = ACTIONS(5168), + [anon_sym_BSLASHGlsname] = ACTIONS(5168), + [anon_sym_BSLASHGLSname] = ACTIONS(5168), + [anon_sym_BSLASHglssymbol] = ACTIONS(5168), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5168), + [anon_sym_BSLASHglsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5168), + [anon_sym_BSLASHglsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5168), + [anon_sym_BSLASHglsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5168), + [anon_sym_BSLASHglsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5168), + [anon_sym_BSLASHglsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5168), + [anon_sym_BSLASHnewacronym] = ACTIONS(5168), + [anon_sym_BSLASHacrshort] = ACTIONS(5168), + [anon_sym_BSLASHAcrshort] = ACTIONS(5168), + [anon_sym_BSLASHACRshort] = ACTIONS(5168), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5168), + [anon_sym_BSLASHacrlong] = ACTIONS(5168), + [anon_sym_BSLASHAcrlong] = ACTIONS(5168), + [anon_sym_BSLASHACRlong] = ACTIONS(5168), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5168), + [anon_sym_BSLASHacrfull] = ACTIONS(5168), + [anon_sym_BSLASHAcrfull] = ACTIONS(5168), + [anon_sym_BSLASHACRfull] = ACTIONS(5168), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5168), + [anon_sym_BSLASHacs] = ACTIONS(5168), + [anon_sym_BSLASHAcs] = ACTIONS(5168), + [anon_sym_BSLASHacsp] = ACTIONS(5168), + [anon_sym_BSLASHAcsp] = ACTIONS(5168), + [anon_sym_BSLASHacl] = ACTIONS(5168), + [anon_sym_BSLASHAcl] = ACTIONS(5168), + [anon_sym_BSLASHaclp] = ACTIONS(5168), + [anon_sym_BSLASHAclp] = ACTIONS(5168), + [anon_sym_BSLASHacf] = ACTIONS(5168), + [anon_sym_BSLASHAcf] = ACTIONS(5168), + [anon_sym_BSLASHacfp] = ACTIONS(5168), + [anon_sym_BSLASHAcfp] = ACTIONS(5168), + [anon_sym_BSLASHac] = ACTIONS(5168), + [anon_sym_BSLASHAc] = ACTIONS(5168), + [anon_sym_BSLASHacp] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5168), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5168), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5168), + [anon_sym_BSLASHcolor] = ACTIONS(5168), + [anon_sym_BSLASHcolorbox] = ACTIONS(5168), + [anon_sym_BSLASHtextcolor] = ACTIONS(5168), + [anon_sym_BSLASHpagecolor] = ACTIONS(5168), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5168), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5168), + [anon_sym_BSLASHtext] = ACTIONS(5168), + [anon_sym_BSLASHintertext] = ACTIONS(5168), + [anon_sym_shortintertext] = ACTIONS(5168), }, [1080] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5085), - [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), + [sym_command_name] = ACTIONS(5164), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_BSLASHpart] = ACTIONS(5164), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddpart] = ACTIONS(5164), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHchapter] = ACTIONS(5164), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddchap] = ACTIONS(5164), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsection] = ACTIONS(5164), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddsec] = ACTIONS(5164), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHparagraph] = ACTIONS(5164), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5164), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHitem] = ACTIONS(5164), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [sym_word] = ACTIONS(5164), + [sym_placeholder] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym__] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_SQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5162), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5162), + [anon_sym_BSLASHbegin] = ACTIONS(5164), + [anon_sym_BSLASHusepackage] = ACTIONS(5164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5164), + [anon_sym_BSLASHinclude] = ACTIONS(5164), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5164), + [anon_sym_BSLASHinput] = ACTIONS(5164), + [anon_sym_BSLASHsubfile] = ACTIONS(5164), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5164), + [anon_sym_BSLASHbibliography] = ACTIONS(5164), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), + [anon_sym_BSLASHincludesvg] = ACTIONS(5164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5164), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5164), + [anon_sym_BSLASHimport] = ACTIONS(5164), + [anon_sym_BSLASHsubimport] = ACTIONS(5164), + [anon_sym_BSLASHinputfrom] = ACTIONS(5164), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5164), + [anon_sym_BSLASHincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHcaption] = ACTIONS(5164), + [anon_sym_BSLASHcite] = ACTIONS(5164), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCite] = ACTIONS(5164), + [anon_sym_BSLASHnocite] = ACTIONS(5164), + [anon_sym_BSLASHcitet] = ACTIONS(5164), + [anon_sym_BSLASHcitep] = ACTIONS(5164), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteauthor] = ACTIONS(5164), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5164), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitetitle] = ACTIONS(5164), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteyear] = ACTIONS(5164), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitedate] = ACTIONS(5164), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteurl] = ACTIONS(5164), + [anon_sym_BSLASHfullcite] = ACTIONS(5164), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5164), + [anon_sym_BSLASHcitealt] = ACTIONS(5164), + [anon_sym_BSLASHcitealp] = ACTIONS(5164), + [anon_sym_BSLASHcitetext] = ACTIONS(5164), + [anon_sym_BSLASHparencite] = ACTIONS(5164), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHParencite] = ACTIONS(5164), + [anon_sym_BSLASHfootcite] = ACTIONS(5164), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5164), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5164), + [anon_sym_BSLASHtextcite] = ACTIONS(5164), + [anon_sym_BSLASHTextcite] = ACTIONS(5164), + [anon_sym_BSLASHsmartcite] = ACTIONS(5164), + [anon_sym_BSLASHSmartcite] = ACTIONS(5164), + [anon_sym_BSLASHsupercite] = ACTIONS(5164), + [anon_sym_BSLASHautocite] = ACTIONS(5164), + [anon_sym_BSLASHAutocite] = ACTIONS(5164), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHvolcite] = ACTIONS(5164), + [anon_sym_BSLASHVolcite] = ACTIONS(5164), + [anon_sym_BSLASHpvolcite] = ACTIONS(5164), + [anon_sym_BSLASHPvolcite] = ACTIONS(5164), + [anon_sym_BSLASHfvolcite] = ACTIONS(5164), + [anon_sym_BSLASHftvolcite] = ACTIONS(5164), + [anon_sym_BSLASHsvolcite] = ACTIONS(5164), + [anon_sym_BSLASHSvolcite] = ACTIONS(5164), + [anon_sym_BSLASHtvolcite] = ACTIONS(5164), + [anon_sym_BSLASHTvolcite] = ACTIONS(5164), + [anon_sym_BSLASHavolcite] = ACTIONS(5164), + [anon_sym_BSLASHAvolcite] = ACTIONS(5164), + [anon_sym_BSLASHnotecite] = ACTIONS(5164), + [anon_sym_BSLASHNotecite] = ACTIONS(5164), + [anon_sym_BSLASHpnotecite] = ACTIONS(5164), + [anon_sym_BSLASHPnotecite] = ACTIONS(5164), + [anon_sym_BSLASHfnotecite] = ACTIONS(5164), + [anon_sym_BSLASHlabel] = ACTIONS(5164), + [anon_sym_BSLASHref] = ACTIONS(5164), + [anon_sym_BSLASHeqref] = ACTIONS(5164), + [anon_sym_BSLASHvref] = ACTIONS(5164), + [anon_sym_BSLASHVref] = ACTIONS(5164), + [anon_sym_BSLASHautoref] = ACTIONS(5164), + [anon_sym_BSLASHpageref] = ACTIONS(5164), + [anon_sym_BSLASHcref] = ACTIONS(5164), + [anon_sym_BSLASHCref] = ACTIONS(5164), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnameCref] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHlabelcref] = ACTIONS(5164), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCrefrange] = ACTIONS(5164), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnewlabel] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5164), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5164), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5164), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdef] = ACTIONS(5164), + [anon_sym_BSLASHlet] = ACTIONS(5164), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5164), + [anon_sym_BSLASHgls] = ACTIONS(5164), + [anon_sym_BSLASHGls] = ACTIONS(5164), + [anon_sym_BSLASHGLS] = ACTIONS(5164), + [anon_sym_BSLASHglspl] = ACTIONS(5164), + [anon_sym_BSLASHGlspl] = ACTIONS(5164), + [anon_sym_BSLASHGLSpl] = ACTIONS(5164), + [anon_sym_BSLASHglsdisp] = ACTIONS(5164), + [anon_sym_BSLASHglslink] = ACTIONS(5164), + [anon_sym_BSLASHglstext] = ACTIONS(5164), + [anon_sym_BSLASHGlstext] = ACTIONS(5164), + [anon_sym_BSLASHGLStext] = ACTIONS(5164), + [anon_sym_BSLASHglsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5164), + [anon_sym_BSLASHglsplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSplural] = ACTIONS(5164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHglsname] = ACTIONS(5164), + [anon_sym_BSLASHGlsname] = ACTIONS(5164), + [anon_sym_BSLASHGLSname] = ACTIONS(5164), + [anon_sym_BSLASHglssymbol] = ACTIONS(5164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5164), + [anon_sym_BSLASHglsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5164), + [anon_sym_BSLASHglsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5164), + [anon_sym_BSLASHglsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5164), + [anon_sym_BSLASHglsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5164), + [anon_sym_BSLASHglsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5164), + [anon_sym_BSLASHnewacronym] = ACTIONS(5164), + [anon_sym_BSLASHacrshort] = ACTIONS(5164), + [anon_sym_BSLASHAcrshort] = ACTIONS(5164), + [anon_sym_BSLASHACRshort] = ACTIONS(5164), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5164), + [anon_sym_BSLASHacrlong] = ACTIONS(5164), + [anon_sym_BSLASHAcrlong] = ACTIONS(5164), + [anon_sym_BSLASHACRlong] = ACTIONS(5164), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5164), + [anon_sym_BSLASHacrfull] = ACTIONS(5164), + [anon_sym_BSLASHAcrfull] = ACTIONS(5164), + [anon_sym_BSLASHACRfull] = ACTIONS(5164), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5164), + [anon_sym_BSLASHacs] = ACTIONS(5164), + [anon_sym_BSLASHAcs] = ACTIONS(5164), + [anon_sym_BSLASHacsp] = ACTIONS(5164), + [anon_sym_BSLASHAcsp] = ACTIONS(5164), + [anon_sym_BSLASHacl] = ACTIONS(5164), + [anon_sym_BSLASHAcl] = ACTIONS(5164), + [anon_sym_BSLASHaclp] = ACTIONS(5164), + [anon_sym_BSLASHAclp] = ACTIONS(5164), + [anon_sym_BSLASHacf] = ACTIONS(5164), + [anon_sym_BSLASHAcf] = ACTIONS(5164), + [anon_sym_BSLASHacfp] = ACTIONS(5164), + [anon_sym_BSLASHAcfp] = ACTIONS(5164), + [anon_sym_BSLASHac] = ACTIONS(5164), + [anon_sym_BSLASHAc] = ACTIONS(5164), + [anon_sym_BSLASHacp] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5164), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5164), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5164), + [anon_sym_BSLASHcolor] = ACTIONS(5164), + [anon_sym_BSLASHcolorbox] = ACTIONS(5164), + [anon_sym_BSLASHtextcolor] = ACTIONS(5164), + [anon_sym_BSLASHpagecolor] = ACTIONS(5164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5164), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5164), + [anon_sym_BSLASHtext] = ACTIONS(5164), + [anon_sym_BSLASHintertext] = ACTIONS(5164), + [anon_sym_shortintertext] = ACTIONS(5164), }, [1081] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5081), - [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), + [sym_command_name] = ACTIONS(5160), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_BSLASHpart] = ACTIONS(5160), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddpart] = ACTIONS(5160), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHchapter] = ACTIONS(5160), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddchap] = ACTIONS(5160), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsection] = ACTIONS(5160), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddsec] = ACTIONS(5160), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHparagraph] = ACTIONS(5160), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5160), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHitem] = ACTIONS(5160), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [sym_word] = ACTIONS(5160), + [sym_placeholder] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym__] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_SQUOTE] = ACTIONS(5160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5158), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5158), + [anon_sym_BSLASHbegin] = ACTIONS(5160), + [anon_sym_BSLASHusepackage] = ACTIONS(5160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5160), + [anon_sym_BSLASHinclude] = ACTIONS(5160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5160), + [anon_sym_BSLASHinput] = ACTIONS(5160), + [anon_sym_BSLASHsubfile] = ACTIONS(5160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5160), + [anon_sym_BSLASHbibliography] = ACTIONS(5160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5160), + [anon_sym_BSLASHincludesvg] = ACTIONS(5160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5160), + [anon_sym_BSLASHimport] = ACTIONS(5160), + [anon_sym_BSLASHsubimport] = ACTIONS(5160), + [anon_sym_BSLASHinputfrom] = ACTIONS(5160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5160), + [anon_sym_BSLASHincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHcaption] = ACTIONS(5160), + [anon_sym_BSLASHcite] = ACTIONS(5160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCite] = ACTIONS(5160), + [anon_sym_BSLASHnocite] = ACTIONS(5160), + [anon_sym_BSLASHcitet] = ACTIONS(5160), + [anon_sym_BSLASHcitep] = ACTIONS(5160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteauthor] = ACTIONS(5160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitetitle] = ACTIONS(5160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteyear] = ACTIONS(5160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitedate] = ACTIONS(5160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteurl] = ACTIONS(5160), + [anon_sym_BSLASHfullcite] = ACTIONS(5160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5160), + [anon_sym_BSLASHcitealt] = ACTIONS(5160), + [anon_sym_BSLASHcitealp] = ACTIONS(5160), + [anon_sym_BSLASHcitetext] = ACTIONS(5160), + [anon_sym_BSLASHparencite] = ACTIONS(5160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHParencite] = ACTIONS(5160), + [anon_sym_BSLASHfootcite] = ACTIONS(5160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5160), + [anon_sym_BSLASHtextcite] = ACTIONS(5160), + [anon_sym_BSLASHTextcite] = ACTIONS(5160), + [anon_sym_BSLASHsmartcite] = ACTIONS(5160), + [anon_sym_BSLASHSmartcite] = ACTIONS(5160), + [anon_sym_BSLASHsupercite] = ACTIONS(5160), + [anon_sym_BSLASHautocite] = ACTIONS(5160), + [anon_sym_BSLASHAutocite] = ACTIONS(5160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHvolcite] = ACTIONS(5160), + [anon_sym_BSLASHVolcite] = ACTIONS(5160), + [anon_sym_BSLASHpvolcite] = ACTIONS(5160), + [anon_sym_BSLASHPvolcite] = ACTIONS(5160), + [anon_sym_BSLASHfvolcite] = ACTIONS(5160), + [anon_sym_BSLASHftvolcite] = ACTIONS(5160), + [anon_sym_BSLASHsvolcite] = ACTIONS(5160), + [anon_sym_BSLASHSvolcite] = ACTIONS(5160), + [anon_sym_BSLASHtvolcite] = ACTIONS(5160), + [anon_sym_BSLASHTvolcite] = ACTIONS(5160), + [anon_sym_BSLASHavolcite] = ACTIONS(5160), + [anon_sym_BSLASHAvolcite] = ACTIONS(5160), + [anon_sym_BSLASHnotecite] = ACTIONS(5160), + [anon_sym_BSLASHNotecite] = ACTIONS(5160), + [anon_sym_BSLASHpnotecite] = ACTIONS(5160), + [anon_sym_BSLASHPnotecite] = ACTIONS(5160), + [anon_sym_BSLASHfnotecite] = ACTIONS(5160), + [anon_sym_BSLASHlabel] = ACTIONS(5160), + [anon_sym_BSLASHref] = ACTIONS(5160), + [anon_sym_BSLASHeqref] = ACTIONS(5160), + [anon_sym_BSLASHvref] = ACTIONS(5160), + [anon_sym_BSLASHVref] = ACTIONS(5160), + [anon_sym_BSLASHautoref] = ACTIONS(5160), + [anon_sym_BSLASHpageref] = ACTIONS(5160), + [anon_sym_BSLASHcref] = ACTIONS(5160), + [anon_sym_BSLASHCref] = ACTIONS(5160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnameCref] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHlabelcref] = ACTIONS(5160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCrefrange] = ACTIONS(5160), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnewlabel] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5160), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5160), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdef] = ACTIONS(5160), + [anon_sym_BSLASHlet] = ACTIONS(5160), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5160), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5160), + [anon_sym_BSLASHgls] = ACTIONS(5160), + [anon_sym_BSLASHGls] = ACTIONS(5160), + [anon_sym_BSLASHGLS] = ACTIONS(5160), + [anon_sym_BSLASHglspl] = ACTIONS(5160), + [anon_sym_BSLASHGlspl] = ACTIONS(5160), + [anon_sym_BSLASHGLSpl] = ACTIONS(5160), + [anon_sym_BSLASHglsdisp] = ACTIONS(5160), + [anon_sym_BSLASHglslink] = ACTIONS(5160), + [anon_sym_BSLASHglstext] = ACTIONS(5160), + [anon_sym_BSLASHGlstext] = ACTIONS(5160), + [anon_sym_BSLASHGLStext] = ACTIONS(5160), + [anon_sym_BSLASHglsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5160), + [anon_sym_BSLASHglsplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSplural] = ACTIONS(5160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHglsname] = ACTIONS(5160), + [anon_sym_BSLASHGlsname] = ACTIONS(5160), + [anon_sym_BSLASHGLSname] = ACTIONS(5160), + [anon_sym_BSLASHglssymbol] = ACTIONS(5160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5160), + [anon_sym_BSLASHglsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5160), + [anon_sym_BSLASHglsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5160), + [anon_sym_BSLASHglsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5160), + [anon_sym_BSLASHglsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5160), + [anon_sym_BSLASHglsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5160), + [anon_sym_BSLASHnewacronym] = ACTIONS(5160), + [anon_sym_BSLASHacrshort] = ACTIONS(5160), + [anon_sym_BSLASHAcrshort] = ACTIONS(5160), + [anon_sym_BSLASHACRshort] = ACTIONS(5160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5160), + [anon_sym_BSLASHacrlong] = ACTIONS(5160), + [anon_sym_BSLASHAcrlong] = ACTIONS(5160), + [anon_sym_BSLASHACRlong] = ACTIONS(5160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5160), + [anon_sym_BSLASHacrfull] = ACTIONS(5160), + [anon_sym_BSLASHAcrfull] = ACTIONS(5160), + [anon_sym_BSLASHACRfull] = ACTIONS(5160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5160), + [anon_sym_BSLASHacs] = ACTIONS(5160), + [anon_sym_BSLASHAcs] = ACTIONS(5160), + [anon_sym_BSLASHacsp] = ACTIONS(5160), + [anon_sym_BSLASHAcsp] = ACTIONS(5160), + [anon_sym_BSLASHacl] = ACTIONS(5160), + [anon_sym_BSLASHAcl] = ACTIONS(5160), + [anon_sym_BSLASHaclp] = ACTIONS(5160), + [anon_sym_BSLASHAclp] = ACTIONS(5160), + [anon_sym_BSLASHacf] = ACTIONS(5160), + [anon_sym_BSLASHAcf] = ACTIONS(5160), + [anon_sym_BSLASHacfp] = ACTIONS(5160), + [anon_sym_BSLASHAcfp] = ACTIONS(5160), + [anon_sym_BSLASHac] = ACTIONS(5160), + [anon_sym_BSLASHAc] = ACTIONS(5160), + [anon_sym_BSLASHacp] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5160), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5160), + [anon_sym_BSLASHcolor] = ACTIONS(5160), + [anon_sym_BSLASHcolorbox] = ACTIONS(5160), + [anon_sym_BSLASHtextcolor] = ACTIONS(5160), + [anon_sym_BSLASHpagecolor] = ACTIONS(5160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5160), + [anon_sym_BSLASHtext] = ACTIONS(5160), + [anon_sym_BSLASHintertext] = ACTIONS(5160), + [anon_sym_shortintertext] = ACTIONS(5160), }, [1082] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_BSLASHpart] = ACTIONS(5284), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddpart] = ACTIONS(5284), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHchapter] = ACTIONS(5284), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddchap] = ACTIONS(5284), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsection] = ACTIONS(5284), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddsec] = ACTIONS(5284), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHparagraph] = ACTIONS(5284), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5284), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHitem] = ACTIONS(5284), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASHbegin] = ACTIONS(5284), + [anon_sym_BSLASHend] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [1083] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_BSLASHpart] = ACTIONS(5145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddpart] = ACTIONS(5145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHchapter] = ACTIONS(5145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddchap] = ACTIONS(5145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsection] = ACTIONS(5145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddsec] = ACTIONS(5145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHparagraph] = ACTIONS(5145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHitem] = ACTIONS(5145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_BSLASHpart] = ACTIONS(5224), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddpart] = ACTIONS(5224), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHchapter] = ACTIONS(5224), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddchap] = ACTIONS(5224), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsection] = ACTIONS(5224), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddsec] = ACTIONS(5224), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHparagraph] = ACTIONS(5224), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5224), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHitem] = ACTIONS(5224), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASHbegin] = ACTIONS(5224), + [anon_sym_BSLASHend] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [1084] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_BSLASHpart] = ACTIONS(5136), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddpart] = ACTIONS(5136), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHchapter] = ACTIONS(5136), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddchap] = ACTIONS(5136), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsection] = ACTIONS(5136), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddsec] = ACTIONS(5136), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHparagraph] = ACTIONS(5136), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5136), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHitem] = ACTIONS(5136), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASHbegin] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [1085] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_BSLASHpart] = ACTIONS(5132), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddpart] = ACTIONS(5132), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHchapter] = ACTIONS(5132), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddchap] = ACTIONS(5132), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsection] = ACTIONS(5132), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddsec] = ACTIONS(5132), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHparagraph] = ACTIONS(5132), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5132), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHitem] = ACTIONS(5132), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASHbegin] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [1086] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_BSLASHpart] = ACTIONS(5124), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddpart] = ACTIONS(5124), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHchapter] = ACTIONS(5124), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddchap] = ACTIONS(5124), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsection] = ACTIONS(5124), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddsec] = ACTIONS(5124), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHparagraph] = ACTIONS(5124), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5124), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHitem] = ACTIONS(5124), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASHbegin] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [1087] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_BSLASHpart] = ACTIONS(5120), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddpart] = ACTIONS(5120), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHchapter] = ACTIONS(5120), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddchap] = ACTIONS(5120), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsection] = ACTIONS(5120), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddsec] = ACTIONS(5120), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHparagraph] = ACTIONS(5120), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5120), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHitem] = ACTIONS(5120), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASHbegin] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [1088] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_BSLASHpart] = ACTIONS(5116), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddpart] = ACTIONS(5116), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHchapter] = ACTIONS(5116), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddchap] = ACTIONS(5116), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsection] = ACTIONS(5116), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddsec] = ACTIONS(5116), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHparagraph] = ACTIONS(5116), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5116), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHitem] = ACTIONS(5116), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASHbegin] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [1089] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_BSLASHpart] = ACTIONS(5112), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddpart] = ACTIONS(5112), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHchapter] = ACTIONS(5112), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddchap] = ACTIONS(5112), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsection] = ACTIONS(5112), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddsec] = ACTIONS(5112), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHparagraph] = ACTIONS(5112), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5112), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHitem] = ACTIONS(5112), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASHbegin] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [1090] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_BSLASHpart] = ACTIONS(5119), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddpart] = ACTIONS(5119), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHchapter] = ACTIONS(5119), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddchap] = ACTIONS(5119), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsection] = ACTIONS(5119), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddsec] = ACTIONS(5119), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHparagraph] = ACTIONS(5119), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHitem] = ACTIONS(5119), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASHbegin] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_BSLASHpart] = ACTIONS(5198), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddpart] = ACTIONS(5198), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHchapter] = ACTIONS(5198), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddchap] = ACTIONS(5198), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsection] = ACTIONS(5198), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddsec] = ACTIONS(5198), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHparagraph] = ACTIONS(5198), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5198), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHitem] = ACTIONS(5198), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASHbegin] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [1091] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_BSLASHpart] = ACTIONS(5108), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddpart] = ACTIONS(5108), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHchapter] = ACTIONS(5108), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddchap] = ACTIONS(5108), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsection] = ACTIONS(5108), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddsec] = ACTIONS(5108), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHparagraph] = ACTIONS(5108), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5108), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHitem] = ACTIONS(5108), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASHbegin] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [1092] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_BSLASHpart] = ACTIONS(5104), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddpart] = ACTIONS(5104), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHchapter] = ACTIONS(5104), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddchap] = ACTIONS(5104), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsection] = ACTIONS(5104), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddsec] = ACTIONS(5104), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHparagraph] = ACTIONS(5104), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5104), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHitem] = ACTIONS(5104), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASHbegin] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [1093] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_BSLASHpart] = ACTIONS(5100), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddpart] = ACTIONS(5100), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHchapter] = ACTIONS(5100), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddchap] = ACTIONS(5100), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsection] = ACTIONS(5100), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddsec] = ACTIONS(5100), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHparagraph] = ACTIONS(5100), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5100), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHitem] = ACTIONS(5100), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASHbegin] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [1094] = { - [sym_command_name] = ACTIONS(4947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_BSLASHpart] = ACTIONS(4947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddpart] = ACTIONS(4947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHchapter] = ACTIONS(4947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddchap] = ACTIONS(4947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsection] = ACTIONS(4947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddsec] = ACTIONS(4947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHparagraph] = ACTIONS(4947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHitem] = ACTIONS(4947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4945), - [sym_word] = ACTIONS(4947), - [sym_placeholder] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4947), - [anon_sym__] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), - [anon_sym_BSLASHbegin] = ACTIONS(4947), - [anon_sym_BSLASHend] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), - [anon_sym_BSLASHinclude] = ACTIONS(4947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), - [anon_sym_BSLASHinput] = ACTIONS(4947), - [anon_sym_BSLASHsubfile] = ACTIONS(4947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), - [anon_sym_BSLASHbibliography] = ACTIONS(4947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), - [anon_sym_BSLASHincludesvg] = ACTIONS(4947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), - [anon_sym_BSLASHimport] = ACTIONS(4947), - [anon_sym_BSLASHsubimport] = ACTIONS(4947), - [anon_sym_BSLASHinputfrom] = ACTIONS(4947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), - [anon_sym_BSLASHincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHcaption] = ACTIONS(4947), - [anon_sym_BSLASHcite] = ACTIONS(4947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCite] = ACTIONS(4947), - [anon_sym_BSLASHnocite] = ACTIONS(4947), - [anon_sym_BSLASHcitet] = ACTIONS(4947), - [anon_sym_BSLASHcitep] = ACTIONS(4947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteyear] = ACTIONS(4947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitedate] = ACTIONS(4947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteurl] = ACTIONS(4947), - [anon_sym_BSLASHfullcite] = ACTIONS(4947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), - [anon_sym_BSLASHcitealt] = ACTIONS(4947), - [anon_sym_BSLASHcitealp] = ACTIONS(4947), - [anon_sym_BSLASHcitetext] = ACTIONS(4947), - [anon_sym_BSLASHparencite] = ACTIONS(4947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHParencite] = ACTIONS(4947), - [anon_sym_BSLASHfootcite] = ACTIONS(4947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), - [anon_sym_BSLASHtextcite] = ACTIONS(4947), - [anon_sym_BSLASHTextcite] = ACTIONS(4947), - [anon_sym_BSLASHsmartcite] = ACTIONS(4947), - [anon_sym_BSLASHSmartcite] = ACTIONS(4947), - [anon_sym_BSLASHsupercite] = ACTIONS(4947), - [anon_sym_BSLASHautocite] = ACTIONS(4947), - [anon_sym_BSLASHAutocite] = ACTIONS(4947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHvolcite] = ACTIONS(4947), - [anon_sym_BSLASHVolcite] = ACTIONS(4947), - [anon_sym_BSLASHpvolcite] = ACTIONS(4947), - [anon_sym_BSLASHPvolcite] = ACTIONS(4947), - [anon_sym_BSLASHfvolcite] = ACTIONS(4947), - [anon_sym_BSLASHftvolcite] = ACTIONS(4947), - [anon_sym_BSLASHsvolcite] = ACTIONS(4947), - [anon_sym_BSLASHSvolcite] = ACTIONS(4947), - [anon_sym_BSLASHtvolcite] = ACTIONS(4947), - [anon_sym_BSLASHTvolcite] = ACTIONS(4947), - [anon_sym_BSLASHavolcite] = ACTIONS(4947), - [anon_sym_BSLASHAvolcite] = ACTIONS(4947), - [anon_sym_BSLASHnotecite] = ACTIONS(4947), - [anon_sym_BSLASHNotecite] = ACTIONS(4947), - [anon_sym_BSLASHpnotecite] = ACTIONS(4947), - [anon_sym_BSLASHPnotecite] = ACTIONS(4947), - [anon_sym_BSLASHfnotecite] = ACTIONS(4947), - [anon_sym_BSLASHlabel] = ACTIONS(4947), - [anon_sym_BSLASHref] = ACTIONS(4947), - [anon_sym_BSLASHeqref] = ACTIONS(4947), - [anon_sym_BSLASHvref] = ACTIONS(4947), - [anon_sym_BSLASHVref] = ACTIONS(4947), - [anon_sym_BSLASHautoref] = ACTIONS(4947), - [anon_sym_BSLASHpageref] = ACTIONS(4947), - [anon_sym_BSLASHcref] = ACTIONS(4947), - [anon_sym_BSLASHCref] = ACTIONS(4947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnameCref] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHlabelcref] = ACTIONS(4947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnewlabel] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), - [anon_sym_BSLASHdef] = ACTIONS(4947), - [anon_sym_BSLASHlet] = ACTIONS(4947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), - [anon_sym_BSLASHgls] = ACTIONS(4947), - [anon_sym_BSLASHGls] = ACTIONS(4947), - [anon_sym_BSLASHGLS] = ACTIONS(4947), - [anon_sym_BSLASHglspl] = ACTIONS(4947), - [anon_sym_BSLASHGlspl] = ACTIONS(4947), - [anon_sym_BSLASHGLSpl] = ACTIONS(4947), - [anon_sym_BSLASHglsdisp] = ACTIONS(4947), - [anon_sym_BSLASHglslink] = ACTIONS(4947), - [anon_sym_BSLASHglstext] = ACTIONS(4947), - [anon_sym_BSLASHGlstext] = ACTIONS(4947), - [anon_sym_BSLASHGLStext] = ACTIONS(4947), - [anon_sym_BSLASHglsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), - [anon_sym_BSLASHglsplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSplural] = ACTIONS(4947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHglsname] = ACTIONS(4947), - [anon_sym_BSLASHGlsname] = ACTIONS(4947), - [anon_sym_BSLASHGLSname] = ACTIONS(4947), - [anon_sym_BSLASHglssymbol] = ACTIONS(4947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), - [anon_sym_BSLASHglsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), - [anon_sym_BSLASHglsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), - [anon_sym_BSLASHglsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), - [anon_sym_BSLASHglsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), - [anon_sym_BSLASHglsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), - [anon_sym_BSLASHnewacronym] = ACTIONS(4947), - [anon_sym_BSLASHacrshort] = ACTIONS(4947), - [anon_sym_BSLASHAcrshort] = ACTIONS(4947), - [anon_sym_BSLASHACRshort] = ACTIONS(4947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), - [anon_sym_BSLASHacrlong] = ACTIONS(4947), - [anon_sym_BSLASHAcrlong] = ACTIONS(4947), - [anon_sym_BSLASHACRlong] = ACTIONS(4947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), - [anon_sym_BSLASHacrfull] = ACTIONS(4947), - [anon_sym_BSLASHAcrfull] = ACTIONS(4947), - [anon_sym_BSLASHACRfull] = ACTIONS(4947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), - [anon_sym_BSLASHacs] = ACTIONS(4947), - [anon_sym_BSLASHAcs] = ACTIONS(4947), - [anon_sym_BSLASHacsp] = ACTIONS(4947), - [anon_sym_BSLASHAcsp] = ACTIONS(4947), - [anon_sym_BSLASHacl] = ACTIONS(4947), - [anon_sym_BSLASHAcl] = ACTIONS(4947), - [anon_sym_BSLASHaclp] = ACTIONS(4947), - [anon_sym_BSLASHAclp] = ACTIONS(4947), - [anon_sym_BSLASHacf] = ACTIONS(4947), - [anon_sym_BSLASHAcf] = ACTIONS(4947), - [anon_sym_BSLASHacfp] = ACTIONS(4947), - [anon_sym_BSLASHAcfp] = ACTIONS(4947), - [anon_sym_BSLASHac] = ACTIONS(4947), - [anon_sym_BSLASHAc] = ACTIONS(4947), - [anon_sym_BSLASHacp] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), - [anon_sym_BSLASHcolor] = ACTIONS(4947), - [anon_sym_BSLASHcolorbox] = ACTIONS(4947), - [anon_sym_BSLASHtextcolor] = ACTIONS(4947), - [anon_sym_BSLASHpagecolor] = ACTIONS(4947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), - [anon_sym_BSLASHtext] = ACTIONS(4947), - [anon_sym_BSLASHintertext] = ACTIONS(4947), - [anon_sym_shortintertext] = ACTIONS(4947), + [sym_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_BSLASHpart] = ACTIONS(5026), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddpart] = ACTIONS(5026), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHchapter] = ACTIONS(5026), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddchap] = ACTIONS(5026), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsection] = ACTIONS(5026), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddsec] = ACTIONS(5026), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHparagraph] = ACTIONS(5026), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5026), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHitem] = ACTIONS(5026), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [sym_word] = ACTIONS(5026), + [sym_placeholder] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5024), + [anon_sym_BSLASHbegin] = ACTIONS(5026), + [anon_sym_BSLASHend] = ACTIONS(5026), + [anon_sym_BSLASHusepackage] = ACTIONS(5026), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5026), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5026), + [anon_sym_BSLASHinclude] = ACTIONS(5026), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5026), + [anon_sym_BSLASHinput] = ACTIONS(5026), + [anon_sym_BSLASHsubfile] = ACTIONS(5026), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5026), + [anon_sym_BSLASHbibliography] = ACTIONS(5026), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5026), + [anon_sym_BSLASHincludesvg] = ACTIONS(5026), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5026), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5026), + [anon_sym_BSLASHimport] = ACTIONS(5026), + [anon_sym_BSLASHsubimport] = ACTIONS(5026), + [anon_sym_BSLASHinputfrom] = ACTIONS(5026), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5026), + [anon_sym_BSLASHincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHcaption] = ACTIONS(5026), + [anon_sym_BSLASHcite] = ACTIONS(5026), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCite] = ACTIONS(5026), + [anon_sym_BSLASHnocite] = ACTIONS(5026), + [anon_sym_BSLASHcitet] = ACTIONS(5026), + [anon_sym_BSLASHcitep] = ACTIONS(5026), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteauthor] = ACTIONS(5026), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5026), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitetitle] = ACTIONS(5026), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteyear] = ACTIONS(5026), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitedate] = ACTIONS(5026), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteurl] = ACTIONS(5026), + [anon_sym_BSLASHfullcite] = ACTIONS(5026), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5026), + [anon_sym_BSLASHcitealt] = ACTIONS(5026), + [anon_sym_BSLASHcitealp] = ACTIONS(5026), + [anon_sym_BSLASHcitetext] = ACTIONS(5026), + [anon_sym_BSLASHparencite] = ACTIONS(5026), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHParencite] = ACTIONS(5026), + [anon_sym_BSLASHfootcite] = ACTIONS(5026), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5026), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5026), + [anon_sym_BSLASHtextcite] = ACTIONS(5026), + [anon_sym_BSLASHTextcite] = ACTIONS(5026), + [anon_sym_BSLASHsmartcite] = ACTIONS(5026), + [anon_sym_BSLASHSmartcite] = ACTIONS(5026), + [anon_sym_BSLASHsupercite] = ACTIONS(5026), + [anon_sym_BSLASHautocite] = ACTIONS(5026), + [anon_sym_BSLASHAutocite] = ACTIONS(5026), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHvolcite] = ACTIONS(5026), + [anon_sym_BSLASHVolcite] = ACTIONS(5026), + [anon_sym_BSLASHpvolcite] = ACTIONS(5026), + [anon_sym_BSLASHPvolcite] = ACTIONS(5026), + [anon_sym_BSLASHfvolcite] = ACTIONS(5026), + [anon_sym_BSLASHftvolcite] = ACTIONS(5026), + [anon_sym_BSLASHsvolcite] = ACTIONS(5026), + [anon_sym_BSLASHSvolcite] = ACTIONS(5026), + [anon_sym_BSLASHtvolcite] = ACTIONS(5026), + [anon_sym_BSLASHTvolcite] = ACTIONS(5026), + [anon_sym_BSLASHavolcite] = ACTIONS(5026), + [anon_sym_BSLASHAvolcite] = ACTIONS(5026), + [anon_sym_BSLASHnotecite] = ACTIONS(5026), + [anon_sym_BSLASHNotecite] = ACTIONS(5026), + [anon_sym_BSLASHpnotecite] = ACTIONS(5026), + [anon_sym_BSLASHPnotecite] = ACTIONS(5026), + [anon_sym_BSLASHfnotecite] = ACTIONS(5026), + [anon_sym_BSLASHlabel] = ACTIONS(5026), + [anon_sym_BSLASHref] = ACTIONS(5026), + [anon_sym_BSLASHeqref] = ACTIONS(5026), + [anon_sym_BSLASHvref] = ACTIONS(5026), + [anon_sym_BSLASHVref] = ACTIONS(5026), + [anon_sym_BSLASHautoref] = ACTIONS(5026), + [anon_sym_BSLASHpageref] = ACTIONS(5026), + [anon_sym_BSLASHcref] = ACTIONS(5026), + [anon_sym_BSLASHCref] = ACTIONS(5026), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnameCref] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHlabelcref] = ACTIONS(5026), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCrefrange] = ACTIONS(5026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnewlabel] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5026), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5026), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5026), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdef] = ACTIONS(5026), + [anon_sym_BSLASHlet] = ACTIONS(5026), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5026), + [anon_sym_BSLASHgls] = ACTIONS(5026), + [anon_sym_BSLASHGls] = ACTIONS(5026), + [anon_sym_BSLASHGLS] = ACTIONS(5026), + [anon_sym_BSLASHglspl] = ACTIONS(5026), + [anon_sym_BSLASHGlspl] = ACTIONS(5026), + [anon_sym_BSLASHGLSpl] = ACTIONS(5026), + [anon_sym_BSLASHglsdisp] = ACTIONS(5026), + [anon_sym_BSLASHglslink] = ACTIONS(5026), + [anon_sym_BSLASHglstext] = ACTIONS(5026), + [anon_sym_BSLASHGlstext] = ACTIONS(5026), + [anon_sym_BSLASHGLStext] = ACTIONS(5026), + [anon_sym_BSLASHglsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5026), + [anon_sym_BSLASHglsplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSplural] = ACTIONS(5026), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHglsname] = ACTIONS(5026), + [anon_sym_BSLASHGlsname] = ACTIONS(5026), + [anon_sym_BSLASHGLSname] = ACTIONS(5026), + [anon_sym_BSLASHglssymbol] = ACTIONS(5026), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5026), + [anon_sym_BSLASHglsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5026), + [anon_sym_BSLASHglsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5026), + [anon_sym_BSLASHglsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5026), + [anon_sym_BSLASHglsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5026), + [anon_sym_BSLASHglsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5026), + [anon_sym_BSLASHnewacronym] = ACTIONS(5026), + [anon_sym_BSLASHacrshort] = ACTIONS(5026), + [anon_sym_BSLASHAcrshort] = ACTIONS(5026), + [anon_sym_BSLASHACRshort] = ACTIONS(5026), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5026), + [anon_sym_BSLASHacrlong] = ACTIONS(5026), + [anon_sym_BSLASHAcrlong] = ACTIONS(5026), + [anon_sym_BSLASHACRlong] = ACTIONS(5026), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5026), + [anon_sym_BSLASHacrfull] = ACTIONS(5026), + [anon_sym_BSLASHAcrfull] = ACTIONS(5026), + [anon_sym_BSLASHACRfull] = ACTIONS(5026), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5026), + [anon_sym_BSLASHacs] = ACTIONS(5026), + [anon_sym_BSLASHAcs] = ACTIONS(5026), + [anon_sym_BSLASHacsp] = ACTIONS(5026), + [anon_sym_BSLASHAcsp] = ACTIONS(5026), + [anon_sym_BSLASHacl] = ACTIONS(5026), + [anon_sym_BSLASHAcl] = ACTIONS(5026), + [anon_sym_BSLASHaclp] = ACTIONS(5026), + [anon_sym_BSLASHAclp] = ACTIONS(5026), + [anon_sym_BSLASHacf] = ACTIONS(5026), + [anon_sym_BSLASHAcf] = ACTIONS(5026), + [anon_sym_BSLASHacfp] = ACTIONS(5026), + [anon_sym_BSLASHAcfp] = ACTIONS(5026), + [anon_sym_BSLASHac] = ACTIONS(5026), + [anon_sym_BSLASHAc] = ACTIONS(5026), + [anon_sym_BSLASHacp] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5026), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5026), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5026), + [anon_sym_BSLASHcolor] = ACTIONS(5026), + [anon_sym_BSLASHcolorbox] = ACTIONS(5026), + [anon_sym_BSLASHtextcolor] = ACTIONS(5026), + [anon_sym_BSLASHpagecolor] = ACTIONS(5026), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5026), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5026), + [anon_sym_BSLASHtext] = ACTIONS(5026), + [anon_sym_BSLASHintertext] = ACTIONS(5026), + [anon_sym_shortintertext] = ACTIONS(5026), }, [1095] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_BSLASHpart] = ACTIONS(5017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddpart] = ACTIONS(5017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHchapter] = ACTIONS(5017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddchap] = ACTIONS(5017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsection] = ACTIONS(5017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddsec] = ACTIONS(5017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHparagraph] = ACTIONS(5017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHitem] = ACTIONS(5017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASHbegin] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_BSLASHpart] = ACTIONS(5096), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddpart] = ACTIONS(5096), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHchapter] = ACTIONS(5096), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddchap] = ACTIONS(5096), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsection] = ACTIONS(5096), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddsec] = ACTIONS(5096), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHparagraph] = ACTIONS(5096), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5096), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHitem] = ACTIONS(5096), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASHbegin] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [1096] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_BSLASHpart] = ACTIONS(5013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddpart] = ACTIONS(5013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHchapter] = ACTIONS(5013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddchap] = ACTIONS(5013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsection] = ACTIONS(5013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddsec] = ACTIONS(5013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHparagraph] = ACTIONS(5013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHitem] = ACTIONS(5013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASHbegin] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_BSLASHpart] = ACTIONS(5092), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddpart] = ACTIONS(5092), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHchapter] = ACTIONS(5092), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddchap] = ACTIONS(5092), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsection] = ACTIONS(5092), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddsec] = ACTIONS(5092), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHparagraph] = ACTIONS(5092), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5092), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHitem] = ACTIONS(5092), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASHbegin] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [1097] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_BSLASHpart] = ACTIONS(5082), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddpart] = ACTIONS(5082), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHchapter] = ACTIONS(5082), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddchap] = ACTIONS(5082), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsection] = ACTIONS(5082), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddsec] = ACTIONS(5082), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHparagraph] = ACTIONS(5082), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5082), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHitem] = ACTIONS(5082), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASHbegin] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [1098] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_BSLASHpart] = ACTIONS(5078), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddpart] = ACTIONS(5078), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHchapter] = ACTIONS(5078), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddchap] = ACTIONS(5078), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsection] = ACTIONS(5078), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddsec] = ACTIONS(5078), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHparagraph] = ACTIONS(5078), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5078), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHitem] = ACTIONS(5078), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASHbegin] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [1099] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_BSLASHpart] = ACTIONS(5074), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddpart] = ACTIONS(5074), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHchapter] = ACTIONS(5074), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddchap] = ACTIONS(5074), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsection] = ACTIONS(5074), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddsec] = ACTIONS(5074), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHparagraph] = ACTIONS(5074), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5074), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHitem] = ACTIONS(5074), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASHbegin] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [1100] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_BSLASHpart] = ACTIONS(5070), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddpart] = ACTIONS(5070), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHchapter] = ACTIONS(5070), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddchap] = ACTIONS(5070), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsection] = ACTIONS(5070), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddsec] = ACTIONS(5070), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHparagraph] = ACTIONS(5070), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5070), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHitem] = ACTIONS(5070), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASHbegin] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [1101] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_BSLASHpart] = ACTIONS(5066), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddpart] = ACTIONS(5066), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHchapter] = ACTIONS(5066), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddchap] = ACTIONS(5066), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsection] = ACTIONS(5066), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddsec] = ACTIONS(5066), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHparagraph] = ACTIONS(5066), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5066), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHitem] = ACTIONS(5066), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASHbegin] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [1102] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_BSLASHpart] = ACTIONS(5062), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddpart] = ACTIONS(5062), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHchapter] = ACTIONS(5062), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddchap] = ACTIONS(5062), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsection] = ACTIONS(5062), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddsec] = ACTIONS(5062), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHparagraph] = ACTIONS(5062), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5062), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHitem] = ACTIONS(5062), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASHbegin] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [1103] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_BSLASHpart] = ACTIONS(5218), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddpart] = ACTIONS(5218), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHchapter] = ACTIONS(5218), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddchap] = ACTIONS(5218), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsection] = ACTIONS(5218), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddsec] = ACTIONS(5218), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHparagraph] = ACTIONS(5218), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5218), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHitem] = ACTIONS(5218), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASHbegin] = ACTIONS(5218), + [anon_sym_BSLASHend] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [1104] = { - [sym_command_name] = ACTIONS(5127), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_RPAREN] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(5125), - [anon_sym_BSLASHpart] = ACTIONS(5127), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddpart] = ACTIONS(5127), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHchapter] = ACTIONS(5127), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddchap] = ACTIONS(5127), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsection] = ACTIONS(5127), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddsec] = ACTIONS(5127), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHparagraph] = ACTIONS(5127), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHitem] = ACTIONS(5127), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), - [anon_sym_LBRACE] = ACTIONS(5125), - [sym_word] = ACTIONS(5127), - [sym_placeholder] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_CARET] = ACTIONS(5127), - [anon_sym__] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5127), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), - [anon_sym_BSLASHbegin] = ACTIONS(5127), - [anon_sym_BSLASHend] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5127), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), - [anon_sym_BSLASHinclude] = ACTIONS(5127), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), - [anon_sym_BSLASHinput] = ACTIONS(5127), - [anon_sym_BSLASHsubfile] = ACTIONS(5127), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), - [anon_sym_BSLASHbibliography] = ACTIONS(5127), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), - [anon_sym_BSLASHincludesvg] = ACTIONS(5127), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), - [anon_sym_BSLASHimport] = ACTIONS(5127), - [anon_sym_BSLASHsubimport] = ACTIONS(5127), - [anon_sym_BSLASHinputfrom] = ACTIONS(5127), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), - [anon_sym_BSLASHincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHcaption] = ACTIONS(5127), - [anon_sym_BSLASHcite] = ACTIONS(5127), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCite] = ACTIONS(5127), - [anon_sym_BSLASHnocite] = ACTIONS(5127), - [anon_sym_BSLASHcitet] = ACTIONS(5127), - [anon_sym_BSLASHcitep] = ACTIONS(5127), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteyear] = ACTIONS(5127), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitedate] = ACTIONS(5127), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteurl] = ACTIONS(5127), - [anon_sym_BSLASHfullcite] = ACTIONS(5127), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), - [anon_sym_BSLASHcitealt] = ACTIONS(5127), - [anon_sym_BSLASHcitealp] = ACTIONS(5127), - [anon_sym_BSLASHcitetext] = ACTIONS(5127), - [anon_sym_BSLASHparencite] = ACTIONS(5127), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHParencite] = ACTIONS(5127), - [anon_sym_BSLASHfootcite] = ACTIONS(5127), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), - [anon_sym_BSLASHtextcite] = ACTIONS(5127), - [anon_sym_BSLASHTextcite] = ACTIONS(5127), - [anon_sym_BSLASHsmartcite] = ACTIONS(5127), - [anon_sym_BSLASHSmartcite] = ACTIONS(5127), - [anon_sym_BSLASHsupercite] = ACTIONS(5127), - [anon_sym_BSLASHautocite] = ACTIONS(5127), - [anon_sym_BSLASHAutocite] = ACTIONS(5127), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHvolcite] = ACTIONS(5127), - [anon_sym_BSLASHVolcite] = ACTIONS(5127), - [anon_sym_BSLASHpvolcite] = ACTIONS(5127), - [anon_sym_BSLASHPvolcite] = ACTIONS(5127), - [anon_sym_BSLASHfvolcite] = ACTIONS(5127), - [anon_sym_BSLASHftvolcite] = ACTIONS(5127), - [anon_sym_BSLASHsvolcite] = ACTIONS(5127), - [anon_sym_BSLASHSvolcite] = ACTIONS(5127), - [anon_sym_BSLASHtvolcite] = ACTIONS(5127), - [anon_sym_BSLASHTvolcite] = ACTIONS(5127), - [anon_sym_BSLASHavolcite] = ACTIONS(5127), - [anon_sym_BSLASHAvolcite] = ACTIONS(5127), - [anon_sym_BSLASHnotecite] = ACTIONS(5127), - [anon_sym_BSLASHNotecite] = ACTIONS(5127), - [anon_sym_BSLASHpnotecite] = ACTIONS(5127), - [anon_sym_BSLASHPnotecite] = ACTIONS(5127), - [anon_sym_BSLASHfnotecite] = ACTIONS(5127), - [anon_sym_BSLASHlabel] = ACTIONS(5127), - [anon_sym_BSLASHref] = ACTIONS(5127), - [anon_sym_BSLASHeqref] = ACTIONS(5127), - [anon_sym_BSLASHvref] = ACTIONS(5127), - [anon_sym_BSLASHVref] = ACTIONS(5127), - [anon_sym_BSLASHautoref] = ACTIONS(5127), - [anon_sym_BSLASHpageref] = ACTIONS(5127), - [anon_sym_BSLASHcref] = ACTIONS(5127), - [anon_sym_BSLASHCref] = ACTIONS(5127), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnameCref] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHlabelcref] = ACTIONS(5127), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnewlabel] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), - [anon_sym_BSLASHdef] = ACTIONS(5127), - [anon_sym_BSLASHlet] = ACTIONS(5127), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), - [anon_sym_BSLASHgls] = ACTIONS(5127), - [anon_sym_BSLASHGls] = ACTIONS(5127), - [anon_sym_BSLASHGLS] = ACTIONS(5127), - [anon_sym_BSLASHglspl] = ACTIONS(5127), - [anon_sym_BSLASHGlspl] = ACTIONS(5127), - [anon_sym_BSLASHGLSpl] = ACTIONS(5127), - [anon_sym_BSLASHglsdisp] = ACTIONS(5127), - [anon_sym_BSLASHglslink] = ACTIONS(5127), - [anon_sym_BSLASHglstext] = ACTIONS(5127), - [anon_sym_BSLASHGlstext] = ACTIONS(5127), - [anon_sym_BSLASHGLStext] = ACTIONS(5127), - [anon_sym_BSLASHglsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), - [anon_sym_BSLASHglsplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSplural] = ACTIONS(5127), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHglsname] = ACTIONS(5127), - [anon_sym_BSLASHGlsname] = ACTIONS(5127), - [anon_sym_BSLASHGLSname] = ACTIONS(5127), - [anon_sym_BSLASHglssymbol] = ACTIONS(5127), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), - [anon_sym_BSLASHglsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), - [anon_sym_BSLASHglsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), - [anon_sym_BSLASHglsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), - [anon_sym_BSLASHglsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), - [anon_sym_BSLASHglsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), - [anon_sym_BSLASHnewacronym] = ACTIONS(5127), - [anon_sym_BSLASHacrshort] = ACTIONS(5127), - [anon_sym_BSLASHAcrshort] = ACTIONS(5127), - [anon_sym_BSLASHACRshort] = ACTIONS(5127), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), - [anon_sym_BSLASHacrlong] = ACTIONS(5127), - [anon_sym_BSLASHAcrlong] = ACTIONS(5127), - [anon_sym_BSLASHACRlong] = ACTIONS(5127), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), - [anon_sym_BSLASHacrfull] = ACTIONS(5127), - [anon_sym_BSLASHAcrfull] = ACTIONS(5127), - [anon_sym_BSLASHACRfull] = ACTIONS(5127), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), - [anon_sym_BSLASHacs] = ACTIONS(5127), - [anon_sym_BSLASHAcs] = ACTIONS(5127), - [anon_sym_BSLASHacsp] = ACTIONS(5127), - [anon_sym_BSLASHAcsp] = ACTIONS(5127), - [anon_sym_BSLASHacl] = ACTIONS(5127), - [anon_sym_BSLASHAcl] = ACTIONS(5127), - [anon_sym_BSLASHaclp] = ACTIONS(5127), - [anon_sym_BSLASHAclp] = ACTIONS(5127), - [anon_sym_BSLASHacf] = ACTIONS(5127), - [anon_sym_BSLASHAcf] = ACTIONS(5127), - [anon_sym_BSLASHacfp] = ACTIONS(5127), - [anon_sym_BSLASHAcfp] = ACTIONS(5127), - [anon_sym_BSLASHac] = ACTIONS(5127), - [anon_sym_BSLASHAc] = ACTIONS(5127), - [anon_sym_BSLASHacp] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), - [anon_sym_BSLASHcolor] = ACTIONS(5127), - [anon_sym_BSLASHcolorbox] = ACTIONS(5127), - [anon_sym_BSLASHtextcolor] = ACTIONS(5127), - [anon_sym_BSLASHpagecolor] = ACTIONS(5127), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), - [anon_sym_BSLASHtext] = ACTIONS(5127), - [anon_sym_BSLASHintertext] = ACTIONS(5127), - [anon_sym_shortintertext] = ACTIONS(5127), + [sym_command_name] = ACTIONS(5206), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_COMMA] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_BSLASHpart] = ACTIONS(5206), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddpart] = ACTIONS(5206), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHchapter] = ACTIONS(5206), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddchap] = ACTIONS(5206), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsection] = ACTIONS(5206), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddsec] = ACTIONS(5206), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHparagraph] = ACTIONS(5206), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5206), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHitem] = ACTIONS(5206), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5204), + [sym_word] = ACTIONS(5206), + [sym_placeholder] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym__] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_SQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5204), + [anon_sym_BSLASHbegin] = ACTIONS(5206), + [anon_sym_BSLASHend] = ACTIONS(5206), + [anon_sym_BSLASHusepackage] = ACTIONS(5206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5206), + [anon_sym_BSLASHinclude] = ACTIONS(5206), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5206), + [anon_sym_BSLASHinput] = ACTIONS(5206), + [anon_sym_BSLASHsubfile] = ACTIONS(5206), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5206), + [anon_sym_BSLASHbibliography] = ACTIONS(5206), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5206), + [anon_sym_BSLASHincludesvg] = ACTIONS(5206), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5206), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5206), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5206), + [anon_sym_BSLASHimport] = ACTIONS(5206), + [anon_sym_BSLASHsubimport] = ACTIONS(5206), + [anon_sym_BSLASHinputfrom] = ACTIONS(5206), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5206), + [anon_sym_BSLASHincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHcaption] = ACTIONS(5206), + [anon_sym_BSLASHcite] = ACTIONS(5206), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCite] = ACTIONS(5206), + [anon_sym_BSLASHnocite] = ACTIONS(5206), + [anon_sym_BSLASHcitet] = ACTIONS(5206), + [anon_sym_BSLASHcitep] = ACTIONS(5206), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteauthor] = ACTIONS(5206), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5206), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitetitle] = ACTIONS(5206), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteyear] = ACTIONS(5206), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitedate] = ACTIONS(5206), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteurl] = ACTIONS(5206), + [anon_sym_BSLASHfullcite] = ACTIONS(5206), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5206), + [anon_sym_BSLASHcitealt] = ACTIONS(5206), + [anon_sym_BSLASHcitealp] = ACTIONS(5206), + [anon_sym_BSLASHcitetext] = ACTIONS(5206), + [anon_sym_BSLASHparencite] = ACTIONS(5206), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHParencite] = ACTIONS(5206), + [anon_sym_BSLASHfootcite] = ACTIONS(5206), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5206), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5206), + [anon_sym_BSLASHtextcite] = ACTIONS(5206), + [anon_sym_BSLASHTextcite] = ACTIONS(5206), + [anon_sym_BSLASHsmartcite] = ACTIONS(5206), + [anon_sym_BSLASHSmartcite] = ACTIONS(5206), + [anon_sym_BSLASHsupercite] = ACTIONS(5206), + [anon_sym_BSLASHautocite] = ACTIONS(5206), + [anon_sym_BSLASHAutocite] = ACTIONS(5206), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHvolcite] = ACTIONS(5206), + [anon_sym_BSLASHVolcite] = ACTIONS(5206), + [anon_sym_BSLASHpvolcite] = ACTIONS(5206), + [anon_sym_BSLASHPvolcite] = ACTIONS(5206), + [anon_sym_BSLASHfvolcite] = ACTIONS(5206), + [anon_sym_BSLASHftvolcite] = ACTIONS(5206), + [anon_sym_BSLASHsvolcite] = ACTIONS(5206), + [anon_sym_BSLASHSvolcite] = ACTIONS(5206), + [anon_sym_BSLASHtvolcite] = ACTIONS(5206), + [anon_sym_BSLASHTvolcite] = ACTIONS(5206), + [anon_sym_BSLASHavolcite] = ACTIONS(5206), + [anon_sym_BSLASHAvolcite] = ACTIONS(5206), + [anon_sym_BSLASHnotecite] = ACTIONS(5206), + [anon_sym_BSLASHNotecite] = ACTIONS(5206), + [anon_sym_BSLASHpnotecite] = ACTIONS(5206), + [anon_sym_BSLASHPnotecite] = ACTIONS(5206), + [anon_sym_BSLASHfnotecite] = ACTIONS(5206), + [anon_sym_BSLASHlabel] = ACTIONS(5206), + [anon_sym_BSLASHref] = ACTIONS(5206), + [anon_sym_BSLASHeqref] = ACTIONS(5206), + [anon_sym_BSLASHvref] = ACTIONS(5206), + [anon_sym_BSLASHVref] = ACTIONS(5206), + [anon_sym_BSLASHautoref] = ACTIONS(5206), + [anon_sym_BSLASHpageref] = ACTIONS(5206), + [anon_sym_BSLASHcref] = ACTIONS(5206), + [anon_sym_BSLASHCref] = ACTIONS(5206), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnameCref] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHlabelcref] = ACTIONS(5206), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCrefrange] = ACTIONS(5206), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnewlabel] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5206), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5206), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5206), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdef] = ACTIONS(5206), + [anon_sym_BSLASHlet] = ACTIONS(5206), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5206), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5206), + [anon_sym_BSLASHgls] = ACTIONS(5206), + [anon_sym_BSLASHGls] = ACTIONS(5206), + [anon_sym_BSLASHGLS] = ACTIONS(5206), + [anon_sym_BSLASHglspl] = ACTIONS(5206), + [anon_sym_BSLASHGlspl] = ACTIONS(5206), + [anon_sym_BSLASHGLSpl] = ACTIONS(5206), + [anon_sym_BSLASHglsdisp] = ACTIONS(5206), + [anon_sym_BSLASHglslink] = ACTIONS(5206), + [anon_sym_BSLASHglstext] = ACTIONS(5206), + [anon_sym_BSLASHGlstext] = ACTIONS(5206), + [anon_sym_BSLASHGLStext] = ACTIONS(5206), + [anon_sym_BSLASHglsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5206), + [anon_sym_BSLASHglsplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSplural] = ACTIONS(5206), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHglsname] = ACTIONS(5206), + [anon_sym_BSLASHGlsname] = ACTIONS(5206), + [anon_sym_BSLASHGLSname] = ACTIONS(5206), + [anon_sym_BSLASHglssymbol] = ACTIONS(5206), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5206), + [anon_sym_BSLASHglsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5206), + [anon_sym_BSLASHglsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5206), + [anon_sym_BSLASHglsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5206), + [anon_sym_BSLASHglsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5206), + [anon_sym_BSLASHglsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5206), + [anon_sym_BSLASHnewacronym] = ACTIONS(5206), + [anon_sym_BSLASHacrshort] = ACTIONS(5206), + [anon_sym_BSLASHAcrshort] = ACTIONS(5206), + [anon_sym_BSLASHACRshort] = ACTIONS(5206), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5206), + [anon_sym_BSLASHacrlong] = ACTIONS(5206), + [anon_sym_BSLASHAcrlong] = ACTIONS(5206), + [anon_sym_BSLASHACRlong] = ACTIONS(5206), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5206), + [anon_sym_BSLASHacrfull] = ACTIONS(5206), + [anon_sym_BSLASHAcrfull] = ACTIONS(5206), + [anon_sym_BSLASHACRfull] = ACTIONS(5206), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5206), + [anon_sym_BSLASHacs] = ACTIONS(5206), + [anon_sym_BSLASHAcs] = ACTIONS(5206), + [anon_sym_BSLASHacsp] = ACTIONS(5206), + [anon_sym_BSLASHAcsp] = ACTIONS(5206), + [anon_sym_BSLASHacl] = ACTIONS(5206), + [anon_sym_BSLASHAcl] = ACTIONS(5206), + [anon_sym_BSLASHaclp] = ACTIONS(5206), + [anon_sym_BSLASHAclp] = ACTIONS(5206), + [anon_sym_BSLASHacf] = ACTIONS(5206), + [anon_sym_BSLASHAcf] = ACTIONS(5206), + [anon_sym_BSLASHacfp] = ACTIONS(5206), + [anon_sym_BSLASHAcfp] = ACTIONS(5206), + [anon_sym_BSLASHac] = ACTIONS(5206), + [anon_sym_BSLASHAc] = ACTIONS(5206), + [anon_sym_BSLASHacp] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5206), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5206), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5206), + [anon_sym_BSLASHcolor] = ACTIONS(5206), + [anon_sym_BSLASHcolorbox] = ACTIONS(5206), + [anon_sym_BSLASHtextcolor] = ACTIONS(5206), + [anon_sym_BSLASHpagecolor] = ACTIONS(5206), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5206), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5206), + [anon_sym_BSLASHtext] = ACTIONS(5206), + [anon_sym_BSLASHintertext] = ACTIONS(5206), + [anon_sym_shortintertext] = ACTIONS(5206), }, [1105] = { - [sym_command_name] = ACTIONS(5123), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_BSLASHpart] = ACTIONS(5123), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddpart] = ACTIONS(5123), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHchapter] = ACTIONS(5123), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddchap] = ACTIONS(5123), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsection] = ACTIONS(5123), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddsec] = ACTIONS(5123), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHparagraph] = ACTIONS(5123), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHitem] = ACTIONS(5123), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5121), - [sym_word] = ACTIONS(5123), - [sym_placeholder] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_CARET] = ACTIONS(5123), - [anon_sym__] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), - [anon_sym_BSLASHbegin] = ACTIONS(5123), - [anon_sym_BSLASHend] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5123), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), - [anon_sym_BSLASHinclude] = ACTIONS(5123), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), - [anon_sym_BSLASHinput] = ACTIONS(5123), - [anon_sym_BSLASHsubfile] = ACTIONS(5123), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), - [anon_sym_BSLASHbibliography] = ACTIONS(5123), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), - [anon_sym_BSLASHincludesvg] = ACTIONS(5123), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), - [anon_sym_BSLASHimport] = ACTIONS(5123), - [anon_sym_BSLASHsubimport] = ACTIONS(5123), - [anon_sym_BSLASHinputfrom] = ACTIONS(5123), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), - [anon_sym_BSLASHincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHcaption] = ACTIONS(5123), - [anon_sym_BSLASHcite] = ACTIONS(5123), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCite] = ACTIONS(5123), - [anon_sym_BSLASHnocite] = ACTIONS(5123), - [anon_sym_BSLASHcitet] = ACTIONS(5123), - [anon_sym_BSLASHcitep] = ACTIONS(5123), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteyear] = ACTIONS(5123), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitedate] = ACTIONS(5123), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteurl] = ACTIONS(5123), - [anon_sym_BSLASHfullcite] = ACTIONS(5123), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), - [anon_sym_BSLASHcitealt] = ACTIONS(5123), - [anon_sym_BSLASHcitealp] = ACTIONS(5123), - [anon_sym_BSLASHcitetext] = ACTIONS(5123), - [anon_sym_BSLASHparencite] = ACTIONS(5123), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHParencite] = ACTIONS(5123), - [anon_sym_BSLASHfootcite] = ACTIONS(5123), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), - [anon_sym_BSLASHtextcite] = ACTIONS(5123), - [anon_sym_BSLASHTextcite] = ACTIONS(5123), - [anon_sym_BSLASHsmartcite] = ACTIONS(5123), - [anon_sym_BSLASHSmartcite] = ACTIONS(5123), - [anon_sym_BSLASHsupercite] = ACTIONS(5123), - [anon_sym_BSLASHautocite] = ACTIONS(5123), - [anon_sym_BSLASHAutocite] = ACTIONS(5123), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHvolcite] = ACTIONS(5123), - [anon_sym_BSLASHVolcite] = ACTIONS(5123), - [anon_sym_BSLASHpvolcite] = ACTIONS(5123), - [anon_sym_BSLASHPvolcite] = ACTIONS(5123), - [anon_sym_BSLASHfvolcite] = ACTIONS(5123), - [anon_sym_BSLASHftvolcite] = ACTIONS(5123), - [anon_sym_BSLASHsvolcite] = ACTIONS(5123), - [anon_sym_BSLASHSvolcite] = ACTIONS(5123), - [anon_sym_BSLASHtvolcite] = ACTIONS(5123), - [anon_sym_BSLASHTvolcite] = ACTIONS(5123), - [anon_sym_BSLASHavolcite] = ACTIONS(5123), - [anon_sym_BSLASHAvolcite] = ACTIONS(5123), - [anon_sym_BSLASHnotecite] = ACTIONS(5123), - [anon_sym_BSLASHNotecite] = ACTIONS(5123), - [anon_sym_BSLASHpnotecite] = ACTIONS(5123), - [anon_sym_BSLASHPnotecite] = ACTIONS(5123), - [anon_sym_BSLASHfnotecite] = ACTIONS(5123), - [anon_sym_BSLASHlabel] = ACTIONS(5123), - [anon_sym_BSLASHref] = ACTIONS(5123), - [anon_sym_BSLASHeqref] = ACTIONS(5123), - [anon_sym_BSLASHvref] = ACTIONS(5123), - [anon_sym_BSLASHVref] = ACTIONS(5123), - [anon_sym_BSLASHautoref] = ACTIONS(5123), - [anon_sym_BSLASHpageref] = ACTIONS(5123), - [anon_sym_BSLASHcref] = ACTIONS(5123), - [anon_sym_BSLASHCref] = ACTIONS(5123), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnameCref] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHlabelcref] = ACTIONS(5123), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnewlabel] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), - [anon_sym_BSLASHdef] = ACTIONS(5123), - [anon_sym_BSLASHlet] = ACTIONS(5123), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), - [anon_sym_BSLASHgls] = ACTIONS(5123), - [anon_sym_BSLASHGls] = ACTIONS(5123), - [anon_sym_BSLASHGLS] = ACTIONS(5123), - [anon_sym_BSLASHglspl] = ACTIONS(5123), - [anon_sym_BSLASHGlspl] = ACTIONS(5123), - [anon_sym_BSLASHGLSpl] = ACTIONS(5123), - [anon_sym_BSLASHglsdisp] = ACTIONS(5123), - [anon_sym_BSLASHglslink] = ACTIONS(5123), - [anon_sym_BSLASHglstext] = ACTIONS(5123), - [anon_sym_BSLASHGlstext] = ACTIONS(5123), - [anon_sym_BSLASHGLStext] = ACTIONS(5123), - [anon_sym_BSLASHglsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), - [anon_sym_BSLASHglsplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSplural] = ACTIONS(5123), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHglsname] = ACTIONS(5123), - [anon_sym_BSLASHGlsname] = ACTIONS(5123), - [anon_sym_BSLASHGLSname] = ACTIONS(5123), - [anon_sym_BSLASHglssymbol] = ACTIONS(5123), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), - [anon_sym_BSLASHglsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), - [anon_sym_BSLASHglsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), - [anon_sym_BSLASHglsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), - [anon_sym_BSLASHglsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), - [anon_sym_BSLASHglsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), - [anon_sym_BSLASHnewacronym] = ACTIONS(5123), - [anon_sym_BSLASHacrshort] = ACTIONS(5123), - [anon_sym_BSLASHAcrshort] = ACTIONS(5123), - [anon_sym_BSLASHACRshort] = ACTIONS(5123), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), - [anon_sym_BSLASHacrlong] = ACTIONS(5123), - [anon_sym_BSLASHAcrlong] = ACTIONS(5123), - [anon_sym_BSLASHACRlong] = ACTIONS(5123), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), - [anon_sym_BSLASHacrfull] = ACTIONS(5123), - [anon_sym_BSLASHAcrfull] = ACTIONS(5123), - [anon_sym_BSLASHACRfull] = ACTIONS(5123), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), - [anon_sym_BSLASHacs] = ACTIONS(5123), - [anon_sym_BSLASHAcs] = ACTIONS(5123), - [anon_sym_BSLASHacsp] = ACTIONS(5123), - [anon_sym_BSLASHAcsp] = ACTIONS(5123), - [anon_sym_BSLASHacl] = ACTIONS(5123), - [anon_sym_BSLASHAcl] = ACTIONS(5123), - [anon_sym_BSLASHaclp] = ACTIONS(5123), - [anon_sym_BSLASHAclp] = ACTIONS(5123), - [anon_sym_BSLASHacf] = ACTIONS(5123), - [anon_sym_BSLASHAcf] = ACTIONS(5123), - [anon_sym_BSLASHacfp] = ACTIONS(5123), - [anon_sym_BSLASHAcfp] = ACTIONS(5123), - [anon_sym_BSLASHac] = ACTIONS(5123), - [anon_sym_BSLASHAc] = ACTIONS(5123), - [anon_sym_BSLASHacp] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), - [anon_sym_BSLASHcolor] = ACTIONS(5123), - [anon_sym_BSLASHcolorbox] = ACTIONS(5123), - [anon_sym_BSLASHtextcolor] = ACTIONS(5123), - [anon_sym_BSLASHpagecolor] = ACTIONS(5123), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), - [anon_sym_BSLASHtext] = ACTIONS(5123), - [anon_sym_BSLASHintertext] = ACTIONS(5123), - [anon_sym_shortintertext] = ACTIONS(5123), + [sym_command_name] = ACTIONS(5202), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_RBRACK] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_BSLASHpart] = ACTIONS(5202), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddpart] = ACTIONS(5202), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHchapter] = ACTIONS(5202), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddchap] = ACTIONS(5202), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsection] = ACTIONS(5202), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddsec] = ACTIONS(5202), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHparagraph] = ACTIONS(5202), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5202), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHitem] = ACTIONS(5202), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5200), + [sym_word] = ACTIONS(5202), + [sym_placeholder] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym__] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_SQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5200), + [anon_sym_BSLASHbegin] = ACTIONS(5202), + [anon_sym_BSLASHend] = ACTIONS(5202), + [anon_sym_BSLASHusepackage] = ACTIONS(5202), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5202), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5202), + [anon_sym_BSLASHinclude] = ACTIONS(5202), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5202), + [anon_sym_BSLASHinput] = ACTIONS(5202), + [anon_sym_BSLASHsubfile] = ACTIONS(5202), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5202), + [anon_sym_BSLASHbibliography] = ACTIONS(5202), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5202), + [anon_sym_BSLASHincludesvg] = ACTIONS(5202), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5202), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5202), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5202), + [anon_sym_BSLASHimport] = ACTIONS(5202), + [anon_sym_BSLASHsubimport] = ACTIONS(5202), + [anon_sym_BSLASHinputfrom] = ACTIONS(5202), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5202), + [anon_sym_BSLASHincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHcaption] = ACTIONS(5202), + [anon_sym_BSLASHcite] = ACTIONS(5202), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCite] = ACTIONS(5202), + [anon_sym_BSLASHnocite] = ACTIONS(5202), + [anon_sym_BSLASHcitet] = ACTIONS(5202), + [anon_sym_BSLASHcitep] = ACTIONS(5202), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteauthor] = ACTIONS(5202), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5202), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitetitle] = ACTIONS(5202), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteyear] = ACTIONS(5202), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitedate] = ACTIONS(5202), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteurl] = ACTIONS(5202), + [anon_sym_BSLASHfullcite] = ACTIONS(5202), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5202), + [anon_sym_BSLASHcitealt] = ACTIONS(5202), + [anon_sym_BSLASHcitealp] = ACTIONS(5202), + [anon_sym_BSLASHcitetext] = ACTIONS(5202), + [anon_sym_BSLASHparencite] = ACTIONS(5202), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHParencite] = ACTIONS(5202), + [anon_sym_BSLASHfootcite] = ACTIONS(5202), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5202), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5202), + [anon_sym_BSLASHtextcite] = ACTIONS(5202), + [anon_sym_BSLASHTextcite] = ACTIONS(5202), + [anon_sym_BSLASHsmartcite] = ACTIONS(5202), + [anon_sym_BSLASHSmartcite] = ACTIONS(5202), + [anon_sym_BSLASHsupercite] = ACTIONS(5202), + [anon_sym_BSLASHautocite] = ACTIONS(5202), + [anon_sym_BSLASHAutocite] = ACTIONS(5202), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHvolcite] = ACTIONS(5202), + [anon_sym_BSLASHVolcite] = ACTIONS(5202), + [anon_sym_BSLASHpvolcite] = ACTIONS(5202), + [anon_sym_BSLASHPvolcite] = ACTIONS(5202), + [anon_sym_BSLASHfvolcite] = ACTIONS(5202), + [anon_sym_BSLASHftvolcite] = ACTIONS(5202), + [anon_sym_BSLASHsvolcite] = ACTIONS(5202), + [anon_sym_BSLASHSvolcite] = ACTIONS(5202), + [anon_sym_BSLASHtvolcite] = ACTIONS(5202), + [anon_sym_BSLASHTvolcite] = ACTIONS(5202), + [anon_sym_BSLASHavolcite] = ACTIONS(5202), + [anon_sym_BSLASHAvolcite] = ACTIONS(5202), + [anon_sym_BSLASHnotecite] = ACTIONS(5202), + [anon_sym_BSLASHNotecite] = ACTIONS(5202), + [anon_sym_BSLASHpnotecite] = ACTIONS(5202), + [anon_sym_BSLASHPnotecite] = ACTIONS(5202), + [anon_sym_BSLASHfnotecite] = ACTIONS(5202), + [anon_sym_BSLASHlabel] = ACTIONS(5202), + [anon_sym_BSLASHref] = ACTIONS(5202), + [anon_sym_BSLASHeqref] = ACTIONS(5202), + [anon_sym_BSLASHvref] = ACTIONS(5202), + [anon_sym_BSLASHVref] = ACTIONS(5202), + [anon_sym_BSLASHautoref] = ACTIONS(5202), + [anon_sym_BSLASHpageref] = ACTIONS(5202), + [anon_sym_BSLASHcref] = ACTIONS(5202), + [anon_sym_BSLASHCref] = ACTIONS(5202), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnameCref] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHlabelcref] = ACTIONS(5202), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCrefrange] = ACTIONS(5202), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnewlabel] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5202), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5202), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5202), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdef] = ACTIONS(5202), + [anon_sym_BSLASHlet] = ACTIONS(5202), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5202), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5202), + [anon_sym_BSLASHgls] = ACTIONS(5202), + [anon_sym_BSLASHGls] = ACTIONS(5202), + [anon_sym_BSLASHGLS] = ACTIONS(5202), + [anon_sym_BSLASHglspl] = ACTIONS(5202), + [anon_sym_BSLASHGlspl] = ACTIONS(5202), + [anon_sym_BSLASHGLSpl] = ACTIONS(5202), + [anon_sym_BSLASHglsdisp] = ACTIONS(5202), + [anon_sym_BSLASHglslink] = ACTIONS(5202), + [anon_sym_BSLASHglstext] = ACTIONS(5202), + [anon_sym_BSLASHGlstext] = ACTIONS(5202), + [anon_sym_BSLASHGLStext] = ACTIONS(5202), + [anon_sym_BSLASHglsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5202), + [anon_sym_BSLASHglsplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSplural] = ACTIONS(5202), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHglsname] = ACTIONS(5202), + [anon_sym_BSLASHGlsname] = ACTIONS(5202), + [anon_sym_BSLASHGLSname] = ACTIONS(5202), + [anon_sym_BSLASHglssymbol] = ACTIONS(5202), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5202), + [anon_sym_BSLASHglsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5202), + [anon_sym_BSLASHglsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5202), + [anon_sym_BSLASHglsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5202), + [anon_sym_BSLASHglsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5202), + [anon_sym_BSLASHglsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5202), + [anon_sym_BSLASHnewacronym] = ACTIONS(5202), + [anon_sym_BSLASHacrshort] = ACTIONS(5202), + [anon_sym_BSLASHAcrshort] = ACTIONS(5202), + [anon_sym_BSLASHACRshort] = ACTIONS(5202), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5202), + [anon_sym_BSLASHacrlong] = ACTIONS(5202), + [anon_sym_BSLASHAcrlong] = ACTIONS(5202), + [anon_sym_BSLASHACRlong] = ACTIONS(5202), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5202), + [anon_sym_BSLASHacrfull] = ACTIONS(5202), + [anon_sym_BSLASHAcrfull] = ACTIONS(5202), + [anon_sym_BSLASHACRfull] = ACTIONS(5202), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5202), + [anon_sym_BSLASHacs] = ACTIONS(5202), + [anon_sym_BSLASHAcs] = ACTIONS(5202), + [anon_sym_BSLASHacsp] = ACTIONS(5202), + [anon_sym_BSLASHAcsp] = ACTIONS(5202), + [anon_sym_BSLASHacl] = ACTIONS(5202), + [anon_sym_BSLASHAcl] = ACTIONS(5202), + [anon_sym_BSLASHaclp] = ACTIONS(5202), + [anon_sym_BSLASHAclp] = ACTIONS(5202), + [anon_sym_BSLASHacf] = ACTIONS(5202), + [anon_sym_BSLASHAcf] = ACTIONS(5202), + [anon_sym_BSLASHacfp] = ACTIONS(5202), + [anon_sym_BSLASHAcfp] = ACTIONS(5202), + [anon_sym_BSLASHac] = ACTIONS(5202), + [anon_sym_BSLASHAc] = ACTIONS(5202), + [anon_sym_BSLASHacp] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5202), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5202), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5202), + [anon_sym_BSLASHcolor] = ACTIONS(5202), + [anon_sym_BSLASHcolorbox] = ACTIONS(5202), + [anon_sym_BSLASHtextcolor] = ACTIONS(5202), + [anon_sym_BSLASHpagecolor] = ACTIONS(5202), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5202), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5202), + [anon_sym_BSLASHtext] = ACTIONS(5202), + [anon_sym_BSLASHintertext] = ACTIONS(5202), + [anon_sym_shortintertext] = ACTIONS(5202), }, [1106] = { - [sym_command_name] = ACTIONS(5115), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_BSLASHpart] = ACTIONS(5115), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddpart] = ACTIONS(5115), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHchapter] = ACTIONS(5115), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddchap] = ACTIONS(5115), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsection] = ACTIONS(5115), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddsec] = ACTIONS(5115), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHparagraph] = ACTIONS(5115), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHitem] = ACTIONS(5115), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5113), - [sym_word] = ACTIONS(5115), - [sym_placeholder] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_CARET] = ACTIONS(5115), - [anon_sym__] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), - [anon_sym_BSLASHbegin] = ACTIONS(5115), - [anon_sym_BSLASHend] = ACTIONS(5115), - [anon_sym_BSLASHusepackage] = ACTIONS(5115), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), - [anon_sym_BSLASHinclude] = ACTIONS(5115), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), - [anon_sym_BSLASHinput] = ACTIONS(5115), - [anon_sym_BSLASHsubfile] = ACTIONS(5115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), - [anon_sym_BSLASHbibliography] = ACTIONS(5115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), - [anon_sym_BSLASHincludesvg] = ACTIONS(5115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), - [anon_sym_BSLASHimport] = ACTIONS(5115), - [anon_sym_BSLASHsubimport] = ACTIONS(5115), - [anon_sym_BSLASHinputfrom] = ACTIONS(5115), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), - [anon_sym_BSLASHincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHcaption] = ACTIONS(5115), - [anon_sym_BSLASHcite] = ACTIONS(5115), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCite] = ACTIONS(5115), - [anon_sym_BSLASHnocite] = ACTIONS(5115), - [anon_sym_BSLASHcitet] = ACTIONS(5115), - [anon_sym_BSLASHcitep] = ACTIONS(5115), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteyear] = ACTIONS(5115), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitedate] = ACTIONS(5115), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteurl] = ACTIONS(5115), - [anon_sym_BSLASHfullcite] = ACTIONS(5115), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), - [anon_sym_BSLASHcitealt] = ACTIONS(5115), - [anon_sym_BSLASHcitealp] = ACTIONS(5115), - [anon_sym_BSLASHcitetext] = ACTIONS(5115), - [anon_sym_BSLASHparencite] = ACTIONS(5115), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHParencite] = ACTIONS(5115), - [anon_sym_BSLASHfootcite] = ACTIONS(5115), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), - [anon_sym_BSLASHtextcite] = ACTIONS(5115), - [anon_sym_BSLASHTextcite] = ACTIONS(5115), - [anon_sym_BSLASHsmartcite] = ACTIONS(5115), - [anon_sym_BSLASHSmartcite] = ACTIONS(5115), - [anon_sym_BSLASHsupercite] = ACTIONS(5115), - [anon_sym_BSLASHautocite] = ACTIONS(5115), - [anon_sym_BSLASHAutocite] = ACTIONS(5115), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHvolcite] = ACTIONS(5115), - [anon_sym_BSLASHVolcite] = ACTIONS(5115), - [anon_sym_BSLASHpvolcite] = ACTIONS(5115), - [anon_sym_BSLASHPvolcite] = ACTIONS(5115), - [anon_sym_BSLASHfvolcite] = ACTIONS(5115), - [anon_sym_BSLASHftvolcite] = ACTIONS(5115), - [anon_sym_BSLASHsvolcite] = ACTIONS(5115), - [anon_sym_BSLASHSvolcite] = ACTIONS(5115), - [anon_sym_BSLASHtvolcite] = ACTIONS(5115), - [anon_sym_BSLASHTvolcite] = ACTIONS(5115), - [anon_sym_BSLASHavolcite] = ACTIONS(5115), - [anon_sym_BSLASHAvolcite] = ACTIONS(5115), - [anon_sym_BSLASHnotecite] = ACTIONS(5115), - [anon_sym_BSLASHNotecite] = ACTIONS(5115), - [anon_sym_BSLASHpnotecite] = ACTIONS(5115), - [anon_sym_BSLASHPnotecite] = ACTIONS(5115), - [anon_sym_BSLASHfnotecite] = ACTIONS(5115), - [anon_sym_BSLASHlabel] = ACTIONS(5115), - [anon_sym_BSLASHref] = ACTIONS(5115), - [anon_sym_BSLASHeqref] = ACTIONS(5115), - [anon_sym_BSLASHvref] = ACTIONS(5115), - [anon_sym_BSLASHVref] = ACTIONS(5115), - [anon_sym_BSLASHautoref] = ACTIONS(5115), - [anon_sym_BSLASHpageref] = ACTIONS(5115), - [anon_sym_BSLASHcref] = ACTIONS(5115), - [anon_sym_BSLASHCref] = ACTIONS(5115), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnameCref] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHlabelcref] = ACTIONS(5115), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnewlabel] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), - [anon_sym_BSLASHdef] = ACTIONS(5115), - [anon_sym_BSLASHlet] = ACTIONS(5115), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), - [anon_sym_BSLASHgls] = ACTIONS(5115), - [anon_sym_BSLASHGls] = ACTIONS(5115), - [anon_sym_BSLASHGLS] = ACTIONS(5115), - [anon_sym_BSLASHglspl] = ACTIONS(5115), - [anon_sym_BSLASHGlspl] = ACTIONS(5115), - [anon_sym_BSLASHGLSpl] = ACTIONS(5115), - [anon_sym_BSLASHglsdisp] = ACTIONS(5115), - [anon_sym_BSLASHglslink] = ACTIONS(5115), - [anon_sym_BSLASHglstext] = ACTIONS(5115), - [anon_sym_BSLASHGlstext] = ACTIONS(5115), - [anon_sym_BSLASHGLStext] = ACTIONS(5115), - [anon_sym_BSLASHglsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), - [anon_sym_BSLASHglsplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSplural] = ACTIONS(5115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHglsname] = ACTIONS(5115), - [anon_sym_BSLASHGlsname] = ACTIONS(5115), - [anon_sym_BSLASHGLSname] = ACTIONS(5115), - [anon_sym_BSLASHglssymbol] = ACTIONS(5115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), - [anon_sym_BSLASHglsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), - [anon_sym_BSLASHglsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), - [anon_sym_BSLASHglsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), - [anon_sym_BSLASHglsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), - [anon_sym_BSLASHglsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), - [anon_sym_BSLASHnewacronym] = ACTIONS(5115), - [anon_sym_BSLASHacrshort] = ACTIONS(5115), - [anon_sym_BSLASHAcrshort] = ACTIONS(5115), - [anon_sym_BSLASHACRshort] = ACTIONS(5115), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), - [anon_sym_BSLASHacrlong] = ACTIONS(5115), - [anon_sym_BSLASHAcrlong] = ACTIONS(5115), - [anon_sym_BSLASHACRlong] = ACTIONS(5115), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), - [anon_sym_BSLASHacrfull] = ACTIONS(5115), - [anon_sym_BSLASHAcrfull] = ACTIONS(5115), - [anon_sym_BSLASHACRfull] = ACTIONS(5115), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), - [anon_sym_BSLASHacs] = ACTIONS(5115), - [anon_sym_BSLASHAcs] = ACTIONS(5115), - [anon_sym_BSLASHacsp] = ACTIONS(5115), - [anon_sym_BSLASHAcsp] = ACTIONS(5115), - [anon_sym_BSLASHacl] = ACTIONS(5115), - [anon_sym_BSLASHAcl] = ACTIONS(5115), - [anon_sym_BSLASHaclp] = ACTIONS(5115), - [anon_sym_BSLASHAclp] = ACTIONS(5115), - [anon_sym_BSLASHacf] = ACTIONS(5115), - [anon_sym_BSLASHAcf] = ACTIONS(5115), - [anon_sym_BSLASHacfp] = ACTIONS(5115), - [anon_sym_BSLASHAcfp] = ACTIONS(5115), - [anon_sym_BSLASHac] = ACTIONS(5115), - [anon_sym_BSLASHAc] = ACTIONS(5115), - [anon_sym_BSLASHacp] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), - [anon_sym_BSLASHcolor] = ACTIONS(5115), - [anon_sym_BSLASHcolorbox] = ACTIONS(5115), - [anon_sym_BSLASHtextcolor] = ACTIONS(5115), - [anon_sym_BSLASHpagecolor] = ACTIONS(5115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), - [anon_sym_BSLASHtext] = ACTIONS(5115), - [anon_sym_BSLASHintertext] = ACTIONS(5115), - [anon_sym_shortintertext] = ACTIONS(5115), + [sym_command_name] = ACTIONS(5194), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_BSLASHpart] = ACTIONS(5194), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddpart] = ACTIONS(5194), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHchapter] = ACTIONS(5194), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddchap] = ACTIONS(5194), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsection] = ACTIONS(5194), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddsec] = ACTIONS(5194), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHparagraph] = ACTIONS(5194), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5194), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHitem] = ACTIONS(5194), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5192), + [sym_word] = ACTIONS(5194), + [sym_placeholder] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym__] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_SQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5192), + [anon_sym_BSLASHbegin] = ACTIONS(5194), + [anon_sym_BSLASHend] = ACTIONS(5194), + [anon_sym_BSLASHusepackage] = ACTIONS(5194), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5194), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5194), + [anon_sym_BSLASHinclude] = ACTIONS(5194), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5194), + [anon_sym_BSLASHinput] = ACTIONS(5194), + [anon_sym_BSLASHsubfile] = ACTIONS(5194), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5194), + [anon_sym_BSLASHbibliography] = ACTIONS(5194), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5194), + [anon_sym_BSLASHincludesvg] = ACTIONS(5194), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5194), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5194), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5194), + [anon_sym_BSLASHimport] = ACTIONS(5194), + [anon_sym_BSLASHsubimport] = ACTIONS(5194), + [anon_sym_BSLASHinputfrom] = ACTIONS(5194), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5194), + [anon_sym_BSLASHincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHcaption] = ACTIONS(5194), + [anon_sym_BSLASHcite] = ACTIONS(5194), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCite] = ACTIONS(5194), + [anon_sym_BSLASHnocite] = ACTIONS(5194), + [anon_sym_BSLASHcitet] = ACTIONS(5194), + [anon_sym_BSLASHcitep] = ACTIONS(5194), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteauthor] = ACTIONS(5194), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5194), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitetitle] = ACTIONS(5194), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteyear] = ACTIONS(5194), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitedate] = ACTIONS(5194), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteurl] = ACTIONS(5194), + [anon_sym_BSLASHfullcite] = ACTIONS(5194), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5194), + [anon_sym_BSLASHcitealt] = ACTIONS(5194), + [anon_sym_BSLASHcitealp] = ACTIONS(5194), + [anon_sym_BSLASHcitetext] = ACTIONS(5194), + [anon_sym_BSLASHparencite] = ACTIONS(5194), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHParencite] = ACTIONS(5194), + [anon_sym_BSLASHfootcite] = ACTIONS(5194), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5194), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5194), + [anon_sym_BSLASHtextcite] = ACTIONS(5194), + [anon_sym_BSLASHTextcite] = ACTIONS(5194), + [anon_sym_BSLASHsmartcite] = ACTIONS(5194), + [anon_sym_BSLASHSmartcite] = ACTIONS(5194), + [anon_sym_BSLASHsupercite] = ACTIONS(5194), + [anon_sym_BSLASHautocite] = ACTIONS(5194), + [anon_sym_BSLASHAutocite] = ACTIONS(5194), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHvolcite] = ACTIONS(5194), + [anon_sym_BSLASHVolcite] = ACTIONS(5194), + [anon_sym_BSLASHpvolcite] = ACTIONS(5194), + [anon_sym_BSLASHPvolcite] = ACTIONS(5194), + [anon_sym_BSLASHfvolcite] = ACTIONS(5194), + [anon_sym_BSLASHftvolcite] = ACTIONS(5194), + [anon_sym_BSLASHsvolcite] = ACTIONS(5194), + [anon_sym_BSLASHSvolcite] = ACTIONS(5194), + [anon_sym_BSLASHtvolcite] = ACTIONS(5194), + [anon_sym_BSLASHTvolcite] = ACTIONS(5194), + [anon_sym_BSLASHavolcite] = ACTIONS(5194), + [anon_sym_BSLASHAvolcite] = ACTIONS(5194), + [anon_sym_BSLASHnotecite] = ACTIONS(5194), + [anon_sym_BSLASHNotecite] = ACTIONS(5194), + [anon_sym_BSLASHpnotecite] = ACTIONS(5194), + [anon_sym_BSLASHPnotecite] = ACTIONS(5194), + [anon_sym_BSLASHfnotecite] = ACTIONS(5194), + [anon_sym_BSLASHlabel] = ACTIONS(5194), + [anon_sym_BSLASHref] = ACTIONS(5194), + [anon_sym_BSLASHeqref] = ACTIONS(5194), + [anon_sym_BSLASHvref] = ACTIONS(5194), + [anon_sym_BSLASHVref] = ACTIONS(5194), + [anon_sym_BSLASHautoref] = ACTIONS(5194), + [anon_sym_BSLASHpageref] = ACTIONS(5194), + [anon_sym_BSLASHcref] = ACTIONS(5194), + [anon_sym_BSLASHCref] = ACTIONS(5194), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnameCref] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHlabelcref] = ACTIONS(5194), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCrefrange] = ACTIONS(5194), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnewlabel] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5194), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5194), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5194), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdef] = ACTIONS(5194), + [anon_sym_BSLASHlet] = ACTIONS(5194), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5194), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5194), + [anon_sym_BSLASHgls] = ACTIONS(5194), + [anon_sym_BSLASHGls] = ACTIONS(5194), + [anon_sym_BSLASHGLS] = ACTIONS(5194), + [anon_sym_BSLASHglspl] = ACTIONS(5194), + [anon_sym_BSLASHGlspl] = ACTIONS(5194), + [anon_sym_BSLASHGLSpl] = ACTIONS(5194), + [anon_sym_BSLASHglsdisp] = ACTIONS(5194), + [anon_sym_BSLASHglslink] = ACTIONS(5194), + [anon_sym_BSLASHglstext] = ACTIONS(5194), + [anon_sym_BSLASHGlstext] = ACTIONS(5194), + [anon_sym_BSLASHGLStext] = ACTIONS(5194), + [anon_sym_BSLASHglsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5194), + [anon_sym_BSLASHglsplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSplural] = ACTIONS(5194), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHglsname] = ACTIONS(5194), + [anon_sym_BSLASHGlsname] = ACTIONS(5194), + [anon_sym_BSLASHGLSname] = ACTIONS(5194), + [anon_sym_BSLASHglssymbol] = ACTIONS(5194), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5194), + [anon_sym_BSLASHglsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5194), + [anon_sym_BSLASHglsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5194), + [anon_sym_BSLASHglsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5194), + [anon_sym_BSLASHglsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5194), + [anon_sym_BSLASHglsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5194), + [anon_sym_BSLASHnewacronym] = ACTIONS(5194), + [anon_sym_BSLASHacrshort] = ACTIONS(5194), + [anon_sym_BSLASHAcrshort] = ACTIONS(5194), + [anon_sym_BSLASHACRshort] = ACTIONS(5194), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5194), + [anon_sym_BSLASHacrlong] = ACTIONS(5194), + [anon_sym_BSLASHAcrlong] = ACTIONS(5194), + [anon_sym_BSLASHACRlong] = ACTIONS(5194), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5194), + [anon_sym_BSLASHacrfull] = ACTIONS(5194), + [anon_sym_BSLASHAcrfull] = ACTIONS(5194), + [anon_sym_BSLASHACRfull] = ACTIONS(5194), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5194), + [anon_sym_BSLASHacs] = ACTIONS(5194), + [anon_sym_BSLASHAcs] = ACTIONS(5194), + [anon_sym_BSLASHacsp] = ACTIONS(5194), + [anon_sym_BSLASHAcsp] = ACTIONS(5194), + [anon_sym_BSLASHacl] = ACTIONS(5194), + [anon_sym_BSLASHAcl] = ACTIONS(5194), + [anon_sym_BSLASHaclp] = ACTIONS(5194), + [anon_sym_BSLASHAclp] = ACTIONS(5194), + [anon_sym_BSLASHacf] = ACTIONS(5194), + [anon_sym_BSLASHAcf] = ACTIONS(5194), + [anon_sym_BSLASHacfp] = ACTIONS(5194), + [anon_sym_BSLASHAcfp] = ACTIONS(5194), + [anon_sym_BSLASHac] = ACTIONS(5194), + [anon_sym_BSLASHAc] = ACTIONS(5194), + [anon_sym_BSLASHacp] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5194), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5194), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5194), + [anon_sym_BSLASHcolor] = ACTIONS(5194), + [anon_sym_BSLASHcolorbox] = ACTIONS(5194), + [anon_sym_BSLASHtextcolor] = ACTIONS(5194), + [anon_sym_BSLASHpagecolor] = ACTIONS(5194), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5194), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5194), + [anon_sym_BSLASHtext] = ACTIONS(5194), + [anon_sym_BSLASHintertext] = ACTIONS(5194), + [anon_sym_shortintertext] = ACTIONS(5194), }, [1107] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5109), - [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), + [sym_command_name] = ACTIONS(5188), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_BSLASHpart] = ACTIONS(5188), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddpart] = ACTIONS(5188), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHchapter] = ACTIONS(5188), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddchap] = ACTIONS(5188), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsection] = ACTIONS(5188), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddsec] = ACTIONS(5188), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHparagraph] = ACTIONS(5188), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5188), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHitem] = ACTIONS(5188), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5186), + [sym_word] = ACTIONS(5188), + [sym_placeholder] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym__] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_BANG] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_SQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5186), + [anon_sym_BSLASHbegin] = ACTIONS(5188), + [anon_sym_BSLASHend] = ACTIONS(5188), + [anon_sym_BSLASHusepackage] = ACTIONS(5188), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5188), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5188), + [anon_sym_BSLASHinclude] = ACTIONS(5188), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5188), + [anon_sym_BSLASHinput] = ACTIONS(5188), + [anon_sym_BSLASHsubfile] = ACTIONS(5188), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5188), + [anon_sym_BSLASHbibliography] = ACTIONS(5188), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5188), + [anon_sym_BSLASHincludesvg] = ACTIONS(5188), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5188), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5188), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5188), + [anon_sym_BSLASHimport] = ACTIONS(5188), + [anon_sym_BSLASHsubimport] = ACTIONS(5188), + [anon_sym_BSLASHinputfrom] = ACTIONS(5188), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5188), + [anon_sym_BSLASHincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHcaption] = ACTIONS(5188), + [anon_sym_BSLASHcite] = ACTIONS(5188), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCite] = ACTIONS(5188), + [anon_sym_BSLASHnocite] = ACTIONS(5188), + [anon_sym_BSLASHcitet] = ACTIONS(5188), + [anon_sym_BSLASHcitep] = ACTIONS(5188), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteauthor] = ACTIONS(5188), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5188), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitetitle] = ACTIONS(5188), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteyear] = ACTIONS(5188), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitedate] = ACTIONS(5188), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteurl] = ACTIONS(5188), + [anon_sym_BSLASHfullcite] = ACTIONS(5188), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5188), + [anon_sym_BSLASHcitealt] = ACTIONS(5188), + [anon_sym_BSLASHcitealp] = ACTIONS(5188), + [anon_sym_BSLASHcitetext] = ACTIONS(5188), + [anon_sym_BSLASHparencite] = ACTIONS(5188), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHParencite] = ACTIONS(5188), + [anon_sym_BSLASHfootcite] = ACTIONS(5188), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5188), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5188), + [anon_sym_BSLASHtextcite] = ACTIONS(5188), + [anon_sym_BSLASHTextcite] = ACTIONS(5188), + [anon_sym_BSLASHsmartcite] = ACTIONS(5188), + [anon_sym_BSLASHSmartcite] = ACTIONS(5188), + [anon_sym_BSLASHsupercite] = ACTIONS(5188), + [anon_sym_BSLASHautocite] = ACTIONS(5188), + [anon_sym_BSLASHAutocite] = ACTIONS(5188), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHvolcite] = ACTIONS(5188), + [anon_sym_BSLASHVolcite] = ACTIONS(5188), + [anon_sym_BSLASHpvolcite] = ACTIONS(5188), + [anon_sym_BSLASHPvolcite] = ACTIONS(5188), + [anon_sym_BSLASHfvolcite] = ACTIONS(5188), + [anon_sym_BSLASHftvolcite] = ACTIONS(5188), + [anon_sym_BSLASHsvolcite] = ACTIONS(5188), + [anon_sym_BSLASHSvolcite] = ACTIONS(5188), + [anon_sym_BSLASHtvolcite] = ACTIONS(5188), + [anon_sym_BSLASHTvolcite] = ACTIONS(5188), + [anon_sym_BSLASHavolcite] = ACTIONS(5188), + [anon_sym_BSLASHAvolcite] = ACTIONS(5188), + [anon_sym_BSLASHnotecite] = ACTIONS(5188), + [anon_sym_BSLASHNotecite] = ACTIONS(5188), + [anon_sym_BSLASHpnotecite] = ACTIONS(5188), + [anon_sym_BSLASHPnotecite] = ACTIONS(5188), + [anon_sym_BSLASHfnotecite] = ACTIONS(5188), + [anon_sym_BSLASHlabel] = ACTIONS(5188), + [anon_sym_BSLASHref] = ACTIONS(5188), + [anon_sym_BSLASHeqref] = ACTIONS(5188), + [anon_sym_BSLASHvref] = ACTIONS(5188), + [anon_sym_BSLASHVref] = ACTIONS(5188), + [anon_sym_BSLASHautoref] = ACTIONS(5188), + [anon_sym_BSLASHpageref] = ACTIONS(5188), + [anon_sym_BSLASHcref] = ACTIONS(5188), + [anon_sym_BSLASHCref] = ACTIONS(5188), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnameCref] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHlabelcref] = ACTIONS(5188), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCrefrange] = ACTIONS(5188), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnewlabel] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5188), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5188), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5188), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdef] = ACTIONS(5188), + [anon_sym_BSLASHlet] = ACTIONS(5188), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5188), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5188), + [anon_sym_BSLASHgls] = ACTIONS(5188), + [anon_sym_BSLASHGls] = ACTIONS(5188), + [anon_sym_BSLASHGLS] = ACTIONS(5188), + [anon_sym_BSLASHglspl] = ACTIONS(5188), + [anon_sym_BSLASHGlspl] = ACTIONS(5188), + [anon_sym_BSLASHGLSpl] = ACTIONS(5188), + [anon_sym_BSLASHglsdisp] = ACTIONS(5188), + [anon_sym_BSLASHglslink] = ACTIONS(5188), + [anon_sym_BSLASHglstext] = ACTIONS(5188), + [anon_sym_BSLASHGlstext] = ACTIONS(5188), + [anon_sym_BSLASHGLStext] = ACTIONS(5188), + [anon_sym_BSLASHglsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5188), + [anon_sym_BSLASHglsplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSplural] = ACTIONS(5188), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHglsname] = ACTIONS(5188), + [anon_sym_BSLASHGlsname] = ACTIONS(5188), + [anon_sym_BSLASHGLSname] = ACTIONS(5188), + [anon_sym_BSLASHglssymbol] = ACTIONS(5188), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5188), + [anon_sym_BSLASHglsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5188), + [anon_sym_BSLASHglsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5188), + [anon_sym_BSLASHglsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5188), + [anon_sym_BSLASHglsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5188), + [anon_sym_BSLASHglsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5188), + [anon_sym_BSLASHnewacronym] = ACTIONS(5188), + [anon_sym_BSLASHacrshort] = ACTIONS(5188), + [anon_sym_BSLASHAcrshort] = ACTIONS(5188), + [anon_sym_BSLASHACRshort] = ACTIONS(5188), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5188), + [anon_sym_BSLASHacrlong] = ACTIONS(5188), + [anon_sym_BSLASHAcrlong] = ACTIONS(5188), + [anon_sym_BSLASHACRlong] = ACTIONS(5188), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5188), + [anon_sym_BSLASHacrfull] = ACTIONS(5188), + [anon_sym_BSLASHAcrfull] = ACTIONS(5188), + [anon_sym_BSLASHACRfull] = ACTIONS(5188), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5188), + [anon_sym_BSLASHacs] = ACTIONS(5188), + [anon_sym_BSLASHAcs] = ACTIONS(5188), + [anon_sym_BSLASHacsp] = ACTIONS(5188), + [anon_sym_BSLASHAcsp] = ACTIONS(5188), + [anon_sym_BSLASHacl] = ACTIONS(5188), + [anon_sym_BSLASHAcl] = ACTIONS(5188), + [anon_sym_BSLASHaclp] = ACTIONS(5188), + [anon_sym_BSLASHAclp] = ACTIONS(5188), + [anon_sym_BSLASHacf] = ACTIONS(5188), + [anon_sym_BSLASHAcf] = ACTIONS(5188), + [anon_sym_BSLASHacfp] = ACTIONS(5188), + [anon_sym_BSLASHAcfp] = ACTIONS(5188), + [anon_sym_BSLASHac] = ACTIONS(5188), + [anon_sym_BSLASHAc] = ACTIONS(5188), + [anon_sym_BSLASHacp] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5188), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5188), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5188), + [anon_sym_BSLASHcolor] = ACTIONS(5188), + [anon_sym_BSLASHcolorbox] = ACTIONS(5188), + [anon_sym_BSLASHtextcolor] = ACTIONS(5188), + [anon_sym_BSLASHpagecolor] = ACTIONS(5188), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5188), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5188), + [anon_sym_BSLASHtext] = ACTIONS(5188), + [anon_sym_BSLASHintertext] = ACTIONS(5188), + [anon_sym_shortintertext] = ACTIONS(5188), }, [1108] = { - [sym_command_name] = ACTIONS(5077), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHend] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - [anon_sym_BSLASHtext] = ACTIONS(5077), - [anon_sym_BSLASHintertext] = ACTIONS(5077), - [anon_sym_shortintertext] = ACTIONS(5077), + [sym_command_name] = ACTIONS(5156), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_BSLASHpart] = ACTIONS(5156), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddpart] = ACTIONS(5156), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHchapter] = ACTIONS(5156), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddchap] = ACTIONS(5156), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsection] = ACTIONS(5156), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddsec] = ACTIONS(5156), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHparagraph] = ACTIONS(5156), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5156), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHitem] = ACTIONS(5156), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5154), + [sym_word] = ACTIONS(5156), + [sym_placeholder] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym__] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_BANG] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_SQUOTE] = ACTIONS(5156), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5154), + [anon_sym_BSLASHbegin] = ACTIONS(5156), + [anon_sym_BSLASHend] = ACTIONS(5156), + [anon_sym_BSLASHusepackage] = ACTIONS(5156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5156), + [anon_sym_BSLASHinclude] = ACTIONS(5156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5156), + [anon_sym_BSLASHinput] = ACTIONS(5156), + [anon_sym_BSLASHsubfile] = ACTIONS(5156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5156), + [anon_sym_BSLASHbibliography] = ACTIONS(5156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5156), + [anon_sym_BSLASHincludesvg] = ACTIONS(5156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5156), + [anon_sym_BSLASHimport] = ACTIONS(5156), + [anon_sym_BSLASHsubimport] = ACTIONS(5156), + [anon_sym_BSLASHinputfrom] = ACTIONS(5156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5156), + [anon_sym_BSLASHincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHcaption] = ACTIONS(5156), + [anon_sym_BSLASHcite] = ACTIONS(5156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCite] = ACTIONS(5156), + [anon_sym_BSLASHnocite] = ACTIONS(5156), + [anon_sym_BSLASHcitet] = ACTIONS(5156), + [anon_sym_BSLASHcitep] = ACTIONS(5156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteauthor] = ACTIONS(5156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitetitle] = ACTIONS(5156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteyear] = ACTIONS(5156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitedate] = ACTIONS(5156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteurl] = ACTIONS(5156), + [anon_sym_BSLASHfullcite] = ACTIONS(5156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5156), + [anon_sym_BSLASHcitealt] = ACTIONS(5156), + [anon_sym_BSLASHcitealp] = ACTIONS(5156), + [anon_sym_BSLASHcitetext] = ACTIONS(5156), + [anon_sym_BSLASHparencite] = ACTIONS(5156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHParencite] = ACTIONS(5156), + [anon_sym_BSLASHfootcite] = ACTIONS(5156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5156), + [anon_sym_BSLASHtextcite] = ACTIONS(5156), + [anon_sym_BSLASHTextcite] = ACTIONS(5156), + [anon_sym_BSLASHsmartcite] = ACTIONS(5156), + [anon_sym_BSLASHSmartcite] = ACTIONS(5156), + [anon_sym_BSLASHsupercite] = ACTIONS(5156), + [anon_sym_BSLASHautocite] = ACTIONS(5156), + [anon_sym_BSLASHAutocite] = ACTIONS(5156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHvolcite] = ACTIONS(5156), + [anon_sym_BSLASHVolcite] = ACTIONS(5156), + [anon_sym_BSLASHpvolcite] = ACTIONS(5156), + [anon_sym_BSLASHPvolcite] = ACTIONS(5156), + [anon_sym_BSLASHfvolcite] = ACTIONS(5156), + [anon_sym_BSLASHftvolcite] = ACTIONS(5156), + [anon_sym_BSLASHsvolcite] = ACTIONS(5156), + [anon_sym_BSLASHSvolcite] = ACTIONS(5156), + [anon_sym_BSLASHtvolcite] = ACTIONS(5156), + [anon_sym_BSLASHTvolcite] = ACTIONS(5156), + [anon_sym_BSLASHavolcite] = ACTIONS(5156), + [anon_sym_BSLASHAvolcite] = ACTIONS(5156), + [anon_sym_BSLASHnotecite] = ACTIONS(5156), + [anon_sym_BSLASHNotecite] = ACTIONS(5156), + [anon_sym_BSLASHpnotecite] = ACTIONS(5156), + [anon_sym_BSLASHPnotecite] = ACTIONS(5156), + [anon_sym_BSLASHfnotecite] = ACTIONS(5156), + [anon_sym_BSLASHlabel] = ACTIONS(5156), + [anon_sym_BSLASHref] = ACTIONS(5156), + [anon_sym_BSLASHeqref] = ACTIONS(5156), + [anon_sym_BSLASHvref] = ACTIONS(5156), + [anon_sym_BSLASHVref] = ACTIONS(5156), + [anon_sym_BSLASHautoref] = ACTIONS(5156), + [anon_sym_BSLASHpageref] = ACTIONS(5156), + [anon_sym_BSLASHcref] = ACTIONS(5156), + [anon_sym_BSLASHCref] = ACTIONS(5156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnameCref] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHlabelcref] = ACTIONS(5156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCrefrange] = ACTIONS(5156), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnewlabel] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5156), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5156), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdef] = ACTIONS(5156), + [anon_sym_BSLASHlet] = ACTIONS(5156), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5156), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5156), + [anon_sym_BSLASHgls] = ACTIONS(5156), + [anon_sym_BSLASHGls] = ACTIONS(5156), + [anon_sym_BSLASHGLS] = ACTIONS(5156), + [anon_sym_BSLASHglspl] = ACTIONS(5156), + [anon_sym_BSLASHGlspl] = ACTIONS(5156), + [anon_sym_BSLASHGLSpl] = ACTIONS(5156), + [anon_sym_BSLASHglsdisp] = ACTIONS(5156), + [anon_sym_BSLASHglslink] = ACTIONS(5156), + [anon_sym_BSLASHglstext] = ACTIONS(5156), + [anon_sym_BSLASHGlstext] = ACTIONS(5156), + [anon_sym_BSLASHGLStext] = ACTIONS(5156), + [anon_sym_BSLASHglsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5156), + [anon_sym_BSLASHglsplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSplural] = ACTIONS(5156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHglsname] = ACTIONS(5156), + [anon_sym_BSLASHGlsname] = ACTIONS(5156), + [anon_sym_BSLASHGLSname] = ACTIONS(5156), + [anon_sym_BSLASHglssymbol] = ACTIONS(5156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5156), + [anon_sym_BSLASHglsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5156), + [anon_sym_BSLASHglsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5156), + [anon_sym_BSLASHglsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5156), + [anon_sym_BSLASHglsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5156), + [anon_sym_BSLASHglsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5156), + [anon_sym_BSLASHnewacronym] = ACTIONS(5156), + [anon_sym_BSLASHacrshort] = ACTIONS(5156), + [anon_sym_BSLASHAcrshort] = ACTIONS(5156), + [anon_sym_BSLASHACRshort] = ACTIONS(5156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5156), + [anon_sym_BSLASHacrlong] = ACTIONS(5156), + [anon_sym_BSLASHAcrlong] = ACTIONS(5156), + [anon_sym_BSLASHACRlong] = ACTIONS(5156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5156), + [anon_sym_BSLASHacrfull] = ACTIONS(5156), + [anon_sym_BSLASHAcrfull] = ACTIONS(5156), + [anon_sym_BSLASHACRfull] = ACTIONS(5156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5156), + [anon_sym_BSLASHacs] = ACTIONS(5156), + [anon_sym_BSLASHAcs] = ACTIONS(5156), + [anon_sym_BSLASHacsp] = ACTIONS(5156), + [anon_sym_BSLASHAcsp] = ACTIONS(5156), + [anon_sym_BSLASHacl] = ACTIONS(5156), + [anon_sym_BSLASHAcl] = ACTIONS(5156), + [anon_sym_BSLASHaclp] = ACTIONS(5156), + [anon_sym_BSLASHAclp] = ACTIONS(5156), + [anon_sym_BSLASHacf] = ACTIONS(5156), + [anon_sym_BSLASHAcf] = ACTIONS(5156), + [anon_sym_BSLASHacfp] = ACTIONS(5156), + [anon_sym_BSLASHAcfp] = ACTIONS(5156), + [anon_sym_BSLASHac] = ACTIONS(5156), + [anon_sym_BSLASHAc] = ACTIONS(5156), + [anon_sym_BSLASHacp] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5156), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5156), + [anon_sym_BSLASHcolor] = ACTIONS(5156), + [anon_sym_BSLASHcolorbox] = ACTIONS(5156), + [anon_sym_BSLASHtextcolor] = ACTIONS(5156), + [anon_sym_BSLASHpagecolor] = ACTIONS(5156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5156), + [anon_sym_BSLASHtext] = ACTIONS(5156), + [anon_sym_BSLASHintertext] = ACTIONS(5156), + [anon_sym_shortintertext] = ACTIONS(5156), }, [1109] = { - [sym_command_name] = ACTIONS(5069), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHend] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), - [anon_sym_BSLASHtext] = ACTIONS(5069), - [anon_sym_BSLASHintertext] = ACTIONS(5069), - [anon_sym_shortintertext] = ACTIONS(5069), + [sym_command_name] = ACTIONS(5148), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5146), + [anon_sym_RBRACK] = ACTIONS(5146), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_BSLASHpart] = ACTIONS(5148), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddpart] = ACTIONS(5148), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHchapter] = ACTIONS(5148), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddchap] = ACTIONS(5148), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsection] = ACTIONS(5148), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddsec] = ACTIONS(5148), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHparagraph] = ACTIONS(5148), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5148), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHitem] = ACTIONS(5148), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5146), + [sym_word] = ACTIONS(5148), + [sym_placeholder] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym__] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5148), + [anon_sym_BANG] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_SQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5146), + [anon_sym_BSLASHbegin] = ACTIONS(5148), + [anon_sym_BSLASHend] = ACTIONS(5148), + [anon_sym_BSLASHusepackage] = ACTIONS(5148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5148), + [anon_sym_BSLASHinclude] = ACTIONS(5148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5148), + [anon_sym_BSLASHinput] = ACTIONS(5148), + [anon_sym_BSLASHsubfile] = ACTIONS(5148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5148), + [anon_sym_BSLASHbibliography] = ACTIONS(5148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5148), + [anon_sym_BSLASHincludesvg] = ACTIONS(5148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5148), + [anon_sym_BSLASHimport] = ACTIONS(5148), + [anon_sym_BSLASHsubimport] = ACTIONS(5148), + [anon_sym_BSLASHinputfrom] = ACTIONS(5148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5148), + [anon_sym_BSLASHincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHcaption] = ACTIONS(5148), + [anon_sym_BSLASHcite] = ACTIONS(5148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCite] = ACTIONS(5148), + [anon_sym_BSLASHnocite] = ACTIONS(5148), + [anon_sym_BSLASHcitet] = ACTIONS(5148), + [anon_sym_BSLASHcitep] = ACTIONS(5148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteauthor] = ACTIONS(5148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitetitle] = ACTIONS(5148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteyear] = ACTIONS(5148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitedate] = ACTIONS(5148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteurl] = ACTIONS(5148), + [anon_sym_BSLASHfullcite] = ACTIONS(5148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5148), + [anon_sym_BSLASHcitealt] = ACTIONS(5148), + [anon_sym_BSLASHcitealp] = ACTIONS(5148), + [anon_sym_BSLASHcitetext] = ACTIONS(5148), + [anon_sym_BSLASHparencite] = ACTIONS(5148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHParencite] = ACTIONS(5148), + [anon_sym_BSLASHfootcite] = ACTIONS(5148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5148), + [anon_sym_BSLASHtextcite] = ACTIONS(5148), + [anon_sym_BSLASHTextcite] = ACTIONS(5148), + [anon_sym_BSLASHsmartcite] = ACTIONS(5148), + [anon_sym_BSLASHSmartcite] = ACTIONS(5148), + [anon_sym_BSLASHsupercite] = ACTIONS(5148), + [anon_sym_BSLASHautocite] = ACTIONS(5148), + [anon_sym_BSLASHAutocite] = ACTIONS(5148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHvolcite] = ACTIONS(5148), + [anon_sym_BSLASHVolcite] = ACTIONS(5148), + [anon_sym_BSLASHpvolcite] = ACTIONS(5148), + [anon_sym_BSLASHPvolcite] = ACTIONS(5148), + [anon_sym_BSLASHfvolcite] = ACTIONS(5148), + [anon_sym_BSLASHftvolcite] = ACTIONS(5148), + [anon_sym_BSLASHsvolcite] = ACTIONS(5148), + [anon_sym_BSLASHSvolcite] = ACTIONS(5148), + [anon_sym_BSLASHtvolcite] = ACTIONS(5148), + [anon_sym_BSLASHTvolcite] = ACTIONS(5148), + [anon_sym_BSLASHavolcite] = ACTIONS(5148), + [anon_sym_BSLASHAvolcite] = ACTIONS(5148), + [anon_sym_BSLASHnotecite] = ACTIONS(5148), + [anon_sym_BSLASHNotecite] = ACTIONS(5148), + [anon_sym_BSLASHpnotecite] = ACTIONS(5148), + [anon_sym_BSLASHPnotecite] = ACTIONS(5148), + [anon_sym_BSLASHfnotecite] = ACTIONS(5148), + [anon_sym_BSLASHlabel] = ACTIONS(5148), + [anon_sym_BSLASHref] = ACTIONS(5148), + [anon_sym_BSLASHeqref] = ACTIONS(5148), + [anon_sym_BSLASHvref] = ACTIONS(5148), + [anon_sym_BSLASHVref] = ACTIONS(5148), + [anon_sym_BSLASHautoref] = ACTIONS(5148), + [anon_sym_BSLASHpageref] = ACTIONS(5148), + [anon_sym_BSLASHcref] = ACTIONS(5148), + [anon_sym_BSLASHCref] = ACTIONS(5148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnameCref] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHlabelcref] = ACTIONS(5148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCrefrange] = ACTIONS(5148), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnewlabel] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5148), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5148), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdef] = ACTIONS(5148), + [anon_sym_BSLASHlet] = ACTIONS(5148), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5148), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5148), + [anon_sym_BSLASHgls] = ACTIONS(5148), + [anon_sym_BSLASHGls] = ACTIONS(5148), + [anon_sym_BSLASHGLS] = ACTIONS(5148), + [anon_sym_BSLASHglspl] = ACTIONS(5148), + [anon_sym_BSLASHGlspl] = ACTIONS(5148), + [anon_sym_BSLASHGLSpl] = ACTIONS(5148), + [anon_sym_BSLASHglsdisp] = ACTIONS(5148), + [anon_sym_BSLASHglslink] = ACTIONS(5148), + [anon_sym_BSLASHglstext] = ACTIONS(5148), + [anon_sym_BSLASHGlstext] = ACTIONS(5148), + [anon_sym_BSLASHGLStext] = ACTIONS(5148), + [anon_sym_BSLASHglsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5148), + [anon_sym_BSLASHglsplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSplural] = ACTIONS(5148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHglsname] = ACTIONS(5148), + [anon_sym_BSLASHGlsname] = ACTIONS(5148), + [anon_sym_BSLASHGLSname] = ACTIONS(5148), + [anon_sym_BSLASHglssymbol] = ACTIONS(5148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5148), + [anon_sym_BSLASHglsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5148), + [anon_sym_BSLASHglsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5148), + [anon_sym_BSLASHglsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5148), + [anon_sym_BSLASHglsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5148), + [anon_sym_BSLASHglsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5148), + [anon_sym_BSLASHnewacronym] = ACTIONS(5148), + [anon_sym_BSLASHacrshort] = ACTIONS(5148), + [anon_sym_BSLASHAcrshort] = ACTIONS(5148), + [anon_sym_BSLASHACRshort] = ACTIONS(5148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5148), + [anon_sym_BSLASHacrlong] = ACTIONS(5148), + [anon_sym_BSLASHAcrlong] = ACTIONS(5148), + [anon_sym_BSLASHACRlong] = ACTIONS(5148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5148), + [anon_sym_BSLASHacrfull] = ACTIONS(5148), + [anon_sym_BSLASHAcrfull] = ACTIONS(5148), + [anon_sym_BSLASHACRfull] = ACTIONS(5148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5148), + [anon_sym_BSLASHacs] = ACTIONS(5148), + [anon_sym_BSLASHAcs] = ACTIONS(5148), + [anon_sym_BSLASHacsp] = ACTIONS(5148), + [anon_sym_BSLASHAcsp] = ACTIONS(5148), + [anon_sym_BSLASHacl] = ACTIONS(5148), + [anon_sym_BSLASHAcl] = ACTIONS(5148), + [anon_sym_BSLASHaclp] = ACTIONS(5148), + [anon_sym_BSLASHAclp] = ACTIONS(5148), + [anon_sym_BSLASHacf] = ACTIONS(5148), + [anon_sym_BSLASHAcf] = ACTIONS(5148), + [anon_sym_BSLASHacfp] = ACTIONS(5148), + [anon_sym_BSLASHAcfp] = ACTIONS(5148), + [anon_sym_BSLASHac] = ACTIONS(5148), + [anon_sym_BSLASHAc] = ACTIONS(5148), + [anon_sym_BSLASHacp] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5148), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5148), + [anon_sym_BSLASHcolor] = ACTIONS(5148), + [anon_sym_BSLASHcolorbox] = ACTIONS(5148), + [anon_sym_BSLASHtextcolor] = ACTIONS(5148), + [anon_sym_BSLASHpagecolor] = ACTIONS(5148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5148), + [anon_sym_BSLASHtext] = ACTIONS(5148), + [anon_sym_BSLASHintertext] = ACTIONS(5148), + [anon_sym_shortintertext] = ACTIONS(5148), }, [1110] = { - [sym_command_name] = ACTIONS(4883), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_RBRACK] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_BSLASHpart] = ACTIONS(4883), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddpart] = ACTIONS(4883), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHchapter] = ACTIONS(4883), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddchap] = ACTIONS(4883), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsection] = ACTIONS(4883), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddsec] = ACTIONS(4883), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHparagraph] = ACTIONS(4883), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHitem] = ACTIONS(4883), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4881), - [sym_word] = ACTIONS(4883), - [sym_placeholder] = ACTIONS(4881), - [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(4881), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), - [anon_sym_BSLASHbegin] = ACTIONS(4883), - [anon_sym_BSLASHend] = ACTIONS(4883), - [anon_sym_BSLASHusepackage] = ACTIONS(4883), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), - [anon_sym_BSLASHinclude] = ACTIONS(4883), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), - [anon_sym_BSLASHinput] = ACTIONS(4883), - [anon_sym_BSLASHsubfile] = ACTIONS(4883), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), - [anon_sym_BSLASHbibliography] = ACTIONS(4883), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), - [anon_sym_BSLASHincludesvg] = ACTIONS(4883), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), - [anon_sym_BSLASHimport] = ACTIONS(4883), - [anon_sym_BSLASHsubimport] = ACTIONS(4883), - [anon_sym_BSLASHinputfrom] = ACTIONS(4883), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), - [anon_sym_BSLASHincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHcaption] = ACTIONS(4883), - [anon_sym_BSLASHcite] = ACTIONS(4883), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCite] = ACTIONS(4883), - [anon_sym_BSLASHnocite] = ACTIONS(4883), - [anon_sym_BSLASHcitet] = ACTIONS(4883), - [anon_sym_BSLASHcitep] = ACTIONS(4883), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteauthor] = ACTIONS(4883), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitetitle] = ACTIONS(4883), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteyear] = ACTIONS(4883), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitedate] = ACTIONS(4883), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteurl] = ACTIONS(4883), - [anon_sym_BSLASHfullcite] = ACTIONS(4883), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), - [anon_sym_BSLASHcitealt] = ACTIONS(4883), - [anon_sym_BSLASHcitealp] = ACTIONS(4883), - [anon_sym_BSLASHcitetext] = ACTIONS(4883), - [anon_sym_BSLASHparencite] = ACTIONS(4883), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHParencite] = ACTIONS(4883), - [anon_sym_BSLASHfootcite] = ACTIONS(4883), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), - [anon_sym_BSLASHtextcite] = ACTIONS(4883), - [anon_sym_BSLASHTextcite] = ACTIONS(4883), - [anon_sym_BSLASHsmartcite] = ACTIONS(4883), - [anon_sym_BSLASHSmartcite] = ACTIONS(4883), - [anon_sym_BSLASHsupercite] = ACTIONS(4883), - [anon_sym_BSLASHautocite] = ACTIONS(4883), - [anon_sym_BSLASHAutocite] = ACTIONS(4883), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHvolcite] = ACTIONS(4883), - [anon_sym_BSLASHVolcite] = ACTIONS(4883), - [anon_sym_BSLASHpvolcite] = ACTIONS(4883), - [anon_sym_BSLASHPvolcite] = ACTIONS(4883), - [anon_sym_BSLASHfvolcite] = ACTIONS(4883), - [anon_sym_BSLASHftvolcite] = ACTIONS(4883), - [anon_sym_BSLASHsvolcite] = ACTIONS(4883), - [anon_sym_BSLASHSvolcite] = ACTIONS(4883), - [anon_sym_BSLASHtvolcite] = ACTIONS(4883), - [anon_sym_BSLASHTvolcite] = ACTIONS(4883), - [anon_sym_BSLASHavolcite] = ACTIONS(4883), - [anon_sym_BSLASHAvolcite] = ACTIONS(4883), - [anon_sym_BSLASHnotecite] = ACTIONS(4883), - [anon_sym_BSLASHNotecite] = ACTIONS(4883), - [anon_sym_BSLASHpnotecite] = ACTIONS(4883), - [anon_sym_BSLASHPnotecite] = ACTIONS(4883), - [anon_sym_BSLASHfnotecite] = ACTIONS(4883), - [anon_sym_BSLASHlabel] = ACTIONS(4883), - [anon_sym_BSLASHref] = ACTIONS(4883), - [anon_sym_BSLASHeqref] = ACTIONS(4883), - [anon_sym_BSLASHvref] = ACTIONS(4883), - [anon_sym_BSLASHVref] = ACTIONS(4883), - [anon_sym_BSLASHautoref] = ACTIONS(4883), - [anon_sym_BSLASHpageref] = ACTIONS(4883), - [anon_sym_BSLASHcref] = ACTIONS(4883), - [anon_sym_BSLASHCref] = ACTIONS(4883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnameCref] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHlabelcref] = ACTIONS(4883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCrefrange] = ACTIONS(4883), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnewlabel] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), - [anon_sym_BSLASHdef] = ACTIONS(4883), - [anon_sym_BSLASHlet] = ACTIONS(4883), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), - [anon_sym_BSLASHgls] = ACTIONS(4883), - [anon_sym_BSLASHGls] = ACTIONS(4883), - [anon_sym_BSLASHGLS] = ACTIONS(4883), - [anon_sym_BSLASHglspl] = ACTIONS(4883), - [anon_sym_BSLASHGlspl] = ACTIONS(4883), - [anon_sym_BSLASHGLSpl] = ACTIONS(4883), - [anon_sym_BSLASHglsdisp] = ACTIONS(4883), - [anon_sym_BSLASHglslink] = ACTIONS(4883), - [anon_sym_BSLASHglstext] = ACTIONS(4883), - [anon_sym_BSLASHGlstext] = ACTIONS(4883), - [anon_sym_BSLASHGLStext] = ACTIONS(4883), - [anon_sym_BSLASHglsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), - [anon_sym_BSLASHglsplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSplural] = ACTIONS(4883), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHglsname] = ACTIONS(4883), - [anon_sym_BSLASHGlsname] = ACTIONS(4883), - [anon_sym_BSLASHGLSname] = ACTIONS(4883), - [anon_sym_BSLASHglssymbol] = ACTIONS(4883), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), - [anon_sym_BSLASHglsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), - [anon_sym_BSLASHglsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), - [anon_sym_BSLASHglsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), - [anon_sym_BSLASHglsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), - [anon_sym_BSLASHglsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), - [anon_sym_BSLASHnewacronym] = ACTIONS(4883), - [anon_sym_BSLASHacrshort] = ACTIONS(4883), - [anon_sym_BSLASHAcrshort] = ACTIONS(4883), - [anon_sym_BSLASHACRshort] = ACTIONS(4883), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), - [anon_sym_BSLASHacrlong] = ACTIONS(4883), - [anon_sym_BSLASHAcrlong] = ACTIONS(4883), - [anon_sym_BSLASHACRlong] = ACTIONS(4883), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), - [anon_sym_BSLASHacrfull] = ACTIONS(4883), - [anon_sym_BSLASHAcrfull] = ACTIONS(4883), - [anon_sym_BSLASHACRfull] = ACTIONS(4883), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), - [anon_sym_BSLASHacs] = ACTIONS(4883), - [anon_sym_BSLASHAcs] = ACTIONS(4883), - [anon_sym_BSLASHacsp] = ACTIONS(4883), - [anon_sym_BSLASHAcsp] = ACTIONS(4883), - [anon_sym_BSLASHacl] = ACTIONS(4883), - [anon_sym_BSLASHAcl] = ACTIONS(4883), - [anon_sym_BSLASHaclp] = ACTIONS(4883), - [anon_sym_BSLASHAclp] = ACTIONS(4883), - [anon_sym_BSLASHacf] = ACTIONS(4883), - [anon_sym_BSLASHAcf] = ACTIONS(4883), - [anon_sym_BSLASHacfp] = ACTIONS(4883), - [anon_sym_BSLASHAcfp] = ACTIONS(4883), - [anon_sym_BSLASHac] = ACTIONS(4883), - [anon_sym_BSLASHAc] = ACTIONS(4883), - [anon_sym_BSLASHacp] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), - [anon_sym_BSLASHcolor] = ACTIONS(4883), - [anon_sym_BSLASHcolorbox] = ACTIONS(4883), - [anon_sym_BSLASHtextcolor] = ACTIONS(4883), - [anon_sym_BSLASHpagecolor] = ACTIONS(4883), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), - [anon_sym_BSLASHtext] = ACTIONS(4883), - [anon_sym_BSLASHintertext] = ACTIONS(4883), - [anon_sym_shortintertext] = ACTIONS(4883), + [sym_command_name] = ACTIONS(4962), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_BSLASHpart] = ACTIONS(4962), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddpart] = ACTIONS(4962), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHchapter] = ACTIONS(4962), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddchap] = ACTIONS(4962), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsection] = ACTIONS(4962), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddsec] = ACTIONS(4962), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHparagraph] = ACTIONS(4962), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4962), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHitem] = ACTIONS(4962), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [sym_word] = ACTIONS(4962), + [sym_placeholder] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4960), + [anon_sym_BSLASHbegin] = ACTIONS(4962), + [anon_sym_BSLASHend] = ACTIONS(4962), + [anon_sym_BSLASHusepackage] = ACTIONS(4962), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4962), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4962), + [anon_sym_BSLASHinclude] = ACTIONS(4962), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4962), + [anon_sym_BSLASHinput] = ACTIONS(4962), + [anon_sym_BSLASHsubfile] = ACTIONS(4962), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4962), + [anon_sym_BSLASHbibliography] = ACTIONS(4962), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4962), + [anon_sym_BSLASHincludesvg] = ACTIONS(4962), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4962), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4962), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4962), + [anon_sym_BSLASHimport] = ACTIONS(4962), + [anon_sym_BSLASHsubimport] = ACTIONS(4962), + [anon_sym_BSLASHinputfrom] = ACTIONS(4962), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4962), + [anon_sym_BSLASHincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHcaption] = ACTIONS(4962), + [anon_sym_BSLASHcite] = ACTIONS(4962), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCite] = ACTIONS(4962), + [anon_sym_BSLASHnocite] = ACTIONS(4962), + [anon_sym_BSLASHcitet] = ACTIONS(4962), + [anon_sym_BSLASHcitep] = ACTIONS(4962), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteauthor] = ACTIONS(4962), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4962), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitetitle] = ACTIONS(4962), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteyear] = ACTIONS(4962), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitedate] = ACTIONS(4962), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteurl] = ACTIONS(4962), + [anon_sym_BSLASHfullcite] = ACTIONS(4962), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4962), + [anon_sym_BSLASHcitealt] = ACTIONS(4962), + [anon_sym_BSLASHcitealp] = ACTIONS(4962), + [anon_sym_BSLASHcitetext] = ACTIONS(4962), + [anon_sym_BSLASHparencite] = ACTIONS(4962), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHParencite] = ACTIONS(4962), + [anon_sym_BSLASHfootcite] = ACTIONS(4962), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4962), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4962), + [anon_sym_BSLASHtextcite] = ACTIONS(4962), + [anon_sym_BSLASHTextcite] = ACTIONS(4962), + [anon_sym_BSLASHsmartcite] = ACTIONS(4962), + [anon_sym_BSLASHSmartcite] = ACTIONS(4962), + [anon_sym_BSLASHsupercite] = ACTIONS(4962), + [anon_sym_BSLASHautocite] = ACTIONS(4962), + [anon_sym_BSLASHAutocite] = ACTIONS(4962), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHvolcite] = ACTIONS(4962), + [anon_sym_BSLASHVolcite] = ACTIONS(4962), + [anon_sym_BSLASHpvolcite] = ACTIONS(4962), + [anon_sym_BSLASHPvolcite] = ACTIONS(4962), + [anon_sym_BSLASHfvolcite] = ACTIONS(4962), + [anon_sym_BSLASHftvolcite] = ACTIONS(4962), + [anon_sym_BSLASHsvolcite] = ACTIONS(4962), + [anon_sym_BSLASHSvolcite] = ACTIONS(4962), + [anon_sym_BSLASHtvolcite] = ACTIONS(4962), + [anon_sym_BSLASHTvolcite] = ACTIONS(4962), + [anon_sym_BSLASHavolcite] = ACTIONS(4962), + [anon_sym_BSLASHAvolcite] = ACTIONS(4962), + [anon_sym_BSLASHnotecite] = ACTIONS(4962), + [anon_sym_BSLASHNotecite] = ACTIONS(4962), + [anon_sym_BSLASHpnotecite] = ACTIONS(4962), + [anon_sym_BSLASHPnotecite] = ACTIONS(4962), + [anon_sym_BSLASHfnotecite] = ACTIONS(4962), + [anon_sym_BSLASHlabel] = ACTIONS(4962), + [anon_sym_BSLASHref] = ACTIONS(4962), + [anon_sym_BSLASHeqref] = ACTIONS(4962), + [anon_sym_BSLASHvref] = ACTIONS(4962), + [anon_sym_BSLASHVref] = ACTIONS(4962), + [anon_sym_BSLASHautoref] = ACTIONS(4962), + [anon_sym_BSLASHpageref] = ACTIONS(4962), + [anon_sym_BSLASHcref] = ACTIONS(4962), + [anon_sym_BSLASHCref] = ACTIONS(4962), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnameCref] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHlabelcref] = ACTIONS(4962), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCrefrange] = ACTIONS(4962), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnewlabel] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4962), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4962), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4962), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdef] = ACTIONS(4962), + [anon_sym_BSLASHlet] = ACTIONS(4962), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4962), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4962), + [anon_sym_BSLASHgls] = ACTIONS(4962), + [anon_sym_BSLASHGls] = ACTIONS(4962), + [anon_sym_BSLASHGLS] = ACTIONS(4962), + [anon_sym_BSLASHglspl] = ACTIONS(4962), + [anon_sym_BSLASHGlspl] = ACTIONS(4962), + [anon_sym_BSLASHGLSpl] = ACTIONS(4962), + [anon_sym_BSLASHglsdisp] = ACTIONS(4962), + [anon_sym_BSLASHglslink] = ACTIONS(4962), + [anon_sym_BSLASHglstext] = ACTIONS(4962), + [anon_sym_BSLASHGlstext] = ACTIONS(4962), + [anon_sym_BSLASHGLStext] = ACTIONS(4962), + [anon_sym_BSLASHglsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4962), + [anon_sym_BSLASHglsplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSplural] = ACTIONS(4962), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHglsname] = ACTIONS(4962), + [anon_sym_BSLASHGlsname] = ACTIONS(4962), + [anon_sym_BSLASHGLSname] = ACTIONS(4962), + [anon_sym_BSLASHglssymbol] = ACTIONS(4962), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4962), + [anon_sym_BSLASHglsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4962), + [anon_sym_BSLASHglsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4962), + [anon_sym_BSLASHglsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4962), + [anon_sym_BSLASHglsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4962), + [anon_sym_BSLASHglsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4962), + [anon_sym_BSLASHnewacronym] = ACTIONS(4962), + [anon_sym_BSLASHacrshort] = ACTIONS(4962), + [anon_sym_BSLASHAcrshort] = ACTIONS(4962), + [anon_sym_BSLASHACRshort] = ACTIONS(4962), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4962), + [anon_sym_BSLASHacrlong] = ACTIONS(4962), + [anon_sym_BSLASHAcrlong] = ACTIONS(4962), + [anon_sym_BSLASHACRlong] = ACTIONS(4962), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4962), + [anon_sym_BSLASHacrfull] = ACTIONS(4962), + [anon_sym_BSLASHAcrfull] = ACTIONS(4962), + [anon_sym_BSLASHACRfull] = ACTIONS(4962), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4962), + [anon_sym_BSLASHacs] = ACTIONS(4962), + [anon_sym_BSLASHAcs] = ACTIONS(4962), + [anon_sym_BSLASHacsp] = ACTIONS(4962), + [anon_sym_BSLASHAcsp] = ACTIONS(4962), + [anon_sym_BSLASHacl] = ACTIONS(4962), + [anon_sym_BSLASHAcl] = ACTIONS(4962), + [anon_sym_BSLASHaclp] = ACTIONS(4962), + [anon_sym_BSLASHAclp] = ACTIONS(4962), + [anon_sym_BSLASHacf] = ACTIONS(4962), + [anon_sym_BSLASHAcf] = ACTIONS(4962), + [anon_sym_BSLASHacfp] = ACTIONS(4962), + [anon_sym_BSLASHAcfp] = ACTIONS(4962), + [anon_sym_BSLASHac] = ACTIONS(4962), + [anon_sym_BSLASHAc] = ACTIONS(4962), + [anon_sym_BSLASHacp] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4962), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4962), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4962), + [anon_sym_BSLASHcolor] = ACTIONS(4962), + [anon_sym_BSLASHcolorbox] = ACTIONS(4962), + [anon_sym_BSLASHtextcolor] = ACTIONS(4962), + [anon_sym_BSLASHpagecolor] = ACTIONS(4962), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4962), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4962), + [anon_sym_BSLASHtext] = ACTIONS(4962), + [anon_sym_BSLASHintertext] = ACTIONS(4962), + [anon_sym_shortintertext] = ACTIONS(4962), }, [1111] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5061), - [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), + [sym_command_name] = ACTIONS(5140), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5138), + [anon_sym_RBRACK] = ACTIONS(5138), + [anon_sym_COMMA] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_BSLASHpart] = ACTIONS(5140), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddpart] = ACTIONS(5140), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHchapter] = ACTIONS(5140), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddchap] = ACTIONS(5140), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsection] = ACTIONS(5140), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddsec] = ACTIONS(5140), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHparagraph] = ACTIONS(5140), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5140), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHitem] = ACTIONS(5140), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5138), + [sym_word] = ACTIONS(5140), + [sym_placeholder] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym__] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5140), + [anon_sym_BANG] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_SQUOTE] = ACTIONS(5140), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5138), + [anon_sym_BSLASHbegin] = ACTIONS(5140), + [anon_sym_BSLASHend] = ACTIONS(5140), + [anon_sym_BSLASHusepackage] = ACTIONS(5140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5140), + [anon_sym_BSLASHinclude] = ACTIONS(5140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5140), + [anon_sym_BSLASHinput] = ACTIONS(5140), + [anon_sym_BSLASHsubfile] = ACTIONS(5140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5140), + [anon_sym_BSLASHbibliography] = ACTIONS(5140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5140), + [anon_sym_BSLASHincludesvg] = ACTIONS(5140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5140), + [anon_sym_BSLASHimport] = ACTIONS(5140), + [anon_sym_BSLASHsubimport] = ACTIONS(5140), + [anon_sym_BSLASHinputfrom] = ACTIONS(5140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5140), + [anon_sym_BSLASHincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHcaption] = ACTIONS(5140), + [anon_sym_BSLASHcite] = ACTIONS(5140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCite] = ACTIONS(5140), + [anon_sym_BSLASHnocite] = ACTIONS(5140), + [anon_sym_BSLASHcitet] = ACTIONS(5140), + [anon_sym_BSLASHcitep] = ACTIONS(5140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteauthor] = ACTIONS(5140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitetitle] = ACTIONS(5140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteyear] = ACTIONS(5140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitedate] = ACTIONS(5140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteurl] = ACTIONS(5140), + [anon_sym_BSLASHfullcite] = ACTIONS(5140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5140), + [anon_sym_BSLASHcitealt] = ACTIONS(5140), + [anon_sym_BSLASHcitealp] = ACTIONS(5140), + [anon_sym_BSLASHcitetext] = ACTIONS(5140), + [anon_sym_BSLASHparencite] = ACTIONS(5140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHParencite] = ACTIONS(5140), + [anon_sym_BSLASHfootcite] = ACTIONS(5140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5140), + [anon_sym_BSLASHtextcite] = ACTIONS(5140), + [anon_sym_BSLASHTextcite] = ACTIONS(5140), + [anon_sym_BSLASHsmartcite] = ACTIONS(5140), + [anon_sym_BSLASHSmartcite] = ACTIONS(5140), + [anon_sym_BSLASHsupercite] = ACTIONS(5140), + [anon_sym_BSLASHautocite] = ACTIONS(5140), + [anon_sym_BSLASHAutocite] = ACTIONS(5140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHvolcite] = ACTIONS(5140), + [anon_sym_BSLASHVolcite] = ACTIONS(5140), + [anon_sym_BSLASHpvolcite] = ACTIONS(5140), + [anon_sym_BSLASHPvolcite] = ACTIONS(5140), + [anon_sym_BSLASHfvolcite] = ACTIONS(5140), + [anon_sym_BSLASHftvolcite] = ACTIONS(5140), + [anon_sym_BSLASHsvolcite] = ACTIONS(5140), + [anon_sym_BSLASHSvolcite] = ACTIONS(5140), + [anon_sym_BSLASHtvolcite] = ACTIONS(5140), + [anon_sym_BSLASHTvolcite] = ACTIONS(5140), + [anon_sym_BSLASHavolcite] = ACTIONS(5140), + [anon_sym_BSLASHAvolcite] = ACTIONS(5140), + [anon_sym_BSLASHnotecite] = ACTIONS(5140), + [anon_sym_BSLASHNotecite] = ACTIONS(5140), + [anon_sym_BSLASHpnotecite] = ACTIONS(5140), + [anon_sym_BSLASHPnotecite] = ACTIONS(5140), + [anon_sym_BSLASHfnotecite] = ACTIONS(5140), + [anon_sym_BSLASHlabel] = ACTIONS(5140), + [anon_sym_BSLASHref] = ACTIONS(5140), + [anon_sym_BSLASHeqref] = ACTIONS(5140), + [anon_sym_BSLASHvref] = ACTIONS(5140), + [anon_sym_BSLASHVref] = ACTIONS(5140), + [anon_sym_BSLASHautoref] = ACTIONS(5140), + [anon_sym_BSLASHpageref] = ACTIONS(5140), + [anon_sym_BSLASHcref] = ACTIONS(5140), + [anon_sym_BSLASHCref] = ACTIONS(5140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnameCref] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHlabelcref] = ACTIONS(5140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCrefrange] = ACTIONS(5140), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnewlabel] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5140), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5140), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdef] = ACTIONS(5140), + [anon_sym_BSLASHlet] = ACTIONS(5140), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5140), + [anon_sym_BSLASHgls] = ACTIONS(5140), + [anon_sym_BSLASHGls] = ACTIONS(5140), + [anon_sym_BSLASHGLS] = ACTIONS(5140), + [anon_sym_BSLASHglspl] = ACTIONS(5140), + [anon_sym_BSLASHGlspl] = ACTIONS(5140), + [anon_sym_BSLASHGLSpl] = ACTIONS(5140), + [anon_sym_BSLASHglsdisp] = ACTIONS(5140), + [anon_sym_BSLASHglslink] = ACTIONS(5140), + [anon_sym_BSLASHglstext] = ACTIONS(5140), + [anon_sym_BSLASHGlstext] = ACTIONS(5140), + [anon_sym_BSLASHGLStext] = ACTIONS(5140), + [anon_sym_BSLASHglsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5140), + [anon_sym_BSLASHglsplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSplural] = ACTIONS(5140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHglsname] = ACTIONS(5140), + [anon_sym_BSLASHGlsname] = ACTIONS(5140), + [anon_sym_BSLASHGLSname] = ACTIONS(5140), + [anon_sym_BSLASHglssymbol] = ACTIONS(5140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5140), + [anon_sym_BSLASHglsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5140), + [anon_sym_BSLASHglsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5140), + [anon_sym_BSLASHglsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5140), + [anon_sym_BSLASHglsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5140), + [anon_sym_BSLASHglsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5140), + [anon_sym_BSLASHnewacronym] = ACTIONS(5140), + [anon_sym_BSLASHacrshort] = ACTIONS(5140), + [anon_sym_BSLASHAcrshort] = ACTIONS(5140), + [anon_sym_BSLASHACRshort] = ACTIONS(5140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5140), + [anon_sym_BSLASHacrlong] = ACTIONS(5140), + [anon_sym_BSLASHAcrlong] = ACTIONS(5140), + [anon_sym_BSLASHACRlong] = ACTIONS(5140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5140), + [anon_sym_BSLASHacrfull] = ACTIONS(5140), + [anon_sym_BSLASHAcrfull] = ACTIONS(5140), + [anon_sym_BSLASHACRfull] = ACTIONS(5140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5140), + [anon_sym_BSLASHacs] = ACTIONS(5140), + [anon_sym_BSLASHAcs] = ACTIONS(5140), + [anon_sym_BSLASHacsp] = ACTIONS(5140), + [anon_sym_BSLASHAcsp] = ACTIONS(5140), + [anon_sym_BSLASHacl] = ACTIONS(5140), + [anon_sym_BSLASHAcl] = ACTIONS(5140), + [anon_sym_BSLASHaclp] = ACTIONS(5140), + [anon_sym_BSLASHAclp] = ACTIONS(5140), + [anon_sym_BSLASHacf] = ACTIONS(5140), + [anon_sym_BSLASHAcf] = ACTIONS(5140), + [anon_sym_BSLASHacfp] = ACTIONS(5140), + [anon_sym_BSLASHAcfp] = ACTIONS(5140), + [anon_sym_BSLASHac] = ACTIONS(5140), + [anon_sym_BSLASHAc] = ACTIONS(5140), + [anon_sym_BSLASHacp] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5140), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5140), + [anon_sym_BSLASHcolor] = ACTIONS(5140), + [anon_sym_BSLASHcolorbox] = ACTIONS(5140), + [anon_sym_BSLASHtextcolor] = ACTIONS(5140), + [anon_sym_BSLASHpagecolor] = ACTIONS(5140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5140), + [anon_sym_BSLASHtext] = ACTIONS(5140), + [anon_sym_BSLASHintertext] = ACTIONS(5140), + [anon_sym_shortintertext] = ACTIONS(5140), }, [1112] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHend] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_BSLASHpart] = ACTIONS(5128), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddpart] = ACTIONS(5128), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHchapter] = ACTIONS(5128), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddchap] = ACTIONS(5128), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsection] = ACTIONS(5128), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddsec] = ACTIONS(5128), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHparagraph] = ACTIONS(5128), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5128), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHitem] = ACTIONS(5128), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASHbegin] = ACTIONS(5128), + [anon_sym_BSLASHend] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [1113] = { - [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(4971), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_BSLASHpart] = ACTIONS(5052), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddpart] = ACTIONS(5052), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHchapter] = ACTIONS(5052), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddchap] = ACTIONS(5052), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsection] = ACTIONS(5052), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddsec] = ACTIONS(5052), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHparagraph] = ACTIONS(5052), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5052), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHitem] = ACTIONS(5052), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASHbegin] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [1114] = { - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = ACTIONS(139), - [anon_sym_BSLASHend] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHend] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [1115] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_BSLASH_RBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [1116] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHend] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [1117] = { - [sym_command_name] = ACTIONS(4951), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_BSLASHpart] = ACTIONS(4951), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddpart] = ACTIONS(4951), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHchapter] = ACTIONS(4951), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddchap] = ACTIONS(4951), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsection] = ACTIONS(4951), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddsec] = ACTIONS(4951), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHparagraph] = ACTIONS(4951), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHitem] = ACTIONS(4951), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), - [sym_word] = ACTIONS(4951), - [sym_placeholder] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), - [anon_sym_BSLASHbegin] = ACTIONS(4951), - [anon_sym_BSLASHend] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4951), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), - [anon_sym_BSLASHinclude] = ACTIONS(4951), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), - [anon_sym_BSLASHinput] = ACTIONS(4951), - [anon_sym_BSLASHsubfile] = ACTIONS(4951), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), - [anon_sym_BSLASHbibliography] = ACTIONS(4951), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), - [anon_sym_BSLASHincludesvg] = ACTIONS(4951), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), - [anon_sym_BSLASHimport] = ACTIONS(4951), - [anon_sym_BSLASHsubimport] = ACTIONS(4951), - [anon_sym_BSLASHinputfrom] = ACTIONS(4951), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), - [anon_sym_BSLASHincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHcaption] = ACTIONS(4951), - [anon_sym_BSLASHcite] = ACTIONS(4951), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCite] = ACTIONS(4951), - [anon_sym_BSLASHnocite] = ACTIONS(4951), - [anon_sym_BSLASHcitet] = ACTIONS(4951), - [anon_sym_BSLASHcitep] = ACTIONS(4951), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteyear] = ACTIONS(4951), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitedate] = ACTIONS(4951), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteurl] = ACTIONS(4951), - [anon_sym_BSLASHfullcite] = ACTIONS(4951), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), - [anon_sym_BSLASHcitealt] = ACTIONS(4951), - [anon_sym_BSLASHcitealp] = ACTIONS(4951), - [anon_sym_BSLASHcitetext] = ACTIONS(4951), - [anon_sym_BSLASHparencite] = ACTIONS(4951), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHParencite] = ACTIONS(4951), - [anon_sym_BSLASHfootcite] = ACTIONS(4951), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), - [anon_sym_BSLASHtextcite] = ACTIONS(4951), - [anon_sym_BSLASHTextcite] = ACTIONS(4951), - [anon_sym_BSLASHsmartcite] = ACTIONS(4951), - [anon_sym_BSLASHSmartcite] = ACTIONS(4951), - [anon_sym_BSLASHsupercite] = ACTIONS(4951), - [anon_sym_BSLASHautocite] = ACTIONS(4951), - [anon_sym_BSLASHAutocite] = ACTIONS(4951), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHvolcite] = ACTIONS(4951), - [anon_sym_BSLASHVolcite] = ACTIONS(4951), - [anon_sym_BSLASHpvolcite] = ACTIONS(4951), - [anon_sym_BSLASHPvolcite] = ACTIONS(4951), - [anon_sym_BSLASHfvolcite] = ACTIONS(4951), - [anon_sym_BSLASHftvolcite] = ACTIONS(4951), - [anon_sym_BSLASHsvolcite] = ACTIONS(4951), - [anon_sym_BSLASHSvolcite] = ACTIONS(4951), - [anon_sym_BSLASHtvolcite] = ACTIONS(4951), - [anon_sym_BSLASHTvolcite] = ACTIONS(4951), - [anon_sym_BSLASHavolcite] = ACTIONS(4951), - [anon_sym_BSLASHAvolcite] = ACTIONS(4951), - [anon_sym_BSLASHnotecite] = ACTIONS(4951), - [anon_sym_BSLASHNotecite] = ACTIONS(4951), - [anon_sym_BSLASHpnotecite] = ACTIONS(4951), - [anon_sym_BSLASHPnotecite] = ACTIONS(4951), - [anon_sym_BSLASHfnotecite] = ACTIONS(4951), - [anon_sym_BSLASHlabel] = ACTIONS(4951), - [anon_sym_BSLASHref] = ACTIONS(4951), - [anon_sym_BSLASHeqref] = ACTIONS(4951), - [anon_sym_BSLASHvref] = ACTIONS(4951), - [anon_sym_BSLASHVref] = ACTIONS(4951), - [anon_sym_BSLASHautoref] = ACTIONS(4951), - [anon_sym_BSLASHpageref] = ACTIONS(4951), - [anon_sym_BSLASHcref] = ACTIONS(4951), - [anon_sym_BSLASHCref] = ACTIONS(4951), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnameCref] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHlabelcref] = ACTIONS(4951), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnewlabel] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), - [anon_sym_BSLASHdef] = ACTIONS(4951), - [anon_sym_BSLASHlet] = ACTIONS(4951), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), - [anon_sym_BSLASHgls] = ACTIONS(4951), - [anon_sym_BSLASHGls] = ACTIONS(4951), - [anon_sym_BSLASHGLS] = ACTIONS(4951), - [anon_sym_BSLASHglspl] = ACTIONS(4951), - [anon_sym_BSLASHGlspl] = ACTIONS(4951), - [anon_sym_BSLASHGLSpl] = ACTIONS(4951), - [anon_sym_BSLASHglsdisp] = ACTIONS(4951), - [anon_sym_BSLASHglslink] = ACTIONS(4951), - [anon_sym_BSLASHglstext] = ACTIONS(4951), - [anon_sym_BSLASHGlstext] = ACTIONS(4951), - [anon_sym_BSLASHGLStext] = ACTIONS(4951), - [anon_sym_BSLASHglsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), - [anon_sym_BSLASHglsplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSplural] = ACTIONS(4951), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHglsname] = ACTIONS(4951), - [anon_sym_BSLASHGlsname] = ACTIONS(4951), - [anon_sym_BSLASHGLSname] = ACTIONS(4951), - [anon_sym_BSLASHglssymbol] = ACTIONS(4951), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), - [anon_sym_BSLASHglsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), - [anon_sym_BSLASHglsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), - [anon_sym_BSLASHglsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), - [anon_sym_BSLASHglsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), - [anon_sym_BSLASHglsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), - [anon_sym_BSLASHnewacronym] = ACTIONS(4951), - [anon_sym_BSLASHacrshort] = ACTIONS(4951), - [anon_sym_BSLASHAcrshort] = ACTIONS(4951), - [anon_sym_BSLASHACRshort] = ACTIONS(4951), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), - [anon_sym_BSLASHacrlong] = ACTIONS(4951), - [anon_sym_BSLASHAcrlong] = ACTIONS(4951), - [anon_sym_BSLASHACRlong] = ACTIONS(4951), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), - [anon_sym_BSLASHacrfull] = ACTIONS(4951), - [anon_sym_BSLASHAcrfull] = ACTIONS(4951), - [anon_sym_BSLASHACRfull] = ACTIONS(4951), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), - [anon_sym_BSLASHacs] = ACTIONS(4951), - [anon_sym_BSLASHAcs] = ACTIONS(4951), - [anon_sym_BSLASHacsp] = ACTIONS(4951), - [anon_sym_BSLASHAcsp] = ACTIONS(4951), - [anon_sym_BSLASHacl] = ACTIONS(4951), - [anon_sym_BSLASHAcl] = ACTIONS(4951), - [anon_sym_BSLASHaclp] = ACTIONS(4951), - [anon_sym_BSLASHAclp] = ACTIONS(4951), - [anon_sym_BSLASHacf] = ACTIONS(4951), - [anon_sym_BSLASHAcf] = ACTIONS(4951), - [anon_sym_BSLASHacfp] = ACTIONS(4951), - [anon_sym_BSLASHAcfp] = ACTIONS(4951), - [anon_sym_BSLASHac] = ACTIONS(4951), - [anon_sym_BSLASHAc] = ACTIONS(4951), - [anon_sym_BSLASHacp] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), - [anon_sym_BSLASHcolor] = ACTIONS(4951), - [anon_sym_BSLASHcolorbox] = ACTIONS(4951), - [anon_sym_BSLASHtextcolor] = ACTIONS(4951), - [anon_sym_BSLASHpagecolor] = ACTIONS(4951), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), - [anon_sym_BSLASHtext] = ACTIONS(4951), - [anon_sym_BSLASHintertext] = ACTIONS(4951), - [anon_sym_shortintertext] = ACTIONS(4951), + [sym_command_name] = ACTIONS(5030), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_BSLASHpart] = ACTIONS(5030), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddpart] = ACTIONS(5030), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHchapter] = ACTIONS(5030), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddchap] = ACTIONS(5030), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsection] = ACTIONS(5030), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddsec] = ACTIONS(5030), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHparagraph] = ACTIONS(5030), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5030), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHitem] = ACTIONS(5030), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [sym_word] = ACTIONS(5030), + [sym_placeholder] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5028), + [anon_sym_BSLASHbegin] = ACTIONS(5030), + [anon_sym_BSLASHend] = ACTIONS(5030), + [anon_sym_BSLASHusepackage] = ACTIONS(5030), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5030), + [anon_sym_BSLASHinclude] = ACTIONS(5030), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5030), + [anon_sym_BSLASHinput] = ACTIONS(5030), + [anon_sym_BSLASHsubfile] = ACTIONS(5030), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5030), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5030), + [anon_sym_BSLASHincludesvg] = ACTIONS(5030), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5030), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5030), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5030), + [anon_sym_BSLASHimport] = ACTIONS(5030), + [anon_sym_BSLASHsubimport] = ACTIONS(5030), + [anon_sym_BSLASHinputfrom] = ACTIONS(5030), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5030), + [anon_sym_BSLASHincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHcaption] = ACTIONS(5030), + [anon_sym_BSLASHcite] = ACTIONS(5030), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCite] = ACTIONS(5030), + [anon_sym_BSLASHnocite] = ACTIONS(5030), + [anon_sym_BSLASHcitet] = ACTIONS(5030), + [anon_sym_BSLASHcitep] = ACTIONS(5030), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteauthor] = ACTIONS(5030), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5030), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitetitle] = ACTIONS(5030), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteyear] = ACTIONS(5030), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitedate] = ACTIONS(5030), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteurl] = ACTIONS(5030), + [anon_sym_BSLASHfullcite] = ACTIONS(5030), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5030), + [anon_sym_BSLASHcitealt] = ACTIONS(5030), + [anon_sym_BSLASHcitealp] = ACTIONS(5030), + [anon_sym_BSLASHcitetext] = ACTIONS(5030), + [anon_sym_BSLASHparencite] = ACTIONS(5030), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHParencite] = ACTIONS(5030), + [anon_sym_BSLASHfootcite] = ACTIONS(5030), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5030), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5030), + [anon_sym_BSLASHtextcite] = ACTIONS(5030), + [anon_sym_BSLASHTextcite] = ACTIONS(5030), + [anon_sym_BSLASHsmartcite] = ACTIONS(5030), + [anon_sym_BSLASHSmartcite] = ACTIONS(5030), + [anon_sym_BSLASHsupercite] = ACTIONS(5030), + [anon_sym_BSLASHautocite] = ACTIONS(5030), + [anon_sym_BSLASHAutocite] = ACTIONS(5030), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHvolcite] = ACTIONS(5030), + [anon_sym_BSLASHVolcite] = ACTIONS(5030), + [anon_sym_BSLASHpvolcite] = ACTIONS(5030), + [anon_sym_BSLASHPvolcite] = ACTIONS(5030), + [anon_sym_BSLASHfvolcite] = ACTIONS(5030), + [anon_sym_BSLASHftvolcite] = ACTIONS(5030), + [anon_sym_BSLASHsvolcite] = ACTIONS(5030), + [anon_sym_BSLASHSvolcite] = ACTIONS(5030), + [anon_sym_BSLASHtvolcite] = ACTIONS(5030), + [anon_sym_BSLASHTvolcite] = ACTIONS(5030), + [anon_sym_BSLASHavolcite] = ACTIONS(5030), + [anon_sym_BSLASHAvolcite] = ACTIONS(5030), + [anon_sym_BSLASHnotecite] = ACTIONS(5030), + [anon_sym_BSLASHNotecite] = ACTIONS(5030), + [anon_sym_BSLASHpnotecite] = ACTIONS(5030), + [anon_sym_BSLASHPnotecite] = ACTIONS(5030), + [anon_sym_BSLASHfnotecite] = ACTIONS(5030), + [anon_sym_BSLASHlabel] = ACTIONS(5030), + [anon_sym_BSLASHref] = ACTIONS(5030), + [anon_sym_BSLASHeqref] = ACTIONS(5030), + [anon_sym_BSLASHvref] = ACTIONS(5030), + [anon_sym_BSLASHVref] = ACTIONS(5030), + [anon_sym_BSLASHautoref] = ACTIONS(5030), + [anon_sym_BSLASHpageref] = ACTIONS(5030), + [anon_sym_BSLASHcref] = ACTIONS(5030), + [anon_sym_BSLASHCref] = ACTIONS(5030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnameCref] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHlabelcref] = ACTIONS(5030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCrefrange] = ACTIONS(5030), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5030), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5030), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5030), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdef] = ACTIONS(5030), + [anon_sym_BSLASHlet] = ACTIONS(5030), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5030), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5030), + [anon_sym_BSLASHgls] = ACTIONS(5030), + [anon_sym_BSLASHGls] = ACTIONS(5030), + [anon_sym_BSLASHGLS] = ACTIONS(5030), + [anon_sym_BSLASHglspl] = ACTIONS(5030), + [anon_sym_BSLASHGlspl] = ACTIONS(5030), + [anon_sym_BSLASHGLSpl] = ACTIONS(5030), + [anon_sym_BSLASHglsdisp] = ACTIONS(5030), + [anon_sym_BSLASHglslink] = ACTIONS(5030), + [anon_sym_BSLASHglstext] = ACTIONS(5030), + [anon_sym_BSLASHGlstext] = ACTIONS(5030), + [anon_sym_BSLASHGLStext] = ACTIONS(5030), + [anon_sym_BSLASHglsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5030), + [anon_sym_BSLASHglsplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSplural] = ACTIONS(5030), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHglsname] = ACTIONS(5030), + [anon_sym_BSLASHGlsname] = ACTIONS(5030), + [anon_sym_BSLASHGLSname] = ACTIONS(5030), + [anon_sym_BSLASHglssymbol] = ACTIONS(5030), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5030), + [anon_sym_BSLASHglsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5030), + [anon_sym_BSLASHglsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5030), + [anon_sym_BSLASHglsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5030), + [anon_sym_BSLASHglsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5030), + [anon_sym_BSLASHglsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5030), + [anon_sym_BSLASHnewacronym] = ACTIONS(5030), + [anon_sym_BSLASHacrshort] = ACTIONS(5030), + [anon_sym_BSLASHAcrshort] = ACTIONS(5030), + [anon_sym_BSLASHACRshort] = ACTIONS(5030), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5030), + [anon_sym_BSLASHacrlong] = ACTIONS(5030), + [anon_sym_BSLASHAcrlong] = ACTIONS(5030), + [anon_sym_BSLASHACRlong] = ACTIONS(5030), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5030), + [anon_sym_BSLASHacrfull] = ACTIONS(5030), + [anon_sym_BSLASHAcrfull] = ACTIONS(5030), + [anon_sym_BSLASHACRfull] = ACTIONS(5030), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5030), + [anon_sym_BSLASHacs] = ACTIONS(5030), + [anon_sym_BSLASHAcs] = ACTIONS(5030), + [anon_sym_BSLASHacsp] = ACTIONS(5030), + [anon_sym_BSLASHAcsp] = ACTIONS(5030), + [anon_sym_BSLASHacl] = ACTIONS(5030), + [anon_sym_BSLASHAcl] = ACTIONS(5030), + [anon_sym_BSLASHaclp] = ACTIONS(5030), + [anon_sym_BSLASHAclp] = ACTIONS(5030), + [anon_sym_BSLASHacf] = ACTIONS(5030), + [anon_sym_BSLASHAcf] = ACTIONS(5030), + [anon_sym_BSLASHacfp] = ACTIONS(5030), + [anon_sym_BSLASHAcfp] = ACTIONS(5030), + [anon_sym_BSLASHac] = ACTIONS(5030), + [anon_sym_BSLASHAc] = ACTIONS(5030), + [anon_sym_BSLASHacp] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5030), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5030), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5030), + [anon_sym_BSLASHcolor] = ACTIONS(5030), + [anon_sym_BSLASHcolorbox] = ACTIONS(5030), + [anon_sym_BSLASHtextcolor] = ACTIONS(5030), + [anon_sym_BSLASHpagecolor] = ACTIONS(5030), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5030), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5030), + [anon_sym_BSLASHtext] = ACTIONS(5030), + [anon_sym_BSLASHintertext] = ACTIONS(5030), + [anon_sym_shortintertext] = ACTIONS(5030), }, [1118] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHend] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_BSLASHpart] = ACTIONS(5038), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddpart] = ACTIONS(5038), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHchapter] = ACTIONS(5038), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddchap] = ACTIONS(5038), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsection] = ACTIONS(5038), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddsec] = ACTIONS(5038), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHparagraph] = ACTIONS(5038), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5038), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHitem] = ACTIONS(5038), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASHbegin] = ACTIONS(5038), + [anon_sym_BSLASHend] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [1119] = { - [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(4971), - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_BSLASHpart] = ACTIONS(5052), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddpart] = ACTIONS(5052), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5050), + [anon_sym_BSLASHchapter] = ACTIONS(5052), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddchap] = ACTIONS(5052), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsection] = ACTIONS(5052), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHaddsec] = ACTIONS(5052), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5052), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5050), + [anon_sym_BSLASHparagraph] = ACTIONS(5052), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5052), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5050), + [anon_sym_BSLASHitem] = ACTIONS(5052), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASHbegin] = ACTIONS(5052), + [anon_sym_BSLASHend] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [1120] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_BSLASHpart] = ACTIONS(5392), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddpart] = ACTIONS(5392), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHchapter] = ACTIONS(5392), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddchap] = ACTIONS(5392), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsection] = ACTIONS(5392), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddsec] = ACTIONS(5392), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHparagraph] = ACTIONS(5392), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5392), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHitem] = ACTIONS(5392), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASHbegin] = ACTIONS(5392), + [anon_sym_BSLASHend] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [1121] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_BSLASHpart] = ACTIONS(4939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddpart] = ACTIONS(4939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHchapter] = ACTIONS(4939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddchap] = ACTIONS(4939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsection] = ACTIONS(4939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddsec] = ACTIONS(4939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHparagraph] = ACTIONS(4939), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHitem] = ACTIONS(4939), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASHbegin] = ACTIONS(4939), - [anon_sym_BSLASHend] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_BSLASHpart] = ACTIONS(5018), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddpart] = ACTIONS(5018), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHchapter] = ACTIONS(5018), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddchap] = ACTIONS(5018), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsection] = ACTIONS(5018), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddsec] = ACTIONS(5018), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHparagraph] = ACTIONS(5018), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5018), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHitem] = ACTIONS(5018), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASHbegin] = ACTIONS(5018), + [anon_sym_BSLASHend] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [1122] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHend] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_BSLASHpart] = ACTIONS(5008), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddpart] = ACTIONS(5008), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHchapter] = ACTIONS(5008), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddchap] = ACTIONS(5008), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsection] = ACTIONS(5008), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddsec] = ACTIONS(5008), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHparagraph] = ACTIONS(5008), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5008), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHitem] = ACTIONS(5008), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASHbegin] = ACTIONS(5008), + [anon_sym_BSLASHend] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [1123] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_BSLASHpart] = ACTIONS(4917), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddpart] = ACTIONS(4917), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHchapter] = ACTIONS(4917), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddchap] = ACTIONS(4917), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsection] = ACTIONS(4917), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddsec] = ACTIONS(4917), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHparagraph] = ACTIONS(4917), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHitem] = ACTIONS(4917), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASHbegin] = ACTIONS(4917), - [anon_sym_BSLASHend] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_BSLASHpart] = ACTIONS(4996), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddpart] = ACTIONS(4996), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHchapter] = ACTIONS(4996), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddchap] = ACTIONS(4996), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsection] = ACTIONS(4996), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddsec] = ACTIONS(4996), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHparagraph] = ACTIONS(4996), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4996), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHitem] = ACTIONS(4996), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASHbegin] = ACTIONS(4996), + [anon_sym_BSLASHend] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [1124] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_BSLASHpart] = ACTIONS(4913), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddpart] = ACTIONS(4913), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHchapter] = ACTIONS(4913), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddchap] = ACTIONS(4913), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsection] = ACTIONS(4913), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddsec] = ACTIONS(4913), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHparagraph] = ACTIONS(4913), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHitem] = ACTIONS(4913), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASHbegin] = ACTIONS(4913), - [anon_sym_BSLASHend] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_BSLASHpart] = ACTIONS(4992), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddpart] = ACTIONS(4992), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHchapter] = ACTIONS(4992), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddchap] = ACTIONS(4992), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsection] = ACTIONS(4992), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddsec] = ACTIONS(4992), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHparagraph] = ACTIONS(4992), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4992), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHitem] = ACTIONS(4992), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASHbegin] = ACTIONS(4992), + [anon_sym_BSLASHend] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [1125] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_BSLASHpart] = ACTIONS(4988), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddpart] = ACTIONS(4988), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHchapter] = ACTIONS(4988), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddchap] = ACTIONS(4988), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsection] = ACTIONS(4988), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddsec] = ACTIONS(4988), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHparagraph] = ACTIONS(4988), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4988), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHitem] = ACTIONS(4988), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASHbegin] = ACTIONS(4988), + [anon_sym_BSLASHend] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [1126] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_BSLASHpart] = ACTIONS(4905), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddpart] = ACTIONS(4905), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHchapter] = ACTIONS(4905), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddchap] = ACTIONS(4905), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsection] = ACTIONS(4905), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddsec] = ACTIONS(4905), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHparagraph] = ACTIONS(4905), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHitem] = ACTIONS(4905), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASHbegin] = ACTIONS(4905), - [anon_sym_BSLASHend] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_BSLASHpart] = ACTIONS(4984), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddpart] = ACTIONS(4984), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHchapter] = ACTIONS(4984), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddchap] = ACTIONS(4984), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsection] = ACTIONS(4984), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddsec] = ACTIONS(4984), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHparagraph] = ACTIONS(4984), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4984), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHitem] = ACTIONS(4984), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASHbegin] = ACTIONS(4984), + [anon_sym_BSLASHend] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [1127] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_BSLASHpart] = ACTIONS(4901), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddpart] = ACTIONS(4901), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHchapter] = ACTIONS(4901), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddchap] = ACTIONS(4901), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsection] = ACTIONS(4901), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddsec] = ACTIONS(4901), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHparagraph] = ACTIONS(4901), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHitem] = ACTIONS(4901), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASHbegin] = ACTIONS(4901), - [anon_sym_BSLASHend] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_BSLASHpart] = ACTIONS(4980), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddpart] = ACTIONS(4980), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHchapter] = ACTIONS(4980), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddchap] = ACTIONS(4980), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsection] = ACTIONS(4980), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddsec] = ACTIONS(4980), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHparagraph] = ACTIONS(4980), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4980), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHitem] = ACTIONS(4980), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASHbegin] = ACTIONS(4980), + [anon_sym_BSLASHend] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [1128] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_BSLASHpart] = ACTIONS(4897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddpart] = ACTIONS(4897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHchapter] = ACTIONS(4897), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddchap] = ACTIONS(4897), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsection] = ACTIONS(4897), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddsec] = ACTIONS(4897), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHparagraph] = ACTIONS(4897), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHitem] = ACTIONS(4897), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASHbegin] = ACTIONS(4897), - [anon_sym_BSLASHend] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_BSLASHpart] = ACTIONS(4976), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddpart] = ACTIONS(4976), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHchapter] = ACTIONS(4976), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddchap] = ACTIONS(4976), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsection] = ACTIONS(4976), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddsec] = ACTIONS(4976), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHparagraph] = ACTIONS(4976), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4976), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHitem] = ACTIONS(4976), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASHbegin] = ACTIONS(4976), + [anon_sym_BSLASHend] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [1129] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_BSLASHpart] = ACTIONS(5300), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddpart] = ACTIONS(5300), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHchapter] = ACTIONS(5300), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddchap] = ACTIONS(5300), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsection] = ACTIONS(5300), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddsec] = ACTIONS(5300), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHparagraph] = ACTIONS(5300), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5300), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHitem] = ACTIONS(5300), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASHbegin] = ACTIONS(5300), + [anon_sym_BSLASHend] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [1130] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHend] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_BSLASHpart] = ACTIONS(5384), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddpart] = ACTIONS(5384), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHchapter] = ACTIONS(5384), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddchap] = ACTIONS(5384), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsection] = ACTIONS(5384), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddsec] = ACTIONS(5384), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHparagraph] = ACTIONS(5384), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5384), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHitem] = ACTIONS(5384), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASHbegin] = ACTIONS(5384), + [anon_sym_BSLASHend] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [1131] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_BSLASHpart] = ACTIONS(4963), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddpart] = ACTIONS(4963), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHchapter] = ACTIONS(4963), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddchap] = ACTIONS(4963), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsection] = ACTIONS(4963), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddsec] = ACTIONS(4963), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHparagraph] = ACTIONS(4963), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHitem] = ACTIONS(4963), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASHbegin] = ACTIONS(4963), - [anon_sym_BSLASHend] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_BSLASHpart] = ACTIONS(5042), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddpart] = ACTIONS(5042), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHchapter] = ACTIONS(5042), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddchap] = ACTIONS(5042), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsection] = ACTIONS(5042), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddsec] = ACTIONS(5042), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHparagraph] = ACTIONS(5042), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5042), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHitem] = ACTIONS(5042), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASHbegin] = ACTIONS(5042), + [anon_sym_BSLASHend] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [1132] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHend] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_BSLASHpart] = ACTIONS(5152), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddpart] = ACTIONS(5152), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHchapter] = ACTIONS(5152), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddchap] = ACTIONS(5152), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsection] = ACTIONS(5152), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddsec] = ACTIONS(5152), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHparagraph] = ACTIONS(5152), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5152), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHitem] = ACTIONS(5152), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASHbegin] = ACTIONS(5152), + [anon_sym_BSLASHend] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [1133] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_BSLASHpart] = ACTIONS(5144), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddpart] = ACTIONS(5144), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHchapter] = ACTIONS(5144), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddchap] = ACTIONS(5144), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsection] = ACTIONS(5144), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddsec] = ACTIONS(5144), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHparagraph] = ACTIONS(5144), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5144), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHitem] = ACTIONS(5144), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASHbegin] = ACTIONS(5144), + [anon_sym_BSLASHend] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [1134] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_BSLASHpart] = ACTIONS(5301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddpart] = ACTIONS(5301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHchapter] = ACTIONS(5301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddchap] = ACTIONS(5301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsection] = ACTIONS(5301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddsec] = ACTIONS(5301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHparagraph] = ACTIONS(5301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHitem] = ACTIONS(5301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASHbegin] = ACTIONS(5301), - [anon_sym_BSLASHend] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_BSLASHpart] = ACTIONS(5380), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddpart] = ACTIONS(5380), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHchapter] = ACTIONS(5380), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddchap] = ACTIONS(5380), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsection] = ACTIONS(5380), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddsec] = ACTIONS(5380), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHparagraph] = ACTIONS(5380), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5380), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHitem] = ACTIONS(5380), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASHbegin] = ACTIONS(5380), + [anon_sym_BSLASHend] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [1135] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_BSLASHpart] = ACTIONS(5297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddpart] = ACTIONS(5297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHchapter] = ACTIONS(5297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddchap] = ACTIONS(5297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsection] = ACTIONS(5297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddsec] = ACTIONS(5297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHparagraph] = ACTIONS(5297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHitem] = ACTIONS(5297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASHbegin] = ACTIONS(5297), - [anon_sym_BSLASHend] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_BSLASHpart] = ACTIONS(5376), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddpart] = ACTIONS(5376), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHchapter] = ACTIONS(5376), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddchap] = ACTIONS(5376), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsection] = ACTIONS(5376), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddsec] = ACTIONS(5376), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHparagraph] = ACTIONS(5376), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5376), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHitem] = ACTIONS(5376), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASHbegin] = ACTIONS(5376), + [anon_sym_BSLASHend] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [1136] = { - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [1137] = { - [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(5293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), - [anon_sym_BSLASHaddpart] = ACTIONS(5293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_BSLASHpart] = ACTIONS(5372), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddpart] = ACTIONS(5372), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHchapter] = ACTIONS(5372), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddchap] = ACTIONS(5372), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsection] = ACTIONS(5372), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddsec] = ACTIONS(5372), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHparagraph] = ACTIONS(5372), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5372), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHitem] = ACTIONS(5372), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASHbegin] = ACTIONS(5372), + [anon_sym_BSLASHend] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [1138] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_BSLASHpart] = ACTIONS(5289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddpart] = ACTIONS(5289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHchapter] = ACTIONS(5289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddchap] = ACTIONS(5289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsection] = ACTIONS(5289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddsec] = ACTIONS(5289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHparagraph] = ACTIONS(5289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHitem] = ACTIONS(5289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASHbegin] = ACTIONS(5289), - [anon_sym_BSLASHend] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_BSLASHpart] = ACTIONS(5368), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddpart] = ACTIONS(5368), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHchapter] = ACTIONS(5368), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddchap] = ACTIONS(5368), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsection] = ACTIONS(5368), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddsec] = ACTIONS(5368), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHparagraph] = ACTIONS(5368), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5368), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHitem] = ACTIONS(5368), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASHbegin] = ACTIONS(5368), + [anon_sym_BSLASHend] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [1139] = { - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_BSLASHpart] = ACTIONS(5285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddpart] = ACTIONS(5285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHchapter] = ACTIONS(5285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddchap] = ACTIONS(5285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsection] = ACTIONS(5285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddsec] = ACTIONS(5285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHparagraph] = ACTIONS(5285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHitem] = ACTIONS(5285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASHbegin] = ACTIONS(5285), - [anon_sym_BSLASHend] = ACTIONS(5285), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_BSLASHpart] = ACTIONS(5364), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddpart] = ACTIONS(5364), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHchapter] = ACTIONS(5364), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddchap] = ACTIONS(5364), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsection] = ACTIONS(5364), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddsec] = ACTIONS(5364), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHparagraph] = ACTIONS(5364), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5364), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHitem] = ACTIONS(5364), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASHbegin] = ACTIONS(5364), + [anon_sym_BSLASHend] = ACTIONS(5364), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [1140] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_BSLASHpart] = ACTIONS(4925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddpart] = ACTIONS(4925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHchapter] = ACTIONS(4925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddchap] = ACTIONS(4925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsection] = ACTIONS(4925), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddsec] = ACTIONS(4925), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHparagraph] = ACTIONS(4925), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHitem] = ACTIONS(4925), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASHbegin] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_BSLASHpart] = ACTIONS(5004), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddpart] = ACTIONS(5004), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHchapter] = ACTIONS(5004), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddchap] = ACTIONS(5004), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsection] = ACTIONS(5004), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddsec] = ACTIONS(5004), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHparagraph] = ACTIONS(5004), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5004), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHitem] = ACTIONS(5004), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASHbegin] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [1141] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_BSLASHpart] = ACTIONS(4921), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddpart] = ACTIONS(4921), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHchapter] = ACTIONS(4921), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddchap] = ACTIONS(4921), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsection] = ACTIONS(4921), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddsec] = ACTIONS(4921), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHparagraph] = ACTIONS(4921), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHitem] = ACTIONS(4921), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASHbegin] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_BSLASHpart] = ACTIONS(5000), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddpart] = ACTIONS(5000), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHchapter] = ACTIONS(5000), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddchap] = ACTIONS(5000), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsection] = ACTIONS(5000), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddsec] = ACTIONS(5000), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHparagraph] = ACTIONS(5000), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5000), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHitem] = ACTIONS(5000), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [1142] = { - [sym_command_name] = ACTIONS(4891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_BSLASHpart] = ACTIONS(4891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddpart] = ACTIONS(4891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHchapter] = ACTIONS(4891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddchap] = ACTIONS(4891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsection] = ACTIONS(4891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddsec] = ACTIONS(4891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHparagraph] = ACTIONS(4891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHitem] = ACTIONS(4891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4889), - [sym_word] = ACTIONS(4891), - [sym_placeholder] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym__] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_COLON] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), - [anon_sym_BSLASHbegin] = ACTIONS(4891), - [anon_sym_BSLASHusepackage] = ACTIONS(4891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), - [anon_sym_BSLASHinclude] = ACTIONS(4891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), - [anon_sym_BSLASHinput] = ACTIONS(4891), - [anon_sym_BSLASHsubfile] = ACTIONS(4891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), - [anon_sym_BSLASHbibliography] = ACTIONS(4891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), - [anon_sym_BSLASHincludesvg] = ACTIONS(4891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), - [anon_sym_BSLASHimport] = ACTIONS(4891), - [anon_sym_BSLASHsubimport] = ACTIONS(4891), - [anon_sym_BSLASHinputfrom] = ACTIONS(4891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), - [anon_sym_BSLASHincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHcaption] = ACTIONS(4891), - [anon_sym_BSLASHcite] = ACTIONS(4891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCite] = ACTIONS(4891), - [anon_sym_BSLASHnocite] = ACTIONS(4891), - [anon_sym_BSLASHcitet] = ACTIONS(4891), - [anon_sym_BSLASHcitep] = ACTIONS(4891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteauthor] = ACTIONS(4891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitetitle] = ACTIONS(4891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteyear] = ACTIONS(4891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitedate] = ACTIONS(4891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteurl] = ACTIONS(4891), - [anon_sym_BSLASHfullcite] = ACTIONS(4891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), - [anon_sym_BSLASHcitealt] = ACTIONS(4891), - [anon_sym_BSLASHcitealp] = ACTIONS(4891), - [anon_sym_BSLASHcitetext] = ACTIONS(4891), - [anon_sym_BSLASHparencite] = ACTIONS(4891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHParencite] = ACTIONS(4891), - [anon_sym_BSLASHfootcite] = ACTIONS(4891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), - [anon_sym_BSLASHtextcite] = ACTIONS(4891), - [anon_sym_BSLASHTextcite] = ACTIONS(4891), - [anon_sym_BSLASHsmartcite] = ACTIONS(4891), - [anon_sym_BSLASHSmartcite] = ACTIONS(4891), - [anon_sym_BSLASHsupercite] = ACTIONS(4891), - [anon_sym_BSLASHautocite] = ACTIONS(4891), - [anon_sym_BSLASHAutocite] = ACTIONS(4891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHvolcite] = ACTIONS(4891), - [anon_sym_BSLASHVolcite] = ACTIONS(4891), - [anon_sym_BSLASHpvolcite] = ACTIONS(4891), - [anon_sym_BSLASHPvolcite] = ACTIONS(4891), - [anon_sym_BSLASHfvolcite] = ACTIONS(4891), - [anon_sym_BSLASHftvolcite] = ACTIONS(4891), - [anon_sym_BSLASHsvolcite] = ACTIONS(4891), - [anon_sym_BSLASHSvolcite] = ACTIONS(4891), - [anon_sym_BSLASHtvolcite] = ACTIONS(4891), - [anon_sym_BSLASHTvolcite] = ACTIONS(4891), - [anon_sym_BSLASHavolcite] = ACTIONS(4891), - [anon_sym_BSLASHAvolcite] = ACTIONS(4891), - [anon_sym_BSLASHnotecite] = ACTIONS(4891), - [anon_sym_BSLASHNotecite] = ACTIONS(4891), - [anon_sym_BSLASHpnotecite] = ACTIONS(4891), - [anon_sym_BSLASHPnotecite] = ACTIONS(4891), - [anon_sym_BSLASHfnotecite] = ACTIONS(4891), - [anon_sym_BSLASHlabel] = ACTIONS(4891), - [anon_sym_BSLASHref] = ACTIONS(4891), - [anon_sym_BSLASHeqref] = ACTIONS(4891), - [anon_sym_BSLASHvref] = ACTIONS(4891), - [anon_sym_BSLASHVref] = ACTIONS(4891), - [anon_sym_BSLASHautoref] = ACTIONS(4891), - [anon_sym_BSLASHpageref] = ACTIONS(4891), - [anon_sym_BSLASHcref] = ACTIONS(4891), - [anon_sym_BSLASHCref] = ACTIONS(4891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnameCref] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHlabelcref] = ACTIONS(4891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCrefrange] = ACTIONS(4891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnewlabel] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), - [anon_sym_BSLASHdef] = ACTIONS(4891), - [anon_sym_BSLASHlet] = ACTIONS(4891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), - [anon_sym_BSLASHgls] = ACTIONS(4891), - [anon_sym_BSLASHGls] = ACTIONS(4891), - [anon_sym_BSLASHGLS] = ACTIONS(4891), - [anon_sym_BSLASHglspl] = ACTIONS(4891), - [anon_sym_BSLASHGlspl] = ACTIONS(4891), - [anon_sym_BSLASHGLSpl] = ACTIONS(4891), - [anon_sym_BSLASHglsdisp] = ACTIONS(4891), - [anon_sym_BSLASHglslink] = ACTIONS(4891), - [anon_sym_BSLASHglstext] = ACTIONS(4891), - [anon_sym_BSLASHGlstext] = ACTIONS(4891), - [anon_sym_BSLASHGLStext] = ACTIONS(4891), - [anon_sym_BSLASHglsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), - [anon_sym_BSLASHglsplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSplural] = ACTIONS(4891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHglsname] = ACTIONS(4891), - [anon_sym_BSLASHGlsname] = ACTIONS(4891), - [anon_sym_BSLASHGLSname] = ACTIONS(4891), - [anon_sym_BSLASHglssymbol] = ACTIONS(4891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), - [anon_sym_BSLASHglsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), - [anon_sym_BSLASHglsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), - [anon_sym_BSLASHglsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), - [anon_sym_BSLASHglsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), - [anon_sym_BSLASHglsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), - [anon_sym_BSLASHnewacronym] = ACTIONS(4891), - [anon_sym_BSLASHacrshort] = ACTIONS(4891), - [anon_sym_BSLASHAcrshort] = ACTIONS(4891), - [anon_sym_BSLASHACRshort] = ACTIONS(4891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), - [anon_sym_BSLASHacrlong] = ACTIONS(4891), - [anon_sym_BSLASHAcrlong] = ACTIONS(4891), - [anon_sym_BSLASHACRlong] = ACTIONS(4891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), - [anon_sym_BSLASHacrfull] = ACTIONS(4891), - [anon_sym_BSLASHAcrfull] = ACTIONS(4891), - [anon_sym_BSLASHACRfull] = ACTIONS(4891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), - [anon_sym_BSLASHacs] = ACTIONS(4891), - [anon_sym_BSLASHAcs] = ACTIONS(4891), - [anon_sym_BSLASHacsp] = ACTIONS(4891), - [anon_sym_BSLASHAcsp] = ACTIONS(4891), - [anon_sym_BSLASHacl] = ACTIONS(4891), - [anon_sym_BSLASHAcl] = ACTIONS(4891), - [anon_sym_BSLASHaclp] = ACTIONS(4891), - [anon_sym_BSLASHAclp] = ACTIONS(4891), - [anon_sym_BSLASHacf] = ACTIONS(4891), - [anon_sym_BSLASHAcf] = ACTIONS(4891), - [anon_sym_BSLASHacfp] = ACTIONS(4891), - [anon_sym_BSLASHAcfp] = ACTIONS(4891), - [anon_sym_BSLASHac] = ACTIONS(4891), - [anon_sym_BSLASHAc] = ACTIONS(4891), - [anon_sym_BSLASHacp] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), - [anon_sym_BSLASHcolor] = ACTIONS(4891), - [anon_sym_BSLASHcolorbox] = ACTIONS(4891), - [anon_sym_BSLASHtextcolor] = ACTIONS(4891), - [anon_sym_BSLASHpagecolor] = ACTIONS(4891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), - [anon_sym_BSLASHtext] = ACTIONS(4891), - [anon_sym_BSLASHintertext] = ACTIONS(4891), - [anon_sym_shortintertext] = ACTIONS(4891), + [sym_command_name] = ACTIONS(4970), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_BSLASHpart] = ACTIONS(4970), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddpart] = ACTIONS(4970), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHchapter] = ACTIONS(4970), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddchap] = ACTIONS(4970), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsection] = ACTIONS(4970), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddsec] = ACTIONS(4970), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHparagraph] = ACTIONS(4970), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4970), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHitem] = ACTIONS(4970), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [sym_word] = ACTIONS(4970), + [sym_placeholder] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4968), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4968), + [anon_sym_BSLASHbegin] = ACTIONS(4970), + [anon_sym_BSLASHusepackage] = ACTIONS(4970), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4970), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4970), + [anon_sym_BSLASHinclude] = ACTIONS(4970), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4970), + [anon_sym_BSLASHinput] = ACTIONS(4970), + [anon_sym_BSLASHsubfile] = ACTIONS(4970), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4970), + [anon_sym_BSLASHbibliography] = ACTIONS(4970), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4970), + [anon_sym_BSLASHincludesvg] = ACTIONS(4970), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4970), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4970), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4970), + [anon_sym_BSLASHimport] = ACTIONS(4970), + [anon_sym_BSLASHsubimport] = ACTIONS(4970), + [anon_sym_BSLASHinputfrom] = ACTIONS(4970), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4970), + [anon_sym_BSLASHincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHcaption] = ACTIONS(4970), + [anon_sym_BSLASHcite] = ACTIONS(4970), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCite] = ACTIONS(4970), + [anon_sym_BSLASHnocite] = ACTIONS(4970), + [anon_sym_BSLASHcitet] = ACTIONS(4970), + [anon_sym_BSLASHcitep] = ACTIONS(4970), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteauthor] = ACTIONS(4970), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4970), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitetitle] = ACTIONS(4970), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteyear] = ACTIONS(4970), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitedate] = ACTIONS(4970), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteurl] = ACTIONS(4970), + [anon_sym_BSLASHfullcite] = ACTIONS(4970), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4970), + [anon_sym_BSLASHcitealt] = ACTIONS(4970), + [anon_sym_BSLASHcitealp] = ACTIONS(4970), + [anon_sym_BSLASHcitetext] = ACTIONS(4970), + [anon_sym_BSLASHparencite] = ACTIONS(4970), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHParencite] = ACTIONS(4970), + [anon_sym_BSLASHfootcite] = ACTIONS(4970), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4970), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4970), + [anon_sym_BSLASHtextcite] = ACTIONS(4970), + [anon_sym_BSLASHTextcite] = ACTIONS(4970), + [anon_sym_BSLASHsmartcite] = ACTIONS(4970), + [anon_sym_BSLASHSmartcite] = ACTIONS(4970), + [anon_sym_BSLASHsupercite] = ACTIONS(4970), + [anon_sym_BSLASHautocite] = ACTIONS(4970), + [anon_sym_BSLASHAutocite] = ACTIONS(4970), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHvolcite] = ACTIONS(4970), + [anon_sym_BSLASHVolcite] = ACTIONS(4970), + [anon_sym_BSLASHpvolcite] = ACTIONS(4970), + [anon_sym_BSLASHPvolcite] = ACTIONS(4970), + [anon_sym_BSLASHfvolcite] = ACTIONS(4970), + [anon_sym_BSLASHftvolcite] = ACTIONS(4970), + [anon_sym_BSLASHsvolcite] = ACTIONS(4970), + [anon_sym_BSLASHSvolcite] = ACTIONS(4970), + [anon_sym_BSLASHtvolcite] = ACTIONS(4970), + [anon_sym_BSLASHTvolcite] = ACTIONS(4970), + [anon_sym_BSLASHavolcite] = ACTIONS(4970), + [anon_sym_BSLASHAvolcite] = ACTIONS(4970), + [anon_sym_BSLASHnotecite] = ACTIONS(4970), + [anon_sym_BSLASHNotecite] = ACTIONS(4970), + [anon_sym_BSLASHpnotecite] = ACTIONS(4970), + [anon_sym_BSLASHPnotecite] = ACTIONS(4970), + [anon_sym_BSLASHfnotecite] = ACTIONS(4970), + [anon_sym_BSLASHlabel] = ACTIONS(4970), + [anon_sym_BSLASHref] = ACTIONS(4970), + [anon_sym_BSLASHeqref] = ACTIONS(4970), + [anon_sym_BSLASHvref] = ACTIONS(4970), + [anon_sym_BSLASHVref] = ACTIONS(4970), + [anon_sym_BSLASHautoref] = ACTIONS(4970), + [anon_sym_BSLASHpageref] = ACTIONS(4970), + [anon_sym_BSLASHcref] = ACTIONS(4970), + [anon_sym_BSLASHCref] = ACTIONS(4970), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnameCref] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHlabelcref] = ACTIONS(4970), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCrefrange] = ACTIONS(4970), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnewlabel] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4970), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4970), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4970), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdef] = ACTIONS(4970), + [anon_sym_BSLASHlet] = ACTIONS(4970), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4970), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4970), + [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(4970), + [anon_sym_BSLASHacrshort] = ACTIONS(4970), + [anon_sym_BSLASHAcrshort] = ACTIONS(4970), + [anon_sym_BSLASHACRshort] = ACTIONS(4970), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4970), + [anon_sym_BSLASHacrlong] = ACTIONS(4970), + [anon_sym_BSLASHAcrlong] = ACTIONS(4970), + [anon_sym_BSLASHACRlong] = ACTIONS(4970), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4970), + [anon_sym_BSLASHacrfull] = ACTIONS(4970), + [anon_sym_BSLASHAcrfull] = ACTIONS(4970), + [anon_sym_BSLASHACRfull] = ACTIONS(4970), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4970), + [anon_sym_BSLASHacs] = ACTIONS(4970), + [anon_sym_BSLASHAcs] = ACTIONS(4970), + [anon_sym_BSLASHacsp] = ACTIONS(4970), + [anon_sym_BSLASHAcsp] = ACTIONS(4970), + [anon_sym_BSLASHacl] = ACTIONS(4970), + [anon_sym_BSLASHAcl] = ACTIONS(4970), + [anon_sym_BSLASHaclp] = ACTIONS(4970), + [anon_sym_BSLASHAclp] = ACTIONS(4970), + [anon_sym_BSLASHacf] = ACTIONS(4970), + [anon_sym_BSLASHAcf] = ACTIONS(4970), + [anon_sym_BSLASHacfp] = ACTIONS(4970), + [anon_sym_BSLASHAcfp] = ACTIONS(4970), + [anon_sym_BSLASHac] = ACTIONS(4970), + [anon_sym_BSLASHAc] = ACTIONS(4970), + [anon_sym_BSLASHacp] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4970), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4970), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4970), + [anon_sym_BSLASHcolor] = ACTIONS(4970), + [anon_sym_BSLASHcolorbox] = ACTIONS(4970), + [anon_sym_BSLASHtextcolor] = ACTIONS(4970), + [anon_sym_BSLASHpagecolor] = ACTIONS(4970), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4970), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4970), + [anon_sym_BSLASHtext] = ACTIONS(4970), + [anon_sym_BSLASHintertext] = ACTIONS(4970), + [anon_sym_shortintertext] = ACTIONS(4970), }, [1143] = { - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_BSLASHpart] = ACTIONS(5285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddpart] = ACTIONS(5285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), - [anon_sym_BSLASHchapter] = ACTIONS(5285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddchap] = ACTIONS(5285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsection] = ACTIONS(5285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHaddsec] = ACTIONS(5285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), - [anon_sym_BSLASHparagraph] = ACTIONS(5285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), - [anon_sym_BSLASHitem] = ACTIONS(5285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASHbegin] = ACTIONS(5285), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_BSLASHpart] = ACTIONS(5364), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddpart] = ACTIONS(5364), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHchapter] = ACTIONS(5364), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddchap] = ACTIONS(5364), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsection] = ACTIONS(5364), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddsec] = ACTIONS(5364), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5364), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5362), + [anon_sym_BSLASHparagraph] = ACTIONS(5364), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5364), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5362), + [anon_sym_BSLASHitem] = ACTIONS(5364), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASHbegin] = ACTIONS(5364), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [1144] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_BSLASHpart] = ACTIONS(5289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddpart] = ACTIONS(5289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), - [anon_sym_BSLASHchapter] = ACTIONS(5289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddchap] = ACTIONS(5289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsection] = ACTIONS(5289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHaddsec] = ACTIONS(5289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), - [anon_sym_BSLASHparagraph] = ACTIONS(5289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), - [anon_sym_BSLASHitem] = ACTIONS(5289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASHbegin] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_BSLASHpart] = ACTIONS(5368), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddpart] = ACTIONS(5368), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5366), + [anon_sym_BSLASHchapter] = ACTIONS(5368), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddchap] = ACTIONS(5368), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsection] = ACTIONS(5368), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHaddsec] = ACTIONS(5368), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5368), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5366), + [anon_sym_BSLASHparagraph] = ACTIONS(5368), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5368), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5366), + [anon_sym_BSLASHitem] = ACTIONS(5368), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASHbegin] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [1145] = { - [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(5293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), - [anon_sym_BSLASHaddpart] = ACTIONS(5293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_BSLASHpart] = ACTIONS(5372), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddpart] = ACTIONS(5372), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5370), + [anon_sym_BSLASHchapter] = ACTIONS(5372), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddchap] = ACTIONS(5372), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsection] = ACTIONS(5372), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHaddsec] = ACTIONS(5372), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5372), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5370), + [anon_sym_BSLASHparagraph] = ACTIONS(5372), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5372), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5370), + [anon_sym_BSLASHitem] = ACTIONS(5372), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASHbegin] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [1146] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_BSLASHpart] = ACTIONS(5297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddpart] = ACTIONS(5297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), - [anon_sym_BSLASHchapter] = ACTIONS(5297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddchap] = ACTIONS(5297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsection] = ACTIONS(5297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHaddsec] = ACTIONS(5297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), - [anon_sym_BSLASHparagraph] = ACTIONS(5297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), - [anon_sym_BSLASHitem] = ACTIONS(5297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASHbegin] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_BSLASHpart] = ACTIONS(5376), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddpart] = ACTIONS(5376), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5374), + [anon_sym_BSLASHchapter] = ACTIONS(5376), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddchap] = ACTIONS(5376), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsection] = ACTIONS(5376), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddsec] = ACTIONS(5376), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5376), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHparagraph] = ACTIONS(5376), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5376), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5374), + [anon_sym_BSLASHitem] = ACTIONS(5376), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASHbegin] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [1147] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_BSLASHpart] = ACTIONS(5301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddpart] = ACTIONS(5301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), - [anon_sym_BSLASHchapter] = ACTIONS(5301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddchap] = ACTIONS(5301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsection] = ACTIONS(5301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHaddsec] = ACTIONS(5301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), - [anon_sym_BSLASHparagraph] = ACTIONS(5301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), - [anon_sym_BSLASHitem] = ACTIONS(5301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASHbegin] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_BSLASHpart] = ACTIONS(5380), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddpart] = ACTIONS(5380), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5378), + [anon_sym_BSLASHchapter] = ACTIONS(5380), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddchap] = ACTIONS(5380), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsection] = ACTIONS(5380), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHaddsec] = ACTIONS(5380), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5380), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5378), + [anon_sym_BSLASHparagraph] = ACTIONS(5380), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5380), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5378), + [anon_sym_BSLASHitem] = ACTIONS(5380), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASHbegin] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [1148] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_BSLASHpart] = ACTIONS(5144), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddpart] = ACTIONS(5144), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5142), + [anon_sym_BSLASHchapter] = ACTIONS(5144), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddchap] = ACTIONS(5144), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsection] = ACTIONS(5144), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHaddsec] = ACTIONS(5144), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5144), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5142), + [anon_sym_BSLASHparagraph] = ACTIONS(5144), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5144), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5142), + [anon_sym_BSLASHitem] = ACTIONS(5144), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASHbegin] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [1149] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_BSLASHpart] = ACTIONS(5152), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddpart] = ACTIONS(5152), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5150), + [anon_sym_BSLASHchapter] = ACTIONS(5152), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddchap] = ACTIONS(5152), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsection] = ACTIONS(5152), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHaddsec] = ACTIONS(5152), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5152), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5150), + [anon_sym_BSLASHparagraph] = ACTIONS(5152), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5152), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5150), + [anon_sym_BSLASHitem] = ACTIONS(5152), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASHbegin] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [1150] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_BSLASHpart] = ACTIONS(4963), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddpart] = ACTIONS(4963), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), - [anon_sym_BSLASHchapter] = ACTIONS(4963), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddchap] = ACTIONS(4963), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsection] = ACTIONS(4963), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHaddsec] = ACTIONS(4963), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), - [anon_sym_BSLASHparagraph] = ACTIONS(4963), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), - [anon_sym_BSLASHitem] = ACTIONS(4963), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASHbegin] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_BSLASHpart] = ACTIONS(5042), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddpart] = ACTIONS(5042), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5040), + [anon_sym_BSLASHchapter] = ACTIONS(5042), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddchap] = ACTIONS(5042), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsection] = ACTIONS(5042), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHaddsec] = ACTIONS(5042), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5042), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5040), + [anon_sym_BSLASHparagraph] = ACTIONS(5042), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5042), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5040), + [anon_sym_BSLASHitem] = ACTIONS(5042), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASHbegin] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [1151] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_BSLASHpart] = ACTIONS(5384), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddpart] = ACTIONS(5384), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5382), + [anon_sym_BSLASHchapter] = ACTIONS(5384), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddchap] = ACTIONS(5384), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsection] = ACTIONS(5384), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHaddsec] = ACTIONS(5384), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5384), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5382), + [anon_sym_BSLASHparagraph] = ACTIONS(5384), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5384), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5382), + [anon_sym_BSLASHitem] = ACTIONS(5384), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASHbegin] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [1152] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_BSLASHpart] = ACTIONS(5300), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddpart] = ACTIONS(5300), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHchapter] = ACTIONS(5300), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddchap] = ACTIONS(5300), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsection] = ACTIONS(5300), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddsec] = ACTIONS(5300), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5300), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5298), + [anon_sym_BSLASHparagraph] = ACTIONS(5300), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5300), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5298), + [anon_sym_BSLASHitem] = ACTIONS(5300), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASHbegin] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [1153] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_BSLASHpart] = ACTIONS(4897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddpart] = ACTIONS(4897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), - [anon_sym_BSLASHchapter] = ACTIONS(4897), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddchap] = ACTIONS(4897), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsection] = ACTIONS(4897), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHaddsec] = ACTIONS(4897), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), - [anon_sym_BSLASHparagraph] = ACTIONS(4897), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), - [anon_sym_BSLASHitem] = ACTIONS(4897), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASHbegin] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_BSLASHpart] = ACTIONS(4976), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddpart] = ACTIONS(4976), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4974), + [anon_sym_BSLASHchapter] = ACTIONS(4976), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddchap] = ACTIONS(4976), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsection] = ACTIONS(4976), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHaddsec] = ACTIONS(4976), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4976), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4974), + [anon_sym_BSLASHparagraph] = ACTIONS(4976), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4976), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4974), + [anon_sym_BSLASHitem] = ACTIONS(4976), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASHbegin] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [1154] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_BSLASHpart] = ACTIONS(4901), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddpart] = ACTIONS(4901), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), - [anon_sym_BSLASHchapter] = ACTIONS(4901), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddchap] = ACTIONS(4901), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsection] = ACTIONS(4901), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHaddsec] = ACTIONS(4901), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), - [anon_sym_BSLASHparagraph] = ACTIONS(4901), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), - [anon_sym_BSLASHitem] = ACTIONS(4901), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASHbegin] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_BSLASHpart] = ACTIONS(4980), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddpart] = ACTIONS(4980), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4978), + [anon_sym_BSLASHchapter] = ACTIONS(4980), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddchap] = ACTIONS(4980), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsection] = ACTIONS(4980), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHaddsec] = ACTIONS(4980), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4980), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4978), + [anon_sym_BSLASHparagraph] = ACTIONS(4980), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4980), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4978), + [anon_sym_BSLASHitem] = ACTIONS(4980), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASHbegin] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [1155] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_BSLASHpart] = ACTIONS(4905), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddpart] = ACTIONS(4905), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), - [anon_sym_BSLASHchapter] = ACTIONS(4905), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddchap] = ACTIONS(4905), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsection] = ACTIONS(4905), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHaddsec] = ACTIONS(4905), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), - [anon_sym_BSLASHparagraph] = ACTIONS(4905), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), - [anon_sym_BSLASHitem] = ACTIONS(4905), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASHbegin] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_BSLASHpart] = ACTIONS(4984), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddpart] = ACTIONS(4984), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4982), + [anon_sym_BSLASHchapter] = ACTIONS(4984), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddchap] = ACTIONS(4984), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsection] = ACTIONS(4984), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHaddsec] = ACTIONS(4984), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4984), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4982), + [anon_sym_BSLASHparagraph] = ACTIONS(4984), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4984), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4982), + [anon_sym_BSLASHitem] = ACTIONS(4984), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASHbegin] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [1156] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_BSLASHpart] = ACTIONS(4988), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddpart] = ACTIONS(4988), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4986), + [anon_sym_BSLASHchapter] = ACTIONS(4988), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddchap] = ACTIONS(4988), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsection] = ACTIONS(4988), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHaddsec] = ACTIONS(4988), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4988), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4986), + [anon_sym_BSLASHparagraph] = ACTIONS(4988), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4988), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4986), + [anon_sym_BSLASHitem] = ACTIONS(4988), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASHbegin] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [1157] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_BSLASHpart] = ACTIONS(4913), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddpart] = ACTIONS(4913), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), - [anon_sym_BSLASHchapter] = ACTIONS(4913), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddchap] = ACTIONS(4913), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsection] = ACTIONS(4913), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHaddsec] = ACTIONS(4913), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), - [anon_sym_BSLASHparagraph] = ACTIONS(4913), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), - [anon_sym_BSLASHitem] = ACTIONS(4913), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASHbegin] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_BSLASHpart] = ACTIONS(4992), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddpart] = ACTIONS(4992), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4990), + [anon_sym_BSLASHchapter] = ACTIONS(4992), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddchap] = ACTIONS(4992), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsection] = ACTIONS(4992), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHaddsec] = ACTIONS(4992), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4992), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4990), + [anon_sym_BSLASHparagraph] = ACTIONS(4992), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4992), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4990), + [anon_sym_BSLASHitem] = ACTIONS(4992), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASHbegin] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [1158] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_BSLASHpart] = ACTIONS(4917), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddpart] = ACTIONS(4917), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), - [anon_sym_BSLASHchapter] = ACTIONS(4917), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddchap] = ACTIONS(4917), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsection] = ACTIONS(4917), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHaddsec] = ACTIONS(4917), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), - [anon_sym_BSLASHparagraph] = ACTIONS(4917), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), - [anon_sym_BSLASHitem] = ACTIONS(4917), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASHbegin] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_BSLASHpart] = ACTIONS(4996), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddpart] = ACTIONS(4996), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4994), + [anon_sym_BSLASHchapter] = ACTIONS(4996), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddchap] = ACTIONS(4996), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsection] = ACTIONS(4996), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHaddsec] = ACTIONS(4996), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4996), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4994), + [anon_sym_BSLASHparagraph] = ACTIONS(4996), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4996), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4994), + [anon_sym_BSLASHitem] = ACTIONS(4996), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASHbegin] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [1159] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_BSLASHpart] = ACTIONS(5008), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddpart] = ACTIONS(5008), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5006), + [anon_sym_BSLASHchapter] = ACTIONS(5008), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddchap] = ACTIONS(5008), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsection] = ACTIONS(5008), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHaddsec] = ACTIONS(5008), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5008), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5006), + [anon_sym_BSLASHparagraph] = ACTIONS(5008), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5008), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5006), + [anon_sym_BSLASHitem] = ACTIONS(5008), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASHbegin] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [1160] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_BSLASHpart] = ACTIONS(4939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddpart] = ACTIONS(4939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), - [anon_sym_BSLASHchapter] = ACTIONS(4939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddchap] = ACTIONS(4939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsection] = ACTIONS(4939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHaddsec] = ACTIONS(4939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), - [anon_sym_BSLASHparagraph] = ACTIONS(4939), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), - [anon_sym_BSLASHitem] = ACTIONS(4939), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASHbegin] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_BSLASHpart] = ACTIONS(5018), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddpart] = ACTIONS(5018), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5016), + [anon_sym_BSLASHchapter] = ACTIONS(5018), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddchap] = ACTIONS(5018), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsection] = ACTIONS(5018), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHaddsec] = ACTIONS(5018), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5018), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5016), + [anon_sym_BSLASHparagraph] = ACTIONS(5018), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5018), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5016), + [anon_sym_BSLASHitem] = ACTIONS(5018), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASHbegin] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [1161] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_BSLASHpart] = ACTIONS(5392), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddpart] = ACTIONS(5392), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5390), + [anon_sym_BSLASHchapter] = ACTIONS(5392), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddchap] = ACTIONS(5392), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsection] = ACTIONS(5392), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHaddsec] = ACTIONS(5392), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5392), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5390), + [anon_sym_BSLASHparagraph] = ACTIONS(5392), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5392), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5390), + [anon_sym_BSLASHitem] = ACTIONS(5392), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASHbegin] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [1162] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_BSLASHpart] = ACTIONS(5038), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddpart] = ACTIONS(5038), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5036), + [anon_sym_BSLASHchapter] = ACTIONS(5038), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddchap] = ACTIONS(5038), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsection] = ACTIONS(5038), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHaddsec] = ACTIONS(5038), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5038), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5036), + [anon_sym_BSLASHparagraph] = ACTIONS(5038), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5038), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5036), + [anon_sym_BSLASHitem] = ACTIONS(5038), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASHbegin] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [1163] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(5084), + [anon_sym_BSLASHpart] = ACTIONS(5086), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddpart] = ACTIONS(5086), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5084), + [anon_sym_BSLASHchapter] = ACTIONS(5086), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddchap] = ACTIONS(5086), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsection] = ACTIONS(5086), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHaddsec] = ACTIONS(5086), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5086), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5084), + [anon_sym_BSLASHparagraph] = ACTIONS(5086), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5086), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5084), + [anon_sym_BSLASHitem] = ACTIONS(5086), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASHbegin] = ACTIONS(5086), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [1164] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BSLASHpart] = ACTIONS(145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddpart] = ACTIONS(145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(143), + [anon_sym_BSLASHchapter] = ACTIONS(145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddchap] = ACTIONS(145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(143), + [anon_sym_BSLASHsection] = ACTIONS(145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHaddsec] = ACTIONS(145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(143), + [anon_sym_BSLASHparagraph] = ACTIONS(145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(143), + [anon_sym_BSLASHitem] = ACTIONS(145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_BSLASH_RBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [1165] = { - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_BSLASHpart] = ACTIONS(139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddpart] = ACTIONS(139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), - [anon_sym_BSLASHchapter] = ACTIONS(139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddchap] = ACTIONS(139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), - [anon_sym_BSLASHsection] = ACTIONS(139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHaddsec] = ACTIONS(139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), - [anon_sym_BSLASHparagraph] = ACTIONS(139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), - [anon_sym_BSLASHitem] = ACTIONS(139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_BSLASHpart] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddpart] = ACTIONS(141), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), + [anon_sym_BSLASHchapter] = ACTIONS(141), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddchap] = ACTIONS(141), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), + [anon_sym_BSLASHsection] = ACTIONS(141), + [anon_sym_BSLASHsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHaddsec] = ACTIONS(141), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), + [anon_sym_BSLASHparagraph] = ACTIONS(141), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), + [anon_sym_BSLASHitem] = ACTIONS(141), + [anon_sym_BSLASHitem_STAR] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_BSLASH_RBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [1166] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_BSLASHpart] = ACTIONS(5128), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddpart] = ACTIONS(5128), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5126), + [anon_sym_BSLASHchapter] = ACTIONS(5128), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddchap] = ACTIONS(5128), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsection] = ACTIONS(5128), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHaddsec] = ACTIONS(5128), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5128), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5126), + [anon_sym_BSLASHparagraph] = ACTIONS(5128), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5128), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5126), + [anon_sym_BSLASHitem] = ACTIONS(5128), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASHbegin] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [1167] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5061), - [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), + [sym_command_name] = ACTIONS(5140), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5138), + [anon_sym_RBRACK] = ACTIONS(5138), + [anon_sym_COMMA] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_BSLASHpart] = ACTIONS(5140), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddpart] = ACTIONS(5140), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5138), + [anon_sym_BSLASHchapter] = ACTIONS(5140), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddchap] = ACTIONS(5140), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsection] = ACTIONS(5140), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHaddsec] = ACTIONS(5140), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5140), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5138), + [anon_sym_BSLASHparagraph] = ACTIONS(5140), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5140), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5138), + [anon_sym_BSLASHitem] = ACTIONS(5140), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5138), + [sym_word] = ACTIONS(5140), + [sym_placeholder] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_STAR] = ACTIONS(5140), + [anon_sym_SLASH] = ACTIONS(5140), + [anon_sym_CARET] = ACTIONS(5140), + [anon_sym__] = ACTIONS(5140), + [anon_sym_LT] = ACTIONS(5140), + [anon_sym_GT] = ACTIONS(5140), + [anon_sym_BANG] = ACTIONS(5140), + [anon_sym_PIPE] = ACTIONS(5140), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_SQUOTE] = ACTIONS(5140), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5138), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5138), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5138), + [anon_sym_BSLASHbegin] = ACTIONS(5140), + [anon_sym_BSLASHusepackage] = ACTIONS(5140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5140), + [anon_sym_BSLASHinclude] = ACTIONS(5140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5140), + [anon_sym_BSLASHinput] = ACTIONS(5140), + [anon_sym_BSLASHsubfile] = ACTIONS(5140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5140), + [anon_sym_BSLASHbibliography] = ACTIONS(5140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5140), + [anon_sym_BSLASHincludesvg] = ACTIONS(5140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5140), + [anon_sym_BSLASHimport] = ACTIONS(5140), + [anon_sym_BSLASHsubimport] = ACTIONS(5140), + [anon_sym_BSLASHinputfrom] = ACTIONS(5140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5140), + [anon_sym_BSLASHincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5140), + [anon_sym_BSLASHcaption] = ACTIONS(5140), + [anon_sym_BSLASHcite] = ACTIONS(5140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCite] = ACTIONS(5140), + [anon_sym_BSLASHnocite] = ACTIONS(5140), + [anon_sym_BSLASHcitet] = ACTIONS(5140), + [anon_sym_BSLASHcitep] = ACTIONS(5140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteauthor] = ACTIONS(5140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitetitle] = ACTIONS(5140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteyear] = ACTIONS(5140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5138), + [anon_sym_BSLASHcitedate] = ACTIONS(5140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5138), + [anon_sym_BSLASHciteurl] = ACTIONS(5140), + [anon_sym_BSLASHfullcite] = ACTIONS(5140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5140), + [anon_sym_BSLASHcitealt] = ACTIONS(5140), + [anon_sym_BSLASHcitealp] = ACTIONS(5140), + [anon_sym_BSLASHcitetext] = ACTIONS(5140), + [anon_sym_BSLASHparencite] = ACTIONS(5140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHParencite] = ACTIONS(5140), + [anon_sym_BSLASHfootcite] = ACTIONS(5140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5140), + [anon_sym_BSLASHtextcite] = ACTIONS(5140), + [anon_sym_BSLASHTextcite] = ACTIONS(5140), + [anon_sym_BSLASHsmartcite] = ACTIONS(5140), + [anon_sym_BSLASHSmartcite] = ACTIONS(5140), + [anon_sym_BSLASHsupercite] = ACTIONS(5140), + [anon_sym_BSLASHautocite] = ACTIONS(5140), + [anon_sym_BSLASHAutocite] = ACTIONS(5140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5138), + [anon_sym_BSLASHvolcite] = ACTIONS(5140), + [anon_sym_BSLASHVolcite] = ACTIONS(5140), + [anon_sym_BSLASHpvolcite] = ACTIONS(5140), + [anon_sym_BSLASHPvolcite] = ACTIONS(5140), + [anon_sym_BSLASHfvolcite] = ACTIONS(5140), + [anon_sym_BSLASHftvolcite] = ACTIONS(5140), + [anon_sym_BSLASHsvolcite] = ACTIONS(5140), + [anon_sym_BSLASHSvolcite] = ACTIONS(5140), + [anon_sym_BSLASHtvolcite] = ACTIONS(5140), + [anon_sym_BSLASHTvolcite] = ACTIONS(5140), + [anon_sym_BSLASHavolcite] = ACTIONS(5140), + [anon_sym_BSLASHAvolcite] = ACTIONS(5140), + [anon_sym_BSLASHnotecite] = ACTIONS(5140), + [anon_sym_BSLASHNotecite] = ACTIONS(5140), + [anon_sym_BSLASHpnotecite] = ACTIONS(5140), + [anon_sym_BSLASHPnotecite] = ACTIONS(5140), + [anon_sym_BSLASHfnotecite] = ACTIONS(5140), + [anon_sym_BSLASHlabel] = ACTIONS(5140), + [anon_sym_BSLASHref] = ACTIONS(5140), + [anon_sym_BSLASHeqref] = ACTIONS(5140), + [anon_sym_BSLASHvref] = ACTIONS(5140), + [anon_sym_BSLASHVref] = ACTIONS(5140), + [anon_sym_BSLASHautoref] = ACTIONS(5140), + [anon_sym_BSLASHpageref] = ACTIONS(5140), + [anon_sym_BSLASHcref] = ACTIONS(5140), + [anon_sym_BSLASHCref] = ACTIONS(5140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnameCref] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5140), + [anon_sym_BSLASHlabelcref] = ACTIONS(5140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange] = ACTIONS(5140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHCrefrange] = ACTIONS(5140), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5138), + [anon_sym_BSLASHnewlabel] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand] = ACTIONS(5140), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5140), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5140), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5138), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdef] = ACTIONS(5140), + [anon_sym_BSLASHlet] = ACTIONS(5140), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5140), + [anon_sym_BSLASHgls] = ACTIONS(5140), + [anon_sym_BSLASHGls] = ACTIONS(5140), + [anon_sym_BSLASHGLS] = ACTIONS(5140), + [anon_sym_BSLASHglspl] = ACTIONS(5140), + [anon_sym_BSLASHGlspl] = ACTIONS(5140), + [anon_sym_BSLASHGLSpl] = ACTIONS(5140), + [anon_sym_BSLASHglsdisp] = ACTIONS(5140), + [anon_sym_BSLASHglslink] = ACTIONS(5140), + [anon_sym_BSLASHglstext] = ACTIONS(5140), + [anon_sym_BSLASHGlstext] = ACTIONS(5140), + [anon_sym_BSLASHGLStext] = ACTIONS(5140), + [anon_sym_BSLASHglsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5140), + [anon_sym_BSLASHglsplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSplural] = ACTIONS(5140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5140), + [anon_sym_BSLASHglsname] = ACTIONS(5140), + [anon_sym_BSLASHGlsname] = ACTIONS(5140), + [anon_sym_BSLASHGLSname] = ACTIONS(5140), + [anon_sym_BSLASHglssymbol] = ACTIONS(5140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5140), + [anon_sym_BSLASHglsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5140), + [anon_sym_BSLASHglsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5140), + [anon_sym_BSLASHglsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5140), + [anon_sym_BSLASHglsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5140), + [anon_sym_BSLASHglsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5140), + [anon_sym_BSLASHnewacronym] = ACTIONS(5140), + [anon_sym_BSLASHacrshort] = ACTIONS(5140), + [anon_sym_BSLASHAcrshort] = ACTIONS(5140), + [anon_sym_BSLASHACRshort] = ACTIONS(5140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5140), + [anon_sym_BSLASHacrlong] = ACTIONS(5140), + [anon_sym_BSLASHAcrlong] = ACTIONS(5140), + [anon_sym_BSLASHACRlong] = ACTIONS(5140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5140), + [anon_sym_BSLASHacrfull] = ACTIONS(5140), + [anon_sym_BSLASHAcrfull] = ACTIONS(5140), + [anon_sym_BSLASHACRfull] = ACTIONS(5140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5140), + [anon_sym_BSLASHacs] = ACTIONS(5140), + [anon_sym_BSLASHAcs] = ACTIONS(5140), + [anon_sym_BSLASHacsp] = ACTIONS(5140), + [anon_sym_BSLASHAcsp] = ACTIONS(5140), + [anon_sym_BSLASHacl] = ACTIONS(5140), + [anon_sym_BSLASHAcl] = ACTIONS(5140), + [anon_sym_BSLASHaclp] = ACTIONS(5140), + [anon_sym_BSLASHAclp] = ACTIONS(5140), + [anon_sym_BSLASHacf] = ACTIONS(5140), + [anon_sym_BSLASHAcf] = ACTIONS(5140), + [anon_sym_BSLASHacfp] = ACTIONS(5140), + [anon_sym_BSLASHAcfp] = ACTIONS(5140), + [anon_sym_BSLASHac] = ACTIONS(5140), + [anon_sym_BSLASHAc] = ACTIONS(5140), + [anon_sym_BSLASHacp] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5140), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5140), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5138), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5140), + [anon_sym_BSLASHcolor] = ACTIONS(5140), + [anon_sym_BSLASHcolorbox] = ACTIONS(5140), + [anon_sym_BSLASHtextcolor] = ACTIONS(5140), + [anon_sym_BSLASHpagecolor] = ACTIONS(5140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5140), + [anon_sym_BSLASHtext] = ACTIONS(5140), + [anon_sym_BSLASHintertext] = ACTIONS(5140), + [anon_sym_shortintertext] = ACTIONS(5140), }, [1168] = { - [sym_command_name] = ACTIONS(4883), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_RBRACK] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4881), - [anon_sym_BSLASHpart] = ACTIONS(4883), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddpart] = ACTIONS(4883), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), - [anon_sym_BSLASHchapter] = ACTIONS(4883), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddchap] = ACTIONS(4883), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsection] = ACTIONS(4883), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHaddsec] = ACTIONS(4883), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), - [anon_sym_BSLASHparagraph] = ACTIONS(4883), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), - [anon_sym_BSLASHitem] = ACTIONS(4883), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4881), - [sym_word] = ACTIONS(4883), - [sym_placeholder] = ACTIONS(4881), - [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(4881), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), - [anon_sym_BSLASHbegin] = ACTIONS(4883), - [anon_sym_BSLASHusepackage] = ACTIONS(4883), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), - [anon_sym_BSLASHinclude] = ACTIONS(4883), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), - [anon_sym_BSLASHinput] = ACTIONS(4883), - [anon_sym_BSLASHsubfile] = ACTIONS(4883), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), - [anon_sym_BSLASHbibliography] = ACTIONS(4883), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), - [anon_sym_BSLASHincludesvg] = ACTIONS(4883), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), - [anon_sym_BSLASHimport] = ACTIONS(4883), - [anon_sym_BSLASHsubimport] = ACTIONS(4883), - [anon_sym_BSLASHinputfrom] = ACTIONS(4883), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), - [anon_sym_BSLASHincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), - [anon_sym_BSLASHcaption] = ACTIONS(4883), - [anon_sym_BSLASHcite] = ACTIONS(4883), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCite] = ACTIONS(4883), - [anon_sym_BSLASHnocite] = ACTIONS(4883), - [anon_sym_BSLASHcitet] = ACTIONS(4883), - [anon_sym_BSLASHcitep] = ACTIONS(4883), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteauthor] = ACTIONS(4883), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitetitle] = ACTIONS(4883), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteyear] = ACTIONS(4883), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), - [anon_sym_BSLASHcitedate] = ACTIONS(4883), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), - [anon_sym_BSLASHciteurl] = ACTIONS(4883), - [anon_sym_BSLASHfullcite] = ACTIONS(4883), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), - [anon_sym_BSLASHcitealt] = ACTIONS(4883), - [anon_sym_BSLASHcitealp] = ACTIONS(4883), - [anon_sym_BSLASHcitetext] = ACTIONS(4883), - [anon_sym_BSLASHparencite] = ACTIONS(4883), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHParencite] = ACTIONS(4883), - [anon_sym_BSLASHfootcite] = ACTIONS(4883), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), - [anon_sym_BSLASHtextcite] = ACTIONS(4883), - [anon_sym_BSLASHTextcite] = ACTIONS(4883), - [anon_sym_BSLASHsmartcite] = ACTIONS(4883), - [anon_sym_BSLASHSmartcite] = ACTIONS(4883), - [anon_sym_BSLASHsupercite] = ACTIONS(4883), - [anon_sym_BSLASHautocite] = ACTIONS(4883), - [anon_sym_BSLASHAutocite] = ACTIONS(4883), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), - [anon_sym_BSLASHvolcite] = ACTIONS(4883), - [anon_sym_BSLASHVolcite] = ACTIONS(4883), - [anon_sym_BSLASHpvolcite] = ACTIONS(4883), - [anon_sym_BSLASHPvolcite] = ACTIONS(4883), - [anon_sym_BSLASHfvolcite] = ACTIONS(4883), - [anon_sym_BSLASHftvolcite] = ACTIONS(4883), - [anon_sym_BSLASHsvolcite] = ACTIONS(4883), - [anon_sym_BSLASHSvolcite] = ACTIONS(4883), - [anon_sym_BSLASHtvolcite] = ACTIONS(4883), - [anon_sym_BSLASHTvolcite] = ACTIONS(4883), - [anon_sym_BSLASHavolcite] = ACTIONS(4883), - [anon_sym_BSLASHAvolcite] = ACTIONS(4883), - [anon_sym_BSLASHnotecite] = ACTIONS(4883), - [anon_sym_BSLASHNotecite] = ACTIONS(4883), - [anon_sym_BSLASHpnotecite] = ACTIONS(4883), - [anon_sym_BSLASHPnotecite] = ACTIONS(4883), - [anon_sym_BSLASHfnotecite] = ACTIONS(4883), - [anon_sym_BSLASHlabel] = ACTIONS(4883), - [anon_sym_BSLASHref] = ACTIONS(4883), - [anon_sym_BSLASHeqref] = ACTIONS(4883), - [anon_sym_BSLASHvref] = ACTIONS(4883), - [anon_sym_BSLASHVref] = ACTIONS(4883), - [anon_sym_BSLASHautoref] = ACTIONS(4883), - [anon_sym_BSLASHpageref] = ACTIONS(4883), - [anon_sym_BSLASHcref] = ACTIONS(4883), - [anon_sym_BSLASHCref] = ACTIONS(4883), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnameCref] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), - [anon_sym_BSLASHlabelcref] = ACTIONS(4883), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange] = ACTIONS(4883), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHCrefrange] = ACTIONS(4883), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), - [anon_sym_BSLASHnewlabel] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand] = ACTIONS(4883), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), - [anon_sym_BSLASHdef] = ACTIONS(4883), - [anon_sym_BSLASHlet] = ACTIONS(4883), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), - [anon_sym_BSLASHgls] = ACTIONS(4883), - [anon_sym_BSLASHGls] = ACTIONS(4883), - [anon_sym_BSLASHGLS] = ACTIONS(4883), - [anon_sym_BSLASHglspl] = ACTIONS(4883), - [anon_sym_BSLASHGlspl] = ACTIONS(4883), - [anon_sym_BSLASHGLSpl] = ACTIONS(4883), - [anon_sym_BSLASHglsdisp] = ACTIONS(4883), - [anon_sym_BSLASHglslink] = ACTIONS(4883), - [anon_sym_BSLASHglstext] = ACTIONS(4883), - [anon_sym_BSLASHGlstext] = ACTIONS(4883), - [anon_sym_BSLASHGLStext] = ACTIONS(4883), - [anon_sym_BSLASHglsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), - [anon_sym_BSLASHglsplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSplural] = ACTIONS(4883), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), - [anon_sym_BSLASHglsname] = ACTIONS(4883), - [anon_sym_BSLASHGlsname] = ACTIONS(4883), - [anon_sym_BSLASHGLSname] = ACTIONS(4883), - [anon_sym_BSLASHglssymbol] = ACTIONS(4883), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), - [anon_sym_BSLASHglsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), - [anon_sym_BSLASHglsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), - [anon_sym_BSLASHglsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), - [anon_sym_BSLASHglsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), - [anon_sym_BSLASHglsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), - [anon_sym_BSLASHnewacronym] = ACTIONS(4883), - [anon_sym_BSLASHacrshort] = ACTIONS(4883), - [anon_sym_BSLASHAcrshort] = ACTIONS(4883), - [anon_sym_BSLASHACRshort] = ACTIONS(4883), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), - [anon_sym_BSLASHacrlong] = ACTIONS(4883), - [anon_sym_BSLASHAcrlong] = ACTIONS(4883), - [anon_sym_BSLASHACRlong] = ACTIONS(4883), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), - [anon_sym_BSLASHacrfull] = ACTIONS(4883), - [anon_sym_BSLASHAcrfull] = ACTIONS(4883), - [anon_sym_BSLASHACRfull] = ACTIONS(4883), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), - [anon_sym_BSLASHacs] = ACTIONS(4883), - [anon_sym_BSLASHAcs] = ACTIONS(4883), - [anon_sym_BSLASHacsp] = ACTIONS(4883), - [anon_sym_BSLASHAcsp] = ACTIONS(4883), - [anon_sym_BSLASHacl] = ACTIONS(4883), - [anon_sym_BSLASHAcl] = ACTIONS(4883), - [anon_sym_BSLASHaclp] = ACTIONS(4883), - [anon_sym_BSLASHAclp] = ACTIONS(4883), - [anon_sym_BSLASHacf] = ACTIONS(4883), - [anon_sym_BSLASHAcf] = ACTIONS(4883), - [anon_sym_BSLASHacfp] = ACTIONS(4883), - [anon_sym_BSLASHAcfp] = ACTIONS(4883), - [anon_sym_BSLASHac] = ACTIONS(4883), - [anon_sym_BSLASHAc] = ACTIONS(4883), - [anon_sym_BSLASHacp] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), - [anon_sym_BSLASHcolor] = ACTIONS(4883), - [anon_sym_BSLASHcolorbox] = ACTIONS(4883), - [anon_sym_BSLASHtextcolor] = ACTIONS(4883), - [anon_sym_BSLASHpagecolor] = ACTIONS(4883), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), - [anon_sym_BSLASHtext] = ACTIONS(4883), - [anon_sym_BSLASHintertext] = ACTIONS(4883), - [anon_sym_shortintertext] = ACTIONS(4883), + [sym_command_name] = ACTIONS(4962), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_BSLASHpart] = ACTIONS(4962), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddpart] = ACTIONS(4962), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4960), + [anon_sym_BSLASHchapter] = ACTIONS(4962), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddchap] = ACTIONS(4962), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsection] = ACTIONS(4962), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHaddsec] = ACTIONS(4962), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4962), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4960), + [anon_sym_BSLASHparagraph] = ACTIONS(4962), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4962), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4960), + [anon_sym_BSLASHitem] = ACTIONS(4962), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [sym_word] = ACTIONS(4962), + [sym_placeholder] = ACTIONS(4960), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym__] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4962), + [anon_sym_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4960), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4960), + [anon_sym_DOLLAR] = ACTIONS(4962), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4960), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4960), + [anon_sym_BSLASHbegin] = ACTIONS(4962), + [anon_sym_BSLASHusepackage] = ACTIONS(4962), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4962), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4962), + [anon_sym_BSLASHinclude] = ACTIONS(4962), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4962), + [anon_sym_BSLASHinput] = ACTIONS(4962), + [anon_sym_BSLASHsubfile] = ACTIONS(4962), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4962), + [anon_sym_BSLASHbibliography] = ACTIONS(4962), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4962), + [anon_sym_BSLASHincludesvg] = ACTIONS(4962), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4962), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4962), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4962), + [anon_sym_BSLASHimport] = ACTIONS(4962), + [anon_sym_BSLASHsubimport] = ACTIONS(4962), + [anon_sym_BSLASHinputfrom] = ACTIONS(4962), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4962), + [anon_sym_BSLASHincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4962), + [anon_sym_BSLASHcaption] = ACTIONS(4962), + [anon_sym_BSLASHcite] = ACTIONS(4962), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCite] = ACTIONS(4962), + [anon_sym_BSLASHnocite] = ACTIONS(4962), + [anon_sym_BSLASHcitet] = ACTIONS(4962), + [anon_sym_BSLASHcitep] = ACTIONS(4962), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteauthor] = ACTIONS(4962), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4962), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitetitle] = ACTIONS(4962), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteyear] = ACTIONS(4962), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4960), + [anon_sym_BSLASHcitedate] = ACTIONS(4962), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4960), + [anon_sym_BSLASHciteurl] = ACTIONS(4962), + [anon_sym_BSLASHfullcite] = ACTIONS(4962), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4962), + [anon_sym_BSLASHcitealt] = ACTIONS(4962), + [anon_sym_BSLASHcitealp] = ACTIONS(4962), + [anon_sym_BSLASHcitetext] = ACTIONS(4962), + [anon_sym_BSLASHparencite] = ACTIONS(4962), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHParencite] = ACTIONS(4962), + [anon_sym_BSLASHfootcite] = ACTIONS(4962), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4962), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4962), + [anon_sym_BSLASHtextcite] = ACTIONS(4962), + [anon_sym_BSLASHTextcite] = ACTIONS(4962), + [anon_sym_BSLASHsmartcite] = ACTIONS(4962), + [anon_sym_BSLASHSmartcite] = ACTIONS(4962), + [anon_sym_BSLASHsupercite] = ACTIONS(4962), + [anon_sym_BSLASHautocite] = ACTIONS(4962), + [anon_sym_BSLASHAutocite] = ACTIONS(4962), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4960), + [anon_sym_BSLASHvolcite] = ACTIONS(4962), + [anon_sym_BSLASHVolcite] = ACTIONS(4962), + [anon_sym_BSLASHpvolcite] = ACTIONS(4962), + [anon_sym_BSLASHPvolcite] = ACTIONS(4962), + [anon_sym_BSLASHfvolcite] = ACTIONS(4962), + [anon_sym_BSLASHftvolcite] = ACTIONS(4962), + [anon_sym_BSLASHsvolcite] = ACTIONS(4962), + [anon_sym_BSLASHSvolcite] = ACTIONS(4962), + [anon_sym_BSLASHtvolcite] = ACTIONS(4962), + [anon_sym_BSLASHTvolcite] = ACTIONS(4962), + [anon_sym_BSLASHavolcite] = ACTIONS(4962), + [anon_sym_BSLASHAvolcite] = ACTIONS(4962), + [anon_sym_BSLASHnotecite] = ACTIONS(4962), + [anon_sym_BSLASHNotecite] = ACTIONS(4962), + [anon_sym_BSLASHpnotecite] = ACTIONS(4962), + [anon_sym_BSLASHPnotecite] = ACTIONS(4962), + [anon_sym_BSLASHfnotecite] = ACTIONS(4962), + [anon_sym_BSLASHlabel] = ACTIONS(4962), + [anon_sym_BSLASHref] = ACTIONS(4962), + [anon_sym_BSLASHeqref] = ACTIONS(4962), + [anon_sym_BSLASHvref] = ACTIONS(4962), + [anon_sym_BSLASHVref] = ACTIONS(4962), + [anon_sym_BSLASHautoref] = ACTIONS(4962), + [anon_sym_BSLASHpageref] = ACTIONS(4962), + [anon_sym_BSLASHcref] = ACTIONS(4962), + [anon_sym_BSLASHCref] = ACTIONS(4962), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnameCref] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4962), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4962), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4962), + [anon_sym_BSLASHlabelcref] = ACTIONS(4962), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange] = ACTIONS(4962), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHCrefrange] = ACTIONS(4962), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4960), + [anon_sym_BSLASHnewlabel] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand] = ACTIONS(4962), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4962), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4962), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4960), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4962), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdef] = ACTIONS(4962), + [anon_sym_BSLASHlet] = ACTIONS(4962), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4962), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4962), + [anon_sym_BSLASHgls] = ACTIONS(4962), + [anon_sym_BSLASHGls] = ACTIONS(4962), + [anon_sym_BSLASHGLS] = ACTIONS(4962), + [anon_sym_BSLASHglspl] = ACTIONS(4962), + [anon_sym_BSLASHGlspl] = ACTIONS(4962), + [anon_sym_BSLASHGLSpl] = ACTIONS(4962), + [anon_sym_BSLASHglsdisp] = ACTIONS(4962), + [anon_sym_BSLASHglslink] = ACTIONS(4962), + [anon_sym_BSLASHglstext] = ACTIONS(4962), + [anon_sym_BSLASHGlstext] = ACTIONS(4962), + [anon_sym_BSLASHGLStext] = ACTIONS(4962), + [anon_sym_BSLASHglsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4962), + [anon_sym_BSLASHglsplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSplural] = ACTIONS(4962), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4962), + [anon_sym_BSLASHglsname] = ACTIONS(4962), + [anon_sym_BSLASHGlsname] = ACTIONS(4962), + [anon_sym_BSLASHGLSname] = ACTIONS(4962), + [anon_sym_BSLASHglssymbol] = ACTIONS(4962), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4962), + [anon_sym_BSLASHglsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4962), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4962), + [anon_sym_BSLASHglsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4962), + [anon_sym_BSLASHglsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4962), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4962), + [anon_sym_BSLASHglsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4962), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4962), + [anon_sym_BSLASHglsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4962), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4962), + [anon_sym_BSLASHnewacronym] = ACTIONS(4962), + [anon_sym_BSLASHacrshort] = ACTIONS(4962), + [anon_sym_BSLASHAcrshort] = ACTIONS(4962), + [anon_sym_BSLASHACRshort] = ACTIONS(4962), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4962), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4962), + [anon_sym_BSLASHacrlong] = ACTIONS(4962), + [anon_sym_BSLASHAcrlong] = ACTIONS(4962), + [anon_sym_BSLASHACRlong] = ACTIONS(4962), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4962), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4962), + [anon_sym_BSLASHacrfull] = ACTIONS(4962), + [anon_sym_BSLASHAcrfull] = ACTIONS(4962), + [anon_sym_BSLASHACRfull] = ACTIONS(4962), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4962), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4962), + [anon_sym_BSLASHacs] = ACTIONS(4962), + [anon_sym_BSLASHAcs] = ACTIONS(4962), + [anon_sym_BSLASHacsp] = ACTIONS(4962), + [anon_sym_BSLASHAcsp] = ACTIONS(4962), + [anon_sym_BSLASHacl] = ACTIONS(4962), + [anon_sym_BSLASHAcl] = ACTIONS(4962), + [anon_sym_BSLASHaclp] = ACTIONS(4962), + [anon_sym_BSLASHAclp] = ACTIONS(4962), + [anon_sym_BSLASHacf] = ACTIONS(4962), + [anon_sym_BSLASHAcf] = ACTIONS(4962), + [anon_sym_BSLASHacfp] = ACTIONS(4962), + [anon_sym_BSLASHAcfp] = ACTIONS(4962), + [anon_sym_BSLASHac] = ACTIONS(4962), + [anon_sym_BSLASHAc] = ACTIONS(4962), + [anon_sym_BSLASHacp] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4962), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4962), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4962), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4962), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4962), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4960), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4962), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4962), + [anon_sym_BSLASHcolor] = ACTIONS(4962), + [anon_sym_BSLASHcolorbox] = ACTIONS(4962), + [anon_sym_BSLASHtextcolor] = ACTIONS(4962), + [anon_sym_BSLASHpagecolor] = ACTIONS(4962), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4962), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4962), + [anon_sym_BSLASHtext] = ACTIONS(4962), + [anon_sym_BSLASHintertext] = ACTIONS(4962), + [anon_sym_shortintertext] = ACTIONS(4962), }, [1169] = { - [sym_command_name] = ACTIONS(5069), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), - [anon_sym_BSLASHtext] = ACTIONS(5069), - [anon_sym_BSLASHintertext] = ACTIONS(5069), - [anon_sym_shortintertext] = ACTIONS(5069), + [sym_command_name] = ACTIONS(5148), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5146), + [anon_sym_RBRACK] = ACTIONS(5146), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_BSLASHpart] = ACTIONS(5148), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddpart] = ACTIONS(5148), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5146), + [anon_sym_BSLASHchapter] = ACTIONS(5148), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddchap] = ACTIONS(5148), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsection] = ACTIONS(5148), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHaddsec] = ACTIONS(5148), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5148), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5146), + [anon_sym_BSLASHparagraph] = ACTIONS(5148), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5148), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5146), + [anon_sym_BSLASHitem] = ACTIONS(5148), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5146), + [sym_word] = ACTIONS(5148), + [sym_placeholder] = ACTIONS(5146), + [anon_sym_PLUS] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [anon_sym_STAR] = ACTIONS(5148), + [anon_sym_SLASH] = ACTIONS(5148), + [anon_sym_CARET] = ACTIONS(5148), + [anon_sym__] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5148), + [anon_sym_GT] = ACTIONS(5148), + [anon_sym_BANG] = ACTIONS(5148), + [anon_sym_PIPE] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_SQUOTE] = ACTIONS(5148), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5146), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(5148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5146), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5146), + [anon_sym_BSLASHbegin] = ACTIONS(5148), + [anon_sym_BSLASHusepackage] = ACTIONS(5148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5148), + [anon_sym_BSLASHinclude] = ACTIONS(5148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5148), + [anon_sym_BSLASHinput] = ACTIONS(5148), + [anon_sym_BSLASHsubfile] = ACTIONS(5148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5148), + [anon_sym_BSLASHbibliography] = ACTIONS(5148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5148), + [anon_sym_BSLASHincludesvg] = ACTIONS(5148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5148), + [anon_sym_BSLASHimport] = ACTIONS(5148), + [anon_sym_BSLASHsubimport] = ACTIONS(5148), + [anon_sym_BSLASHinputfrom] = ACTIONS(5148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5148), + [anon_sym_BSLASHincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5148), + [anon_sym_BSLASHcaption] = ACTIONS(5148), + [anon_sym_BSLASHcite] = ACTIONS(5148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCite] = ACTIONS(5148), + [anon_sym_BSLASHnocite] = ACTIONS(5148), + [anon_sym_BSLASHcitet] = ACTIONS(5148), + [anon_sym_BSLASHcitep] = ACTIONS(5148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteauthor] = ACTIONS(5148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitetitle] = ACTIONS(5148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteyear] = ACTIONS(5148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5146), + [anon_sym_BSLASHcitedate] = ACTIONS(5148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5146), + [anon_sym_BSLASHciteurl] = ACTIONS(5148), + [anon_sym_BSLASHfullcite] = ACTIONS(5148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5148), + [anon_sym_BSLASHcitealt] = ACTIONS(5148), + [anon_sym_BSLASHcitealp] = ACTIONS(5148), + [anon_sym_BSLASHcitetext] = ACTIONS(5148), + [anon_sym_BSLASHparencite] = ACTIONS(5148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHParencite] = ACTIONS(5148), + [anon_sym_BSLASHfootcite] = ACTIONS(5148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5148), + [anon_sym_BSLASHtextcite] = ACTIONS(5148), + [anon_sym_BSLASHTextcite] = ACTIONS(5148), + [anon_sym_BSLASHsmartcite] = ACTIONS(5148), + [anon_sym_BSLASHSmartcite] = ACTIONS(5148), + [anon_sym_BSLASHsupercite] = ACTIONS(5148), + [anon_sym_BSLASHautocite] = ACTIONS(5148), + [anon_sym_BSLASHAutocite] = ACTIONS(5148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5146), + [anon_sym_BSLASHvolcite] = ACTIONS(5148), + [anon_sym_BSLASHVolcite] = ACTIONS(5148), + [anon_sym_BSLASHpvolcite] = ACTIONS(5148), + [anon_sym_BSLASHPvolcite] = ACTIONS(5148), + [anon_sym_BSLASHfvolcite] = ACTIONS(5148), + [anon_sym_BSLASHftvolcite] = ACTIONS(5148), + [anon_sym_BSLASHsvolcite] = ACTIONS(5148), + [anon_sym_BSLASHSvolcite] = ACTIONS(5148), + [anon_sym_BSLASHtvolcite] = ACTIONS(5148), + [anon_sym_BSLASHTvolcite] = ACTIONS(5148), + [anon_sym_BSLASHavolcite] = ACTIONS(5148), + [anon_sym_BSLASHAvolcite] = ACTIONS(5148), + [anon_sym_BSLASHnotecite] = ACTIONS(5148), + [anon_sym_BSLASHNotecite] = ACTIONS(5148), + [anon_sym_BSLASHpnotecite] = ACTIONS(5148), + [anon_sym_BSLASHPnotecite] = ACTIONS(5148), + [anon_sym_BSLASHfnotecite] = ACTIONS(5148), + [anon_sym_BSLASHlabel] = ACTIONS(5148), + [anon_sym_BSLASHref] = ACTIONS(5148), + [anon_sym_BSLASHeqref] = ACTIONS(5148), + [anon_sym_BSLASHvref] = ACTIONS(5148), + [anon_sym_BSLASHVref] = ACTIONS(5148), + [anon_sym_BSLASHautoref] = ACTIONS(5148), + [anon_sym_BSLASHpageref] = ACTIONS(5148), + [anon_sym_BSLASHcref] = ACTIONS(5148), + [anon_sym_BSLASHCref] = ACTIONS(5148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnameCref] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5148), + [anon_sym_BSLASHlabelcref] = ACTIONS(5148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange] = ACTIONS(5148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHCrefrange] = ACTIONS(5148), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5146), + [anon_sym_BSLASHnewlabel] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand] = ACTIONS(5148), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5148), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5148), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5146), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdef] = ACTIONS(5148), + [anon_sym_BSLASHlet] = ACTIONS(5148), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5148), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5148), + [anon_sym_BSLASHgls] = ACTIONS(5148), + [anon_sym_BSLASHGls] = ACTIONS(5148), + [anon_sym_BSLASHGLS] = ACTIONS(5148), + [anon_sym_BSLASHglspl] = ACTIONS(5148), + [anon_sym_BSLASHGlspl] = ACTIONS(5148), + [anon_sym_BSLASHGLSpl] = ACTIONS(5148), + [anon_sym_BSLASHglsdisp] = ACTIONS(5148), + [anon_sym_BSLASHglslink] = ACTIONS(5148), + [anon_sym_BSLASHglstext] = ACTIONS(5148), + [anon_sym_BSLASHGlstext] = ACTIONS(5148), + [anon_sym_BSLASHGLStext] = ACTIONS(5148), + [anon_sym_BSLASHglsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5148), + [anon_sym_BSLASHglsplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSplural] = ACTIONS(5148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5148), + [anon_sym_BSLASHglsname] = ACTIONS(5148), + [anon_sym_BSLASHGlsname] = ACTIONS(5148), + [anon_sym_BSLASHGLSname] = ACTIONS(5148), + [anon_sym_BSLASHglssymbol] = ACTIONS(5148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5148), + [anon_sym_BSLASHglsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5148), + [anon_sym_BSLASHglsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5148), + [anon_sym_BSLASHglsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5148), + [anon_sym_BSLASHglsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5148), + [anon_sym_BSLASHglsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5148), + [anon_sym_BSLASHnewacronym] = ACTIONS(5148), + [anon_sym_BSLASHacrshort] = ACTIONS(5148), + [anon_sym_BSLASHAcrshort] = ACTIONS(5148), + [anon_sym_BSLASHACRshort] = ACTIONS(5148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5148), + [anon_sym_BSLASHacrlong] = ACTIONS(5148), + [anon_sym_BSLASHAcrlong] = ACTIONS(5148), + [anon_sym_BSLASHACRlong] = ACTIONS(5148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5148), + [anon_sym_BSLASHacrfull] = ACTIONS(5148), + [anon_sym_BSLASHAcrfull] = ACTIONS(5148), + [anon_sym_BSLASHACRfull] = ACTIONS(5148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5148), + [anon_sym_BSLASHacs] = ACTIONS(5148), + [anon_sym_BSLASHAcs] = ACTIONS(5148), + [anon_sym_BSLASHacsp] = ACTIONS(5148), + [anon_sym_BSLASHAcsp] = ACTIONS(5148), + [anon_sym_BSLASHacl] = ACTIONS(5148), + [anon_sym_BSLASHAcl] = ACTIONS(5148), + [anon_sym_BSLASHaclp] = ACTIONS(5148), + [anon_sym_BSLASHAclp] = ACTIONS(5148), + [anon_sym_BSLASHacf] = ACTIONS(5148), + [anon_sym_BSLASHAcf] = ACTIONS(5148), + [anon_sym_BSLASHacfp] = ACTIONS(5148), + [anon_sym_BSLASHAcfp] = ACTIONS(5148), + [anon_sym_BSLASHac] = ACTIONS(5148), + [anon_sym_BSLASHAc] = ACTIONS(5148), + [anon_sym_BSLASHacp] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5148), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5148), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5146), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5148), + [anon_sym_BSLASHcolor] = ACTIONS(5148), + [anon_sym_BSLASHcolorbox] = ACTIONS(5148), + [anon_sym_BSLASHtextcolor] = ACTIONS(5148), + [anon_sym_BSLASHpagecolor] = ACTIONS(5148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5148), + [anon_sym_BSLASHtext] = ACTIONS(5148), + [anon_sym_BSLASHintertext] = ACTIONS(5148), + [anon_sym_shortintertext] = ACTIONS(5148), }, [1170] = { - [sym_command_name] = ACTIONS(5077), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - [anon_sym_BSLASHtext] = ACTIONS(5077), - [anon_sym_BSLASHintertext] = ACTIONS(5077), - [anon_sym_shortintertext] = ACTIONS(5077), + [sym_command_name] = ACTIONS(5156), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_BSLASHpart] = ACTIONS(5156), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddpart] = ACTIONS(5156), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5154), + [anon_sym_BSLASHchapter] = ACTIONS(5156), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddchap] = ACTIONS(5156), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsection] = ACTIONS(5156), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHaddsec] = ACTIONS(5156), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5156), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5154), + [anon_sym_BSLASHparagraph] = ACTIONS(5156), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5156), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5154), + [anon_sym_BSLASHitem] = ACTIONS(5156), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5154), + [sym_word] = ACTIONS(5156), + [sym_placeholder] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym__] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_BANG] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_SQUOTE] = ACTIONS(5156), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5154), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(5156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5154), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5154), + [anon_sym_BSLASHbegin] = ACTIONS(5156), + [anon_sym_BSLASHusepackage] = ACTIONS(5156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5156), + [anon_sym_BSLASHinclude] = ACTIONS(5156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5156), + [anon_sym_BSLASHinput] = ACTIONS(5156), + [anon_sym_BSLASHsubfile] = ACTIONS(5156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5156), + [anon_sym_BSLASHbibliography] = ACTIONS(5156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5156), + [anon_sym_BSLASHincludesvg] = ACTIONS(5156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5156), + [anon_sym_BSLASHimport] = ACTIONS(5156), + [anon_sym_BSLASHsubimport] = ACTIONS(5156), + [anon_sym_BSLASHinputfrom] = ACTIONS(5156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5156), + [anon_sym_BSLASHincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5156), + [anon_sym_BSLASHcaption] = ACTIONS(5156), + [anon_sym_BSLASHcite] = ACTIONS(5156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCite] = ACTIONS(5156), + [anon_sym_BSLASHnocite] = ACTIONS(5156), + [anon_sym_BSLASHcitet] = ACTIONS(5156), + [anon_sym_BSLASHcitep] = ACTIONS(5156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteauthor] = ACTIONS(5156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitetitle] = ACTIONS(5156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteyear] = ACTIONS(5156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5154), + [anon_sym_BSLASHcitedate] = ACTIONS(5156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5154), + [anon_sym_BSLASHciteurl] = ACTIONS(5156), + [anon_sym_BSLASHfullcite] = ACTIONS(5156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5156), + [anon_sym_BSLASHcitealt] = ACTIONS(5156), + [anon_sym_BSLASHcitealp] = ACTIONS(5156), + [anon_sym_BSLASHcitetext] = ACTIONS(5156), + [anon_sym_BSLASHparencite] = ACTIONS(5156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHParencite] = ACTIONS(5156), + [anon_sym_BSLASHfootcite] = ACTIONS(5156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5156), + [anon_sym_BSLASHtextcite] = ACTIONS(5156), + [anon_sym_BSLASHTextcite] = ACTIONS(5156), + [anon_sym_BSLASHsmartcite] = ACTIONS(5156), + [anon_sym_BSLASHSmartcite] = ACTIONS(5156), + [anon_sym_BSLASHsupercite] = ACTIONS(5156), + [anon_sym_BSLASHautocite] = ACTIONS(5156), + [anon_sym_BSLASHAutocite] = ACTIONS(5156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5154), + [anon_sym_BSLASHvolcite] = ACTIONS(5156), + [anon_sym_BSLASHVolcite] = ACTIONS(5156), + [anon_sym_BSLASHpvolcite] = ACTIONS(5156), + [anon_sym_BSLASHPvolcite] = ACTIONS(5156), + [anon_sym_BSLASHfvolcite] = ACTIONS(5156), + [anon_sym_BSLASHftvolcite] = ACTIONS(5156), + [anon_sym_BSLASHsvolcite] = ACTIONS(5156), + [anon_sym_BSLASHSvolcite] = ACTIONS(5156), + [anon_sym_BSLASHtvolcite] = ACTIONS(5156), + [anon_sym_BSLASHTvolcite] = ACTIONS(5156), + [anon_sym_BSLASHavolcite] = ACTIONS(5156), + [anon_sym_BSLASHAvolcite] = ACTIONS(5156), + [anon_sym_BSLASHnotecite] = ACTIONS(5156), + [anon_sym_BSLASHNotecite] = ACTIONS(5156), + [anon_sym_BSLASHpnotecite] = ACTIONS(5156), + [anon_sym_BSLASHPnotecite] = ACTIONS(5156), + [anon_sym_BSLASHfnotecite] = ACTIONS(5156), + [anon_sym_BSLASHlabel] = ACTIONS(5156), + [anon_sym_BSLASHref] = ACTIONS(5156), + [anon_sym_BSLASHeqref] = ACTIONS(5156), + [anon_sym_BSLASHvref] = ACTIONS(5156), + [anon_sym_BSLASHVref] = ACTIONS(5156), + [anon_sym_BSLASHautoref] = ACTIONS(5156), + [anon_sym_BSLASHpageref] = ACTIONS(5156), + [anon_sym_BSLASHcref] = ACTIONS(5156), + [anon_sym_BSLASHCref] = ACTIONS(5156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnameCref] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5156), + [anon_sym_BSLASHlabelcref] = ACTIONS(5156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange] = ACTIONS(5156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHCrefrange] = ACTIONS(5156), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5154), + [anon_sym_BSLASHnewlabel] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand] = ACTIONS(5156), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5156), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5156), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5154), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdef] = ACTIONS(5156), + [anon_sym_BSLASHlet] = ACTIONS(5156), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5156), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5156), + [anon_sym_BSLASHgls] = ACTIONS(5156), + [anon_sym_BSLASHGls] = ACTIONS(5156), + [anon_sym_BSLASHGLS] = ACTIONS(5156), + [anon_sym_BSLASHglspl] = ACTIONS(5156), + [anon_sym_BSLASHGlspl] = ACTIONS(5156), + [anon_sym_BSLASHGLSpl] = ACTIONS(5156), + [anon_sym_BSLASHglsdisp] = ACTIONS(5156), + [anon_sym_BSLASHglslink] = ACTIONS(5156), + [anon_sym_BSLASHglstext] = ACTIONS(5156), + [anon_sym_BSLASHGlstext] = ACTIONS(5156), + [anon_sym_BSLASHGLStext] = ACTIONS(5156), + [anon_sym_BSLASHglsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5156), + [anon_sym_BSLASHglsplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSplural] = ACTIONS(5156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5156), + [anon_sym_BSLASHglsname] = ACTIONS(5156), + [anon_sym_BSLASHGlsname] = ACTIONS(5156), + [anon_sym_BSLASHGLSname] = ACTIONS(5156), + [anon_sym_BSLASHglssymbol] = ACTIONS(5156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5156), + [anon_sym_BSLASHglsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5156), + [anon_sym_BSLASHglsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5156), + [anon_sym_BSLASHglsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5156), + [anon_sym_BSLASHglsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5156), + [anon_sym_BSLASHglsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5156), + [anon_sym_BSLASHnewacronym] = ACTIONS(5156), + [anon_sym_BSLASHacrshort] = ACTIONS(5156), + [anon_sym_BSLASHAcrshort] = ACTIONS(5156), + [anon_sym_BSLASHACRshort] = ACTIONS(5156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5156), + [anon_sym_BSLASHacrlong] = ACTIONS(5156), + [anon_sym_BSLASHAcrlong] = ACTIONS(5156), + [anon_sym_BSLASHACRlong] = ACTIONS(5156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5156), + [anon_sym_BSLASHacrfull] = ACTIONS(5156), + [anon_sym_BSLASHAcrfull] = ACTIONS(5156), + [anon_sym_BSLASHACRfull] = ACTIONS(5156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5156), + [anon_sym_BSLASHacs] = ACTIONS(5156), + [anon_sym_BSLASHAcs] = ACTIONS(5156), + [anon_sym_BSLASHacsp] = ACTIONS(5156), + [anon_sym_BSLASHAcsp] = ACTIONS(5156), + [anon_sym_BSLASHacl] = ACTIONS(5156), + [anon_sym_BSLASHAcl] = ACTIONS(5156), + [anon_sym_BSLASHaclp] = ACTIONS(5156), + [anon_sym_BSLASHAclp] = ACTIONS(5156), + [anon_sym_BSLASHacf] = ACTIONS(5156), + [anon_sym_BSLASHAcf] = ACTIONS(5156), + [anon_sym_BSLASHacfp] = ACTIONS(5156), + [anon_sym_BSLASHAcfp] = ACTIONS(5156), + [anon_sym_BSLASHac] = ACTIONS(5156), + [anon_sym_BSLASHAc] = ACTIONS(5156), + [anon_sym_BSLASHacp] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5156), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5156), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5154), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5156), + [anon_sym_BSLASHcolor] = ACTIONS(5156), + [anon_sym_BSLASHcolorbox] = ACTIONS(5156), + [anon_sym_BSLASHtextcolor] = ACTIONS(5156), + [anon_sym_BSLASHpagecolor] = ACTIONS(5156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5156), + [anon_sym_BSLASHtext] = ACTIONS(5156), + [anon_sym_BSLASHintertext] = ACTIONS(5156), + [anon_sym_shortintertext] = ACTIONS(5156), }, [1171] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5109), - [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), + [sym_command_name] = ACTIONS(5188), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_BSLASHpart] = ACTIONS(5188), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddpart] = ACTIONS(5188), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5186), + [anon_sym_BSLASHchapter] = ACTIONS(5188), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddchap] = ACTIONS(5188), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsection] = ACTIONS(5188), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHaddsec] = ACTIONS(5188), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5188), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5186), + [anon_sym_BSLASHparagraph] = ACTIONS(5188), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5188), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5186), + [anon_sym_BSLASHitem] = ACTIONS(5188), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5186), + [sym_word] = ACTIONS(5188), + [sym_placeholder] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym__] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_BANG] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_SQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5186), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5186), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5186), + [anon_sym_BSLASHbegin] = ACTIONS(5188), + [anon_sym_BSLASHusepackage] = ACTIONS(5188), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5188), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5188), + [anon_sym_BSLASHinclude] = ACTIONS(5188), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5188), + [anon_sym_BSLASHinput] = ACTIONS(5188), + [anon_sym_BSLASHsubfile] = ACTIONS(5188), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5188), + [anon_sym_BSLASHbibliography] = ACTIONS(5188), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5188), + [anon_sym_BSLASHincludesvg] = ACTIONS(5188), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5188), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5188), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5188), + [anon_sym_BSLASHimport] = ACTIONS(5188), + [anon_sym_BSLASHsubimport] = ACTIONS(5188), + [anon_sym_BSLASHinputfrom] = ACTIONS(5188), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5188), + [anon_sym_BSLASHincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5188), + [anon_sym_BSLASHcaption] = ACTIONS(5188), + [anon_sym_BSLASHcite] = ACTIONS(5188), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCite] = ACTIONS(5188), + [anon_sym_BSLASHnocite] = ACTIONS(5188), + [anon_sym_BSLASHcitet] = ACTIONS(5188), + [anon_sym_BSLASHcitep] = ACTIONS(5188), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteauthor] = ACTIONS(5188), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5188), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitetitle] = ACTIONS(5188), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteyear] = ACTIONS(5188), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5186), + [anon_sym_BSLASHcitedate] = ACTIONS(5188), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5186), + [anon_sym_BSLASHciteurl] = ACTIONS(5188), + [anon_sym_BSLASHfullcite] = ACTIONS(5188), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5188), + [anon_sym_BSLASHcitealt] = ACTIONS(5188), + [anon_sym_BSLASHcitealp] = ACTIONS(5188), + [anon_sym_BSLASHcitetext] = ACTIONS(5188), + [anon_sym_BSLASHparencite] = ACTIONS(5188), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHParencite] = ACTIONS(5188), + [anon_sym_BSLASHfootcite] = ACTIONS(5188), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5188), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5188), + [anon_sym_BSLASHtextcite] = ACTIONS(5188), + [anon_sym_BSLASHTextcite] = ACTIONS(5188), + [anon_sym_BSLASHsmartcite] = ACTIONS(5188), + [anon_sym_BSLASHSmartcite] = ACTIONS(5188), + [anon_sym_BSLASHsupercite] = ACTIONS(5188), + [anon_sym_BSLASHautocite] = ACTIONS(5188), + [anon_sym_BSLASHAutocite] = ACTIONS(5188), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5186), + [anon_sym_BSLASHvolcite] = ACTIONS(5188), + [anon_sym_BSLASHVolcite] = ACTIONS(5188), + [anon_sym_BSLASHpvolcite] = ACTIONS(5188), + [anon_sym_BSLASHPvolcite] = ACTIONS(5188), + [anon_sym_BSLASHfvolcite] = ACTIONS(5188), + [anon_sym_BSLASHftvolcite] = ACTIONS(5188), + [anon_sym_BSLASHsvolcite] = ACTIONS(5188), + [anon_sym_BSLASHSvolcite] = ACTIONS(5188), + [anon_sym_BSLASHtvolcite] = ACTIONS(5188), + [anon_sym_BSLASHTvolcite] = ACTIONS(5188), + [anon_sym_BSLASHavolcite] = ACTIONS(5188), + [anon_sym_BSLASHAvolcite] = ACTIONS(5188), + [anon_sym_BSLASHnotecite] = ACTIONS(5188), + [anon_sym_BSLASHNotecite] = ACTIONS(5188), + [anon_sym_BSLASHpnotecite] = ACTIONS(5188), + [anon_sym_BSLASHPnotecite] = ACTIONS(5188), + [anon_sym_BSLASHfnotecite] = ACTIONS(5188), + [anon_sym_BSLASHlabel] = ACTIONS(5188), + [anon_sym_BSLASHref] = ACTIONS(5188), + [anon_sym_BSLASHeqref] = ACTIONS(5188), + [anon_sym_BSLASHvref] = ACTIONS(5188), + [anon_sym_BSLASHVref] = ACTIONS(5188), + [anon_sym_BSLASHautoref] = ACTIONS(5188), + [anon_sym_BSLASHpageref] = ACTIONS(5188), + [anon_sym_BSLASHcref] = ACTIONS(5188), + [anon_sym_BSLASHCref] = ACTIONS(5188), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnameCref] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5188), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5188), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5188), + [anon_sym_BSLASHlabelcref] = ACTIONS(5188), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange] = ACTIONS(5188), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHCrefrange] = ACTIONS(5188), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5186), + [anon_sym_BSLASHnewlabel] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand] = ACTIONS(5188), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5188), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5188), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5186), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5188), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdef] = ACTIONS(5188), + [anon_sym_BSLASHlet] = ACTIONS(5188), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5188), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5188), + [anon_sym_BSLASHgls] = ACTIONS(5188), + [anon_sym_BSLASHGls] = ACTIONS(5188), + [anon_sym_BSLASHGLS] = ACTIONS(5188), + [anon_sym_BSLASHglspl] = ACTIONS(5188), + [anon_sym_BSLASHGlspl] = ACTIONS(5188), + [anon_sym_BSLASHGLSpl] = ACTIONS(5188), + [anon_sym_BSLASHglsdisp] = ACTIONS(5188), + [anon_sym_BSLASHglslink] = ACTIONS(5188), + [anon_sym_BSLASHglstext] = ACTIONS(5188), + [anon_sym_BSLASHGlstext] = ACTIONS(5188), + [anon_sym_BSLASHGLStext] = ACTIONS(5188), + [anon_sym_BSLASHglsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5188), + [anon_sym_BSLASHglsplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSplural] = ACTIONS(5188), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5188), + [anon_sym_BSLASHglsname] = ACTIONS(5188), + [anon_sym_BSLASHGlsname] = ACTIONS(5188), + [anon_sym_BSLASHGLSname] = ACTIONS(5188), + [anon_sym_BSLASHglssymbol] = ACTIONS(5188), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5188), + [anon_sym_BSLASHglsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5188), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5188), + [anon_sym_BSLASHglsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5188), + [anon_sym_BSLASHglsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5188), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5188), + [anon_sym_BSLASHglsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5188), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5188), + [anon_sym_BSLASHglsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5188), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5188), + [anon_sym_BSLASHnewacronym] = ACTIONS(5188), + [anon_sym_BSLASHacrshort] = ACTIONS(5188), + [anon_sym_BSLASHAcrshort] = ACTIONS(5188), + [anon_sym_BSLASHACRshort] = ACTIONS(5188), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5188), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5188), + [anon_sym_BSLASHacrlong] = ACTIONS(5188), + [anon_sym_BSLASHAcrlong] = ACTIONS(5188), + [anon_sym_BSLASHACRlong] = ACTIONS(5188), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5188), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5188), + [anon_sym_BSLASHacrfull] = ACTIONS(5188), + [anon_sym_BSLASHAcrfull] = ACTIONS(5188), + [anon_sym_BSLASHACRfull] = ACTIONS(5188), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5188), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5188), + [anon_sym_BSLASHacs] = ACTIONS(5188), + [anon_sym_BSLASHAcs] = ACTIONS(5188), + [anon_sym_BSLASHacsp] = ACTIONS(5188), + [anon_sym_BSLASHAcsp] = ACTIONS(5188), + [anon_sym_BSLASHacl] = ACTIONS(5188), + [anon_sym_BSLASHAcl] = ACTIONS(5188), + [anon_sym_BSLASHaclp] = ACTIONS(5188), + [anon_sym_BSLASHAclp] = ACTIONS(5188), + [anon_sym_BSLASHacf] = ACTIONS(5188), + [anon_sym_BSLASHAcf] = ACTIONS(5188), + [anon_sym_BSLASHacfp] = ACTIONS(5188), + [anon_sym_BSLASHAcfp] = ACTIONS(5188), + [anon_sym_BSLASHac] = ACTIONS(5188), + [anon_sym_BSLASHAc] = ACTIONS(5188), + [anon_sym_BSLASHacp] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5188), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5188), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5188), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5188), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5188), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5186), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5188), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5188), + [anon_sym_BSLASHcolor] = ACTIONS(5188), + [anon_sym_BSLASHcolorbox] = ACTIONS(5188), + [anon_sym_BSLASHtextcolor] = ACTIONS(5188), + [anon_sym_BSLASHpagecolor] = ACTIONS(5188), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5188), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5188), + [anon_sym_BSLASHtext] = ACTIONS(5188), + [anon_sym_BSLASHintertext] = ACTIONS(5188), + [anon_sym_shortintertext] = ACTIONS(5188), }, [1172] = { - [sym_command_name] = ACTIONS(5115), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5113), - [anon_sym_COMMA] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_BSLASHpart] = ACTIONS(5115), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddpart] = ACTIONS(5115), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), - [anon_sym_BSLASHchapter] = ACTIONS(5115), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddchap] = ACTIONS(5115), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsection] = ACTIONS(5115), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHaddsec] = ACTIONS(5115), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), - [anon_sym_BSLASHparagraph] = ACTIONS(5115), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), - [anon_sym_BSLASHitem] = ACTIONS(5115), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5113), - [sym_word] = ACTIONS(5115), - [sym_placeholder] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_CARET] = ACTIONS(5115), - [anon_sym__] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5115), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), - [anon_sym_BSLASHbegin] = ACTIONS(5115), - [anon_sym_BSLASHusepackage] = ACTIONS(5115), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), - [anon_sym_BSLASHinclude] = ACTIONS(5115), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), - [anon_sym_BSLASHinput] = ACTIONS(5115), - [anon_sym_BSLASHsubfile] = ACTIONS(5115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), - [anon_sym_BSLASHbibliography] = ACTIONS(5115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), - [anon_sym_BSLASHincludesvg] = ACTIONS(5115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), - [anon_sym_BSLASHimport] = ACTIONS(5115), - [anon_sym_BSLASHsubimport] = ACTIONS(5115), - [anon_sym_BSLASHinputfrom] = ACTIONS(5115), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), - [anon_sym_BSLASHincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), - [anon_sym_BSLASHcaption] = ACTIONS(5115), - [anon_sym_BSLASHcite] = ACTIONS(5115), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCite] = ACTIONS(5115), - [anon_sym_BSLASHnocite] = ACTIONS(5115), - [anon_sym_BSLASHcitet] = ACTIONS(5115), - [anon_sym_BSLASHcitep] = ACTIONS(5115), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteyear] = ACTIONS(5115), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), - [anon_sym_BSLASHcitedate] = ACTIONS(5115), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), - [anon_sym_BSLASHciteurl] = ACTIONS(5115), - [anon_sym_BSLASHfullcite] = ACTIONS(5115), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), - [anon_sym_BSLASHcitealt] = ACTIONS(5115), - [anon_sym_BSLASHcitealp] = ACTIONS(5115), - [anon_sym_BSLASHcitetext] = ACTIONS(5115), - [anon_sym_BSLASHparencite] = ACTIONS(5115), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHParencite] = ACTIONS(5115), - [anon_sym_BSLASHfootcite] = ACTIONS(5115), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), - [anon_sym_BSLASHtextcite] = ACTIONS(5115), - [anon_sym_BSLASHTextcite] = ACTIONS(5115), - [anon_sym_BSLASHsmartcite] = ACTIONS(5115), - [anon_sym_BSLASHSmartcite] = ACTIONS(5115), - [anon_sym_BSLASHsupercite] = ACTIONS(5115), - [anon_sym_BSLASHautocite] = ACTIONS(5115), - [anon_sym_BSLASHAutocite] = ACTIONS(5115), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), - [anon_sym_BSLASHvolcite] = ACTIONS(5115), - [anon_sym_BSLASHVolcite] = ACTIONS(5115), - [anon_sym_BSLASHpvolcite] = ACTIONS(5115), - [anon_sym_BSLASHPvolcite] = ACTIONS(5115), - [anon_sym_BSLASHfvolcite] = ACTIONS(5115), - [anon_sym_BSLASHftvolcite] = ACTIONS(5115), - [anon_sym_BSLASHsvolcite] = ACTIONS(5115), - [anon_sym_BSLASHSvolcite] = ACTIONS(5115), - [anon_sym_BSLASHtvolcite] = ACTIONS(5115), - [anon_sym_BSLASHTvolcite] = ACTIONS(5115), - [anon_sym_BSLASHavolcite] = ACTIONS(5115), - [anon_sym_BSLASHAvolcite] = ACTIONS(5115), - [anon_sym_BSLASHnotecite] = ACTIONS(5115), - [anon_sym_BSLASHNotecite] = ACTIONS(5115), - [anon_sym_BSLASHpnotecite] = ACTIONS(5115), - [anon_sym_BSLASHPnotecite] = ACTIONS(5115), - [anon_sym_BSLASHfnotecite] = ACTIONS(5115), - [anon_sym_BSLASHlabel] = ACTIONS(5115), - [anon_sym_BSLASHref] = ACTIONS(5115), - [anon_sym_BSLASHeqref] = ACTIONS(5115), - [anon_sym_BSLASHvref] = ACTIONS(5115), - [anon_sym_BSLASHVref] = ACTIONS(5115), - [anon_sym_BSLASHautoref] = ACTIONS(5115), - [anon_sym_BSLASHpageref] = ACTIONS(5115), - [anon_sym_BSLASHcref] = ACTIONS(5115), - [anon_sym_BSLASHCref] = ACTIONS(5115), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnameCref] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), - [anon_sym_BSLASHlabelcref] = ACTIONS(5115), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange] = ACTIONS(5115), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), - [anon_sym_BSLASHnewlabel] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand] = ACTIONS(5115), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), - [anon_sym_BSLASHdef] = ACTIONS(5115), - [anon_sym_BSLASHlet] = ACTIONS(5115), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), - [anon_sym_BSLASHgls] = ACTIONS(5115), - [anon_sym_BSLASHGls] = ACTIONS(5115), - [anon_sym_BSLASHGLS] = ACTIONS(5115), - [anon_sym_BSLASHglspl] = ACTIONS(5115), - [anon_sym_BSLASHGlspl] = ACTIONS(5115), - [anon_sym_BSLASHGLSpl] = ACTIONS(5115), - [anon_sym_BSLASHglsdisp] = ACTIONS(5115), - [anon_sym_BSLASHglslink] = ACTIONS(5115), - [anon_sym_BSLASHglstext] = ACTIONS(5115), - [anon_sym_BSLASHGlstext] = ACTIONS(5115), - [anon_sym_BSLASHGLStext] = ACTIONS(5115), - [anon_sym_BSLASHglsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), - [anon_sym_BSLASHglsplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSplural] = ACTIONS(5115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), - [anon_sym_BSLASHglsname] = ACTIONS(5115), - [anon_sym_BSLASHGlsname] = ACTIONS(5115), - [anon_sym_BSLASHGLSname] = ACTIONS(5115), - [anon_sym_BSLASHglssymbol] = ACTIONS(5115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), - [anon_sym_BSLASHglsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), - [anon_sym_BSLASHglsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), - [anon_sym_BSLASHglsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), - [anon_sym_BSLASHglsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), - [anon_sym_BSLASHglsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), - [anon_sym_BSLASHnewacronym] = ACTIONS(5115), - [anon_sym_BSLASHacrshort] = ACTIONS(5115), - [anon_sym_BSLASHAcrshort] = ACTIONS(5115), - [anon_sym_BSLASHACRshort] = ACTIONS(5115), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), - [anon_sym_BSLASHacrlong] = ACTIONS(5115), - [anon_sym_BSLASHAcrlong] = ACTIONS(5115), - [anon_sym_BSLASHACRlong] = ACTIONS(5115), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), - [anon_sym_BSLASHacrfull] = ACTIONS(5115), - [anon_sym_BSLASHAcrfull] = ACTIONS(5115), - [anon_sym_BSLASHACRfull] = ACTIONS(5115), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), - [anon_sym_BSLASHacs] = ACTIONS(5115), - [anon_sym_BSLASHAcs] = ACTIONS(5115), - [anon_sym_BSLASHacsp] = ACTIONS(5115), - [anon_sym_BSLASHAcsp] = ACTIONS(5115), - [anon_sym_BSLASHacl] = ACTIONS(5115), - [anon_sym_BSLASHAcl] = ACTIONS(5115), - [anon_sym_BSLASHaclp] = ACTIONS(5115), - [anon_sym_BSLASHAclp] = ACTIONS(5115), - [anon_sym_BSLASHacf] = ACTIONS(5115), - [anon_sym_BSLASHAcf] = ACTIONS(5115), - [anon_sym_BSLASHacfp] = ACTIONS(5115), - [anon_sym_BSLASHAcfp] = ACTIONS(5115), - [anon_sym_BSLASHac] = ACTIONS(5115), - [anon_sym_BSLASHAc] = ACTIONS(5115), - [anon_sym_BSLASHacp] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), - [anon_sym_BSLASHcolor] = ACTIONS(5115), - [anon_sym_BSLASHcolorbox] = ACTIONS(5115), - [anon_sym_BSLASHtextcolor] = ACTIONS(5115), - [anon_sym_BSLASHpagecolor] = ACTIONS(5115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), - [anon_sym_BSLASHtext] = ACTIONS(5115), - [anon_sym_BSLASHintertext] = ACTIONS(5115), - [anon_sym_shortintertext] = ACTIONS(5115), + [sym_command_name] = ACTIONS(5194), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_BSLASHpart] = ACTIONS(5194), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddpart] = ACTIONS(5194), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5192), + [anon_sym_BSLASHchapter] = ACTIONS(5194), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddchap] = ACTIONS(5194), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsection] = ACTIONS(5194), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHaddsec] = ACTIONS(5194), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5194), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5192), + [anon_sym_BSLASHparagraph] = ACTIONS(5194), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5194), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5192), + [anon_sym_BSLASHitem] = ACTIONS(5194), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5192), + [sym_word] = ACTIONS(5194), + [sym_placeholder] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym__] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5194), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_SQUOTE] = ACTIONS(5194), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5192), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5192), + [anon_sym_DOLLAR] = ACTIONS(5194), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5192), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5192), + [anon_sym_BSLASHbegin] = ACTIONS(5194), + [anon_sym_BSLASHusepackage] = ACTIONS(5194), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5194), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5194), + [anon_sym_BSLASHinclude] = ACTIONS(5194), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5194), + [anon_sym_BSLASHinput] = ACTIONS(5194), + [anon_sym_BSLASHsubfile] = ACTIONS(5194), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5194), + [anon_sym_BSLASHbibliography] = ACTIONS(5194), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5194), + [anon_sym_BSLASHincludesvg] = ACTIONS(5194), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5194), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5194), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5194), + [anon_sym_BSLASHimport] = ACTIONS(5194), + [anon_sym_BSLASHsubimport] = ACTIONS(5194), + [anon_sym_BSLASHinputfrom] = ACTIONS(5194), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5194), + [anon_sym_BSLASHincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5194), + [anon_sym_BSLASHcaption] = ACTIONS(5194), + [anon_sym_BSLASHcite] = ACTIONS(5194), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCite] = ACTIONS(5194), + [anon_sym_BSLASHnocite] = ACTIONS(5194), + [anon_sym_BSLASHcitet] = ACTIONS(5194), + [anon_sym_BSLASHcitep] = ACTIONS(5194), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteauthor] = ACTIONS(5194), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5194), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitetitle] = ACTIONS(5194), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteyear] = ACTIONS(5194), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5192), + [anon_sym_BSLASHcitedate] = ACTIONS(5194), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5192), + [anon_sym_BSLASHciteurl] = ACTIONS(5194), + [anon_sym_BSLASHfullcite] = ACTIONS(5194), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5194), + [anon_sym_BSLASHcitealt] = ACTIONS(5194), + [anon_sym_BSLASHcitealp] = ACTIONS(5194), + [anon_sym_BSLASHcitetext] = ACTIONS(5194), + [anon_sym_BSLASHparencite] = ACTIONS(5194), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHParencite] = ACTIONS(5194), + [anon_sym_BSLASHfootcite] = ACTIONS(5194), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5194), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5194), + [anon_sym_BSLASHtextcite] = ACTIONS(5194), + [anon_sym_BSLASHTextcite] = ACTIONS(5194), + [anon_sym_BSLASHsmartcite] = ACTIONS(5194), + [anon_sym_BSLASHSmartcite] = ACTIONS(5194), + [anon_sym_BSLASHsupercite] = ACTIONS(5194), + [anon_sym_BSLASHautocite] = ACTIONS(5194), + [anon_sym_BSLASHAutocite] = ACTIONS(5194), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5192), + [anon_sym_BSLASHvolcite] = ACTIONS(5194), + [anon_sym_BSLASHVolcite] = ACTIONS(5194), + [anon_sym_BSLASHpvolcite] = ACTIONS(5194), + [anon_sym_BSLASHPvolcite] = ACTIONS(5194), + [anon_sym_BSLASHfvolcite] = ACTIONS(5194), + [anon_sym_BSLASHftvolcite] = ACTIONS(5194), + [anon_sym_BSLASHsvolcite] = ACTIONS(5194), + [anon_sym_BSLASHSvolcite] = ACTIONS(5194), + [anon_sym_BSLASHtvolcite] = ACTIONS(5194), + [anon_sym_BSLASHTvolcite] = ACTIONS(5194), + [anon_sym_BSLASHavolcite] = ACTIONS(5194), + [anon_sym_BSLASHAvolcite] = ACTIONS(5194), + [anon_sym_BSLASHnotecite] = ACTIONS(5194), + [anon_sym_BSLASHNotecite] = ACTIONS(5194), + [anon_sym_BSLASHpnotecite] = ACTIONS(5194), + [anon_sym_BSLASHPnotecite] = ACTIONS(5194), + [anon_sym_BSLASHfnotecite] = ACTIONS(5194), + [anon_sym_BSLASHlabel] = ACTIONS(5194), + [anon_sym_BSLASHref] = ACTIONS(5194), + [anon_sym_BSLASHeqref] = ACTIONS(5194), + [anon_sym_BSLASHvref] = ACTIONS(5194), + [anon_sym_BSLASHVref] = ACTIONS(5194), + [anon_sym_BSLASHautoref] = ACTIONS(5194), + [anon_sym_BSLASHpageref] = ACTIONS(5194), + [anon_sym_BSLASHcref] = ACTIONS(5194), + [anon_sym_BSLASHCref] = ACTIONS(5194), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnameCref] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5194), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5194), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5194), + [anon_sym_BSLASHlabelcref] = ACTIONS(5194), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange] = ACTIONS(5194), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHCrefrange] = ACTIONS(5194), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5192), + [anon_sym_BSLASHnewlabel] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand] = ACTIONS(5194), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5194), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5194), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5192), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5194), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdef] = ACTIONS(5194), + [anon_sym_BSLASHlet] = ACTIONS(5194), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5194), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5194), + [anon_sym_BSLASHgls] = ACTIONS(5194), + [anon_sym_BSLASHGls] = ACTIONS(5194), + [anon_sym_BSLASHGLS] = ACTIONS(5194), + [anon_sym_BSLASHglspl] = ACTIONS(5194), + [anon_sym_BSLASHGlspl] = ACTIONS(5194), + [anon_sym_BSLASHGLSpl] = ACTIONS(5194), + [anon_sym_BSLASHglsdisp] = ACTIONS(5194), + [anon_sym_BSLASHglslink] = ACTIONS(5194), + [anon_sym_BSLASHglstext] = ACTIONS(5194), + [anon_sym_BSLASHGlstext] = ACTIONS(5194), + [anon_sym_BSLASHGLStext] = ACTIONS(5194), + [anon_sym_BSLASHglsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5194), + [anon_sym_BSLASHglsplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSplural] = ACTIONS(5194), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5194), + [anon_sym_BSLASHglsname] = ACTIONS(5194), + [anon_sym_BSLASHGlsname] = ACTIONS(5194), + [anon_sym_BSLASHGLSname] = ACTIONS(5194), + [anon_sym_BSLASHglssymbol] = ACTIONS(5194), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5194), + [anon_sym_BSLASHglsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5194), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5194), + [anon_sym_BSLASHglsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5194), + [anon_sym_BSLASHglsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5194), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5194), + [anon_sym_BSLASHglsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5194), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5194), + [anon_sym_BSLASHglsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5194), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5194), + [anon_sym_BSLASHnewacronym] = ACTIONS(5194), + [anon_sym_BSLASHacrshort] = ACTIONS(5194), + [anon_sym_BSLASHAcrshort] = ACTIONS(5194), + [anon_sym_BSLASHACRshort] = ACTIONS(5194), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5194), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5194), + [anon_sym_BSLASHacrlong] = ACTIONS(5194), + [anon_sym_BSLASHAcrlong] = ACTIONS(5194), + [anon_sym_BSLASHACRlong] = ACTIONS(5194), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5194), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5194), + [anon_sym_BSLASHacrfull] = ACTIONS(5194), + [anon_sym_BSLASHAcrfull] = ACTIONS(5194), + [anon_sym_BSLASHACRfull] = ACTIONS(5194), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5194), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5194), + [anon_sym_BSLASHacs] = ACTIONS(5194), + [anon_sym_BSLASHAcs] = ACTIONS(5194), + [anon_sym_BSLASHacsp] = ACTIONS(5194), + [anon_sym_BSLASHAcsp] = ACTIONS(5194), + [anon_sym_BSLASHacl] = ACTIONS(5194), + [anon_sym_BSLASHAcl] = ACTIONS(5194), + [anon_sym_BSLASHaclp] = ACTIONS(5194), + [anon_sym_BSLASHAclp] = ACTIONS(5194), + [anon_sym_BSLASHacf] = ACTIONS(5194), + [anon_sym_BSLASHAcf] = ACTIONS(5194), + [anon_sym_BSLASHacfp] = ACTIONS(5194), + [anon_sym_BSLASHAcfp] = ACTIONS(5194), + [anon_sym_BSLASHac] = ACTIONS(5194), + [anon_sym_BSLASHAc] = ACTIONS(5194), + [anon_sym_BSLASHacp] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5194), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5194), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5194), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5194), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5194), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5192), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5194), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5194), + [anon_sym_BSLASHcolor] = ACTIONS(5194), + [anon_sym_BSLASHcolorbox] = ACTIONS(5194), + [anon_sym_BSLASHtextcolor] = ACTIONS(5194), + [anon_sym_BSLASHpagecolor] = ACTIONS(5194), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5194), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5194), + [anon_sym_BSLASHtext] = ACTIONS(5194), + [anon_sym_BSLASHintertext] = ACTIONS(5194), + [anon_sym_shortintertext] = ACTIONS(5194), }, [1173] = { - [sym_command_name] = ACTIONS(5123), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5121), - [anon_sym_COMMA] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_BSLASHpart] = ACTIONS(5123), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddpart] = ACTIONS(5123), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), - [anon_sym_BSLASHchapter] = ACTIONS(5123), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddchap] = ACTIONS(5123), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsection] = ACTIONS(5123), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHaddsec] = ACTIONS(5123), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), - [anon_sym_BSLASHparagraph] = ACTIONS(5123), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), - [anon_sym_BSLASHitem] = ACTIONS(5123), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5121), - [sym_word] = ACTIONS(5123), - [sym_placeholder] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_CARET] = ACTIONS(5123), - [anon_sym__] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5121), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), - [anon_sym_BSLASHbegin] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5123), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), - [anon_sym_BSLASHinclude] = ACTIONS(5123), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), - [anon_sym_BSLASHinput] = ACTIONS(5123), - [anon_sym_BSLASHsubfile] = ACTIONS(5123), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), - [anon_sym_BSLASHbibliography] = ACTIONS(5123), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), - [anon_sym_BSLASHincludesvg] = ACTIONS(5123), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), - [anon_sym_BSLASHimport] = ACTIONS(5123), - [anon_sym_BSLASHsubimport] = ACTIONS(5123), - [anon_sym_BSLASHinputfrom] = ACTIONS(5123), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), - [anon_sym_BSLASHincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), - [anon_sym_BSLASHcaption] = ACTIONS(5123), - [anon_sym_BSLASHcite] = ACTIONS(5123), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCite] = ACTIONS(5123), - [anon_sym_BSLASHnocite] = ACTIONS(5123), - [anon_sym_BSLASHcitet] = ACTIONS(5123), - [anon_sym_BSLASHcitep] = ACTIONS(5123), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteyear] = ACTIONS(5123), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), - [anon_sym_BSLASHcitedate] = ACTIONS(5123), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), - [anon_sym_BSLASHciteurl] = ACTIONS(5123), - [anon_sym_BSLASHfullcite] = ACTIONS(5123), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), - [anon_sym_BSLASHcitealt] = ACTIONS(5123), - [anon_sym_BSLASHcitealp] = ACTIONS(5123), - [anon_sym_BSLASHcitetext] = ACTIONS(5123), - [anon_sym_BSLASHparencite] = ACTIONS(5123), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHParencite] = ACTIONS(5123), - [anon_sym_BSLASHfootcite] = ACTIONS(5123), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), - [anon_sym_BSLASHtextcite] = ACTIONS(5123), - [anon_sym_BSLASHTextcite] = ACTIONS(5123), - [anon_sym_BSLASHsmartcite] = ACTIONS(5123), - [anon_sym_BSLASHSmartcite] = ACTIONS(5123), - [anon_sym_BSLASHsupercite] = ACTIONS(5123), - [anon_sym_BSLASHautocite] = ACTIONS(5123), - [anon_sym_BSLASHAutocite] = ACTIONS(5123), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), - [anon_sym_BSLASHvolcite] = ACTIONS(5123), - [anon_sym_BSLASHVolcite] = ACTIONS(5123), - [anon_sym_BSLASHpvolcite] = ACTIONS(5123), - [anon_sym_BSLASHPvolcite] = ACTIONS(5123), - [anon_sym_BSLASHfvolcite] = ACTIONS(5123), - [anon_sym_BSLASHftvolcite] = ACTIONS(5123), - [anon_sym_BSLASHsvolcite] = ACTIONS(5123), - [anon_sym_BSLASHSvolcite] = ACTIONS(5123), - [anon_sym_BSLASHtvolcite] = ACTIONS(5123), - [anon_sym_BSLASHTvolcite] = ACTIONS(5123), - [anon_sym_BSLASHavolcite] = ACTIONS(5123), - [anon_sym_BSLASHAvolcite] = ACTIONS(5123), - [anon_sym_BSLASHnotecite] = ACTIONS(5123), - [anon_sym_BSLASHNotecite] = ACTIONS(5123), - [anon_sym_BSLASHpnotecite] = ACTIONS(5123), - [anon_sym_BSLASHPnotecite] = ACTIONS(5123), - [anon_sym_BSLASHfnotecite] = ACTIONS(5123), - [anon_sym_BSLASHlabel] = ACTIONS(5123), - [anon_sym_BSLASHref] = ACTIONS(5123), - [anon_sym_BSLASHeqref] = ACTIONS(5123), - [anon_sym_BSLASHvref] = ACTIONS(5123), - [anon_sym_BSLASHVref] = ACTIONS(5123), - [anon_sym_BSLASHautoref] = ACTIONS(5123), - [anon_sym_BSLASHpageref] = ACTIONS(5123), - [anon_sym_BSLASHcref] = ACTIONS(5123), - [anon_sym_BSLASHCref] = ACTIONS(5123), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnameCref] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), - [anon_sym_BSLASHlabelcref] = ACTIONS(5123), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange] = ACTIONS(5123), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), - [anon_sym_BSLASHnewlabel] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand] = ACTIONS(5123), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), - [anon_sym_BSLASHdef] = ACTIONS(5123), - [anon_sym_BSLASHlet] = ACTIONS(5123), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), - [anon_sym_BSLASHgls] = ACTIONS(5123), - [anon_sym_BSLASHGls] = ACTIONS(5123), - [anon_sym_BSLASHGLS] = ACTIONS(5123), - [anon_sym_BSLASHglspl] = ACTIONS(5123), - [anon_sym_BSLASHGlspl] = ACTIONS(5123), - [anon_sym_BSLASHGLSpl] = ACTIONS(5123), - [anon_sym_BSLASHglsdisp] = ACTIONS(5123), - [anon_sym_BSLASHglslink] = ACTIONS(5123), - [anon_sym_BSLASHglstext] = ACTIONS(5123), - [anon_sym_BSLASHGlstext] = ACTIONS(5123), - [anon_sym_BSLASHGLStext] = ACTIONS(5123), - [anon_sym_BSLASHglsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), - [anon_sym_BSLASHglsplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSplural] = ACTIONS(5123), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), - [anon_sym_BSLASHglsname] = ACTIONS(5123), - [anon_sym_BSLASHGlsname] = ACTIONS(5123), - [anon_sym_BSLASHGLSname] = ACTIONS(5123), - [anon_sym_BSLASHglssymbol] = ACTIONS(5123), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), - [anon_sym_BSLASHglsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), - [anon_sym_BSLASHglsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), - [anon_sym_BSLASHglsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), - [anon_sym_BSLASHglsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), - [anon_sym_BSLASHglsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), - [anon_sym_BSLASHnewacronym] = ACTIONS(5123), - [anon_sym_BSLASHacrshort] = ACTIONS(5123), - [anon_sym_BSLASHAcrshort] = ACTIONS(5123), - [anon_sym_BSLASHACRshort] = ACTIONS(5123), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), - [anon_sym_BSLASHacrlong] = ACTIONS(5123), - [anon_sym_BSLASHAcrlong] = ACTIONS(5123), - [anon_sym_BSLASHACRlong] = ACTIONS(5123), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), - [anon_sym_BSLASHacrfull] = ACTIONS(5123), - [anon_sym_BSLASHAcrfull] = ACTIONS(5123), - [anon_sym_BSLASHACRfull] = ACTIONS(5123), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), - [anon_sym_BSLASHacs] = ACTIONS(5123), - [anon_sym_BSLASHAcs] = ACTIONS(5123), - [anon_sym_BSLASHacsp] = ACTIONS(5123), - [anon_sym_BSLASHAcsp] = ACTIONS(5123), - [anon_sym_BSLASHacl] = ACTIONS(5123), - [anon_sym_BSLASHAcl] = ACTIONS(5123), - [anon_sym_BSLASHaclp] = ACTIONS(5123), - [anon_sym_BSLASHAclp] = ACTIONS(5123), - [anon_sym_BSLASHacf] = ACTIONS(5123), - [anon_sym_BSLASHAcf] = ACTIONS(5123), - [anon_sym_BSLASHacfp] = ACTIONS(5123), - [anon_sym_BSLASHAcfp] = ACTIONS(5123), - [anon_sym_BSLASHac] = ACTIONS(5123), - [anon_sym_BSLASHAc] = ACTIONS(5123), - [anon_sym_BSLASHacp] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), - [anon_sym_BSLASHcolor] = ACTIONS(5123), - [anon_sym_BSLASHcolorbox] = ACTIONS(5123), - [anon_sym_BSLASHtextcolor] = ACTIONS(5123), - [anon_sym_BSLASHpagecolor] = ACTIONS(5123), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), - [anon_sym_BSLASHtext] = ACTIONS(5123), - [anon_sym_BSLASHintertext] = ACTIONS(5123), - [anon_sym_shortintertext] = ACTIONS(5123), + [sym_command_name] = ACTIONS(5202), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_RBRACK] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_BSLASHpart] = ACTIONS(5202), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddpart] = ACTIONS(5202), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5200), + [anon_sym_BSLASHchapter] = ACTIONS(5202), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddchap] = ACTIONS(5202), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsection] = ACTIONS(5202), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHaddsec] = ACTIONS(5202), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5202), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5200), + [anon_sym_BSLASHparagraph] = ACTIONS(5202), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5202), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5200), + [anon_sym_BSLASHitem] = ACTIONS(5202), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5200), + [sym_word] = ACTIONS(5202), + [sym_placeholder] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym__] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_SQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5200), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5200), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5200), + [anon_sym_BSLASHbegin] = ACTIONS(5202), + [anon_sym_BSLASHusepackage] = ACTIONS(5202), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5202), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5202), + [anon_sym_BSLASHinclude] = ACTIONS(5202), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5202), + [anon_sym_BSLASHinput] = ACTIONS(5202), + [anon_sym_BSLASHsubfile] = ACTIONS(5202), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5202), + [anon_sym_BSLASHbibliography] = ACTIONS(5202), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5202), + [anon_sym_BSLASHincludesvg] = ACTIONS(5202), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5202), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5202), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5202), + [anon_sym_BSLASHimport] = ACTIONS(5202), + [anon_sym_BSLASHsubimport] = ACTIONS(5202), + [anon_sym_BSLASHinputfrom] = ACTIONS(5202), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5202), + [anon_sym_BSLASHincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5202), + [anon_sym_BSLASHcaption] = ACTIONS(5202), + [anon_sym_BSLASHcite] = ACTIONS(5202), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCite] = ACTIONS(5202), + [anon_sym_BSLASHnocite] = ACTIONS(5202), + [anon_sym_BSLASHcitet] = ACTIONS(5202), + [anon_sym_BSLASHcitep] = ACTIONS(5202), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteauthor] = ACTIONS(5202), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5202), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitetitle] = ACTIONS(5202), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteyear] = ACTIONS(5202), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5200), + [anon_sym_BSLASHcitedate] = ACTIONS(5202), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5200), + [anon_sym_BSLASHciteurl] = ACTIONS(5202), + [anon_sym_BSLASHfullcite] = ACTIONS(5202), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5202), + [anon_sym_BSLASHcitealt] = ACTIONS(5202), + [anon_sym_BSLASHcitealp] = ACTIONS(5202), + [anon_sym_BSLASHcitetext] = ACTIONS(5202), + [anon_sym_BSLASHparencite] = ACTIONS(5202), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHParencite] = ACTIONS(5202), + [anon_sym_BSLASHfootcite] = ACTIONS(5202), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5202), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5202), + [anon_sym_BSLASHtextcite] = ACTIONS(5202), + [anon_sym_BSLASHTextcite] = ACTIONS(5202), + [anon_sym_BSLASHsmartcite] = ACTIONS(5202), + [anon_sym_BSLASHSmartcite] = ACTIONS(5202), + [anon_sym_BSLASHsupercite] = ACTIONS(5202), + [anon_sym_BSLASHautocite] = ACTIONS(5202), + [anon_sym_BSLASHAutocite] = ACTIONS(5202), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5200), + [anon_sym_BSLASHvolcite] = ACTIONS(5202), + [anon_sym_BSLASHVolcite] = ACTIONS(5202), + [anon_sym_BSLASHpvolcite] = ACTIONS(5202), + [anon_sym_BSLASHPvolcite] = ACTIONS(5202), + [anon_sym_BSLASHfvolcite] = ACTIONS(5202), + [anon_sym_BSLASHftvolcite] = ACTIONS(5202), + [anon_sym_BSLASHsvolcite] = ACTIONS(5202), + [anon_sym_BSLASHSvolcite] = ACTIONS(5202), + [anon_sym_BSLASHtvolcite] = ACTIONS(5202), + [anon_sym_BSLASHTvolcite] = ACTIONS(5202), + [anon_sym_BSLASHavolcite] = ACTIONS(5202), + [anon_sym_BSLASHAvolcite] = ACTIONS(5202), + [anon_sym_BSLASHnotecite] = ACTIONS(5202), + [anon_sym_BSLASHNotecite] = ACTIONS(5202), + [anon_sym_BSLASHpnotecite] = ACTIONS(5202), + [anon_sym_BSLASHPnotecite] = ACTIONS(5202), + [anon_sym_BSLASHfnotecite] = ACTIONS(5202), + [anon_sym_BSLASHlabel] = ACTIONS(5202), + [anon_sym_BSLASHref] = ACTIONS(5202), + [anon_sym_BSLASHeqref] = ACTIONS(5202), + [anon_sym_BSLASHvref] = ACTIONS(5202), + [anon_sym_BSLASHVref] = ACTIONS(5202), + [anon_sym_BSLASHautoref] = ACTIONS(5202), + [anon_sym_BSLASHpageref] = ACTIONS(5202), + [anon_sym_BSLASHcref] = ACTIONS(5202), + [anon_sym_BSLASHCref] = ACTIONS(5202), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnameCref] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5202), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5202), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5202), + [anon_sym_BSLASHlabelcref] = ACTIONS(5202), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange] = ACTIONS(5202), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHCrefrange] = ACTIONS(5202), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5200), + [anon_sym_BSLASHnewlabel] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand] = ACTIONS(5202), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5202), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5202), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5200), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5202), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdef] = ACTIONS(5202), + [anon_sym_BSLASHlet] = ACTIONS(5202), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5202), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5202), + [anon_sym_BSLASHgls] = ACTIONS(5202), + [anon_sym_BSLASHGls] = ACTIONS(5202), + [anon_sym_BSLASHGLS] = ACTIONS(5202), + [anon_sym_BSLASHglspl] = ACTIONS(5202), + [anon_sym_BSLASHGlspl] = ACTIONS(5202), + [anon_sym_BSLASHGLSpl] = ACTIONS(5202), + [anon_sym_BSLASHglsdisp] = ACTIONS(5202), + [anon_sym_BSLASHglslink] = ACTIONS(5202), + [anon_sym_BSLASHglstext] = ACTIONS(5202), + [anon_sym_BSLASHGlstext] = ACTIONS(5202), + [anon_sym_BSLASHGLStext] = ACTIONS(5202), + [anon_sym_BSLASHglsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5202), + [anon_sym_BSLASHglsplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSplural] = ACTIONS(5202), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5202), + [anon_sym_BSLASHglsname] = ACTIONS(5202), + [anon_sym_BSLASHGlsname] = ACTIONS(5202), + [anon_sym_BSLASHGLSname] = ACTIONS(5202), + [anon_sym_BSLASHglssymbol] = ACTIONS(5202), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5202), + [anon_sym_BSLASHglsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5202), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5202), + [anon_sym_BSLASHglsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5202), + [anon_sym_BSLASHglsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5202), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5202), + [anon_sym_BSLASHglsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5202), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5202), + [anon_sym_BSLASHglsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5202), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5202), + [anon_sym_BSLASHnewacronym] = ACTIONS(5202), + [anon_sym_BSLASHacrshort] = ACTIONS(5202), + [anon_sym_BSLASHAcrshort] = ACTIONS(5202), + [anon_sym_BSLASHACRshort] = ACTIONS(5202), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5202), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5202), + [anon_sym_BSLASHacrlong] = ACTIONS(5202), + [anon_sym_BSLASHAcrlong] = ACTIONS(5202), + [anon_sym_BSLASHACRlong] = ACTIONS(5202), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5202), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5202), + [anon_sym_BSLASHacrfull] = ACTIONS(5202), + [anon_sym_BSLASHAcrfull] = ACTIONS(5202), + [anon_sym_BSLASHACRfull] = ACTIONS(5202), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5202), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5202), + [anon_sym_BSLASHacs] = ACTIONS(5202), + [anon_sym_BSLASHAcs] = ACTIONS(5202), + [anon_sym_BSLASHacsp] = ACTIONS(5202), + [anon_sym_BSLASHAcsp] = ACTIONS(5202), + [anon_sym_BSLASHacl] = ACTIONS(5202), + [anon_sym_BSLASHAcl] = ACTIONS(5202), + [anon_sym_BSLASHaclp] = ACTIONS(5202), + [anon_sym_BSLASHAclp] = ACTIONS(5202), + [anon_sym_BSLASHacf] = ACTIONS(5202), + [anon_sym_BSLASHAcf] = ACTIONS(5202), + [anon_sym_BSLASHacfp] = ACTIONS(5202), + [anon_sym_BSLASHAcfp] = ACTIONS(5202), + [anon_sym_BSLASHac] = ACTIONS(5202), + [anon_sym_BSLASHAc] = ACTIONS(5202), + [anon_sym_BSLASHacp] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5202), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5202), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5202), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5202), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5202), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5200), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5202), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5202), + [anon_sym_BSLASHcolor] = ACTIONS(5202), + [anon_sym_BSLASHcolorbox] = ACTIONS(5202), + [anon_sym_BSLASHtextcolor] = ACTIONS(5202), + [anon_sym_BSLASHpagecolor] = ACTIONS(5202), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5202), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5202), + [anon_sym_BSLASHtext] = ACTIONS(5202), + [anon_sym_BSLASHintertext] = ACTIONS(5202), + [anon_sym_shortintertext] = ACTIONS(5202), }, [1174] = { - [sym_command_name] = ACTIONS(5127), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_RPAREN] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5125), - [anon_sym_COMMA] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(5125), - [anon_sym_BSLASHpart] = ACTIONS(5127), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddpart] = ACTIONS(5127), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), - [anon_sym_BSLASHchapter] = ACTIONS(5127), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddchap] = ACTIONS(5127), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsection] = ACTIONS(5127), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHaddsec] = ACTIONS(5127), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), - [anon_sym_BSLASHparagraph] = ACTIONS(5127), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), - [anon_sym_BSLASHitem] = ACTIONS(5127), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), - [anon_sym_LBRACE] = ACTIONS(5125), - [sym_word] = ACTIONS(5127), - [sym_placeholder] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_CARET] = ACTIONS(5127), - [anon_sym__] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5127), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5125), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), - [anon_sym_BSLASHbegin] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5127), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), - [anon_sym_BSLASHinclude] = ACTIONS(5127), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), - [anon_sym_BSLASHinput] = ACTIONS(5127), - [anon_sym_BSLASHsubfile] = ACTIONS(5127), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), - [anon_sym_BSLASHbibliography] = ACTIONS(5127), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), - [anon_sym_BSLASHincludesvg] = ACTIONS(5127), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), - [anon_sym_BSLASHimport] = ACTIONS(5127), - [anon_sym_BSLASHsubimport] = ACTIONS(5127), - [anon_sym_BSLASHinputfrom] = ACTIONS(5127), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), - [anon_sym_BSLASHincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), - [anon_sym_BSLASHcaption] = ACTIONS(5127), - [anon_sym_BSLASHcite] = ACTIONS(5127), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCite] = ACTIONS(5127), - [anon_sym_BSLASHnocite] = ACTIONS(5127), - [anon_sym_BSLASHcitet] = ACTIONS(5127), - [anon_sym_BSLASHcitep] = ACTIONS(5127), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteyear] = ACTIONS(5127), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), - [anon_sym_BSLASHcitedate] = ACTIONS(5127), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), - [anon_sym_BSLASHciteurl] = ACTIONS(5127), - [anon_sym_BSLASHfullcite] = ACTIONS(5127), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), - [anon_sym_BSLASHcitealt] = ACTIONS(5127), - [anon_sym_BSLASHcitealp] = ACTIONS(5127), - [anon_sym_BSLASHcitetext] = ACTIONS(5127), - [anon_sym_BSLASHparencite] = ACTIONS(5127), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHParencite] = ACTIONS(5127), - [anon_sym_BSLASHfootcite] = ACTIONS(5127), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), - [anon_sym_BSLASHtextcite] = ACTIONS(5127), - [anon_sym_BSLASHTextcite] = ACTIONS(5127), - [anon_sym_BSLASHsmartcite] = ACTIONS(5127), - [anon_sym_BSLASHSmartcite] = ACTIONS(5127), - [anon_sym_BSLASHsupercite] = ACTIONS(5127), - [anon_sym_BSLASHautocite] = ACTIONS(5127), - [anon_sym_BSLASHAutocite] = ACTIONS(5127), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), - [anon_sym_BSLASHvolcite] = ACTIONS(5127), - [anon_sym_BSLASHVolcite] = ACTIONS(5127), - [anon_sym_BSLASHpvolcite] = ACTIONS(5127), - [anon_sym_BSLASHPvolcite] = ACTIONS(5127), - [anon_sym_BSLASHfvolcite] = ACTIONS(5127), - [anon_sym_BSLASHftvolcite] = ACTIONS(5127), - [anon_sym_BSLASHsvolcite] = ACTIONS(5127), - [anon_sym_BSLASHSvolcite] = ACTIONS(5127), - [anon_sym_BSLASHtvolcite] = ACTIONS(5127), - [anon_sym_BSLASHTvolcite] = ACTIONS(5127), - [anon_sym_BSLASHavolcite] = ACTIONS(5127), - [anon_sym_BSLASHAvolcite] = ACTIONS(5127), - [anon_sym_BSLASHnotecite] = ACTIONS(5127), - [anon_sym_BSLASHNotecite] = ACTIONS(5127), - [anon_sym_BSLASHpnotecite] = ACTIONS(5127), - [anon_sym_BSLASHPnotecite] = ACTIONS(5127), - [anon_sym_BSLASHfnotecite] = ACTIONS(5127), - [anon_sym_BSLASHlabel] = ACTIONS(5127), - [anon_sym_BSLASHref] = ACTIONS(5127), - [anon_sym_BSLASHeqref] = ACTIONS(5127), - [anon_sym_BSLASHvref] = ACTIONS(5127), - [anon_sym_BSLASHVref] = ACTIONS(5127), - [anon_sym_BSLASHautoref] = ACTIONS(5127), - [anon_sym_BSLASHpageref] = ACTIONS(5127), - [anon_sym_BSLASHcref] = ACTIONS(5127), - [anon_sym_BSLASHCref] = ACTIONS(5127), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnameCref] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), - [anon_sym_BSLASHlabelcref] = ACTIONS(5127), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange] = ACTIONS(5127), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), - [anon_sym_BSLASHnewlabel] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand] = ACTIONS(5127), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), - [anon_sym_BSLASHdef] = ACTIONS(5127), - [anon_sym_BSLASHlet] = ACTIONS(5127), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), - [anon_sym_BSLASHgls] = ACTIONS(5127), - [anon_sym_BSLASHGls] = ACTIONS(5127), - [anon_sym_BSLASHGLS] = ACTIONS(5127), - [anon_sym_BSLASHglspl] = ACTIONS(5127), - [anon_sym_BSLASHGlspl] = ACTIONS(5127), - [anon_sym_BSLASHGLSpl] = ACTIONS(5127), - [anon_sym_BSLASHglsdisp] = ACTIONS(5127), - [anon_sym_BSLASHglslink] = ACTIONS(5127), - [anon_sym_BSLASHglstext] = ACTIONS(5127), - [anon_sym_BSLASHGlstext] = ACTIONS(5127), - [anon_sym_BSLASHGLStext] = ACTIONS(5127), - [anon_sym_BSLASHglsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), - [anon_sym_BSLASHglsplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSplural] = ACTIONS(5127), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), - [anon_sym_BSLASHglsname] = ACTIONS(5127), - [anon_sym_BSLASHGlsname] = ACTIONS(5127), - [anon_sym_BSLASHGLSname] = ACTIONS(5127), - [anon_sym_BSLASHglssymbol] = ACTIONS(5127), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), - [anon_sym_BSLASHglsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), - [anon_sym_BSLASHglsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), - [anon_sym_BSLASHglsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), - [anon_sym_BSLASHglsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), - [anon_sym_BSLASHglsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), - [anon_sym_BSLASHnewacronym] = ACTIONS(5127), - [anon_sym_BSLASHacrshort] = ACTIONS(5127), - [anon_sym_BSLASHAcrshort] = ACTIONS(5127), - [anon_sym_BSLASHACRshort] = ACTIONS(5127), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), - [anon_sym_BSLASHacrlong] = ACTIONS(5127), - [anon_sym_BSLASHAcrlong] = ACTIONS(5127), - [anon_sym_BSLASHACRlong] = ACTIONS(5127), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), - [anon_sym_BSLASHacrfull] = ACTIONS(5127), - [anon_sym_BSLASHAcrfull] = ACTIONS(5127), - [anon_sym_BSLASHACRfull] = ACTIONS(5127), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), - [anon_sym_BSLASHacs] = ACTIONS(5127), - [anon_sym_BSLASHAcs] = ACTIONS(5127), - [anon_sym_BSLASHacsp] = ACTIONS(5127), - [anon_sym_BSLASHAcsp] = ACTIONS(5127), - [anon_sym_BSLASHacl] = ACTIONS(5127), - [anon_sym_BSLASHAcl] = ACTIONS(5127), - [anon_sym_BSLASHaclp] = ACTIONS(5127), - [anon_sym_BSLASHAclp] = ACTIONS(5127), - [anon_sym_BSLASHacf] = ACTIONS(5127), - [anon_sym_BSLASHAcf] = ACTIONS(5127), - [anon_sym_BSLASHacfp] = ACTIONS(5127), - [anon_sym_BSLASHAcfp] = ACTIONS(5127), - [anon_sym_BSLASHac] = ACTIONS(5127), - [anon_sym_BSLASHAc] = ACTIONS(5127), - [anon_sym_BSLASHacp] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), - [anon_sym_BSLASHcolor] = ACTIONS(5127), - [anon_sym_BSLASHcolorbox] = ACTIONS(5127), - [anon_sym_BSLASHtextcolor] = ACTIONS(5127), - [anon_sym_BSLASHpagecolor] = ACTIONS(5127), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), - [anon_sym_BSLASHtext] = ACTIONS(5127), - [anon_sym_BSLASHintertext] = ACTIONS(5127), - [anon_sym_shortintertext] = ACTIONS(5127), + [sym_command_name] = ACTIONS(5206), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_COMMA] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_BSLASHpart] = ACTIONS(5206), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddpart] = ACTIONS(5206), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5204), + [anon_sym_BSLASHchapter] = ACTIONS(5206), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddchap] = ACTIONS(5206), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsection] = ACTIONS(5206), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHaddsec] = ACTIONS(5206), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5206), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5204), + [anon_sym_BSLASHparagraph] = ACTIONS(5206), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5206), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5204), + [anon_sym_BSLASHitem] = ACTIONS(5206), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5204), + [sym_word] = ACTIONS(5206), + [sym_placeholder] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_SLASH] = ACTIONS(5206), + [anon_sym_CARET] = ACTIONS(5206), + [anon_sym__] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5206), + [anon_sym_GT] = ACTIONS(5206), + [anon_sym_BANG] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_SQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5204), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5206), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5204), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5204), + [anon_sym_BSLASHbegin] = ACTIONS(5206), + [anon_sym_BSLASHusepackage] = ACTIONS(5206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5206), + [anon_sym_BSLASHinclude] = ACTIONS(5206), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5206), + [anon_sym_BSLASHinput] = ACTIONS(5206), + [anon_sym_BSLASHsubfile] = ACTIONS(5206), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5206), + [anon_sym_BSLASHbibliography] = ACTIONS(5206), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5206), + [anon_sym_BSLASHincludesvg] = ACTIONS(5206), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5206), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5206), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5206), + [anon_sym_BSLASHimport] = ACTIONS(5206), + [anon_sym_BSLASHsubimport] = ACTIONS(5206), + [anon_sym_BSLASHinputfrom] = ACTIONS(5206), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5206), + [anon_sym_BSLASHincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5206), + [anon_sym_BSLASHcaption] = ACTIONS(5206), + [anon_sym_BSLASHcite] = ACTIONS(5206), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCite] = ACTIONS(5206), + [anon_sym_BSLASHnocite] = ACTIONS(5206), + [anon_sym_BSLASHcitet] = ACTIONS(5206), + [anon_sym_BSLASHcitep] = ACTIONS(5206), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteauthor] = ACTIONS(5206), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5206), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitetitle] = ACTIONS(5206), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteyear] = ACTIONS(5206), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5204), + [anon_sym_BSLASHcitedate] = ACTIONS(5206), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5204), + [anon_sym_BSLASHciteurl] = ACTIONS(5206), + [anon_sym_BSLASHfullcite] = ACTIONS(5206), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5206), + [anon_sym_BSLASHcitealt] = ACTIONS(5206), + [anon_sym_BSLASHcitealp] = ACTIONS(5206), + [anon_sym_BSLASHcitetext] = ACTIONS(5206), + [anon_sym_BSLASHparencite] = ACTIONS(5206), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHParencite] = ACTIONS(5206), + [anon_sym_BSLASHfootcite] = ACTIONS(5206), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5206), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5206), + [anon_sym_BSLASHtextcite] = ACTIONS(5206), + [anon_sym_BSLASHTextcite] = ACTIONS(5206), + [anon_sym_BSLASHsmartcite] = ACTIONS(5206), + [anon_sym_BSLASHSmartcite] = ACTIONS(5206), + [anon_sym_BSLASHsupercite] = ACTIONS(5206), + [anon_sym_BSLASHautocite] = ACTIONS(5206), + [anon_sym_BSLASHAutocite] = ACTIONS(5206), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5204), + [anon_sym_BSLASHvolcite] = ACTIONS(5206), + [anon_sym_BSLASHVolcite] = ACTIONS(5206), + [anon_sym_BSLASHpvolcite] = ACTIONS(5206), + [anon_sym_BSLASHPvolcite] = ACTIONS(5206), + [anon_sym_BSLASHfvolcite] = ACTIONS(5206), + [anon_sym_BSLASHftvolcite] = ACTIONS(5206), + [anon_sym_BSLASHsvolcite] = ACTIONS(5206), + [anon_sym_BSLASHSvolcite] = ACTIONS(5206), + [anon_sym_BSLASHtvolcite] = ACTIONS(5206), + [anon_sym_BSLASHTvolcite] = ACTIONS(5206), + [anon_sym_BSLASHavolcite] = ACTIONS(5206), + [anon_sym_BSLASHAvolcite] = ACTIONS(5206), + [anon_sym_BSLASHnotecite] = ACTIONS(5206), + [anon_sym_BSLASHNotecite] = ACTIONS(5206), + [anon_sym_BSLASHpnotecite] = ACTIONS(5206), + [anon_sym_BSLASHPnotecite] = ACTIONS(5206), + [anon_sym_BSLASHfnotecite] = ACTIONS(5206), + [anon_sym_BSLASHlabel] = ACTIONS(5206), + [anon_sym_BSLASHref] = ACTIONS(5206), + [anon_sym_BSLASHeqref] = ACTIONS(5206), + [anon_sym_BSLASHvref] = ACTIONS(5206), + [anon_sym_BSLASHVref] = ACTIONS(5206), + [anon_sym_BSLASHautoref] = ACTIONS(5206), + [anon_sym_BSLASHpageref] = ACTIONS(5206), + [anon_sym_BSLASHcref] = ACTIONS(5206), + [anon_sym_BSLASHCref] = ACTIONS(5206), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnameCref] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5206), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5206), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5206), + [anon_sym_BSLASHlabelcref] = ACTIONS(5206), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange] = ACTIONS(5206), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHCrefrange] = ACTIONS(5206), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5204), + [anon_sym_BSLASHnewlabel] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand] = ACTIONS(5206), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5206), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5206), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5204), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5206), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdef] = ACTIONS(5206), + [anon_sym_BSLASHlet] = ACTIONS(5206), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5206), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5206), + [anon_sym_BSLASHgls] = ACTIONS(5206), + [anon_sym_BSLASHGls] = ACTIONS(5206), + [anon_sym_BSLASHGLS] = ACTIONS(5206), + [anon_sym_BSLASHglspl] = ACTIONS(5206), + [anon_sym_BSLASHGlspl] = ACTIONS(5206), + [anon_sym_BSLASHGLSpl] = ACTIONS(5206), + [anon_sym_BSLASHglsdisp] = ACTIONS(5206), + [anon_sym_BSLASHglslink] = ACTIONS(5206), + [anon_sym_BSLASHglstext] = ACTIONS(5206), + [anon_sym_BSLASHGlstext] = ACTIONS(5206), + [anon_sym_BSLASHGLStext] = ACTIONS(5206), + [anon_sym_BSLASHglsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5206), + [anon_sym_BSLASHglsplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSplural] = ACTIONS(5206), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5206), + [anon_sym_BSLASHglsname] = ACTIONS(5206), + [anon_sym_BSLASHGlsname] = ACTIONS(5206), + [anon_sym_BSLASHGLSname] = ACTIONS(5206), + [anon_sym_BSLASHglssymbol] = ACTIONS(5206), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5206), + [anon_sym_BSLASHglsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5206), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5206), + [anon_sym_BSLASHglsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5206), + [anon_sym_BSLASHglsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5206), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5206), + [anon_sym_BSLASHglsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5206), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5206), + [anon_sym_BSLASHglsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5206), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5206), + [anon_sym_BSLASHnewacronym] = ACTIONS(5206), + [anon_sym_BSLASHacrshort] = ACTIONS(5206), + [anon_sym_BSLASHAcrshort] = ACTIONS(5206), + [anon_sym_BSLASHACRshort] = ACTIONS(5206), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5206), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5206), + [anon_sym_BSLASHacrlong] = ACTIONS(5206), + [anon_sym_BSLASHAcrlong] = ACTIONS(5206), + [anon_sym_BSLASHACRlong] = ACTIONS(5206), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5206), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5206), + [anon_sym_BSLASHacrfull] = ACTIONS(5206), + [anon_sym_BSLASHAcrfull] = ACTIONS(5206), + [anon_sym_BSLASHACRfull] = ACTIONS(5206), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5206), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5206), + [anon_sym_BSLASHacs] = ACTIONS(5206), + [anon_sym_BSLASHAcs] = ACTIONS(5206), + [anon_sym_BSLASHacsp] = ACTIONS(5206), + [anon_sym_BSLASHAcsp] = ACTIONS(5206), + [anon_sym_BSLASHacl] = ACTIONS(5206), + [anon_sym_BSLASHAcl] = ACTIONS(5206), + [anon_sym_BSLASHaclp] = ACTIONS(5206), + [anon_sym_BSLASHAclp] = ACTIONS(5206), + [anon_sym_BSLASHacf] = ACTIONS(5206), + [anon_sym_BSLASHAcf] = ACTIONS(5206), + [anon_sym_BSLASHacfp] = ACTIONS(5206), + [anon_sym_BSLASHAcfp] = ACTIONS(5206), + [anon_sym_BSLASHac] = ACTIONS(5206), + [anon_sym_BSLASHAc] = ACTIONS(5206), + [anon_sym_BSLASHacp] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5206), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5206), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5206), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5206), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5206), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5204), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5206), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5206), + [anon_sym_BSLASHcolor] = ACTIONS(5206), + [anon_sym_BSLASHcolorbox] = ACTIONS(5206), + [anon_sym_BSLASHtextcolor] = ACTIONS(5206), + [anon_sym_BSLASHpagecolor] = ACTIONS(5206), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5206), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5206), + [anon_sym_BSLASHtext] = ACTIONS(5206), + [anon_sym_BSLASHintertext] = ACTIONS(5206), + [anon_sym_shortintertext] = ACTIONS(5206), }, [1175] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_BSLASHpart] = ACTIONS(5218), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddpart] = ACTIONS(5218), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5216), + [anon_sym_BSLASHchapter] = ACTIONS(5218), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddchap] = ACTIONS(5218), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsection] = ACTIONS(5218), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHaddsec] = ACTIONS(5218), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5218), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5216), + [anon_sym_BSLASHparagraph] = ACTIONS(5218), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5218), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5216), + [anon_sym_BSLASHitem] = ACTIONS(5218), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASHbegin] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [1176] = { - [sym_command_name] = ACTIONS(4891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_BSLASHpart] = ACTIONS(4891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddpart] = ACTIONS(4891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), - [anon_sym_BSLASHchapter] = ACTIONS(4891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddchap] = ACTIONS(4891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsection] = ACTIONS(4891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHaddsec] = ACTIONS(4891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), - [anon_sym_BSLASHparagraph] = ACTIONS(4891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), - [anon_sym_BSLASHitem] = ACTIONS(4891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4889), - [sym_word] = ACTIONS(4891), - [sym_placeholder] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym__] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_COLON] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), - [anon_sym_BSLASHbegin] = ACTIONS(4891), - [anon_sym_BSLASHend] = ACTIONS(4891), - [anon_sym_BSLASHusepackage] = ACTIONS(4891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), - [anon_sym_BSLASHinclude] = ACTIONS(4891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), - [anon_sym_BSLASHinput] = ACTIONS(4891), - [anon_sym_BSLASHsubfile] = ACTIONS(4891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), - [anon_sym_BSLASHbibliography] = ACTIONS(4891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), - [anon_sym_BSLASHincludesvg] = ACTIONS(4891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), - [anon_sym_BSLASHimport] = ACTIONS(4891), - [anon_sym_BSLASHsubimport] = ACTIONS(4891), - [anon_sym_BSLASHinputfrom] = ACTIONS(4891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), - [anon_sym_BSLASHincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHcaption] = ACTIONS(4891), - [anon_sym_BSLASHcite] = ACTIONS(4891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCite] = ACTIONS(4891), - [anon_sym_BSLASHnocite] = ACTIONS(4891), - [anon_sym_BSLASHcitet] = ACTIONS(4891), - [anon_sym_BSLASHcitep] = ACTIONS(4891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteauthor] = ACTIONS(4891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitetitle] = ACTIONS(4891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteyear] = ACTIONS(4891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitedate] = ACTIONS(4891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteurl] = ACTIONS(4891), - [anon_sym_BSLASHfullcite] = ACTIONS(4891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), - [anon_sym_BSLASHcitealt] = ACTIONS(4891), - [anon_sym_BSLASHcitealp] = ACTIONS(4891), - [anon_sym_BSLASHcitetext] = ACTIONS(4891), - [anon_sym_BSLASHparencite] = ACTIONS(4891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHParencite] = ACTIONS(4891), - [anon_sym_BSLASHfootcite] = ACTIONS(4891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), - [anon_sym_BSLASHtextcite] = ACTIONS(4891), - [anon_sym_BSLASHTextcite] = ACTIONS(4891), - [anon_sym_BSLASHsmartcite] = ACTIONS(4891), - [anon_sym_BSLASHSmartcite] = ACTIONS(4891), - [anon_sym_BSLASHsupercite] = ACTIONS(4891), - [anon_sym_BSLASHautocite] = ACTIONS(4891), - [anon_sym_BSLASHAutocite] = ACTIONS(4891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHvolcite] = ACTIONS(4891), - [anon_sym_BSLASHVolcite] = ACTIONS(4891), - [anon_sym_BSLASHpvolcite] = ACTIONS(4891), - [anon_sym_BSLASHPvolcite] = ACTIONS(4891), - [anon_sym_BSLASHfvolcite] = ACTIONS(4891), - [anon_sym_BSLASHftvolcite] = ACTIONS(4891), - [anon_sym_BSLASHsvolcite] = ACTIONS(4891), - [anon_sym_BSLASHSvolcite] = ACTIONS(4891), - [anon_sym_BSLASHtvolcite] = ACTIONS(4891), - [anon_sym_BSLASHTvolcite] = ACTIONS(4891), - [anon_sym_BSLASHavolcite] = ACTIONS(4891), - [anon_sym_BSLASHAvolcite] = ACTIONS(4891), - [anon_sym_BSLASHnotecite] = ACTIONS(4891), - [anon_sym_BSLASHNotecite] = ACTIONS(4891), - [anon_sym_BSLASHpnotecite] = ACTIONS(4891), - [anon_sym_BSLASHPnotecite] = ACTIONS(4891), - [anon_sym_BSLASHfnotecite] = ACTIONS(4891), - [anon_sym_BSLASHlabel] = ACTIONS(4891), - [anon_sym_BSLASHref] = ACTIONS(4891), - [anon_sym_BSLASHeqref] = ACTIONS(4891), - [anon_sym_BSLASHvref] = ACTIONS(4891), - [anon_sym_BSLASHVref] = ACTIONS(4891), - [anon_sym_BSLASHautoref] = ACTIONS(4891), - [anon_sym_BSLASHpageref] = ACTIONS(4891), - [anon_sym_BSLASHcref] = ACTIONS(4891), - [anon_sym_BSLASHCref] = ACTIONS(4891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnameCref] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHlabelcref] = ACTIONS(4891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCrefrange] = ACTIONS(4891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnewlabel] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), - [anon_sym_BSLASHdef] = ACTIONS(4891), - [anon_sym_BSLASHlet] = ACTIONS(4891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), - [anon_sym_BSLASHgls] = ACTIONS(4891), - [anon_sym_BSLASHGls] = ACTIONS(4891), - [anon_sym_BSLASHGLS] = ACTIONS(4891), - [anon_sym_BSLASHglspl] = ACTIONS(4891), - [anon_sym_BSLASHGlspl] = ACTIONS(4891), - [anon_sym_BSLASHGLSpl] = ACTIONS(4891), - [anon_sym_BSLASHglsdisp] = ACTIONS(4891), - [anon_sym_BSLASHglslink] = ACTIONS(4891), - [anon_sym_BSLASHglstext] = ACTIONS(4891), - [anon_sym_BSLASHGlstext] = ACTIONS(4891), - [anon_sym_BSLASHGLStext] = ACTIONS(4891), - [anon_sym_BSLASHglsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), - [anon_sym_BSLASHglsplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSplural] = ACTIONS(4891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHglsname] = ACTIONS(4891), - [anon_sym_BSLASHGlsname] = ACTIONS(4891), - [anon_sym_BSLASHGLSname] = ACTIONS(4891), - [anon_sym_BSLASHglssymbol] = ACTIONS(4891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), - [anon_sym_BSLASHglsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), - [anon_sym_BSLASHglsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), - [anon_sym_BSLASHglsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), - [anon_sym_BSLASHglsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), - [anon_sym_BSLASHglsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), - [anon_sym_BSLASHnewacronym] = ACTIONS(4891), - [anon_sym_BSLASHacrshort] = ACTIONS(4891), - [anon_sym_BSLASHAcrshort] = ACTIONS(4891), - [anon_sym_BSLASHACRshort] = ACTIONS(4891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), - [anon_sym_BSLASHacrlong] = ACTIONS(4891), - [anon_sym_BSLASHAcrlong] = ACTIONS(4891), - [anon_sym_BSLASHACRlong] = ACTIONS(4891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), - [anon_sym_BSLASHacrfull] = ACTIONS(4891), - [anon_sym_BSLASHAcrfull] = ACTIONS(4891), - [anon_sym_BSLASHACRfull] = ACTIONS(4891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), - [anon_sym_BSLASHacs] = ACTIONS(4891), - [anon_sym_BSLASHAcs] = ACTIONS(4891), - [anon_sym_BSLASHacsp] = ACTIONS(4891), - [anon_sym_BSLASHAcsp] = ACTIONS(4891), - [anon_sym_BSLASHacl] = ACTIONS(4891), - [anon_sym_BSLASHAcl] = ACTIONS(4891), - [anon_sym_BSLASHaclp] = ACTIONS(4891), - [anon_sym_BSLASHAclp] = ACTIONS(4891), - [anon_sym_BSLASHacf] = ACTIONS(4891), - [anon_sym_BSLASHAcf] = ACTIONS(4891), - [anon_sym_BSLASHacfp] = ACTIONS(4891), - [anon_sym_BSLASHAcfp] = ACTIONS(4891), - [anon_sym_BSLASHac] = ACTIONS(4891), - [anon_sym_BSLASHAc] = ACTIONS(4891), - [anon_sym_BSLASHacp] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), - [anon_sym_BSLASHcolor] = ACTIONS(4891), - [anon_sym_BSLASHcolorbox] = ACTIONS(4891), - [anon_sym_BSLASHtextcolor] = ACTIONS(4891), - [anon_sym_BSLASHpagecolor] = ACTIONS(4891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), - [anon_sym_BSLASHtext] = ACTIONS(4891), - [anon_sym_BSLASHintertext] = ACTIONS(4891), - [anon_sym_shortintertext] = ACTIONS(4891), + [sym_command_name] = ACTIONS(4970), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_BSLASHpart] = ACTIONS(4970), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddpart] = ACTIONS(4970), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4968), + [anon_sym_BSLASHchapter] = ACTIONS(4970), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddchap] = ACTIONS(4970), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsection] = ACTIONS(4970), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHaddsec] = ACTIONS(4970), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4970), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4968), + [anon_sym_BSLASHparagraph] = ACTIONS(4970), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4970), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4968), + [anon_sym_BSLASHitem] = ACTIONS(4970), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [sym_word] = ACTIONS(4970), + [sym_placeholder] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4968), + [anon_sym_BSLASHbegin] = ACTIONS(4970), + [anon_sym_BSLASHend] = ACTIONS(4970), + [anon_sym_BSLASHusepackage] = ACTIONS(4970), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4970), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4970), + [anon_sym_BSLASHinclude] = ACTIONS(4970), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4970), + [anon_sym_BSLASHinput] = ACTIONS(4970), + [anon_sym_BSLASHsubfile] = ACTIONS(4970), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4970), + [anon_sym_BSLASHbibliography] = ACTIONS(4970), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4970), + [anon_sym_BSLASHincludesvg] = ACTIONS(4970), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4970), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4970), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4970), + [anon_sym_BSLASHimport] = ACTIONS(4970), + [anon_sym_BSLASHsubimport] = ACTIONS(4970), + [anon_sym_BSLASHinputfrom] = ACTIONS(4970), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4970), + [anon_sym_BSLASHincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHcaption] = ACTIONS(4970), + [anon_sym_BSLASHcite] = ACTIONS(4970), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCite] = ACTIONS(4970), + [anon_sym_BSLASHnocite] = ACTIONS(4970), + [anon_sym_BSLASHcitet] = ACTIONS(4970), + [anon_sym_BSLASHcitep] = ACTIONS(4970), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteauthor] = ACTIONS(4970), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4970), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitetitle] = ACTIONS(4970), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteyear] = ACTIONS(4970), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitedate] = ACTIONS(4970), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteurl] = ACTIONS(4970), + [anon_sym_BSLASHfullcite] = ACTIONS(4970), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4970), + [anon_sym_BSLASHcitealt] = ACTIONS(4970), + [anon_sym_BSLASHcitealp] = ACTIONS(4970), + [anon_sym_BSLASHcitetext] = ACTIONS(4970), + [anon_sym_BSLASHparencite] = ACTIONS(4970), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHParencite] = ACTIONS(4970), + [anon_sym_BSLASHfootcite] = ACTIONS(4970), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4970), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4970), + [anon_sym_BSLASHtextcite] = ACTIONS(4970), + [anon_sym_BSLASHTextcite] = ACTIONS(4970), + [anon_sym_BSLASHsmartcite] = ACTIONS(4970), + [anon_sym_BSLASHSmartcite] = ACTIONS(4970), + [anon_sym_BSLASHsupercite] = ACTIONS(4970), + [anon_sym_BSLASHautocite] = ACTIONS(4970), + [anon_sym_BSLASHAutocite] = ACTIONS(4970), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHvolcite] = ACTIONS(4970), + [anon_sym_BSLASHVolcite] = ACTIONS(4970), + [anon_sym_BSLASHpvolcite] = ACTIONS(4970), + [anon_sym_BSLASHPvolcite] = ACTIONS(4970), + [anon_sym_BSLASHfvolcite] = ACTIONS(4970), + [anon_sym_BSLASHftvolcite] = ACTIONS(4970), + [anon_sym_BSLASHsvolcite] = ACTIONS(4970), + [anon_sym_BSLASHSvolcite] = ACTIONS(4970), + [anon_sym_BSLASHtvolcite] = ACTIONS(4970), + [anon_sym_BSLASHTvolcite] = ACTIONS(4970), + [anon_sym_BSLASHavolcite] = ACTIONS(4970), + [anon_sym_BSLASHAvolcite] = ACTIONS(4970), + [anon_sym_BSLASHnotecite] = ACTIONS(4970), + [anon_sym_BSLASHNotecite] = ACTIONS(4970), + [anon_sym_BSLASHpnotecite] = ACTIONS(4970), + [anon_sym_BSLASHPnotecite] = ACTIONS(4970), + [anon_sym_BSLASHfnotecite] = ACTIONS(4970), + [anon_sym_BSLASHlabel] = ACTIONS(4970), + [anon_sym_BSLASHref] = ACTIONS(4970), + [anon_sym_BSLASHeqref] = ACTIONS(4970), + [anon_sym_BSLASHvref] = ACTIONS(4970), + [anon_sym_BSLASHVref] = ACTIONS(4970), + [anon_sym_BSLASHautoref] = ACTIONS(4970), + [anon_sym_BSLASHpageref] = ACTIONS(4970), + [anon_sym_BSLASHcref] = ACTIONS(4970), + [anon_sym_BSLASHCref] = ACTIONS(4970), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnameCref] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHlabelcref] = ACTIONS(4970), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCrefrange] = ACTIONS(4970), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnewlabel] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4970), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4970), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4970), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdef] = ACTIONS(4970), + [anon_sym_BSLASHlet] = ACTIONS(4970), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4970), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4970), + [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(4970), + [anon_sym_BSLASHacrshort] = ACTIONS(4970), + [anon_sym_BSLASHAcrshort] = ACTIONS(4970), + [anon_sym_BSLASHACRshort] = ACTIONS(4970), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4970), + [anon_sym_BSLASHacrlong] = ACTIONS(4970), + [anon_sym_BSLASHAcrlong] = ACTIONS(4970), + [anon_sym_BSLASHACRlong] = ACTIONS(4970), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4970), + [anon_sym_BSLASHacrfull] = ACTIONS(4970), + [anon_sym_BSLASHAcrfull] = ACTIONS(4970), + [anon_sym_BSLASHACRfull] = ACTIONS(4970), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4970), + [anon_sym_BSLASHacs] = ACTIONS(4970), + [anon_sym_BSLASHAcs] = ACTIONS(4970), + [anon_sym_BSLASHacsp] = ACTIONS(4970), + [anon_sym_BSLASHAcsp] = ACTIONS(4970), + [anon_sym_BSLASHacl] = ACTIONS(4970), + [anon_sym_BSLASHAcl] = ACTIONS(4970), + [anon_sym_BSLASHaclp] = ACTIONS(4970), + [anon_sym_BSLASHAclp] = ACTIONS(4970), + [anon_sym_BSLASHacf] = ACTIONS(4970), + [anon_sym_BSLASHAcf] = ACTIONS(4970), + [anon_sym_BSLASHacfp] = ACTIONS(4970), + [anon_sym_BSLASHAcfp] = ACTIONS(4970), + [anon_sym_BSLASHac] = ACTIONS(4970), + [anon_sym_BSLASHAc] = ACTIONS(4970), + [anon_sym_BSLASHacp] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4970), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4970), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4970), + [anon_sym_BSLASHcolor] = ACTIONS(4970), + [anon_sym_BSLASHcolorbox] = ACTIONS(4970), + [anon_sym_BSLASHtextcolor] = ACTIONS(4970), + [anon_sym_BSLASHpagecolor] = ACTIONS(4970), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4970), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4970), + [anon_sym_BSLASHtext] = ACTIONS(4970), + [anon_sym_BSLASHintertext] = ACTIONS(4970), + [anon_sym_shortintertext] = ACTIONS(4970), }, [1177] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_BSLASHpart] = ACTIONS(5145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddpart] = ACTIONS(5145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), - [anon_sym_BSLASHchapter] = ACTIONS(5145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddchap] = ACTIONS(5145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsection] = ACTIONS(5145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHaddsec] = ACTIONS(5145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), - [anon_sym_BSLASHparagraph] = ACTIONS(5145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), - [anon_sym_BSLASHitem] = ACTIONS(5145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [anon_sym_BSLASHbegin] = 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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_BSLASHpart] = ACTIONS(5224), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddpart] = ACTIONS(5224), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5222), + [anon_sym_BSLASHchapter] = ACTIONS(5224), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddchap] = ACTIONS(5224), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsection] = ACTIONS(5224), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHaddsec] = ACTIONS(5224), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5224), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5222), + [anon_sym_BSLASHparagraph] = ACTIONS(5224), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5224), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5222), + [anon_sym_BSLASHitem] = ACTIONS(5224), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASHbegin] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [1178] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_BSLASHpart] = ACTIONS(5284), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddpart] = ACTIONS(5284), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5282), + [anon_sym_BSLASHchapter] = ACTIONS(5284), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddchap] = ACTIONS(5284), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsection] = ACTIONS(5284), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHaddsec] = ACTIONS(5284), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5284), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5282), + [anon_sym_BSLASHparagraph] = ACTIONS(5284), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5284), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5282), + [anon_sym_BSLASHitem] = ACTIONS(5284), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASHbegin] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [1179] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_BSLASHpart] = ACTIONS(5149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddpart] = ACTIONS(5149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHchapter] = ACTIONS(5149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddchap] = ACTIONS(5149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsection] = ACTIONS(5149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddsec] = ACTIONS(5149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHparagraph] = ACTIONS(5149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHitem] = ACTIONS(5149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5149), - [anon_sym_BSLASHend] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_BSLASHpart] = ACTIONS(5228), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddpart] = ACTIONS(5228), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5226), + [anon_sym_BSLASHchapter] = ACTIONS(5228), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddchap] = ACTIONS(5228), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsection] = ACTIONS(5228), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHaddsec] = ACTIONS(5228), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5228), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5226), + [anon_sym_BSLASHparagraph] = ACTIONS(5228), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5228), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5226), + [anon_sym_BSLASHitem] = ACTIONS(5228), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASHbegin] = ACTIONS(5228), + [anon_sym_BSLASHend] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [1180] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_BSLASHpart] = ACTIONS(5153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddpart] = ACTIONS(5153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), - [anon_sym_BSLASHchapter] = ACTIONS(5153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddchap] = ACTIONS(5153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsection] = ACTIONS(5153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHaddsec] = ACTIONS(5153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), - [anon_sym_BSLASHparagraph] = ACTIONS(5153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), - [anon_sym_BSLASHitem] = ACTIONS(5153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASHbegin] = ACTIONS(5153), - [anon_sym_BSLASHend] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_BSLASHpart] = ACTIONS(5232), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddpart] = ACTIONS(5232), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5230), + [anon_sym_BSLASHchapter] = ACTIONS(5232), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddchap] = ACTIONS(5232), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsection] = ACTIONS(5232), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHaddsec] = ACTIONS(5232), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5232), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5230), + [anon_sym_BSLASHparagraph] = ACTIONS(5232), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5232), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5230), + [anon_sym_BSLASHitem] = ACTIONS(5232), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASHbegin] = ACTIONS(5232), + [anon_sym_BSLASHend] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [1181] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_BSLASHpart] = ACTIONS(5161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddpart] = ACTIONS(5161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), - [anon_sym_BSLASHchapter] = ACTIONS(5161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddchap] = ACTIONS(5161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsection] = ACTIONS(5161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHaddsec] = ACTIONS(5161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), - [anon_sym_BSLASHparagraph] = ACTIONS(5161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), - [anon_sym_BSLASHitem] = ACTIONS(5161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASHbegin] = ACTIONS(5161), - [anon_sym_BSLASHend] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_BSLASHpart] = ACTIONS(5240), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddpart] = ACTIONS(5240), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5238), + [anon_sym_BSLASHchapter] = ACTIONS(5240), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddchap] = ACTIONS(5240), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsection] = ACTIONS(5240), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHaddsec] = ACTIONS(5240), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5240), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5238), + [anon_sym_BSLASHparagraph] = ACTIONS(5240), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5240), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5238), + [anon_sym_BSLASHitem] = ACTIONS(5240), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASHbegin] = ACTIONS(5240), + [anon_sym_BSLASHend] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [1182] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_BSLASHpart] = ACTIONS(5165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddpart] = ACTIONS(5165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), - [anon_sym_BSLASHchapter] = ACTIONS(5165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddchap] = ACTIONS(5165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsection] = ACTIONS(5165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHaddsec] = ACTIONS(5165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), - [anon_sym_BSLASHparagraph] = ACTIONS(5165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), - [anon_sym_BSLASHitem] = ACTIONS(5165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASHbegin] = ACTIONS(5165), - [anon_sym_BSLASHend] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_BSLASHpart] = ACTIONS(5244), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddpart] = ACTIONS(5244), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5242), + [anon_sym_BSLASHchapter] = ACTIONS(5244), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddchap] = ACTIONS(5244), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsection] = ACTIONS(5244), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHaddsec] = ACTIONS(5244), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5244), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5242), + [anon_sym_BSLASHparagraph] = ACTIONS(5244), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5244), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5242), + [anon_sym_BSLASHitem] = ACTIONS(5244), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASHbegin] = ACTIONS(5244), + [anon_sym_BSLASHend] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [1183] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_BSLASHpart] = ACTIONS(5169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddpart] = ACTIONS(5169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), - [anon_sym_BSLASHchapter] = ACTIONS(5169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddchap] = ACTIONS(5169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsection] = ACTIONS(5169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHaddsec] = ACTIONS(5169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), - [anon_sym_BSLASHparagraph] = ACTIONS(5169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), - [anon_sym_BSLASHitem] = ACTIONS(5169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASHbegin] = ACTIONS(5169), - [anon_sym_BSLASHend] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_BSLASHpart] = ACTIONS(5248), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddpart] = ACTIONS(5248), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5246), + [anon_sym_BSLASHchapter] = ACTIONS(5248), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddchap] = ACTIONS(5248), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsection] = ACTIONS(5248), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHaddsec] = ACTIONS(5248), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5248), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5246), + [anon_sym_BSLASHparagraph] = ACTIONS(5248), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5248), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5246), + [anon_sym_BSLASHitem] = ACTIONS(5248), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASHbegin] = ACTIONS(5248), + [anon_sym_BSLASHend] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [1184] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_BSLASHpart] = ACTIONS(5177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddpart] = ACTIONS(5177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), - [anon_sym_BSLASHchapter] = ACTIONS(5177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddchap] = ACTIONS(5177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsection] = ACTIONS(5177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHaddsec] = ACTIONS(5177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), - [anon_sym_BSLASHparagraph] = ACTIONS(5177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), - [anon_sym_BSLASHitem] = ACTIONS(5177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASHbegin] = ACTIONS(5177), - [anon_sym_BSLASHend] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_BSLASHpart] = ACTIONS(5256), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddpart] = ACTIONS(5256), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5254), + [anon_sym_BSLASHchapter] = ACTIONS(5256), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddchap] = ACTIONS(5256), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsection] = ACTIONS(5256), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHaddsec] = ACTIONS(5256), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5256), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5254), + [anon_sym_BSLASHparagraph] = ACTIONS(5256), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5256), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5254), + [anon_sym_BSLASHitem] = ACTIONS(5256), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASHbegin] = ACTIONS(5256), + [anon_sym_BSLASHend] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [1185] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_BSLASHpart] = ACTIONS(5181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddpart] = ACTIONS(5181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), - [anon_sym_BSLASHchapter] = ACTIONS(5181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddchap] = ACTIONS(5181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsection] = ACTIONS(5181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHaddsec] = ACTIONS(5181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), - [anon_sym_BSLASHparagraph] = ACTIONS(5181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), - [anon_sym_BSLASHitem] = ACTIONS(5181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASHbegin] = ACTIONS(5181), - [anon_sym_BSLASHend] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_BSLASHpart] = ACTIONS(5260), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddpart] = ACTIONS(5260), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5258), + [anon_sym_BSLASHchapter] = ACTIONS(5260), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddchap] = ACTIONS(5260), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsection] = ACTIONS(5260), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHaddsec] = ACTIONS(5260), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5260), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5258), + [anon_sym_BSLASHparagraph] = ACTIONS(5260), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5260), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5258), + [anon_sym_BSLASHitem] = ACTIONS(5260), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASHbegin] = ACTIONS(5260), + [anon_sym_BSLASHend] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [1186] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_BSLASHpart] = ACTIONS(5264), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddpart] = ACTIONS(5264), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5262), + [anon_sym_BSLASHchapter] = ACTIONS(5264), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddchap] = ACTIONS(5264), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsection] = ACTIONS(5264), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHaddsec] = ACTIONS(5264), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5264), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5262), + [anon_sym_BSLASHparagraph] = ACTIONS(5264), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5264), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5262), + [anon_sym_BSLASHitem] = ACTIONS(5264), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASHbegin] = ACTIONS(5264), + [anon_sym_BSLASHend] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [1187] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_BSLASHpart] = ACTIONS(4921), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddpart] = ACTIONS(4921), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), - [anon_sym_BSLASHchapter] = ACTIONS(4921), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddchap] = ACTIONS(4921), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsection] = ACTIONS(4921), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHaddsec] = ACTIONS(4921), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), - [anon_sym_BSLASHparagraph] = ACTIONS(4921), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), - [anon_sym_BSLASHitem] = ACTIONS(4921), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASHbegin] = ACTIONS(4921), - [anon_sym_BSLASHend] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_BSLASHpart] = ACTIONS(5000), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddpart] = ACTIONS(5000), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4998), + [anon_sym_BSLASHchapter] = ACTIONS(5000), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddchap] = ACTIONS(5000), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsection] = ACTIONS(5000), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHaddsec] = ACTIONS(5000), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5000), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4998), + [anon_sym_BSLASHparagraph] = ACTIONS(5000), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5000), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4998), + [anon_sym_BSLASHitem] = ACTIONS(5000), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(5000), + [anon_sym_BSLASHend] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [1188] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_BSLASHpart] = ACTIONS(4925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddpart] = ACTIONS(4925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), - [anon_sym_BSLASHchapter] = ACTIONS(4925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddchap] = ACTIONS(4925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsection] = ACTIONS(4925), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHaddsec] = ACTIONS(4925), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), - [anon_sym_BSLASHparagraph] = ACTIONS(4925), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), - [anon_sym_BSLASHitem] = ACTIONS(4925), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASHbegin] = ACTIONS(4925), - [anon_sym_BSLASHend] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_BSLASHpart] = ACTIONS(5004), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddpart] = ACTIONS(5004), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5002), + [anon_sym_BSLASHchapter] = ACTIONS(5004), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddchap] = ACTIONS(5004), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsection] = ACTIONS(5004), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHaddsec] = ACTIONS(5004), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5004), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5002), + [anon_sym_BSLASHparagraph] = ACTIONS(5004), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5004), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5002), + [anon_sym_BSLASHitem] = ACTIONS(5004), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASHbegin] = ACTIONS(5004), + [anon_sym_BSLASHend] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [1189] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_BSLASHpart] = ACTIONS(5268), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddpart] = ACTIONS(5268), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5266), + [anon_sym_BSLASHchapter] = ACTIONS(5268), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddchap] = ACTIONS(5268), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsection] = ACTIONS(5268), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHaddsec] = ACTIONS(5268), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5268), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5266), + [anon_sym_BSLASHparagraph] = ACTIONS(5268), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5268), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5266), + [anon_sym_BSLASHitem] = ACTIONS(5268), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASHbegin] = ACTIONS(5268), + [anon_sym_BSLASHend] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [1190] = { - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_BSLASHpart] = ACTIONS(133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddpart] = ACTIONS(133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), - [anon_sym_BSLASHchapter] = ACTIONS(133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddchap] = ACTIONS(133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), - [anon_sym_BSLASHsection] = ACTIONS(133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHaddsec] = ACTIONS(133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), - [anon_sym_BSLASHparagraph] = ACTIONS(133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), - [anon_sym_BSLASHitem] = ACTIONS(133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHend] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_BSLASHpart] = ACTIONS(135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddpart] = ACTIONS(135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(133), + [anon_sym_BSLASHchapter] = ACTIONS(135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddchap] = ACTIONS(135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(133), + [anon_sym_BSLASHsection] = ACTIONS(135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHaddsec] = ACTIONS(135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(133), + [anon_sym_BSLASHparagraph] = ACTIONS(135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(133), + [anon_sym_BSLASHitem] = ACTIONS(135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHend] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [1191] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_BSLASHpart] = ACTIONS(5272), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddpart] = ACTIONS(5272), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5270), + [anon_sym_BSLASHchapter] = ACTIONS(5272), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddchap] = ACTIONS(5272), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsection] = ACTIONS(5272), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHaddsec] = ACTIONS(5272), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5272), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5270), + [anon_sym_BSLASHparagraph] = ACTIONS(5272), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5272), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5270), + [anon_sym_BSLASHitem] = ACTIONS(5272), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASHbegin] = ACTIONS(5272), + [anon_sym_BSLASHend] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [1192] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_BSLASHpart] = ACTIONS(151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddpart] = ACTIONS(151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), + [anon_sym_BSLASHchapter] = ACTIONS(151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), + [anon_sym_BSLASHparagraph] = ACTIONS(151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), + [anon_sym_BSLASHitem] = ACTIONS(151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHend] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [1193] = { - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_BSLASHpart] = ACTIONS(4969), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddpart] = ACTIONS(4969), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), - [anon_sym_BSLASHchapter] = ACTIONS(4969), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddchap] = ACTIONS(4969), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsection] = ACTIONS(4969), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHaddsec] = ACTIONS(4969), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), - [anon_sym_BSLASHparagraph] = ACTIONS(4969), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), - [anon_sym_BSLASHitem] = ACTIONS(4969), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASHbegin] = ACTIONS(4969), - [anon_sym_BSLASHend] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_BSLASHpart] = ACTIONS(5048), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddpart] = ACTIONS(5048), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5046), + [anon_sym_BSLASHchapter] = ACTIONS(5048), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddchap] = ACTIONS(5048), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsection] = ACTIONS(5048), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHaddsec] = ACTIONS(5048), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5048), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5046), + [anon_sym_BSLASHparagraph] = ACTIONS(5048), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5048), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5046), + [anon_sym_BSLASHitem] = ACTIONS(5048), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASHbegin] = ACTIONS(5048), + [anon_sym_BSLASHend] = ACTIONS(5048), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [1194] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_BSLASHpart] = ACTIONS(5276), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddpart] = ACTIONS(5276), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5274), + [anon_sym_BSLASHchapter] = ACTIONS(5276), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddchap] = ACTIONS(5276), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsection] = ACTIONS(5276), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHaddsec] = ACTIONS(5276), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5276), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5274), + [anon_sym_BSLASHparagraph] = ACTIONS(5276), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5276), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5274), + [anon_sym_BSLASHitem] = ACTIONS(5276), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASHbegin] = ACTIONS(5276), + [anon_sym_BSLASHend] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [1195] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_BSLASHpart] = ACTIONS(5280), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddpart] = ACTIONS(5280), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5278), + [anon_sym_BSLASHchapter] = ACTIONS(5280), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddchap] = ACTIONS(5280), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsection] = ACTIONS(5280), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddsec] = ACTIONS(5280), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5280), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHparagraph] = ACTIONS(5280), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5280), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5278), + [anon_sym_BSLASHitem] = ACTIONS(5280), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASHbegin] = ACTIONS(5280), + [anon_sym_BSLASHend] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [1196] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_BSLASHpart] = ACTIONS(5062), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddpart] = ACTIONS(5062), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5060), + [anon_sym_BSLASHchapter] = ACTIONS(5062), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddchap] = ACTIONS(5062), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsection] = ACTIONS(5062), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHaddsec] = ACTIONS(5062), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5062), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5060), + [anon_sym_BSLASHparagraph] = ACTIONS(5062), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5062), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5060), + [anon_sym_BSLASHitem] = ACTIONS(5062), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASHbegin] = ACTIONS(5062), + [anon_sym_BSLASHend] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [1197] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_BSLASHpart] = ACTIONS(5066), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddpart] = ACTIONS(5066), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5064), + [anon_sym_BSLASHchapter] = ACTIONS(5066), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddchap] = ACTIONS(5066), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsection] = ACTIONS(5066), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHaddsec] = ACTIONS(5066), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5066), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5064), + [anon_sym_BSLASHparagraph] = ACTIONS(5066), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5066), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5064), + [anon_sym_BSLASHitem] = ACTIONS(5066), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASHbegin] = ACTIONS(5066), + [anon_sym_BSLASHend] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [1198] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_BSLASHpart] = ACTIONS(5070), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddpart] = ACTIONS(5070), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5068), + [anon_sym_BSLASHchapter] = ACTIONS(5070), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddchap] = ACTIONS(5070), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsection] = ACTIONS(5070), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHaddsec] = ACTIONS(5070), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5070), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5068), + [anon_sym_BSLASHparagraph] = ACTIONS(5070), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5070), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5068), + [anon_sym_BSLASHitem] = ACTIONS(5070), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASHbegin] = ACTIONS(5070), + [anon_sym_BSLASHend] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [1199] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_BSLASHpart] = ACTIONS(5074), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddpart] = ACTIONS(5074), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5072), + [anon_sym_BSLASHchapter] = ACTIONS(5074), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddchap] = ACTIONS(5074), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsection] = ACTIONS(5074), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHaddsec] = ACTIONS(5074), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5074), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5072), + [anon_sym_BSLASHparagraph] = ACTIONS(5074), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5074), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5072), + [anon_sym_BSLASHitem] = ACTIONS(5074), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASHbegin] = ACTIONS(5074), + [anon_sym_BSLASHend] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [1200] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_BSLASHpart] = ACTIONS(5078), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddpart] = ACTIONS(5078), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5076), + [anon_sym_BSLASHchapter] = ACTIONS(5078), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddchap] = ACTIONS(5078), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsection] = ACTIONS(5078), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHaddsec] = ACTIONS(5078), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5078), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5076), + [anon_sym_BSLASHparagraph] = ACTIONS(5078), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5078), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5076), + [anon_sym_BSLASHitem] = ACTIONS(5078), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASHbegin] = ACTIONS(5078), + [anon_sym_BSLASHend] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [1201] = { - [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(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_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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_BSLASHpart] = ACTIONS(5082), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddpart] = ACTIONS(5082), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5080), + [anon_sym_BSLASHchapter] = ACTIONS(5082), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddchap] = ACTIONS(5082), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsection] = ACTIONS(5082), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHaddsec] = ACTIONS(5082), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5082), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5080), + [anon_sym_BSLASHparagraph] = ACTIONS(5082), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5082), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5080), + [anon_sym_BSLASHitem] = ACTIONS(5082), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASHbegin] = ACTIONS(5082), + [anon_sym_BSLASHend] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [1202] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_BSLASHpart] = ACTIONS(5013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddpart] = ACTIONS(5013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), - [anon_sym_BSLASHchapter] = ACTIONS(5013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddchap] = ACTIONS(5013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsection] = ACTIONS(5013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHaddsec] = ACTIONS(5013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), - [anon_sym_BSLASHparagraph] = ACTIONS(5013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), - [anon_sym_BSLASHitem] = ACTIONS(5013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASHbegin] = ACTIONS(5013), - [anon_sym_BSLASHend] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_BSLASHpart] = ACTIONS(5092), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddpart] = ACTIONS(5092), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5090), + [anon_sym_BSLASHchapter] = ACTIONS(5092), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddchap] = ACTIONS(5092), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsection] = ACTIONS(5092), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHaddsec] = ACTIONS(5092), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5092), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5090), + [anon_sym_BSLASHparagraph] = ACTIONS(5092), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5092), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5090), + [anon_sym_BSLASHitem] = ACTIONS(5092), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASHbegin] = ACTIONS(5092), + [anon_sym_BSLASHend] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [1203] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_BSLASHpart] = ACTIONS(5017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddpart] = ACTIONS(5017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), - [anon_sym_BSLASHchapter] = ACTIONS(5017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddchap] = ACTIONS(5017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsection] = ACTIONS(5017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHaddsec] = ACTIONS(5017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), - [anon_sym_BSLASHparagraph] = ACTIONS(5017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), - [anon_sym_BSLASHitem] = ACTIONS(5017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASHbegin] = ACTIONS(5017), - [anon_sym_BSLASHend] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_BSLASHpart] = ACTIONS(5096), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddpart] = ACTIONS(5096), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5094), + [anon_sym_BSLASHchapter] = ACTIONS(5096), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddchap] = ACTIONS(5096), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsection] = ACTIONS(5096), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHaddsec] = ACTIONS(5096), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5096), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5094), + [anon_sym_BSLASHparagraph] = ACTIONS(5096), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5096), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5094), + [anon_sym_BSLASHitem] = ACTIONS(5096), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASHbegin] = ACTIONS(5096), + [anon_sym_BSLASHend] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [1204] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHend] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_BSLASHpart] = ACTIONS(5100), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddpart] = ACTIONS(5100), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5098), + [anon_sym_BSLASHchapter] = ACTIONS(5100), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddchap] = ACTIONS(5100), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsection] = ACTIONS(5100), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHaddsec] = ACTIONS(5100), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5100), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5098), + [anon_sym_BSLASHparagraph] = ACTIONS(5100), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5100), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5098), + [anon_sym_BSLASHitem] = ACTIONS(5100), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASHbegin] = ACTIONS(5100), + [anon_sym_BSLASHend] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [1205] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHend] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_BSLASHpart] = ACTIONS(5104), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddpart] = ACTIONS(5104), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5102), + [anon_sym_BSLASHchapter] = ACTIONS(5104), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddchap] = ACTIONS(5104), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsection] = ACTIONS(5104), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHaddsec] = ACTIONS(5104), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5104), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5102), + [anon_sym_BSLASHparagraph] = ACTIONS(5104), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5104), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5102), + [anon_sym_BSLASHitem] = ACTIONS(5104), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASHbegin] = ACTIONS(5104), + [anon_sym_BSLASHend] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [1206] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHend] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_BSLASHpart] = ACTIONS(5108), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddpart] = ACTIONS(5108), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5106), + [anon_sym_BSLASHchapter] = ACTIONS(5108), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddchap] = ACTIONS(5108), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsection] = ACTIONS(5108), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHaddsec] = ACTIONS(5108), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5108), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5106), + [anon_sym_BSLASHparagraph] = ACTIONS(5108), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5108), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5106), + [anon_sym_BSLASHitem] = ACTIONS(5108), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASHbegin] = ACTIONS(5108), + [anon_sym_BSLASHend] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [1207] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_BSLASHpart] = ACTIONS(5119), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddpart] = ACTIONS(5119), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), - [anon_sym_BSLASHchapter] = ACTIONS(5119), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddchap] = ACTIONS(5119), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsection] = ACTIONS(5119), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHaddsec] = ACTIONS(5119), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), - [anon_sym_BSLASHparagraph] = ACTIONS(5119), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), - [anon_sym_BSLASHitem] = ACTIONS(5119), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASHbegin] = ACTIONS(5119), - [anon_sym_BSLASHend] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_BSLASHpart] = ACTIONS(5198), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddpart] = ACTIONS(5198), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5196), + [anon_sym_BSLASHchapter] = ACTIONS(5198), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddchap] = ACTIONS(5198), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsection] = ACTIONS(5198), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHaddsec] = ACTIONS(5198), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5198), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5196), + [anon_sym_BSLASHparagraph] = ACTIONS(5198), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5198), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5196), + [anon_sym_BSLASHitem] = ACTIONS(5198), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASHbegin] = ACTIONS(5198), + [anon_sym_BSLASHend] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [1208] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHend] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_BSLASHpart] = ACTIONS(5112), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddpart] = ACTIONS(5112), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5110), + [anon_sym_BSLASHchapter] = ACTIONS(5112), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddchap] = ACTIONS(5112), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsection] = ACTIONS(5112), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHaddsec] = ACTIONS(5112), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5112), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5110), + [anon_sym_BSLASHparagraph] = ACTIONS(5112), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5112), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5110), + [anon_sym_BSLASHitem] = ACTIONS(5112), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASHbegin] = ACTIONS(5112), + [anon_sym_BSLASHend] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [1209] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHend] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_BSLASHpart] = ACTIONS(5116), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddpart] = ACTIONS(5116), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5114), + [anon_sym_BSLASHchapter] = ACTIONS(5116), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddchap] = ACTIONS(5116), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsection] = ACTIONS(5116), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHaddsec] = ACTIONS(5116), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5116), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5114), + [anon_sym_BSLASHparagraph] = ACTIONS(5116), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5116), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5114), + [anon_sym_BSLASHitem] = ACTIONS(5116), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASHbegin] = ACTIONS(5116), + [anon_sym_BSLASHend] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [1210] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHend] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_BSLASHpart] = ACTIONS(5120), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddpart] = ACTIONS(5120), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5118), + [anon_sym_BSLASHchapter] = ACTIONS(5120), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddchap] = ACTIONS(5120), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsection] = ACTIONS(5120), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHaddsec] = ACTIONS(5120), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5120), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5118), + [anon_sym_BSLASHparagraph] = ACTIONS(5120), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5120), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5118), + [anon_sym_BSLASHitem] = ACTIONS(5120), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASHbegin] = ACTIONS(5120), + [anon_sym_BSLASHend] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [1211] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_BSLASHpart] = ACTIONS(5124), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddpart] = ACTIONS(5124), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5122), + [anon_sym_BSLASHchapter] = ACTIONS(5124), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddchap] = ACTIONS(5124), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsection] = ACTIONS(5124), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHaddsec] = ACTIONS(5124), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5124), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5122), + [anon_sym_BSLASHparagraph] = ACTIONS(5124), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5124), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5122), + [anon_sym_BSLASHitem] = ACTIONS(5124), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASHbegin] = ACTIONS(5124), + [anon_sym_BSLASHend] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [1212] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_BSLASHpart] = ACTIONS(5132), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddpart] = ACTIONS(5132), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5130), + [anon_sym_BSLASHchapter] = ACTIONS(5132), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddchap] = ACTIONS(5132), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsection] = ACTIONS(5132), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHaddsec] = ACTIONS(5132), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5132), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5130), + [anon_sym_BSLASHparagraph] = ACTIONS(5132), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5132), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5130), + [anon_sym_BSLASHitem] = ACTIONS(5132), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASHbegin] = ACTIONS(5132), + [anon_sym_BSLASHend] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [1213] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_BSLASHpart] = ACTIONS(5136), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddpart] = ACTIONS(5136), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5134), + [anon_sym_BSLASHchapter] = ACTIONS(5136), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddchap] = ACTIONS(5136), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsection] = ACTIONS(5136), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHaddsec] = ACTIONS(5136), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5136), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5134), + [anon_sym_BSLASHparagraph] = ACTIONS(5136), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5136), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5134), + [anon_sym_BSLASHitem] = ACTIONS(5136), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASHbegin] = ACTIONS(5136), + [anon_sym_BSLASHend] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [1214] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_BSLASHpart] = ACTIONS(5288), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddpart] = ACTIONS(5288), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5286), + [anon_sym_BSLASHchapter] = ACTIONS(5288), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddchap] = ACTIONS(5288), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsection] = ACTIONS(5288), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHaddsec] = ACTIONS(5288), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5288), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5286), + [anon_sym_BSLASHparagraph] = ACTIONS(5288), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5288), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5286), + [anon_sym_BSLASHitem] = ACTIONS(5288), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASHbegin] = ACTIONS(5288), + [anon_sym_BSLASHend] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [1215] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [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(5315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddpart] = ACTIONS(5315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHchapter] = ACTIONS(5315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddchap] = ACTIONS(5315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsection] = ACTIONS(5315), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddsec] = ACTIONS(5315), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHparagraph] = ACTIONS(5315), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHitem] = ACTIONS(5315), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5317), - [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(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [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(5317), - [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(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [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(5317), - [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(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [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(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [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(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5315), - [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), + [sym_command_name] = ACTIONS(5394), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_EQ] = ACTIONS(5396), + [anon_sym_BSLASHpart] = ACTIONS(5394), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5396), + [anon_sym_BSLASHaddpart] = ACTIONS(5394), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5396), + [anon_sym_BSLASHchapter] = ACTIONS(5394), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5396), + [anon_sym_BSLASHaddchap] = ACTIONS(5394), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5396), + [anon_sym_BSLASHsection] = ACTIONS(5394), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5396), + [anon_sym_BSLASHaddsec] = ACTIONS(5394), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5396), + [anon_sym_BSLASHsubsection] = ACTIONS(5394), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5396), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5394), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5396), + [anon_sym_BSLASHparagraph] = ACTIONS(5394), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5396), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5394), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5396), + [anon_sym_BSLASHitem] = ACTIONS(5394), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [sym_word] = ACTIONS(5394), + [sym_placeholder] = ACTIONS(5396), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym__] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_BANG] = ACTIONS(5394), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_SQUOTE] = ACTIONS(5394), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5396), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5396), + [anon_sym_DOLLAR] = ACTIONS(5394), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5396), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5396), + [anon_sym_BSLASHbegin] = ACTIONS(5394), + [anon_sym_BSLASHend] = ACTIONS(5394), + [anon_sym_BSLASHusepackage] = ACTIONS(5394), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5394), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5394), + [anon_sym_BSLASHinclude] = ACTIONS(5394), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5394), + [anon_sym_BSLASHinput] = ACTIONS(5394), + [anon_sym_BSLASHsubfile] = ACTIONS(5394), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5394), + [anon_sym_BSLASHbibliography] = ACTIONS(5394), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5394), + [anon_sym_BSLASHincludesvg] = ACTIONS(5394), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5394), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5394), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5394), + [anon_sym_BSLASHimport] = ACTIONS(5394), + [anon_sym_BSLASHsubimport] = ACTIONS(5394), + [anon_sym_BSLASHinputfrom] = ACTIONS(5394), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5394), + [anon_sym_BSLASHincludefrom] = ACTIONS(5394), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5394), + [anon_sym_BSLASHcaption] = ACTIONS(5394), + [anon_sym_BSLASHcite] = ACTIONS(5394), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5396), + [anon_sym_BSLASHCite] = ACTIONS(5394), + [anon_sym_BSLASHnocite] = ACTIONS(5394), + [anon_sym_BSLASHcitet] = ACTIONS(5394), + [anon_sym_BSLASHcitep] = ACTIONS(5394), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5396), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5396), + [anon_sym_BSLASHciteauthor] = ACTIONS(5394), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5396), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5394), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5396), + [anon_sym_BSLASHcitetitle] = ACTIONS(5394), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5396), + [anon_sym_BSLASHciteyear] = ACTIONS(5394), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5396), + [anon_sym_BSLASHcitedate] = ACTIONS(5394), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5396), + [anon_sym_BSLASHciteurl] = ACTIONS(5394), + [anon_sym_BSLASHfullcite] = ACTIONS(5394), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5394), + [anon_sym_BSLASHcitealt] = ACTIONS(5394), + [anon_sym_BSLASHcitealp] = ACTIONS(5394), + [anon_sym_BSLASHcitetext] = ACTIONS(5394), + [anon_sym_BSLASHparencite] = ACTIONS(5394), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5396), + [anon_sym_BSLASHParencite] = ACTIONS(5394), + [anon_sym_BSLASHfootcite] = ACTIONS(5394), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5394), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5394), + [anon_sym_BSLASHtextcite] = ACTIONS(5394), + [anon_sym_BSLASHTextcite] = ACTIONS(5394), + [anon_sym_BSLASHsmartcite] = ACTIONS(5394), + [anon_sym_BSLASHSmartcite] = ACTIONS(5394), + [anon_sym_BSLASHsupercite] = ACTIONS(5394), + [anon_sym_BSLASHautocite] = ACTIONS(5394), + [anon_sym_BSLASHAutocite] = ACTIONS(5394), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5396), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5396), + [anon_sym_BSLASHvolcite] = ACTIONS(5394), + [anon_sym_BSLASHVolcite] = ACTIONS(5394), + [anon_sym_BSLASHpvolcite] = ACTIONS(5394), + [anon_sym_BSLASHPvolcite] = ACTIONS(5394), + [anon_sym_BSLASHfvolcite] = ACTIONS(5394), + [anon_sym_BSLASHftvolcite] = ACTIONS(5394), + [anon_sym_BSLASHsvolcite] = ACTIONS(5394), + [anon_sym_BSLASHSvolcite] = ACTIONS(5394), + [anon_sym_BSLASHtvolcite] = ACTIONS(5394), + [anon_sym_BSLASHTvolcite] = ACTIONS(5394), + [anon_sym_BSLASHavolcite] = ACTIONS(5394), + [anon_sym_BSLASHAvolcite] = ACTIONS(5394), + [anon_sym_BSLASHnotecite] = ACTIONS(5394), + [anon_sym_BSLASHNotecite] = ACTIONS(5394), + [anon_sym_BSLASHpnotecite] = ACTIONS(5394), + [anon_sym_BSLASHPnotecite] = ACTIONS(5394), + [anon_sym_BSLASHfnotecite] = ACTIONS(5394), + [anon_sym_BSLASHlabel] = ACTIONS(5394), + [anon_sym_BSLASHref] = ACTIONS(5394), + [anon_sym_BSLASHeqref] = ACTIONS(5394), + [anon_sym_BSLASHvref] = ACTIONS(5394), + [anon_sym_BSLASHVref] = ACTIONS(5394), + [anon_sym_BSLASHautoref] = ACTIONS(5394), + [anon_sym_BSLASHpageref] = ACTIONS(5394), + [anon_sym_BSLASHcref] = ACTIONS(5394), + [anon_sym_BSLASHCref] = ACTIONS(5394), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5396), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5396), + [anon_sym_BSLASHnamecref] = ACTIONS(5394), + [anon_sym_BSLASHnameCref] = ACTIONS(5394), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5394), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5394), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5394), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5394), + [anon_sym_BSLASHlabelcref] = ACTIONS(5394), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5394), + [anon_sym_BSLASHcrefrange] = ACTIONS(5394), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5396), + [anon_sym_BSLASHCrefrange] = ACTIONS(5394), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5396), + [anon_sym_BSLASHnewlabel] = ACTIONS(5394), + [anon_sym_BSLASHnewcommand] = ACTIONS(5394), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5396), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5394), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5396), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5394), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5396), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5394), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5396), + [anon_sym_BSLASHdef] = ACTIONS(5394), + [anon_sym_BSLASHlet] = ACTIONS(5394), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5394), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5394), + [anon_sym_BSLASHgls] = ACTIONS(5394), + [anon_sym_BSLASHGls] = ACTIONS(5394), + [anon_sym_BSLASHGLS] = ACTIONS(5394), + [anon_sym_BSLASHglspl] = ACTIONS(5394), + [anon_sym_BSLASHGlspl] = ACTIONS(5394), + [anon_sym_BSLASHGLSpl] = ACTIONS(5394), + [anon_sym_BSLASHglsdisp] = ACTIONS(5394), + [anon_sym_BSLASHglslink] = ACTIONS(5394), + [anon_sym_BSLASHglstext] = ACTIONS(5394), + [anon_sym_BSLASHGlstext] = ACTIONS(5394), + [anon_sym_BSLASHGLStext] = ACTIONS(5394), + [anon_sym_BSLASHglsfirst] = ACTIONS(5394), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5394), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5394), + [anon_sym_BSLASHglsplural] = ACTIONS(5394), + [anon_sym_BSLASHGlsplural] = ACTIONS(5394), + [anon_sym_BSLASHGLSplural] = ACTIONS(5394), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5394), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5394), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5394), + [anon_sym_BSLASHglsname] = ACTIONS(5394), + [anon_sym_BSLASHGlsname] = ACTIONS(5394), + [anon_sym_BSLASHGLSname] = ACTIONS(5394), + [anon_sym_BSLASHglssymbol] = ACTIONS(5394), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5394), + [anon_sym_BSLASHglsdesc] = ACTIONS(5394), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5394), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5394), + [anon_sym_BSLASHglsuseri] = ACTIONS(5394), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5394), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5394), + [anon_sym_BSLASHglsuserii] = ACTIONS(5394), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5394), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5394), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5394), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5394), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5394), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5394), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5394), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5394), + [anon_sym_BSLASHglsuserv] = ACTIONS(5394), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5394), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5394), + [anon_sym_BSLASHglsuservi] = ACTIONS(5394), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5394), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5394), + [anon_sym_BSLASHnewacronym] = ACTIONS(5394), + [anon_sym_BSLASHacrshort] = ACTIONS(5394), + [anon_sym_BSLASHAcrshort] = ACTIONS(5394), + [anon_sym_BSLASHACRshort] = ACTIONS(5394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5394), + [anon_sym_BSLASHacrlong] = ACTIONS(5394), + [anon_sym_BSLASHAcrlong] = ACTIONS(5394), + [anon_sym_BSLASHACRlong] = ACTIONS(5394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5394), + [anon_sym_BSLASHacrfull] = ACTIONS(5394), + [anon_sym_BSLASHAcrfull] = ACTIONS(5394), + [anon_sym_BSLASHACRfull] = ACTIONS(5394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5394), + [anon_sym_BSLASHacs] = ACTIONS(5394), + [anon_sym_BSLASHAcs] = ACTIONS(5394), + [anon_sym_BSLASHacsp] = ACTIONS(5394), + [anon_sym_BSLASHAcsp] = ACTIONS(5394), + [anon_sym_BSLASHacl] = ACTIONS(5394), + [anon_sym_BSLASHAcl] = ACTIONS(5394), + [anon_sym_BSLASHaclp] = ACTIONS(5394), + [anon_sym_BSLASHAclp] = ACTIONS(5394), + [anon_sym_BSLASHacf] = ACTIONS(5394), + [anon_sym_BSLASHAcf] = ACTIONS(5394), + [anon_sym_BSLASHacfp] = ACTIONS(5394), + [anon_sym_BSLASHAcfp] = ACTIONS(5394), + [anon_sym_BSLASHac] = ACTIONS(5394), + [anon_sym_BSLASHAc] = ACTIONS(5394), + [anon_sym_BSLASHacp] = ACTIONS(5394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5394), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5394), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5396), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5394), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5394), + [anon_sym_BSLASHcolor] = ACTIONS(5394), + [anon_sym_BSLASHcolorbox] = ACTIONS(5394), + [anon_sym_BSLASHtextcolor] = ACTIONS(5394), + [anon_sym_BSLASHpagecolor] = ACTIONS(5394), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5394), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5394), + [anon_sym_BSLASHtext] = ACTIONS(5394), + [anon_sym_BSLASHintertext] = ACTIONS(5394), + [anon_sym_shortintertext] = ACTIONS(5394), }, [1216] = { - [sym_command_name] = ACTIONS(4943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_BSLASHpart] = ACTIONS(4943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddpart] = ACTIONS(4943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHchapter] = ACTIONS(4943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddchap] = ACTIONS(4943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsection] = ACTIONS(4943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddsec] = ACTIONS(4943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHparagraph] = ACTIONS(4943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHitem] = ACTIONS(4943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4941), - [sym_word] = ACTIONS(4943), - [sym_placeholder] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4943), - [anon_sym__] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), - [anon_sym_BSLASHbegin] = ACTIONS(4943), - [anon_sym_BSLASHusepackage] = ACTIONS(4943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), - [anon_sym_BSLASHinclude] = ACTIONS(4943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), - [anon_sym_BSLASHinput] = ACTIONS(4943), - [anon_sym_BSLASHsubfile] = ACTIONS(4943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), - [anon_sym_BSLASHbibliography] = ACTIONS(4943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), - [anon_sym_BSLASHincludesvg] = ACTIONS(4943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), - [anon_sym_BSLASHimport] = ACTIONS(4943), - [anon_sym_BSLASHsubimport] = ACTIONS(4943), - [anon_sym_BSLASHinputfrom] = ACTIONS(4943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), - [anon_sym_BSLASHincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHcaption] = ACTIONS(4943), - [anon_sym_BSLASHcite] = ACTIONS(4943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCite] = ACTIONS(4943), - [anon_sym_BSLASHnocite] = ACTIONS(4943), - [anon_sym_BSLASHcitet] = ACTIONS(4943), - [anon_sym_BSLASHcitep] = ACTIONS(4943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteyear] = ACTIONS(4943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitedate] = ACTIONS(4943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteurl] = ACTIONS(4943), - [anon_sym_BSLASHfullcite] = ACTIONS(4943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), - [anon_sym_BSLASHcitealt] = ACTIONS(4943), - [anon_sym_BSLASHcitealp] = ACTIONS(4943), - [anon_sym_BSLASHcitetext] = ACTIONS(4943), - [anon_sym_BSLASHparencite] = ACTIONS(4943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHParencite] = ACTIONS(4943), - [anon_sym_BSLASHfootcite] = ACTIONS(4943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), - [anon_sym_BSLASHtextcite] = ACTIONS(4943), - [anon_sym_BSLASHTextcite] = ACTIONS(4943), - [anon_sym_BSLASHsmartcite] = ACTIONS(4943), - [anon_sym_BSLASHSmartcite] = ACTIONS(4943), - [anon_sym_BSLASHsupercite] = ACTIONS(4943), - [anon_sym_BSLASHautocite] = ACTIONS(4943), - [anon_sym_BSLASHAutocite] = ACTIONS(4943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHvolcite] = ACTIONS(4943), - [anon_sym_BSLASHVolcite] = ACTIONS(4943), - [anon_sym_BSLASHpvolcite] = ACTIONS(4943), - [anon_sym_BSLASHPvolcite] = ACTIONS(4943), - [anon_sym_BSLASHfvolcite] = ACTIONS(4943), - [anon_sym_BSLASHftvolcite] = ACTIONS(4943), - [anon_sym_BSLASHsvolcite] = ACTIONS(4943), - [anon_sym_BSLASHSvolcite] = ACTIONS(4943), - [anon_sym_BSLASHtvolcite] = ACTIONS(4943), - [anon_sym_BSLASHTvolcite] = ACTIONS(4943), - [anon_sym_BSLASHavolcite] = ACTIONS(4943), - [anon_sym_BSLASHAvolcite] = ACTIONS(4943), - [anon_sym_BSLASHnotecite] = ACTIONS(4943), - [anon_sym_BSLASHNotecite] = ACTIONS(4943), - [anon_sym_BSLASHpnotecite] = ACTIONS(4943), - [anon_sym_BSLASHPnotecite] = ACTIONS(4943), - [anon_sym_BSLASHfnotecite] = ACTIONS(4943), - [anon_sym_BSLASHlabel] = ACTIONS(4943), - [anon_sym_BSLASHref] = ACTIONS(4943), - [anon_sym_BSLASHeqref] = ACTIONS(4943), - [anon_sym_BSLASHvref] = ACTIONS(4943), - [anon_sym_BSLASHVref] = ACTIONS(4943), - [anon_sym_BSLASHautoref] = ACTIONS(4943), - [anon_sym_BSLASHpageref] = ACTIONS(4943), - [anon_sym_BSLASHcref] = ACTIONS(4943), - [anon_sym_BSLASHCref] = ACTIONS(4943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnameCref] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHlabelcref] = ACTIONS(4943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnewlabel] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), - [anon_sym_BSLASHdef] = ACTIONS(4943), - [anon_sym_BSLASHlet] = ACTIONS(4943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), - [anon_sym_BSLASHgls] = ACTIONS(4943), - [anon_sym_BSLASHGls] = ACTIONS(4943), - [anon_sym_BSLASHGLS] = ACTIONS(4943), - [anon_sym_BSLASHglspl] = ACTIONS(4943), - [anon_sym_BSLASHGlspl] = ACTIONS(4943), - [anon_sym_BSLASHGLSpl] = ACTIONS(4943), - [anon_sym_BSLASHglsdisp] = ACTIONS(4943), - [anon_sym_BSLASHglslink] = ACTIONS(4943), - [anon_sym_BSLASHglstext] = ACTIONS(4943), - [anon_sym_BSLASHGlstext] = ACTIONS(4943), - [anon_sym_BSLASHGLStext] = ACTIONS(4943), - [anon_sym_BSLASHglsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), - [anon_sym_BSLASHglsplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSplural] = ACTIONS(4943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHglsname] = ACTIONS(4943), - [anon_sym_BSLASHGlsname] = ACTIONS(4943), - [anon_sym_BSLASHGLSname] = ACTIONS(4943), - [anon_sym_BSLASHglssymbol] = ACTIONS(4943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), - [anon_sym_BSLASHglsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), - [anon_sym_BSLASHglsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), - [anon_sym_BSLASHglsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), - [anon_sym_BSLASHglsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), - [anon_sym_BSLASHglsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), - [anon_sym_BSLASHnewacronym] = ACTIONS(4943), - [anon_sym_BSLASHacrshort] = ACTIONS(4943), - [anon_sym_BSLASHAcrshort] = ACTIONS(4943), - [anon_sym_BSLASHACRshort] = ACTIONS(4943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), - [anon_sym_BSLASHacrlong] = ACTIONS(4943), - [anon_sym_BSLASHAcrlong] = ACTIONS(4943), - [anon_sym_BSLASHACRlong] = ACTIONS(4943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), - [anon_sym_BSLASHacrfull] = ACTIONS(4943), - [anon_sym_BSLASHAcrfull] = ACTIONS(4943), - [anon_sym_BSLASHACRfull] = ACTIONS(4943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), - [anon_sym_BSLASHacs] = ACTIONS(4943), - [anon_sym_BSLASHAcs] = ACTIONS(4943), - [anon_sym_BSLASHacsp] = ACTIONS(4943), - [anon_sym_BSLASHAcsp] = ACTIONS(4943), - [anon_sym_BSLASHacl] = ACTIONS(4943), - [anon_sym_BSLASHAcl] = ACTIONS(4943), - [anon_sym_BSLASHaclp] = ACTIONS(4943), - [anon_sym_BSLASHAclp] = ACTIONS(4943), - [anon_sym_BSLASHacf] = ACTIONS(4943), - [anon_sym_BSLASHAcf] = ACTIONS(4943), - [anon_sym_BSLASHacfp] = ACTIONS(4943), - [anon_sym_BSLASHAcfp] = ACTIONS(4943), - [anon_sym_BSLASHac] = ACTIONS(4943), - [anon_sym_BSLASHAc] = ACTIONS(4943), - [anon_sym_BSLASHacp] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), - [anon_sym_BSLASHcolor] = ACTIONS(4943), - [anon_sym_BSLASHcolorbox] = ACTIONS(4943), - [anon_sym_BSLASHtextcolor] = ACTIONS(4943), - [anon_sym_BSLASHpagecolor] = ACTIONS(4943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), - [anon_sym_BSLASHtext] = ACTIONS(4943), - [anon_sym_BSLASHintertext] = ACTIONS(4943), - [anon_sym_shortintertext] = ACTIONS(4943), + [sym_command_name] = ACTIONS(5022), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_BSLASHpart] = ACTIONS(5022), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddpart] = ACTIONS(5022), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHchapter] = ACTIONS(5022), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddchap] = ACTIONS(5022), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsection] = ACTIONS(5022), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddsec] = ACTIONS(5022), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHparagraph] = ACTIONS(5022), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5022), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHitem] = ACTIONS(5022), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [sym_word] = ACTIONS(5022), + [sym_placeholder] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5020), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5020), + [anon_sym_BSLASHbegin] = ACTIONS(5022), + [anon_sym_BSLASHusepackage] = ACTIONS(5022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5022), + [anon_sym_BSLASHinclude] = ACTIONS(5022), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5022), + [anon_sym_BSLASHinput] = ACTIONS(5022), + [anon_sym_BSLASHsubfile] = ACTIONS(5022), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5022), + [anon_sym_BSLASHbibliography] = ACTIONS(5022), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5022), + [anon_sym_BSLASHincludesvg] = ACTIONS(5022), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5022), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), + [anon_sym_BSLASHimport] = ACTIONS(5022), + [anon_sym_BSLASHsubimport] = ACTIONS(5022), + [anon_sym_BSLASHinputfrom] = ACTIONS(5022), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5022), + [anon_sym_BSLASHincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHcaption] = ACTIONS(5022), + [anon_sym_BSLASHcite] = ACTIONS(5022), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCite] = ACTIONS(5022), + [anon_sym_BSLASHnocite] = ACTIONS(5022), + [anon_sym_BSLASHcitet] = ACTIONS(5022), + [anon_sym_BSLASHcitep] = ACTIONS(5022), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteauthor] = ACTIONS(5022), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5022), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitetitle] = ACTIONS(5022), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteyear] = ACTIONS(5022), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitedate] = ACTIONS(5022), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteurl] = ACTIONS(5022), + [anon_sym_BSLASHfullcite] = ACTIONS(5022), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5022), + [anon_sym_BSLASHcitealt] = ACTIONS(5022), + [anon_sym_BSLASHcitealp] = ACTIONS(5022), + [anon_sym_BSLASHcitetext] = ACTIONS(5022), + [anon_sym_BSLASHparencite] = ACTIONS(5022), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHParencite] = ACTIONS(5022), + [anon_sym_BSLASHfootcite] = ACTIONS(5022), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5022), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5022), + [anon_sym_BSLASHtextcite] = ACTIONS(5022), + [anon_sym_BSLASHTextcite] = ACTIONS(5022), + [anon_sym_BSLASHsmartcite] = ACTIONS(5022), + [anon_sym_BSLASHSmartcite] = ACTIONS(5022), + [anon_sym_BSLASHsupercite] = ACTIONS(5022), + [anon_sym_BSLASHautocite] = ACTIONS(5022), + [anon_sym_BSLASHAutocite] = ACTIONS(5022), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHvolcite] = ACTIONS(5022), + [anon_sym_BSLASHVolcite] = ACTIONS(5022), + [anon_sym_BSLASHpvolcite] = ACTIONS(5022), + [anon_sym_BSLASHPvolcite] = ACTIONS(5022), + [anon_sym_BSLASHfvolcite] = ACTIONS(5022), + [anon_sym_BSLASHftvolcite] = ACTIONS(5022), + [anon_sym_BSLASHsvolcite] = ACTIONS(5022), + [anon_sym_BSLASHSvolcite] = ACTIONS(5022), + [anon_sym_BSLASHtvolcite] = ACTIONS(5022), + [anon_sym_BSLASHTvolcite] = ACTIONS(5022), + [anon_sym_BSLASHavolcite] = ACTIONS(5022), + [anon_sym_BSLASHAvolcite] = ACTIONS(5022), + [anon_sym_BSLASHnotecite] = ACTIONS(5022), + [anon_sym_BSLASHNotecite] = ACTIONS(5022), + [anon_sym_BSLASHpnotecite] = ACTIONS(5022), + [anon_sym_BSLASHPnotecite] = ACTIONS(5022), + [anon_sym_BSLASHfnotecite] = ACTIONS(5022), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [anon_sym_BSLASHref] = ACTIONS(5022), + [anon_sym_BSLASHeqref] = ACTIONS(5022), + [anon_sym_BSLASHvref] = ACTIONS(5022), + [anon_sym_BSLASHVref] = ACTIONS(5022), + [anon_sym_BSLASHautoref] = ACTIONS(5022), + [anon_sym_BSLASHpageref] = ACTIONS(5022), + [anon_sym_BSLASHcref] = ACTIONS(5022), + [anon_sym_BSLASHCref] = ACTIONS(5022), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnameCref] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHlabelcref] = ACTIONS(5022), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCrefrange] = ACTIONS(5022), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnewlabel] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5022), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5022), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5022), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdef] = ACTIONS(5022), + [anon_sym_BSLASHlet] = ACTIONS(5022), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5022), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5022), + [anon_sym_BSLASHgls] = ACTIONS(5022), + [anon_sym_BSLASHGls] = ACTIONS(5022), + [anon_sym_BSLASHGLS] = ACTIONS(5022), + [anon_sym_BSLASHglspl] = ACTIONS(5022), + [anon_sym_BSLASHGlspl] = ACTIONS(5022), + [anon_sym_BSLASHGLSpl] = ACTIONS(5022), + [anon_sym_BSLASHglsdisp] = ACTIONS(5022), + [anon_sym_BSLASHglslink] = ACTIONS(5022), + [anon_sym_BSLASHglstext] = ACTIONS(5022), + [anon_sym_BSLASHGlstext] = ACTIONS(5022), + [anon_sym_BSLASHGLStext] = ACTIONS(5022), + [anon_sym_BSLASHglsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5022), + [anon_sym_BSLASHglsplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSplural] = ACTIONS(5022), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHglsname] = ACTIONS(5022), + [anon_sym_BSLASHGlsname] = ACTIONS(5022), + [anon_sym_BSLASHGLSname] = ACTIONS(5022), + [anon_sym_BSLASHglssymbol] = ACTIONS(5022), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5022), + [anon_sym_BSLASHglsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5022), + [anon_sym_BSLASHglsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5022), + [anon_sym_BSLASHglsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5022), + [anon_sym_BSLASHglsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5022), + [anon_sym_BSLASHglsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5022), + [anon_sym_BSLASHnewacronym] = ACTIONS(5022), + [anon_sym_BSLASHacrshort] = ACTIONS(5022), + [anon_sym_BSLASHAcrshort] = ACTIONS(5022), + [anon_sym_BSLASHACRshort] = ACTIONS(5022), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5022), + [anon_sym_BSLASHacrlong] = ACTIONS(5022), + [anon_sym_BSLASHAcrlong] = ACTIONS(5022), + [anon_sym_BSLASHACRlong] = ACTIONS(5022), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5022), + [anon_sym_BSLASHacrfull] = ACTIONS(5022), + [anon_sym_BSLASHAcrfull] = ACTIONS(5022), + [anon_sym_BSLASHACRfull] = ACTIONS(5022), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5022), + [anon_sym_BSLASHacs] = ACTIONS(5022), + [anon_sym_BSLASHAcs] = ACTIONS(5022), + [anon_sym_BSLASHacsp] = ACTIONS(5022), + [anon_sym_BSLASHAcsp] = ACTIONS(5022), + [anon_sym_BSLASHacl] = ACTIONS(5022), + [anon_sym_BSLASHAcl] = ACTIONS(5022), + [anon_sym_BSLASHaclp] = ACTIONS(5022), + [anon_sym_BSLASHAclp] = ACTIONS(5022), + [anon_sym_BSLASHacf] = ACTIONS(5022), + [anon_sym_BSLASHAcf] = ACTIONS(5022), + [anon_sym_BSLASHacfp] = ACTIONS(5022), + [anon_sym_BSLASHAcfp] = ACTIONS(5022), + [anon_sym_BSLASHac] = ACTIONS(5022), + [anon_sym_BSLASHAc] = ACTIONS(5022), + [anon_sym_BSLASHacp] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5022), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5022), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5022), + [anon_sym_BSLASHcolor] = ACTIONS(5022), + [anon_sym_BSLASHcolorbox] = ACTIONS(5022), + [anon_sym_BSLASHtextcolor] = ACTIONS(5022), + [anon_sym_BSLASHpagecolor] = ACTIONS(5022), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5022), + [anon_sym_BSLASHtext] = ACTIONS(5022), + [anon_sym_BSLASHintertext] = ACTIONS(5022), + [anon_sym_shortintertext] = ACTIONS(5022), }, [1217] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5213), - [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), + [sym_command_name] = ACTIONS(5292), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_BSLASHpart] = ACTIONS(5292), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddpart] = ACTIONS(5292), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5290), + [anon_sym_BSLASHchapter] = ACTIONS(5292), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddchap] = ACTIONS(5292), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsection] = ACTIONS(5292), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHaddsec] = ACTIONS(5292), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5292), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5290), + [anon_sym_BSLASHparagraph] = ACTIONS(5292), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5292), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5290), + [anon_sym_BSLASHitem] = ACTIONS(5292), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [sym_word] = ACTIONS(5292), + [sym_placeholder] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_SQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5290), + [anon_sym_BSLASHbegin] = ACTIONS(5292), + [anon_sym_BSLASHend] = ACTIONS(5292), + [anon_sym_BSLASHusepackage] = ACTIONS(5292), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5292), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5292), + [anon_sym_BSLASHinclude] = ACTIONS(5292), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5292), + [anon_sym_BSLASHinput] = ACTIONS(5292), + [anon_sym_BSLASHsubfile] = ACTIONS(5292), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5292), + [anon_sym_BSLASHbibliography] = ACTIONS(5292), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5292), + [anon_sym_BSLASHincludesvg] = ACTIONS(5292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5292), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5292), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5292), + [anon_sym_BSLASHimport] = ACTIONS(5292), + [anon_sym_BSLASHsubimport] = ACTIONS(5292), + [anon_sym_BSLASHinputfrom] = ACTIONS(5292), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5292), + [anon_sym_BSLASHincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHcaption] = ACTIONS(5292), + [anon_sym_BSLASHcite] = ACTIONS(5292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCite] = ACTIONS(5292), + [anon_sym_BSLASHnocite] = ACTIONS(5292), + [anon_sym_BSLASHcitet] = ACTIONS(5292), + [anon_sym_BSLASHcitep] = ACTIONS(5292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteauthor] = ACTIONS(5292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitetitle] = ACTIONS(5292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteyear] = ACTIONS(5292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitedate] = ACTIONS(5292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteurl] = ACTIONS(5292), + [anon_sym_BSLASHfullcite] = ACTIONS(5292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5292), + [anon_sym_BSLASHcitealt] = ACTIONS(5292), + [anon_sym_BSLASHcitealp] = ACTIONS(5292), + [anon_sym_BSLASHcitetext] = ACTIONS(5292), + [anon_sym_BSLASHparencite] = ACTIONS(5292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHParencite] = ACTIONS(5292), + [anon_sym_BSLASHfootcite] = ACTIONS(5292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5292), + [anon_sym_BSLASHtextcite] = ACTIONS(5292), + [anon_sym_BSLASHTextcite] = ACTIONS(5292), + [anon_sym_BSLASHsmartcite] = ACTIONS(5292), + [anon_sym_BSLASHSmartcite] = ACTIONS(5292), + [anon_sym_BSLASHsupercite] = ACTIONS(5292), + [anon_sym_BSLASHautocite] = ACTIONS(5292), + [anon_sym_BSLASHAutocite] = ACTIONS(5292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHvolcite] = ACTIONS(5292), + [anon_sym_BSLASHVolcite] = ACTIONS(5292), + [anon_sym_BSLASHpvolcite] = ACTIONS(5292), + [anon_sym_BSLASHPvolcite] = ACTIONS(5292), + [anon_sym_BSLASHfvolcite] = ACTIONS(5292), + [anon_sym_BSLASHftvolcite] = ACTIONS(5292), + [anon_sym_BSLASHsvolcite] = ACTIONS(5292), + [anon_sym_BSLASHSvolcite] = ACTIONS(5292), + [anon_sym_BSLASHtvolcite] = ACTIONS(5292), + [anon_sym_BSLASHTvolcite] = ACTIONS(5292), + [anon_sym_BSLASHavolcite] = ACTIONS(5292), + [anon_sym_BSLASHAvolcite] = ACTIONS(5292), + [anon_sym_BSLASHnotecite] = ACTIONS(5292), + [anon_sym_BSLASHNotecite] = ACTIONS(5292), + [anon_sym_BSLASHpnotecite] = ACTIONS(5292), + [anon_sym_BSLASHPnotecite] = ACTIONS(5292), + [anon_sym_BSLASHfnotecite] = ACTIONS(5292), + [anon_sym_BSLASHlabel] = ACTIONS(5292), + [anon_sym_BSLASHref] = ACTIONS(5292), + [anon_sym_BSLASHeqref] = ACTIONS(5292), + [anon_sym_BSLASHvref] = ACTIONS(5292), + [anon_sym_BSLASHVref] = ACTIONS(5292), + [anon_sym_BSLASHautoref] = ACTIONS(5292), + [anon_sym_BSLASHpageref] = ACTIONS(5292), + [anon_sym_BSLASHcref] = ACTIONS(5292), + [anon_sym_BSLASHCref] = ACTIONS(5292), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnameCref] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHlabelcref] = ACTIONS(5292), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCrefrange] = ACTIONS(5292), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnewlabel] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5292), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5292), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5292), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdef] = ACTIONS(5292), + [anon_sym_BSLASHlet] = ACTIONS(5292), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5292), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5292), + [anon_sym_BSLASHgls] = ACTIONS(5292), + [anon_sym_BSLASHGls] = ACTIONS(5292), + [anon_sym_BSLASHGLS] = ACTIONS(5292), + [anon_sym_BSLASHglspl] = ACTIONS(5292), + [anon_sym_BSLASHGlspl] = ACTIONS(5292), + [anon_sym_BSLASHGLSpl] = ACTIONS(5292), + [anon_sym_BSLASHglsdisp] = ACTIONS(5292), + [anon_sym_BSLASHglslink] = ACTIONS(5292), + [anon_sym_BSLASHglstext] = ACTIONS(5292), + [anon_sym_BSLASHGlstext] = ACTIONS(5292), + [anon_sym_BSLASHGLStext] = ACTIONS(5292), + [anon_sym_BSLASHglsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5292), + [anon_sym_BSLASHglsplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSplural] = ACTIONS(5292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHglsname] = ACTIONS(5292), + [anon_sym_BSLASHGlsname] = ACTIONS(5292), + [anon_sym_BSLASHGLSname] = ACTIONS(5292), + [anon_sym_BSLASHglssymbol] = ACTIONS(5292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5292), + [anon_sym_BSLASHglsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5292), + [anon_sym_BSLASHglsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5292), + [anon_sym_BSLASHglsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5292), + [anon_sym_BSLASHglsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5292), + [anon_sym_BSLASHglsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5292), + [anon_sym_BSLASHnewacronym] = ACTIONS(5292), + [anon_sym_BSLASHacrshort] = ACTIONS(5292), + [anon_sym_BSLASHAcrshort] = ACTIONS(5292), + [anon_sym_BSLASHACRshort] = ACTIONS(5292), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5292), + [anon_sym_BSLASHacrlong] = ACTIONS(5292), + [anon_sym_BSLASHAcrlong] = ACTIONS(5292), + [anon_sym_BSLASHACRlong] = ACTIONS(5292), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5292), + [anon_sym_BSLASHacrfull] = ACTIONS(5292), + [anon_sym_BSLASHAcrfull] = ACTIONS(5292), + [anon_sym_BSLASHACRfull] = ACTIONS(5292), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5292), + [anon_sym_BSLASHacs] = ACTIONS(5292), + [anon_sym_BSLASHAcs] = ACTIONS(5292), + [anon_sym_BSLASHacsp] = ACTIONS(5292), + [anon_sym_BSLASHAcsp] = ACTIONS(5292), + [anon_sym_BSLASHacl] = ACTIONS(5292), + [anon_sym_BSLASHAcl] = ACTIONS(5292), + [anon_sym_BSLASHaclp] = ACTIONS(5292), + [anon_sym_BSLASHAclp] = ACTIONS(5292), + [anon_sym_BSLASHacf] = ACTIONS(5292), + [anon_sym_BSLASHAcf] = ACTIONS(5292), + [anon_sym_BSLASHacfp] = ACTIONS(5292), + [anon_sym_BSLASHAcfp] = ACTIONS(5292), + [anon_sym_BSLASHac] = ACTIONS(5292), + [anon_sym_BSLASHAc] = ACTIONS(5292), + [anon_sym_BSLASHacp] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5292), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5292), + [anon_sym_BSLASHcolorbox] = ACTIONS(5292), + [anon_sym_BSLASHtextcolor] = ACTIONS(5292), + [anon_sym_BSLASHpagecolor] = ACTIONS(5292), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5292), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5292), + [anon_sym_BSLASHtext] = ACTIONS(5292), + [anon_sym_BSLASHintertext] = ACTIONS(5292), + [anon_sym_shortintertext] = ACTIONS(5292), }, [1218] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5217), - [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), + [sym_command_name] = ACTIONS(5296), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5294), + [anon_sym_BSLASHpart] = ACTIONS(5296), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddpart] = ACTIONS(5296), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5294), + [anon_sym_BSLASHchapter] = ACTIONS(5296), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddchap] = ACTIONS(5296), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsection] = ACTIONS(5296), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHaddsec] = ACTIONS(5296), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5296), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5294), + [anon_sym_BSLASHparagraph] = ACTIONS(5296), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5296), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5294), + [anon_sym_BSLASHitem] = ACTIONS(5296), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [sym_word] = ACTIONS(5296), + [sym_placeholder] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_SQUOTE] = ACTIONS(5296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5294), + [anon_sym_BSLASHbegin] = ACTIONS(5296), + [anon_sym_BSLASHend] = ACTIONS(5296), + [anon_sym_BSLASHusepackage] = ACTIONS(5296), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5296), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5296), + [anon_sym_BSLASHinclude] = ACTIONS(5296), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5296), + [anon_sym_BSLASHinput] = ACTIONS(5296), + [anon_sym_BSLASHsubfile] = ACTIONS(5296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5296), + [anon_sym_BSLASHbibliography] = ACTIONS(5296), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5296), + [anon_sym_BSLASHincludesvg] = ACTIONS(5296), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5296), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5296), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5296), + [anon_sym_BSLASHimport] = ACTIONS(5296), + [anon_sym_BSLASHsubimport] = ACTIONS(5296), + [anon_sym_BSLASHinputfrom] = ACTIONS(5296), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5296), + [anon_sym_BSLASHincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHcaption] = ACTIONS(5296), + [anon_sym_BSLASHcite] = ACTIONS(5296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCite] = ACTIONS(5296), + [anon_sym_BSLASHnocite] = ACTIONS(5296), + [anon_sym_BSLASHcitet] = ACTIONS(5296), + [anon_sym_BSLASHcitep] = ACTIONS(5296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteauthor] = ACTIONS(5296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitetitle] = ACTIONS(5296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteyear] = ACTIONS(5296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitedate] = ACTIONS(5296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteurl] = ACTIONS(5296), + [anon_sym_BSLASHfullcite] = ACTIONS(5296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5296), + [anon_sym_BSLASHcitealt] = ACTIONS(5296), + [anon_sym_BSLASHcitealp] = ACTIONS(5296), + [anon_sym_BSLASHcitetext] = ACTIONS(5296), + [anon_sym_BSLASHparencite] = ACTIONS(5296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHParencite] = ACTIONS(5296), + [anon_sym_BSLASHfootcite] = ACTIONS(5296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5296), + [anon_sym_BSLASHtextcite] = ACTIONS(5296), + [anon_sym_BSLASHTextcite] = ACTIONS(5296), + [anon_sym_BSLASHsmartcite] = ACTIONS(5296), + [anon_sym_BSLASHSmartcite] = ACTIONS(5296), + [anon_sym_BSLASHsupercite] = ACTIONS(5296), + [anon_sym_BSLASHautocite] = ACTIONS(5296), + [anon_sym_BSLASHAutocite] = ACTIONS(5296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHvolcite] = ACTIONS(5296), + [anon_sym_BSLASHVolcite] = ACTIONS(5296), + [anon_sym_BSLASHpvolcite] = ACTIONS(5296), + [anon_sym_BSLASHPvolcite] = ACTIONS(5296), + [anon_sym_BSLASHfvolcite] = ACTIONS(5296), + [anon_sym_BSLASHftvolcite] = ACTIONS(5296), + [anon_sym_BSLASHsvolcite] = ACTIONS(5296), + [anon_sym_BSLASHSvolcite] = ACTIONS(5296), + [anon_sym_BSLASHtvolcite] = ACTIONS(5296), + [anon_sym_BSLASHTvolcite] = ACTIONS(5296), + [anon_sym_BSLASHavolcite] = ACTIONS(5296), + [anon_sym_BSLASHAvolcite] = ACTIONS(5296), + [anon_sym_BSLASHnotecite] = ACTIONS(5296), + [anon_sym_BSLASHNotecite] = ACTIONS(5296), + [anon_sym_BSLASHpnotecite] = ACTIONS(5296), + [anon_sym_BSLASHPnotecite] = ACTIONS(5296), + [anon_sym_BSLASHfnotecite] = ACTIONS(5296), + [anon_sym_BSLASHlabel] = ACTIONS(5296), + [anon_sym_BSLASHref] = ACTIONS(5296), + [anon_sym_BSLASHeqref] = ACTIONS(5296), + [anon_sym_BSLASHvref] = ACTIONS(5296), + [anon_sym_BSLASHVref] = ACTIONS(5296), + [anon_sym_BSLASHautoref] = ACTIONS(5296), + [anon_sym_BSLASHpageref] = ACTIONS(5296), + [anon_sym_BSLASHcref] = ACTIONS(5296), + [anon_sym_BSLASHCref] = ACTIONS(5296), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnameCref] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHlabelcref] = ACTIONS(5296), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCrefrange] = ACTIONS(5296), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnewlabel] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5296), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5296), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5296), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdef] = ACTIONS(5296), + [anon_sym_BSLASHlet] = ACTIONS(5296), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5296), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5296), + [anon_sym_BSLASHgls] = ACTIONS(5296), + [anon_sym_BSLASHGls] = ACTIONS(5296), + [anon_sym_BSLASHGLS] = ACTIONS(5296), + [anon_sym_BSLASHglspl] = ACTIONS(5296), + [anon_sym_BSLASHGlspl] = ACTIONS(5296), + [anon_sym_BSLASHGLSpl] = ACTIONS(5296), + [anon_sym_BSLASHglsdisp] = ACTIONS(5296), + [anon_sym_BSLASHglslink] = ACTIONS(5296), + [anon_sym_BSLASHglstext] = ACTIONS(5296), + [anon_sym_BSLASHGlstext] = ACTIONS(5296), + [anon_sym_BSLASHGLStext] = ACTIONS(5296), + [anon_sym_BSLASHglsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5296), + [anon_sym_BSLASHglsplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSplural] = ACTIONS(5296), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHglsname] = ACTIONS(5296), + [anon_sym_BSLASHGlsname] = ACTIONS(5296), + [anon_sym_BSLASHGLSname] = ACTIONS(5296), + [anon_sym_BSLASHglssymbol] = ACTIONS(5296), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5296), + [anon_sym_BSLASHglsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5296), + [anon_sym_BSLASHglsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5296), + [anon_sym_BSLASHglsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5296), + [anon_sym_BSLASHglsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5296), + [anon_sym_BSLASHglsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5296), + [anon_sym_BSLASHnewacronym] = ACTIONS(5296), + [anon_sym_BSLASHacrshort] = ACTIONS(5296), + [anon_sym_BSLASHAcrshort] = ACTIONS(5296), + [anon_sym_BSLASHACRshort] = ACTIONS(5296), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5296), + [anon_sym_BSLASHacrlong] = ACTIONS(5296), + [anon_sym_BSLASHAcrlong] = ACTIONS(5296), + [anon_sym_BSLASHACRlong] = ACTIONS(5296), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5296), + [anon_sym_BSLASHacrfull] = ACTIONS(5296), + [anon_sym_BSLASHAcrfull] = ACTIONS(5296), + [anon_sym_BSLASHACRfull] = ACTIONS(5296), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5296), + [anon_sym_BSLASHacs] = ACTIONS(5296), + [anon_sym_BSLASHAcs] = ACTIONS(5296), + [anon_sym_BSLASHacsp] = ACTIONS(5296), + [anon_sym_BSLASHAcsp] = ACTIONS(5296), + [anon_sym_BSLASHacl] = ACTIONS(5296), + [anon_sym_BSLASHAcl] = ACTIONS(5296), + [anon_sym_BSLASHaclp] = ACTIONS(5296), + [anon_sym_BSLASHAclp] = ACTIONS(5296), + [anon_sym_BSLASHacf] = ACTIONS(5296), + [anon_sym_BSLASHAcf] = ACTIONS(5296), + [anon_sym_BSLASHacfp] = ACTIONS(5296), + [anon_sym_BSLASHAcfp] = ACTIONS(5296), + [anon_sym_BSLASHac] = ACTIONS(5296), + [anon_sym_BSLASHAc] = ACTIONS(5296), + [anon_sym_BSLASHacp] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5296), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5296), + [anon_sym_BSLASHcolor] = ACTIONS(5296), + [anon_sym_BSLASHcolorbox] = ACTIONS(5296), + [anon_sym_BSLASHtextcolor] = ACTIONS(5296), + [anon_sym_BSLASHpagecolor] = ACTIONS(5296), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5296), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5296), + [anon_sym_BSLASHtext] = ACTIONS(5296), + [anon_sym_BSLASHintertext] = ACTIONS(5296), + [anon_sym_shortintertext] = ACTIONS(5296), }, [1219] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5225), - [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), + [sym_command_name] = ACTIONS(5304), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_COMMA] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5302), + [anon_sym_BSLASHpart] = ACTIONS(5304), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddpart] = ACTIONS(5304), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5302), + [anon_sym_BSLASHchapter] = ACTIONS(5304), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddchap] = ACTIONS(5304), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsection] = ACTIONS(5304), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHaddsec] = ACTIONS(5304), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5304), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5302), + [anon_sym_BSLASHparagraph] = ACTIONS(5304), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5304), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5302), + [anon_sym_BSLASHitem] = ACTIONS(5304), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5302), + [sym_word] = ACTIONS(5304), + [sym_placeholder] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_SLASH] = ACTIONS(5304), + [anon_sym_CARET] = ACTIONS(5304), + [anon_sym__] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_BANG] = ACTIONS(5304), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_SQUOTE] = ACTIONS(5304), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5302), + [anon_sym_BSLASHbegin] = ACTIONS(5304), + [anon_sym_BSLASHend] = ACTIONS(5304), + [anon_sym_BSLASHusepackage] = ACTIONS(5304), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5304), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5304), + [anon_sym_BSLASHinclude] = ACTIONS(5304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5304), + [anon_sym_BSLASHinput] = ACTIONS(5304), + [anon_sym_BSLASHsubfile] = ACTIONS(5304), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5304), + [anon_sym_BSLASHbibliography] = ACTIONS(5304), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5304), + [anon_sym_BSLASHincludesvg] = ACTIONS(5304), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5304), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5304), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5304), + [anon_sym_BSLASHimport] = ACTIONS(5304), + [anon_sym_BSLASHsubimport] = ACTIONS(5304), + [anon_sym_BSLASHinputfrom] = ACTIONS(5304), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5304), + [anon_sym_BSLASHincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHcaption] = ACTIONS(5304), + [anon_sym_BSLASHcite] = ACTIONS(5304), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCite] = ACTIONS(5304), + [anon_sym_BSLASHnocite] = ACTIONS(5304), + [anon_sym_BSLASHcitet] = ACTIONS(5304), + [anon_sym_BSLASHcitep] = ACTIONS(5304), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteauthor] = ACTIONS(5304), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5304), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitetitle] = ACTIONS(5304), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteyear] = ACTIONS(5304), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitedate] = ACTIONS(5304), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteurl] = ACTIONS(5304), + [anon_sym_BSLASHfullcite] = ACTIONS(5304), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5304), + [anon_sym_BSLASHcitealt] = ACTIONS(5304), + [anon_sym_BSLASHcitealp] = ACTIONS(5304), + [anon_sym_BSLASHcitetext] = ACTIONS(5304), + [anon_sym_BSLASHparencite] = ACTIONS(5304), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHParencite] = ACTIONS(5304), + [anon_sym_BSLASHfootcite] = ACTIONS(5304), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5304), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5304), + [anon_sym_BSLASHtextcite] = ACTIONS(5304), + [anon_sym_BSLASHTextcite] = ACTIONS(5304), + [anon_sym_BSLASHsmartcite] = ACTIONS(5304), + [anon_sym_BSLASHSmartcite] = ACTIONS(5304), + [anon_sym_BSLASHsupercite] = ACTIONS(5304), + [anon_sym_BSLASHautocite] = ACTIONS(5304), + [anon_sym_BSLASHAutocite] = ACTIONS(5304), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHvolcite] = ACTIONS(5304), + [anon_sym_BSLASHVolcite] = ACTIONS(5304), + [anon_sym_BSLASHpvolcite] = ACTIONS(5304), + [anon_sym_BSLASHPvolcite] = ACTIONS(5304), + [anon_sym_BSLASHfvolcite] = ACTIONS(5304), + [anon_sym_BSLASHftvolcite] = ACTIONS(5304), + [anon_sym_BSLASHsvolcite] = ACTIONS(5304), + [anon_sym_BSLASHSvolcite] = ACTIONS(5304), + [anon_sym_BSLASHtvolcite] = ACTIONS(5304), + [anon_sym_BSLASHTvolcite] = ACTIONS(5304), + [anon_sym_BSLASHavolcite] = ACTIONS(5304), + [anon_sym_BSLASHAvolcite] = ACTIONS(5304), + [anon_sym_BSLASHnotecite] = ACTIONS(5304), + [anon_sym_BSLASHNotecite] = ACTIONS(5304), + [anon_sym_BSLASHpnotecite] = ACTIONS(5304), + [anon_sym_BSLASHPnotecite] = ACTIONS(5304), + [anon_sym_BSLASHfnotecite] = ACTIONS(5304), + [anon_sym_BSLASHlabel] = ACTIONS(5304), + [anon_sym_BSLASHref] = ACTIONS(5304), + [anon_sym_BSLASHeqref] = ACTIONS(5304), + [anon_sym_BSLASHvref] = ACTIONS(5304), + [anon_sym_BSLASHVref] = ACTIONS(5304), + [anon_sym_BSLASHautoref] = ACTIONS(5304), + [anon_sym_BSLASHpageref] = ACTIONS(5304), + [anon_sym_BSLASHcref] = ACTIONS(5304), + [anon_sym_BSLASHCref] = ACTIONS(5304), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnameCref] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHlabelcref] = ACTIONS(5304), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCrefrange] = ACTIONS(5304), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnewlabel] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5304), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5304), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5304), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdef] = ACTIONS(5304), + [anon_sym_BSLASHlet] = ACTIONS(5304), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5304), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5304), + [anon_sym_BSLASHgls] = ACTIONS(5304), + [anon_sym_BSLASHGls] = ACTIONS(5304), + [anon_sym_BSLASHGLS] = ACTIONS(5304), + [anon_sym_BSLASHglspl] = ACTIONS(5304), + [anon_sym_BSLASHGlspl] = ACTIONS(5304), + [anon_sym_BSLASHGLSpl] = ACTIONS(5304), + [anon_sym_BSLASHglsdisp] = ACTIONS(5304), + [anon_sym_BSLASHglslink] = ACTIONS(5304), + [anon_sym_BSLASHglstext] = ACTIONS(5304), + [anon_sym_BSLASHGlstext] = ACTIONS(5304), + [anon_sym_BSLASHGLStext] = ACTIONS(5304), + [anon_sym_BSLASHglsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5304), + [anon_sym_BSLASHglsplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSplural] = ACTIONS(5304), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHglsname] = ACTIONS(5304), + [anon_sym_BSLASHGlsname] = ACTIONS(5304), + [anon_sym_BSLASHGLSname] = ACTIONS(5304), + [anon_sym_BSLASHglssymbol] = ACTIONS(5304), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5304), + [anon_sym_BSLASHglsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5304), + [anon_sym_BSLASHglsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5304), + [anon_sym_BSLASHglsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5304), + [anon_sym_BSLASHglsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5304), + [anon_sym_BSLASHglsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5304), + [anon_sym_BSLASHnewacronym] = ACTIONS(5304), + [anon_sym_BSLASHacrshort] = ACTIONS(5304), + [anon_sym_BSLASHAcrshort] = ACTIONS(5304), + [anon_sym_BSLASHACRshort] = ACTIONS(5304), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5304), + [anon_sym_BSLASHacrlong] = ACTIONS(5304), + [anon_sym_BSLASHAcrlong] = ACTIONS(5304), + [anon_sym_BSLASHACRlong] = ACTIONS(5304), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5304), + [anon_sym_BSLASHacrfull] = ACTIONS(5304), + [anon_sym_BSLASHAcrfull] = ACTIONS(5304), + [anon_sym_BSLASHACRfull] = ACTIONS(5304), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5304), + [anon_sym_BSLASHacs] = ACTIONS(5304), + [anon_sym_BSLASHAcs] = ACTIONS(5304), + [anon_sym_BSLASHacsp] = ACTIONS(5304), + [anon_sym_BSLASHAcsp] = ACTIONS(5304), + [anon_sym_BSLASHacl] = ACTIONS(5304), + [anon_sym_BSLASHAcl] = ACTIONS(5304), + [anon_sym_BSLASHaclp] = ACTIONS(5304), + [anon_sym_BSLASHAclp] = ACTIONS(5304), + [anon_sym_BSLASHacf] = ACTIONS(5304), + [anon_sym_BSLASHAcf] = ACTIONS(5304), + [anon_sym_BSLASHacfp] = ACTIONS(5304), + [anon_sym_BSLASHAcfp] = ACTIONS(5304), + [anon_sym_BSLASHac] = ACTIONS(5304), + [anon_sym_BSLASHAc] = ACTIONS(5304), + [anon_sym_BSLASHacp] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5304), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5304), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5304), + [anon_sym_BSLASHcolor] = ACTIONS(5304), + [anon_sym_BSLASHcolorbox] = ACTIONS(5304), + [anon_sym_BSLASHtextcolor] = ACTIONS(5304), + [anon_sym_BSLASHpagecolor] = ACTIONS(5304), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5304), + [anon_sym_BSLASHtext] = ACTIONS(5304), + [anon_sym_BSLASHintertext] = ACTIONS(5304), + [anon_sym_shortintertext] = ACTIONS(5304), }, [1220] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5229), - [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), + [sym_command_name] = ACTIONS(5308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_BSLASHpart] = ACTIONS(5308), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddpart] = ACTIONS(5308), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5306), + [anon_sym_BSLASHchapter] = ACTIONS(5308), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddchap] = ACTIONS(5308), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsection] = ACTIONS(5308), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHaddsec] = ACTIONS(5308), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5308), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5306), + [anon_sym_BSLASHparagraph] = ACTIONS(5308), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5308), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5306), + [anon_sym_BSLASHitem] = ACTIONS(5308), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [sym_word] = ACTIONS(5308), + [sym_placeholder] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_SQUOTE] = ACTIONS(5308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5308), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5306), + [anon_sym_BSLASHbegin] = ACTIONS(5308), + [anon_sym_BSLASHend] = ACTIONS(5308), + [anon_sym_BSLASHusepackage] = ACTIONS(5308), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5308), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5308), + [anon_sym_BSLASHinclude] = ACTIONS(5308), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5308), + [anon_sym_BSLASHinput] = ACTIONS(5308), + [anon_sym_BSLASHsubfile] = ACTIONS(5308), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5308), + [anon_sym_BSLASHbibliography] = ACTIONS(5308), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5308), + [anon_sym_BSLASHincludesvg] = ACTIONS(5308), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5308), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5308), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5308), + [anon_sym_BSLASHimport] = ACTIONS(5308), + [anon_sym_BSLASHsubimport] = ACTIONS(5308), + [anon_sym_BSLASHinputfrom] = ACTIONS(5308), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5308), + [anon_sym_BSLASHincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHcaption] = ACTIONS(5308), + [anon_sym_BSLASHcite] = ACTIONS(5308), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCite] = ACTIONS(5308), + [anon_sym_BSLASHnocite] = ACTIONS(5308), + [anon_sym_BSLASHcitet] = ACTIONS(5308), + [anon_sym_BSLASHcitep] = ACTIONS(5308), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteauthor] = ACTIONS(5308), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5308), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitetitle] = ACTIONS(5308), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteyear] = ACTIONS(5308), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitedate] = ACTIONS(5308), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteurl] = ACTIONS(5308), + [anon_sym_BSLASHfullcite] = ACTIONS(5308), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5308), + [anon_sym_BSLASHcitealt] = ACTIONS(5308), + [anon_sym_BSLASHcitealp] = ACTIONS(5308), + [anon_sym_BSLASHcitetext] = ACTIONS(5308), + [anon_sym_BSLASHparencite] = ACTIONS(5308), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHParencite] = ACTIONS(5308), + [anon_sym_BSLASHfootcite] = ACTIONS(5308), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5308), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5308), + [anon_sym_BSLASHtextcite] = ACTIONS(5308), + [anon_sym_BSLASHTextcite] = ACTIONS(5308), + [anon_sym_BSLASHsmartcite] = ACTIONS(5308), + [anon_sym_BSLASHSmartcite] = ACTIONS(5308), + [anon_sym_BSLASHsupercite] = ACTIONS(5308), + [anon_sym_BSLASHautocite] = ACTIONS(5308), + [anon_sym_BSLASHAutocite] = ACTIONS(5308), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHvolcite] = ACTIONS(5308), + [anon_sym_BSLASHVolcite] = ACTIONS(5308), + [anon_sym_BSLASHpvolcite] = ACTIONS(5308), + [anon_sym_BSLASHPvolcite] = ACTIONS(5308), + [anon_sym_BSLASHfvolcite] = ACTIONS(5308), + [anon_sym_BSLASHftvolcite] = ACTIONS(5308), + [anon_sym_BSLASHsvolcite] = ACTIONS(5308), + [anon_sym_BSLASHSvolcite] = ACTIONS(5308), + [anon_sym_BSLASHtvolcite] = ACTIONS(5308), + [anon_sym_BSLASHTvolcite] = ACTIONS(5308), + [anon_sym_BSLASHavolcite] = ACTIONS(5308), + [anon_sym_BSLASHAvolcite] = ACTIONS(5308), + [anon_sym_BSLASHnotecite] = ACTIONS(5308), + [anon_sym_BSLASHNotecite] = ACTIONS(5308), + [anon_sym_BSLASHpnotecite] = ACTIONS(5308), + [anon_sym_BSLASHPnotecite] = ACTIONS(5308), + [anon_sym_BSLASHfnotecite] = ACTIONS(5308), + [anon_sym_BSLASHlabel] = ACTIONS(5308), + [anon_sym_BSLASHref] = ACTIONS(5308), + [anon_sym_BSLASHeqref] = ACTIONS(5308), + [anon_sym_BSLASHvref] = ACTIONS(5308), + [anon_sym_BSLASHVref] = ACTIONS(5308), + [anon_sym_BSLASHautoref] = ACTIONS(5308), + [anon_sym_BSLASHpageref] = ACTIONS(5308), + [anon_sym_BSLASHcref] = ACTIONS(5308), + [anon_sym_BSLASHCref] = ACTIONS(5308), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnameCref] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHlabelcref] = ACTIONS(5308), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCrefrange] = ACTIONS(5308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnewlabel] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5308), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5308), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5308), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdef] = ACTIONS(5308), + [anon_sym_BSLASHlet] = ACTIONS(5308), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5308), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5308), + [anon_sym_BSLASHgls] = ACTIONS(5308), + [anon_sym_BSLASHGls] = ACTIONS(5308), + [anon_sym_BSLASHGLS] = ACTIONS(5308), + [anon_sym_BSLASHglspl] = ACTIONS(5308), + [anon_sym_BSLASHGlspl] = ACTIONS(5308), + [anon_sym_BSLASHGLSpl] = ACTIONS(5308), + [anon_sym_BSLASHglsdisp] = ACTIONS(5308), + [anon_sym_BSLASHglslink] = ACTIONS(5308), + [anon_sym_BSLASHglstext] = ACTIONS(5308), + [anon_sym_BSLASHGlstext] = ACTIONS(5308), + [anon_sym_BSLASHGLStext] = ACTIONS(5308), + [anon_sym_BSLASHglsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5308), + [anon_sym_BSLASHglsplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSplural] = ACTIONS(5308), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHglsname] = ACTIONS(5308), + [anon_sym_BSLASHGlsname] = ACTIONS(5308), + [anon_sym_BSLASHGLSname] = ACTIONS(5308), + [anon_sym_BSLASHglssymbol] = ACTIONS(5308), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5308), + [anon_sym_BSLASHglsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5308), + [anon_sym_BSLASHglsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5308), + [anon_sym_BSLASHglsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5308), + [anon_sym_BSLASHglsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5308), + [anon_sym_BSLASHglsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5308), + [anon_sym_BSLASHnewacronym] = ACTIONS(5308), + [anon_sym_BSLASHacrshort] = ACTIONS(5308), + [anon_sym_BSLASHAcrshort] = ACTIONS(5308), + [anon_sym_BSLASHACRshort] = ACTIONS(5308), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5308), + [anon_sym_BSLASHacrlong] = ACTIONS(5308), + [anon_sym_BSLASHAcrlong] = ACTIONS(5308), + [anon_sym_BSLASHACRlong] = ACTIONS(5308), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5308), + [anon_sym_BSLASHacrfull] = ACTIONS(5308), + [anon_sym_BSLASHAcrfull] = ACTIONS(5308), + [anon_sym_BSLASHACRfull] = ACTIONS(5308), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5308), + [anon_sym_BSLASHacs] = ACTIONS(5308), + [anon_sym_BSLASHAcs] = ACTIONS(5308), + [anon_sym_BSLASHacsp] = ACTIONS(5308), + [anon_sym_BSLASHAcsp] = ACTIONS(5308), + [anon_sym_BSLASHacl] = ACTIONS(5308), + [anon_sym_BSLASHAcl] = ACTIONS(5308), + [anon_sym_BSLASHaclp] = ACTIONS(5308), + [anon_sym_BSLASHAclp] = ACTIONS(5308), + [anon_sym_BSLASHacf] = ACTIONS(5308), + [anon_sym_BSLASHAcf] = ACTIONS(5308), + [anon_sym_BSLASHacfp] = ACTIONS(5308), + [anon_sym_BSLASHAcfp] = ACTIONS(5308), + [anon_sym_BSLASHac] = ACTIONS(5308), + [anon_sym_BSLASHAc] = ACTIONS(5308), + [anon_sym_BSLASHacp] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5308), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5308), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5308), + [anon_sym_BSLASHcolor] = ACTIONS(5308), + [anon_sym_BSLASHcolorbox] = ACTIONS(5308), + [anon_sym_BSLASHtextcolor] = ACTIONS(5308), + [anon_sym_BSLASHpagecolor] = ACTIONS(5308), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5308), + [anon_sym_BSLASHtext] = ACTIONS(5308), + [anon_sym_BSLASHintertext] = ACTIONS(5308), + [anon_sym_shortintertext] = ACTIONS(5308), }, [1221] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5233), - [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), + [sym_command_name] = ACTIONS(5312), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_BSLASHpart] = ACTIONS(5312), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddpart] = ACTIONS(5312), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5310), + [anon_sym_BSLASHchapter] = ACTIONS(5312), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddchap] = ACTIONS(5312), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsection] = ACTIONS(5312), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHaddsec] = ACTIONS(5312), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5312), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5310), + [anon_sym_BSLASHparagraph] = ACTIONS(5312), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5312), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5310), + [anon_sym_BSLASHitem] = ACTIONS(5312), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5312), + [sym_placeholder] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_SQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5310), + [anon_sym_BSLASHbegin] = ACTIONS(5312), + [anon_sym_BSLASHend] = ACTIONS(5312), + [anon_sym_BSLASHusepackage] = ACTIONS(5312), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5312), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5312), + [anon_sym_BSLASHinclude] = ACTIONS(5312), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5312), + [anon_sym_BSLASHinput] = ACTIONS(5312), + [anon_sym_BSLASHsubfile] = ACTIONS(5312), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5312), + [anon_sym_BSLASHbibliography] = ACTIONS(5312), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5312), + [anon_sym_BSLASHincludesvg] = ACTIONS(5312), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5312), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5312), + [anon_sym_BSLASHimport] = ACTIONS(5312), + [anon_sym_BSLASHsubimport] = ACTIONS(5312), + [anon_sym_BSLASHinputfrom] = ACTIONS(5312), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5312), + [anon_sym_BSLASHincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHcaption] = ACTIONS(5312), + [anon_sym_BSLASHcite] = ACTIONS(5312), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCite] = ACTIONS(5312), + [anon_sym_BSLASHnocite] = ACTIONS(5312), + [anon_sym_BSLASHcitet] = ACTIONS(5312), + [anon_sym_BSLASHcitep] = ACTIONS(5312), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteauthor] = ACTIONS(5312), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5312), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitetitle] = ACTIONS(5312), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteyear] = ACTIONS(5312), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitedate] = ACTIONS(5312), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteurl] = ACTIONS(5312), + [anon_sym_BSLASHfullcite] = ACTIONS(5312), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5312), + [anon_sym_BSLASHcitealt] = ACTIONS(5312), + [anon_sym_BSLASHcitealp] = ACTIONS(5312), + [anon_sym_BSLASHcitetext] = ACTIONS(5312), + [anon_sym_BSLASHparencite] = ACTIONS(5312), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHParencite] = ACTIONS(5312), + [anon_sym_BSLASHfootcite] = ACTIONS(5312), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5312), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5312), + [anon_sym_BSLASHtextcite] = ACTIONS(5312), + [anon_sym_BSLASHTextcite] = ACTIONS(5312), + [anon_sym_BSLASHsmartcite] = ACTIONS(5312), + [anon_sym_BSLASHSmartcite] = ACTIONS(5312), + [anon_sym_BSLASHsupercite] = ACTIONS(5312), + [anon_sym_BSLASHautocite] = ACTIONS(5312), + [anon_sym_BSLASHAutocite] = ACTIONS(5312), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHvolcite] = ACTIONS(5312), + [anon_sym_BSLASHVolcite] = ACTIONS(5312), + [anon_sym_BSLASHpvolcite] = ACTIONS(5312), + [anon_sym_BSLASHPvolcite] = ACTIONS(5312), + [anon_sym_BSLASHfvolcite] = ACTIONS(5312), + [anon_sym_BSLASHftvolcite] = ACTIONS(5312), + [anon_sym_BSLASHsvolcite] = ACTIONS(5312), + [anon_sym_BSLASHSvolcite] = ACTIONS(5312), + [anon_sym_BSLASHtvolcite] = ACTIONS(5312), + [anon_sym_BSLASHTvolcite] = ACTIONS(5312), + [anon_sym_BSLASHavolcite] = ACTIONS(5312), + [anon_sym_BSLASHAvolcite] = ACTIONS(5312), + [anon_sym_BSLASHnotecite] = ACTIONS(5312), + [anon_sym_BSLASHNotecite] = ACTIONS(5312), + [anon_sym_BSLASHpnotecite] = ACTIONS(5312), + [anon_sym_BSLASHPnotecite] = ACTIONS(5312), + [anon_sym_BSLASHfnotecite] = ACTIONS(5312), + [anon_sym_BSLASHlabel] = ACTIONS(5312), + [anon_sym_BSLASHref] = ACTIONS(5312), + [anon_sym_BSLASHeqref] = ACTIONS(5312), + [anon_sym_BSLASHvref] = ACTIONS(5312), + [anon_sym_BSLASHVref] = ACTIONS(5312), + [anon_sym_BSLASHautoref] = ACTIONS(5312), + [anon_sym_BSLASHpageref] = ACTIONS(5312), + [anon_sym_BSLASHcref] = ACTIONS(5312), + [anon_sym_BSLASHCref] = ACTIONS(5312), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnameCref] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHlabelcref] = ACTIONS(5312), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCrefrange] = ACTIONS(5312), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnewlabel] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5312), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5312), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5312), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdef] = ACTIONS(5312), + [anon_sym_BSLASHlet] = ACTIONS(5312), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5312), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5312), + [anon_sym_BSLASHgls] = ACTIONS(5312), + [anon_sym_BSLASHGls] = ACTIONS(5312), + [anon_sym_BSLASHGLS] = ACTIONS(5312), + [anon_sym_BSLASHglspl] = ACTIONS(5312), + [anon_sym_BSLASHGlspl] = ACTIONS(5312), + [anon_sym_BSLASHGLSpl] = ACTIONS(5312), + [anon_sym_BSLASHglsdisp] = ACTIONS(5312), + [anon_sym_BSLASHglslink] = ACTIONS(5312), + [anon_sym_BSLASHglstext] = ACTIONS(5312), + [anon_sym_BSLASHGlstext] = ACTIONS(5312), + [anon_sym_BSLASHGLStext] = ACTIONS(5312), + [anon_sym_BSLASHglsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5312), + [anon_sym_BSLASHglsplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSplural] = ACTIONS(5312), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHglsname] = ACTIONS(5312), + [anon_sym_BSLASHGlsname] = ACTIONS(5312), + [anon_sym_BSLASHGLSname] = ACTIONS(5312), + [anon_sym_BSLASHglssymbol] = ACTIONS(5312), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5312), + [anon_sym_BSLASHglsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5312), + [anon_sym_BSLASHglsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5312), + [anon_sym_BSLASHglsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5312), + [anon_sym_BSLASHglsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5312), + [anon_sym_BSLASHglsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5312), + [anon_sym_BSLASHnewacronym] = ACTIONS(5312), + [anon_sym_BSLASHacrshort] = ACTIONS(5312), + [anon_sym_BSLASHAcrshort] = ACTIONS(5312), + [anon_sym_BSLASHACRshort] = ACTIONS(5312), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5312), + [anon_sym_BSLASHacrlong] = ACTIONS(5312), + [anon_sym_BSLASHAcrlong] = ACTIONS(5312), + [anon_sym_BSLASHACRlong] = ACTIONS(5312), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5312), + [anon_sym_BSLASHacrfull] = ACTIONS(5312), + [anon_sym_BSLASHAcrfull] = ACTIONS(5312), + [anon_sym_BSLASHACRfull] = ACTIONS(5312), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5312), + [anon_sym_BSLASHacs] = ACTIONS(5312), + [anon_sym_BSLASHAcs] = ACTIONS(5312), + [anon_sym_BSLASHacsp] = ACTIONS(5312), + [anon_sym_BSLASHAcsp] = ACTIONS(5312), + [anon_sym_BSLASHacl] = ACTIONS(5312), + [anon_sym_BSLASHAcl] = ACTIONS(5312), + [anon_sym_BSLASHaclp] = ACTIONS(5312), + [anon_sym_BSLASHAclp] = ACTIONS(5312), + [anon_sym_BSLASHacf] = ACTIONS(5312), + [anon_sym_BSLASHAcf] = ACTIONS(5312), + [anon_sym_BSLASHacfp] = ACTIONS(5312), + [anon_sym_BSLASHAcfp] = ACTIONS(5312), + [anon_sym_BSLASHac] = ACTIONS(5312), + [anon_sym_BSLASHAc] = ACTIONS(5312), + [anon_sym_BSLASHacp] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5312), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5312), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5312), + [anon_sym_BSLASHcolor] = ACTIONS(5312), + [anon_sym_BSLASHcolorbox] = ACTIONS(5312), + [anon_sym_BSLASHtextcolor] = ACTIONS(5312), + [anon_sym_BSLASHpagecolor] = ACTIONS(5312), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5312), + [anon_sym_BSLASHtext] = ACTIONS(5312), + [anon_sym_BSLASHintertext] = ACTIONS(5312), + [anon_sym_shortintertext] = ACTIONS(5312), }, [1222] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_BSLASHpart] = ACTIONS(5316), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddpart] = ACTIONS(5316), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5314), + [anon_sym_BSLASHchapter] = ACTIONS(5316), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddchap] = ACTIONS(5316), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsection] = ACTIONS(5316), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHaddsec] = ACTIONS(5316), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5316), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5314), + [anon_sym_BSLASHparagraph] = ACTIONS(5316), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5316), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5314), + [anon_sym_BSLASHitem] = ACTIONS(5316), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASHbegin] = ACTIONS(5316), + [anon_sym_BSLASHend] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [1223] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_BSLASHpart] = ACTIONS(4955), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddpart] = ACTIONS(4955), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHchapter] = ACTIONS(4955), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddchap] = ACTIONS(4955), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsection] = ACTIONS(4955), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddsec] = ACTIONS(4955), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHparagraph] = ACTIONS(4955), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHitem] = ACTIONS(4955), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASHbegin] = ACTIONS(4955), - [anon_sym_BSLASHend] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_BSLASHpart] = ACTIONS(5034), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddpart] = ACTIONS(5034), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHchapter] = ACTIONS(5034), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddchap] = ACTIONS(5034), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsection] = ACTIONS(5034), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddsec] = ACTIONS(5034), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHparagraph] = ACTIONS(5034), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5034), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHitem] = ACTIONS(5034), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASHbegin] = ACTIONS(5034), + [anon_sym_BSLASHend] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [1224] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_BSLASHpart] = ACTIONS(5320), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddpart] = ACTIONS(5320), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5318), + [anon_sym_BSLASHchapter] = ACTIONS(5320), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddchap] = ACTIONS(5320), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsection] = ACTIONS(5320), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHaddsec] = ACTIONS(5320), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5320), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5318), + [anon_sym_BSLASHparagraph] = ACTIONS(5320), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5320), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5318), + [anon_sym_BSLASHitem] = ACTIONS(5320), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASHbegin] = ACTIONS(5320), + [anon_sym_BSLASHend] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [1225] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [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(5319), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddpart] = ACTIONS(5319), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), - [anon_sym_BSLASHchapter] = ACTIONS(5319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddchap] = ACTIONS(5319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsection] = ACTIONS(5319), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddsec] = ACTIONS(5319), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHparagraph] = ACTIONS(5319), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHitem] = ACTIONS(5319), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [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(5321), - [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(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [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(5321), - [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(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5319), - [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), + [sym_command_name] = ACTIONS(5398), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(5400), + [anon_sym_BSLASHpart] = ACTIONS(5398), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5400), + [anon_sym_BSLASHaddpart] = ACTIONS(5398), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5400), + [anon_sym_BSLASHchapter] = ACTIONS(5398), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5400), + [anon_sym_BSLASHaddchap] = ACTIONS(5398), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5400), + [anon_sym_BSLASHsection] = ACTIONS(5398), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5400), + [anon_sym_BSLASHaddsec] = ACTIONS(5398), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5400), + [anon_sym_BSLASHsubsection] = ACTIONS(5398), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5400), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5398), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5400), + [anon_sym_BSLASHparagraph] = ACTIONS(5398), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5400), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5398), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5400), + [anon_sym_BSLASHitem] = ACTIONS(5398), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [sym_word] = ACTIONS(5398), + [sym_placeholder] = ACTIONS(5400), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym__] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_SQUOTE] = ACTIONS(5398), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5400), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5400), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5400), + [anon_sym_BSLASHbegin] = ACTIONS(5398), + [anon_sym_BSLASHend] = ACTIONS(5398), + [anon_sym_BSLASHusepackage] = ACTIONS(5398), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5398), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5398), + [anon_sym_BSLASHinclude] = ACTIONS(5398), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5398), + [anon_sym_BSLASHinput] = ACTIONS(5398), + [anon_sym_BSLASHsubfile] = ACTIONS(5398), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5398), + [anon_sym_BSLASHbibliography] = ACTIONS(5398), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5398), + [anon_sym_BSLASHincludesvg] = ACTIONS(5398), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5398), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5398), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5398), + [anon_sym_BSLASHimport] = ACTIONS(5398), + [anon_sym_BSLASHsubimport] = ACTIONS(5398), + [anon_sym_BSLASHinputfrom] = ACTIONS(5398), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5398), + [anon_sym_BSLASHincludefrom] = ACTIONS(5398), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5398), + [anon_sym_BSLASHcaption] = ACTIONS(5398), + [anon_sym_BSLASHcite] = ACTIONS(5398), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCite] = ACTIONS(5398), + [anon_sym_BSLASHnocite] = ACTIONS(5398), + [anon_sym_BSLASHcitet] = ACTIONS(5398), + [anon_sym_BSLASHcitep] = ACTIONS(5398), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteauthor] = ACTIONS(5398), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5398), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitetitle] = ACTIONS(5398), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteyear] = ACTIONS(5398), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitedate] = ACTIONS(5398), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteurl] = ACTIONS(5398), + [anon_sym_BSLASHfullcite] = ACTIONS(5398), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5398), + [anon_sym_BSLASHcitealt] = ACTIONS(5398), + [anon_sym_BSLASHcitealp] = ACTIONS(5398), + [anon_sym_BSLASHcitetext] = ACTIONS(5398), + [anon_sym_BSLASHparencite] = ACTIONS(5398), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHParencite] = ACTIONS(5398), + [anon_sym_BSLASHfootcite] = ACTIONS(5398), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5398), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5398), + [anon_sym_BSLASHtextcite] = ACTIONS(5398), + [anon_sym_BSLASHTextcite] = ACTIONS(5398), + [anon_sym_BSLASHsmartcite] = ACTIONS(5398), + [anon_sym_BSLASHSmartcite] = ACTIONS(5398), + [anon_sym_BSLASHsupercite] = ACTIONS(5398), + [anon_sym_BSLASHautocite] = ACTIONS(5398), + [anon_sym_BSLASHAutocite] = ACTIONS(5398), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHvolcite] = ACTIONS(5398), + [anon_sym_BSLASHVolcite] = ACTIONS(5398), + [anon_sym_BSLASHpvolcite] = ACTIONS(5398), + [anon_sym_BSLASHPvolcite] = ACTIONS(5398), + [anon_sym_BSLASHfvolcite] = ACTIONS(5398), + [anon_sym_BSLASHftvolcite] = ACTIONS(5398), + [anon_sym_BSLASHsvolcite] = ACTIONS(5398), + [anon_sym_BSLASHSvolcite] = ACTIONS(5398), + [anon_sym_BSLASHtvolcite] = ACTIONS(5398), + [anon_sym_BSLASHTvolcite] = ACTIONS(5398), + [anon_sym_BSLASHavolcite] = ACTIONS(5398), + [anon_sym_BSLASHAvolcite] = ACTIONS(5398), + [anon_sym_BSLASHnotecite] = ACTIONS(5398), + [anon_sym_BSLASHNotecite] = ACTIONS(5398), + [anon_sym_BSLASHpnotecite] = ACTIONS(5398), + [anon_sym_BSLASHPnotecite] = ACTIONS(5398), + [anon_sym_BSLASHfnotecite] = ACTIONS(5398), + [anon_sym_BSLASHlabel] = ACTIONS(5398), + [anon_sym_BSLASHref] = ACTIONS(5398), + [anon_sym_BSLASHeqref] = ACTIONS(5398), + [anon_sym_BSLASHvref] = ACTIONS(5398), + [anon_sym_BSLASHVref] = ACTIONS(5398), + [anon_sym_BSLASHautoref] = ACTIONS(5398), + [anon_sym_BSLASHpageref] = ACTIONS(5398), + [anon_sym_BSLASHcref] = ACTIONS(5398), + [anon_sym_BSLASHCref] = ACTIONS(5398), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5400), + [anon_sym_BSLASHnamecref] = ACTIONS(5398), + [anon_sym_BSLASHnameCref] = ACTIONS(5398), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5398), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5398), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5398), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5398), + [anon_sym_BSLASHlabelcref] = ACTIONS(5398), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5398), + [anon_sym_BSLASHcrefrange] = ACTIONS(5398), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCrefrange] = ACTIONS(5398), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5400), + [anon_sym_BSLASHnewlabel] = ACTIONS(5398), + [anon_sym_BSLASHnewcommand] = ACTIONS(5398), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5398), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5398), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5398), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdef] = ACTIONS(5398), + [anon_sym_BSLASHlet] = ACTIONS(5398), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5398), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5398), + [anon_sym_BSLASHgls] = ACTIONS(5398), + [anon_sym_BSLASHGls] = ACTIONS(5398), + [anon_sym_BSLASHGLS] = ACTIONS(5398), + [anon_sym_BSLASHglspl] = ACTIONS(5398), + [anon_sym_BSLASHGlspl] = ACTIONS(5398), + [anon_sym_BSLASHGLSpl] = ACTIONS(5398), + [anon_sym_BSLASHglsdisp] = ACTIONS(5398), + [anon_sym_BSLASHglslink] = ACTIONS(5398), + [anon_sym_BSLASHglstext] = ACTIONS(5398), + [anon_sym_BSLASHGlstext] = ACTIONS(5398), + [anon_sym_BSLASHGLStext] = ACTIONS(5398), + [anon_sym_BSLASHglsfirst] = ACTIONS(5398), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5398), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5398), + [anon_sym_BSLASHglsplural] = ACTIONS(5398), + [anon_sym_BSLASHGlsplural] = ACTIONS(5398), + [anon_sym_BSLASHGLSplural] = ACTIONS(5398), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHglsname] = ACTIONS(5398), + [anon_sym_BSLASHGlsname] = ACTIONS(5398), + [anon_sym_BSLASHGLSname] = ACTIONS(5398), + [anon_sym_BSLASHglssymbol] = ACTIONS(5398), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5398), + [anon_sym_BSLASHglsdesc] = ACTIONS(5398), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5398), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5398), + [anon_sym_BSLASHglsuseri] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5398), + [anon_sym_BSLASHglsuserii] = ACTIONS(5398), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5398), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5398), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5398), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5398), + [anon_sym_BSLASHglsuserv] = ACTIONS(5398), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5398), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5398), + [anon_sym_BSLASHglsuservi] = ACTIONS(5398), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5398), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5398), + [anon_sym_BSLASHnewacronym] = ACTIONS(5398), + [anon_sym_BSLASHacrshort] = ACTIONS(5398), + [anon_sym_BSLASHAcrshort] = ACTIONS(5398), + [anon_sym_BSLASHACRshort] = ACTIONS(5398), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5398), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5398), + [anon_sym_BSLASHacrlong] = ACTIONS(5398), + [anon_sym_BSLASHAcrlong] = ACTIONS(5398), + [anon_sym_BSLASHACRlong] = ACTIONS(5398), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5398), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5398), + [anon_sym_BSLASHacrfull] = ACTIONS(5398), + [anon_sym_BSLASHAcrfull] = ACTIONS(5398), + [anon_sym_BSLASHACRfull] = ACTIONS(5398), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5398), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5398), + [anon_sym_BSLASHacs] = ACTIONS(5398), + [anon_sym_BSLASHAcs] = ACTIONS(5398), + [anon_sym_BSLASHacsp] = ACTIONS(5398), + [anon_sym_BSLASHAcsp] = ACTIONS(5398), + [anon_sym_BSLASHacl] = ACTIONS(5398), + [anon_sym_BSLASHAcl] = ACTIONS(5398), + [anon_sym_BSLASHaclp] = ACTIONS(5398), + [anon_sym_BSLASHAclp] = ACTIONS(5398), + [anon_sym_BSLASHacf] = ACTIONS(5398), + [anon_sym_BSLASHAcf] = ACTIONS(5398), + [anon_sym_BSLASHacfp] = ACTIONS(5398), + [anon_sym_BSLASHAcfp] = ACTIONS(5398), + [anon_sym_BSLASHac] = ACTIONS(5398), + [anon_sym_BSLASHAc] = ACTIONS(5398), + [anon_sym_BSLASHacp] = ACTIONS(5398), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5398), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5398), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5398), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5398), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5398), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5398), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5398), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5398), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5398), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5398), + [anon_sym_BSLASHcolor] = ACTIONS(5398), + [anon_sym_BSLASHcolorbox] = ACTIONS(5398), + [anon_sym_BSLASHtextcolor] = ACTIONS(5398), + [anon_sym_BSLASHpagecolor] = ACTIONS(5398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5398), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5398), + [anon_sym_BSLASHtext] = ACTIONS(5398), + [anon_sym_BSLASHintertext] = ACTIONS(5398), + [anon_sym_shortintertext] = ACTIONS(5398), }, [1226] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_BSLASHpart] = ACTIONS(5324), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddpart] = ACTIONS(5324), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5322), + [anon_sym_BSLASHchapter] = ACTIONS(5324), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddchap] = ACTIONS(5324), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsection] = ACTIONS(5324), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHaddsec] = ACTIONS(5324), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5324), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5322), + [anon_sym_BSLASHparagraph] = ACTIONS(5324), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5324), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5322), + [anon_sym_BSLASHitem] = ACTIONS(5324), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASHbegin] = ACTIONS(5324), + [anon_sym_BSLASHend] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [1227] = { - [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(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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_BSLASHpart] = ACTIONS(5328), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddpart] = ACTIONS(5328), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5326), + [anon_sym_BSLASHchapter] = ACTIONS(5328), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddchap] = ACTIONS(5328), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsection] = ACTIONS(5328), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHaddsec] = ACTIONS(5328), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5328), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5326), + [anon_sym_BSLASHparagraph] = ACTIONS(5328), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5328), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5326), + [anon_sym_BSLASHitem] = ACTIONS(5328), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASHbegin] = ACTIONS(5328), + [anon_sym_BSLASHend] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [1228] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_BSLASHpart] = ACTIONS(5332), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddpart] = ACTIONS(5332), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5330), + [anon_sym_BSLASHchapter] = ACTIONS(5332), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddchap] = ACTIONS(5332), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsection] = ACTIONS(5332), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHaddsec] = ACTIONS(5332), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5332), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5330), + [anon_sym_BSLASHparagraph] = ACTIONS(5332), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5332), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5330), + [anon_sym_BSLASHitem] = ACTIONS(5332), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASHbegin] = ACTIONS(5332), + [anon_sym_BSLASHend] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [1229] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_BSLASHpart] = ACTIONS(5336), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddpart] = ACTIONS(5336), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5334), + [anon_sym_BSLASHchapter] = ACTIONS(5336), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddchap] = ACTIONS(5336), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsection] = ACTIONS(5336), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHaddsec] = ACTIONS(5336), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5336), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5334), + [anon_sym_BSLASHparagraph] = ACTIONS(5336), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5336), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5334), + [anon_sym_BSLASHitem] = ACTIONS(5336), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASHbegin] = ACTIONS(5336), + [anon_sym_BSLASHend] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [1230] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_BSLASHpart] = ACTIONS(5340), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddpart] = ACTIONS(5340), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5338), + [anon_sym_BSLASHchapter] = ACTIONS(5340), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddchap] = ACTIONS(5340), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsection] = ACTIONS(5340), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHaddsec] = ACTIONS(5340), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5340), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5338), + [anon_sym_BSLASHparagraph] = ACTIONS(5340), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5340), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5338), + [anon_sym_BSLASHitem] = ACTIONS(5340), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASHbegin] = ACTIONS(5340), + [anon_sym_BSLASHend] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [1231] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_BSLASHpart] = ACTIONS(5344), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddpart] = ACTIONS(5344), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5342), + [anon_sym_BSLASHchapter] = ACTIONS(5344), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddchap] = ACTIONS(5344), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsection] = ACTIONS(5344), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHaddsec] = ACTIONS(5344), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5344), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5342), + [anon_sym_BSLASHparagraph] = ACTIONS(5344), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5344), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5342), + [anon_sym_BSLASHitem] = ACTIONS(5344), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASHbegin] = ACTIONS(5344), + [anon_sym_BSLASHend] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [1232] = { - [sym_command_name] = ACTIONS(5323), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [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(5323), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddpart] = ACTIONS(5323), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHchapter] = ACTIONS(5323), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddchap] = ACTIONS(5323), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsection] = ACTIONS(5323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddsec] = ACTIONS(5323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHparagraph] = ACTIONS(5323), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHitem] = ACTIONS(5323), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5323), - [sym_placeholder] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5323), - [anon_sym_BSLASHend] = 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(5325), - [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(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [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(5325), - [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(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5323), - [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), + [sym_command_name] = ACTIONS(5402), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5404), + [anon_sym_BSLASHpart] = ACTIONS(5402), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5404), + [anon_sym_BSLASHaddpart] = ACTIONS(5402), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5404), + [anon_sym_BSLASHchapter] = ACTIONS(5402), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5404), + [anon_sym_BSLASHaddchap] = ACTIONS(5402), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5404), + [anon_sym_BSLASHsection] = ACTIONS(5402), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5404), + [anon_sym_BSLASHaddsec] = ACTIONS(5402), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5404), + [anon_sym_BSLASHsubsection] = ACTIONS(5402), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5404), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5402), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5404), + [anon_sym_BSLASHparagraph] = ACTIONS(5402), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5404), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5402), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5404), + [anon_sym_BSLASHitem] = ACTIONS(5402), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [sym_word] = ACTIONS(5402), + [sym_placeholder] = ACTIONS(5404), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym__] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_SQUOTE] = ACTIONS(5402), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5404), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5402), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5404), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5404), + [anon_sym_BSLASHbegin] = ACTIONS(5402), + [anon_sym_BSLASHend] = ACTIONS(5402), + [anon_sym_BSLASHusepackage] = ACTIONS(5402), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5402), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5402), + [anon_sym_BSLASHinclude] = ACTIONS(5402), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5402), + [anon_sym_BSLASHinput] = ACTIONS(5402), + [anon_sym_BSLASHsubfile] = ACTIONS(5402), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5402), + [anon_sym_BSLASHbibliography] = ACTIONS(5402), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5402), + [anon_sym_BSLASHincludesvg] = ACTIONS(5402), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5402), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5402), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5402), + [anon_sym_BSLASHimport] = ACTIONS(5402), + [anon_sym_BSLASHsubimport] = ACTIONS(5402), + [anon_sym_BSLASHinputfrom] = ACTIONS(5402), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5402), + [anon_sym_BSLASHincludefrom] = ACTIONS(5402), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5402), + [anon_sym_BSLASHcaption] = ACTIONS(5402), + [anon_sym_BSLASHcite] = ACTIONS(5402), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCite] = ACTIONS(5402), + [anon_sym_BSLASHnocite] = ACTIONS(5402), + [anon_sym_BSLASHcitet] = ACTIONS(5402), + [anon_sym_BSLASHcitep] = ACTIONS(5402), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteauthor] = ACTIONS(5402), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5402), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitetitle] = ACTIONS(5402), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteyear] = ACTIONS(5402), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitedate] = ACTIONS(5402), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteurl] = ACTIONS(5402), + [anon_sym_BSLASHfullcite] = ACTIONS(5402), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5402), + [anon_sym_BSLASHcitealt] = ACTIONS(5402), + [anon_sym_BSLASHcitealp] = ACTIONS(5402), + [anon_sym_BSLASHcitetext] = ACTIONS(5402), + [anon_sym_BSLASHparencite] = ACTIONS(5402), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHParencite] = ACTIONS(5402), + [anon_sym_BSLASHfootcite] = ACTIONS(5402), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5402), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5402), + [anon_sym_BSLASHtextcite] = ACTIONS(5402), + [anon_sym_BSLASHTextcite] = ACTIONS(5402), + [anon_sym_BSLASHsmartcite] = ACTIONS(5402), + [anon_sym_BSLASHSmartcite] = ACTIONS(5402), + [anon_sym_BSLASHsupercite] = ACTIONS(5402), + [anon_sym_BSLASHautocite] = ACTIONS(5402), + [anon_sym_BSLASHAutocite] = ACTIONS(5402), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHvolcite] = ACTIONS(5402), + [anon_sym_BSLASHVolcite] = ACTIONS(5402), + [anon_sym_BSLASHpvolcite] = ACTIONS(5402), + [anon_sym_BSLASHPvolcite] = ACTIONS(5402), + [anon_sym_BSLASHfvolcite] = ACTIONS(5402), + [anon_sym_BSLASHftvolcite] = ACTIONS(5402), + [anon_sym_BSLASHsvolcite] = ACTIONS(5402), + [anon_sym_BSLASHSvolcite] = ACTIONS(5402), + [anon_sym_BSLASHtvolcite] = ACTIONS(5402), + [anon_sym_BSLASHTvolcite] = ACTIONS(5402), + [anon_sym_BSLASHavolcite] = ACTIONS(5402), + [anon_sym_BSLASHAvolcite] = ACTIONS(5402), + [anon_sym_BSLASHnotecite] = ACTIONS(5402), + [anon_sym_BSLASHNotecite] = ACTIONS(5402), + [anon_sym_BSLASHpnotecite] = ACTIONS(5402), + [anon_sym_BSLASHPnotecite] = ACTIONS(5402), + [anon_sym_BSLASHfnotecite] = ACTIONS(5402), + [anon_sym_BSLASHlabel] = ACTIONS(5402), + [anon_sym_BSLASHref] = ACTIONS(5402), + [anon_sym_BSLASHeqref] = ACTIONS(5402), + [anon_sym_BSLASHvref] = ACTIONS(5402), + [anon_sym_BSLASHVref] = ACTIONS(5402), + [anon_sym_BSLASHautoref] = ACTIONS(5402), + [anon_sym_BSLASHpageref] = ACTIONS(5402), + [anon_sym_BSLASHcref] = ACTIONS(5402), + [anon_sym_BSLASHCref] = ACTIONS(5402), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5404), + [anon_sym_BSLASHnamecref] = ACTIONS(5402), + [anon_sym_BSLASHnameCref] = ACTIONS(5402), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5402), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5402), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5402), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5402), + [anon_sym_BSLASHlabelcref] = ACTIONS(5402), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5402), + [anon_sym_BSLASHcrefrange] = ACTIONS(5402), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCrefrange] = ACTIONS(5402), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5404), + [anon_sym_BSLASHnewlabel] = ACTIONS(5402), + [anon_sym_BSLASHnewcommand] = ACTIONS(5402), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5402), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5402), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5402), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdef] = ACTIONS(5402), + [anon_sym_BSLASHlet] = ACTIONS(5402), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5402), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5402), + [anon_sym_BSLASHgls] = ACTIONS(5402), + [anon_sym_BSLASHGls] = ACTIONS(5402), + [anon_sym_BSLASHGLS] = ACTIONS(5402), + [anon_sym_BSLASHglspl] = ACTIONS(5402), + [anon_sym_BSLASHGlspl] = ACTIONS(5402), + [anon_sym_BSLASHGLSpl] = ACTIONS(5402), + [anon_sym_BSLASHglsdisp] = ACTIONS(5402), + [anon_sym_BSLASHglslink] = ACTIONS(5402), + [anon_sym_BSLASHglstext] = ACTIONS(5402), + [anon_sym_BSLASHGlstext] = ACTIONS(5402), + [anon_sym_BSLASHGLStext] = ACTIONS(5402), + [anon_sym_BSLASHglsfirst] = ACTIONS(5402), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5402), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5402), + [anon_sym_BSLASHglsplural] = ACTIONS(5402), + [anon_sym_BSLASHGlsplural] = ACTIONS(5402), + [anon_sym_BSLASHGLSplural] = ACTIONS(5402), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHglsname] = ACTIONS(5402), + [anon_sym_BSLASHGlsname] = ACTIONS(5402), + [anon_sym_BSLASHGLSname] = ACTIONS(5402), + [anon_sym_BSLASHglssymbol] = ACTIONS(5402), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5402), + [anon_sym_BSLASHglsdesc] = ACTIONS(5402), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5402), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5402), + [anon_sym_BSLASHglsuseri] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5402), + [anon_sym_BSLASHglsuserii] = ACTIONS(5402), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5402), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5402), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5402), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5402), + [anon_sym_BSLASHglsuserv] = ACTIONS(5402), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5402), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5402), + [anon_sym_BSLASHglsuservi] = ACTIONS(5402), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5402), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5402), + [anon_sym_BSLASHnewacronym] = ACTIONS(5402), + [anon_sym_BSLASHacrshort] = ACTIONS(5402), + [anon_sym_BSLASHAcrshort] = ACTIONS(5402), + [anon_sym_BSLASHACRshort] = ACTIONS(5402), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5402), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5402), + [anon_sym_BSLASHacrlong] = ACTIONS(5402), + [anon_sym_BSLASHAcrlong] = ACTIONS(5402), + [anon_sym_BSLASHACRlong] = ACTIONS(5402), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5402), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5402), + [anon_sym_BSLASHacrfull] = ACTIONS(5402), + [anon_sym_BSLASHAcrfull] = ACTIONS(5402), + [anon_sym_BSLASHACRfull] = ACTIONS(5402), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5402), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5402), + [anon_sym_BSLASHacs] = ACTIONS(5402), + [anon_sym_BSLASHAcs] = ACTIONS(5402), + [anon_sym_BSLASHacsp] = ACTIONS(5402), + [anon_sym_BSLASHAcsp] = ACTIONS(5402), + [anon_sym_BSLASHacl] = ACTIONS(5402), + [anon_sym_BSLASHAcl] = ACTIONS(5402), + [anon_sym_BSLASHaclp] = ACTIONS(5402), + [anon_sym_BSLASHAclp] = ACTIONS(5402), + [anon_sym_BSLASHacf] = ACTIONS(5402), + [anon_sym_BSLASHAcf] = ACTIONS(5402), + [anon_sym_BSLASHacfp] = ACTIONS(5402), + [anon_sym_BSLASHAcfp] = ACTIONS(5402), + [anon_sym_BSLASHac] = ACTIONS(5402), + [anon_sym_BSLASHAc] = ACTIONS(5402), + [anon_sym_BSLASHacp] = ACTIONS(5402), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5402), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5402), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5402), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5402), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5402), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5402), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5402), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5402), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5402), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5402), + [anon_sym_BSLASHcolor] = ACTIONS(5402), + [anon_sym_BSLASHcolorbox] = ACTIONS(5402), + [anon_sym_BSLASHtextcolor] = ACTIONS(5402), + [anon_sym_BSLASHpagecolor] = ACTIONS(5402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5402), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5402), + [anon_sym_BSLASHtext] = ACTIONS(5402), + [anon_sym_BSLASHintertext] = ACTIONS(5402), + [anon_sym_shortintertext] = ACTIONS(5402), }, [1233] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_BSLASHpart] = ACTIONS(5348), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddpart] = ACTIONS(5348), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5346), + [anon_sym_BSLASHchapter] = ACTIONS(5348), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddchap] = ACTIONS(5348), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsection] = ACTIONS(5348), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHaddsec] = ACTIONS(5348), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5348), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5346), + [anon_sym_BSLASHparagraph] = ACTIONS(5348), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5348), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHitem] = ACTIONS(5348), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASHbegin] = ACTIONS(5348), + [anon_sym_BSLASHend] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [1234] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_BSLASHpart] = ACTIONS(5352), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddpart] = ACTIONS(5352), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5350), + [anon_sym_BSLASHchapter] = ACTIONS(5352), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddchap] = ACTIONS(5352), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsection] = ACTIONS(5352), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHaddsec] = ACTIONS(5352), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5352), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5350), + [anon_sym_BSLASHparagraph] = ACTIONS(5352), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5352), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5350), + [anon_sym_BSLASHitem] = ACTIONS(5352), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASHbegin] = ACTIONS(5352), + [anon_sym_BSLASHend] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [1235] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_BSLASHpart] = ACTIONS(5356), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddpart] = ACTIONS(5356), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5354), + [anon_sym_BSLASHchapter] = ACTIONS(5356), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddchap] = ACTIONS(5356), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsection] = ACTIONS(5356), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHaddsec] = ACTIONS(5356), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5356), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5354), + [anon_sym_BSLASHparagraph] = ACTIONS(5356), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5356), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5354), + [anon_sym_BSLASHitem] = ACTIONS(5356), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASHbegin] = ACTIONS(5356), + [anon_sym_BSLASHend] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [1236] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_BSLASHpart] = ACTIONS(5281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddpart] = ACTIONS(5281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), - [anon_sym_BSLASHchapter] = ACTIONS(5281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddchap] = ACTIONS(5281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsection] = ACTIONS(5281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHaddsec] = ACTIONS(5281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), - [anon_sym_BSLASHparagraph] = ACTIONS(5281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), - [anon_sym_BSLASHitem] = ACTIONS(5281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASHbegin] = ACTIONS(5281), - [anon_sym_BSLASHend] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_BSLASHpart] = ACTIONS(5360), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddpart] = ACTIONS(5360), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5358), + [anon_sym_BSLASHchapter] = ACTIONS(5360), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddchap] = ACTIONS(5360), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsection] = ACTIONS(5360), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHaddsec] = ACTIONS(5360), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5360), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5358), + [anon_sym_BSLASHparagraph] = ACTIONS(5360), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5360), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5358), + [anon_sym_BSLASHitem] = ACTIONS(5360), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASHbegin] = ACTIONS(5360), + [anon_sym_BSLASHend] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [1237] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_BSLASHpart] = ACTIONS(5309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddpart] = ACTIONS(5309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), - [anon_sym_BSLASHchapter] = ACTIONS(5309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddchap] = ACTIONS(5309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsection] = ACTIONS(5309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHaddsec] = ACTIONS(5309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), - [anon_sym_BSLASHparagraph] = ACTIONS(5309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), - [anon_sym_BSLASHitem] = ACTIONS(5309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASHbegin] = ACTIONS(5309), - [anon_sym_BSLASHend] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_BSLASHpart] = ACTIONS(5388), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddpart] = ACTIONS(5388), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5386), + [anon_sym_BSLASHchapter] = ACTIONS(5388), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddchap] = ACTIONS(5388), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsection] = ACTIONS(5388), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHaddsec] = ACTIONS(5388), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5388), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5386), + [anon_sym_BSLASHparagraph] = ACTIONS(5388), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5388), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5386), + [anon_sym_BSLASHitem] = ACTIONS(5388), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASHbegin] = ACTIONS(5388), + [anon_sym_BSLASHend] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [1238] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_BSLASHpart] = ACTIONS(5157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddpart] = ACTIONS(5157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), - [anon_sym_BSLASHchapter] = ACTIONS(5157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddchap] = ACTIONS(5157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsection] = ACTIONS(5157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHaddsec] = ACTIONS(5157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), - [anon_sym_BSLASHparagraph] = ACTIONS(5157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), - [anon_sym_BSLASHitem] = ACTIONS(5157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASHbegin] = ACTIONS(5157), - [anon_sym_BSLASHend] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_BSLASHpart] = ACTIONS(5236), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddpart] = ACTIONS(5236), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5234), + [anon_sym_BSLASHchapter] = ACTIONS(5236), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddchap] = ACTIONS(5236), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsection] = ACTIONS(5236), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHaddsec] = ACTIONS(5236), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5236), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5234), + [anon_sym_BSLASHparagraph] = ACTIONS(5236), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5236), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5234), + [anon_sym_BSLASHitem] = ACTIONS(5236), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASHbegin] = ACTIONS(5236), + [anon_sym_BSLASHend] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [1239] = { - [sym_command_name] = ACTIONS(4935), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4933), - [anon_sym_BSLASHpart] = ACTIONS(4935), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddpart] = ACTIONS(4935), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), - [anon_sym_BSLASHchapter] = ACTIONS(4935), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddchap] = ACTIONS(4935), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsection] = ACTIONS(4935), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHaddsec] = ACTIONS(4935), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), - [anon_sym_BSLASHparagraph] = ACTIONS(4935), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), - [anon_sym_BSLASHitem] = ACTIONS(4935), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4933), - [sym_word] = ACTIONS(4935), - [sym_placeholder] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_CARET] = ACTIONS(4935), - [anon_sym__] = ACTIONS(4935), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4935), - [anon_sym_COLON] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), - [anon_sym_DOLLAR] = ACTIONS(4935), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4933), - [anon_sym_BSLASHbegin] = ACTIONS(4935), - [anon_sym_BSLASHusepackage] = ACTIONS(4935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), - [anon_sym_BSLASHinclude] = ACTIONS(4935), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), - [anon_sym_BSLASHinput] = ACTIONS(4935), - [anon_sym_BSLASHsubfile] = ACTIONS(4935), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), - [anon_sym_BSLASHbibliography] = ACTIONS(4935), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), - [anon_sym_BSLASHincludesvg] = ACTIONS(4935), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), - [anon_sym_BSLASHimport] = ACTIONS(4935), - [anon_sym_BSLASHsubimport] = ACTIONS(4935), - [anon_sym_BSLASHinputfrom] = ACTIONS(4935), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), - [anon_sym_BSLASHincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHcaption] = ACTIONS(4935), - [anon_sym_BSLASHcite] = ACTIONS(4935), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCite] = ACTIONS(4935), - [anon_sym_BSLASHnocite] = ACTIONS(4935), - [anon_sym_BSLASHcitet] = ACTIONS(4935), - [anon_sym_BSLASHcitep] = ACTIONS(4935), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteauthor] = ACTIONS(4935), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitetitle] = ACTIONS(4935), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteyear] = ACTIONS(4935), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitedate] = ACTIONS(4935), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteurl] = ACTIONS(4935), - [anon_sym_BSLASHfullcite] = ACTIONS(4935), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), - [anon_sym_BSLASHcitealt] = ACTIONS(4935), - [anon_sym_BSLASHcitealp] = ACTIONS(4935), - [anon_sym_BSLASHcitetext] = ACTIONS(4935), - [anon_sym_BSLASHparencite] = ACTIONS(4935), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHParencite] = ACTIONS(4935), - [anon_sym_BSLASHfootcite] = ACTIONS(4935), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), - [anon_sym_BSLASHtextcite] = ACTIONS(4935), - [anon_sym_BSLASHTextcite] = ACTIONS(4935), - [anon_sym_BSLASHsmartcite] = ACTIONS(4935), - [anon_sym_BSLASHSmartcite] = ACTIONS(4935), - [anon_sym_BSLASHsupercite] = ACTIONS(4935), - [anon_sym_BSLASHautocite] = ACTIONS(4935), - [anon_sym_BSLASHAutocite] = ACTIONS(4935), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHvolcite] = ACTIONS(4935), - [anon_sym_BSLASHVolcite] = ACTIONS(4935), - [anon_sym_BSLASHpvolcite] = ACTIONS(4935), - [anon_sym_BSLASHPvolcite] = ACTIONS(4935), - [anon_sym_BSLASHfvolcite] = ACTIONS(4935), - [anon_sym_BSLASHftvolcite] = ACTIONS(4935), - [anon_sym_BSLASHsvolcite] = ACTIONS(4935), - [anon_sym_BSLASHSvolcite] = ACTIONS(4935), - [anon_sym_BSLASHtvolcite] = ACTIONS(4935), - [anon_sym_BSLASHTvolcite] = ACTIONS(4935), - [anon_sym_BSLASHavolcite] = ACTIONS(4935), - [anon_sym_BSLASHAvolcite] = ACTIONS(4935), - [anon_sym_BSLASHnotecite] = ACTIONS(4935), - [anon_sym_BSLASHNotecite] = ACTIONS(4935), - [anon_sym_BSLASHpnotecite] = ACTIONS(4935), - [anon_sym_BSLASHPnotecite] = ACTIONS(4935), - [anon_sym_BSLASHfnotecite] = ACTIONS(4935), - [anon_sym_BSLASHlabel] = ACTIONS(4935), - [anon_sym_BSLASHref] = ACTIONS(4935), - [anon_sym_BSLASHeqref] = ACTIONS(4935), - [anon_sym_BSLASHvref] = ACTIONS(4935), - [anon_sym_BSLASHVref] = ACTIONS(4935), - [anon_sym_BSLASHautoref] = ACTIONS(4935), - [anon_sym_BSLASHpageref] = ACTIONS(4935), - [anon_sym_BSLASHcref] = ACTIONS(4935), - [anon_sym_BSLASHCref] = ACTIONS(4935), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnameCref] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHlabelcref] = ACTIONS(4935), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCrefrange] = ACTIONS(4935), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnewlabel] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), - [anon_sym_BSLASHdef] = ACTIONS(4935), - [anon_sym_BSLASHlet] = ACTIONS(4935), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), - [anon_sym_BSLASHgls] = ACTIONS(4935), - [anon_sym_BSLASHGls] = ACTIONS(4935), - [anon_sym_BSLASHGLS] = ACTIONS(4935), - [anon_sym_BSLASHglspl] = ACTIONS(4935), - [anon_sym_BSLASHGlspl] = ACTIONS(4935), - [anon_sym_BSLASHGLSpl] = ACTIONS(4935), - [anon_sym_BSLASHglsdisp] = ACTIONS(4935), - [anon_sym_BSLASHglslink] = ACTIONS(4935), - [anon_sym_BSLASHglstext] = ACTIONS(4935), - [anon_sym_BSLASHGlstext] = ACTIONS(4935), - [anon_sym_BSLASHGLStext] = ACTIONS(4935), - [anon_sym_BSLASHglsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), - [anon_sym_BSLASHglsplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSplural] = ACTIONS(4935), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHglsname] = ACTIONS(4935), - [anon_sym_BSLASHGlsname] = ACTIONS(4935), - [anon_sym_BSLASHGLSname] = ACTIONS(4935), - [anon_sym_BSLASHglssymbol] = ACTIONS(4935), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), - [anon_sym_BSLASHglsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), - [anon_sym_BSLASHglsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), - [anon_sym_BSLASHglsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), - [anon_sym_BSLASHglsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), - [anon_sym_BSLASHglsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), - [anon_sym_BSLASHnewacronym] = ACTIONS(4935), - [anon_sym_BSLASHacrshort] = ACTIONS(4935), - [anon_sym_BSLASHAcrshort] = ACTIONS(4935), - [anon_sym_BSLASHACRshort] = ACTIONS(4935), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), - [anon_sym_BSLASHacrlong] = ACTIONS(4935), - [anon_sym_BSLASHAcrlong] = ACTIONS(4935), - [anon_sym_BSLASHACRlong] = ACTIONS(4935), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), - [anon_sym_BSLASHacrfull] = ACTIONS(4935), - [anon_sym_BSLASHAcrfull] = ACTIONS(4935), - [anon_sym_BSLASHACRfull] = ACTIONS(4935), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), - [anon_sym_BSLASHacs] = ACTIONS(4935), - [anon_sym_BSLASHAcs] = ACTIONS(4935), - [anon_sym_BSLASHacsp] = ACTIONS(4935), - [anon_sym_BSLASHAcsp] = ACTIONS(4935), - [anon_sym_BSLASHacl] = ACTIONS(4935), - [anon_sym_BSLASHAcl] = ACTIONS(4935), - [anon_sym_BSLASHaclp] = ACTIONS(4935), - [anon_sym_BSLASHAclp] = ACTIONS(4935), - [anon_sym_BSLASHacf] = ACTIONS(4935), - [anon_sym_BSLASHAcf] = ACTIONS(4935), - [anon_sym_BSLASHacfp] = ACTIONS(4935), - [anon_sym_BSLASHAcfp] = ACTIONS(4935), - [anon_sym_BSLASHac] = ACTIONS(4935), - [anon_sym_BSLASHAc] = ACTIONS(4935), - [anon_sym_BSLASHacp] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), - [anon_sym_BSLASHcolor] = ACTIONS(4935), - [anon_sym_BSLASHcolorbox] = ACTIONS(4935), - [anon_sym_BSLASHtextcolor] = ACTIONS(4935), - [anon_sym_BSLASHpagecolor] = ACTIONS(4935), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - [anon_sym_BSLASHtext] = ACTIONS(4935), - [anon_sym_BSLASHintertext] = ACTIONS(4935), - [anon_sym_shortintertext] = ACTIONS(4935), + [sym_command_name] = ACTIONS(5014), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_BSLASHpart] = ACTIONS(5014), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddpart] = ACTIONS(5014), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5012), + [anon_sym_BSLASHchapter] = ACTIONS(5014), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddchap] = ACTIONS(5014), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsection] = ACTIONS(5014), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHaddsec] = ACTIONS(5014), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5014), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5012), + [anon_sym_BSLASHparagraph] = ACTIONS(5014), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5014), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5012), + [anon_sym_BSLASHitem] = ACTIONS(5014), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [sym_word] = ACTIONS(5014), + [sym_placeholder] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5012), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5012), + [anon_sym_BSLASHbegin] = ACTIONS(5014), + [anon_sym_BSLASHusepackage] = ACTIONS(5014), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5014), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5014), + [anon_sym_BSLASHinclude] = ACTIONS(5014), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5014), + [anon_sym_BSLASHinput] = ACTIONS(5014), + [anon_sym_BSLASHsubfile] = ACTIONS(5014), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5014), + [anon_sym_BSLASHbibliography] = ACTIONS(5014), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5014), + [anon_sym_BSLASHincludesvg] = ACTIONS(5014), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5014), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5014), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5014), + [anon_sym_BSLASHimport] = ACTIONS(5014), + [anon_sym_BSLASHsubimport] = ACTIONS(5014), + [anon_sym_BSLASHinputfrom] = ACTIONS(5014), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5014), + [anon_sym_BSLASHincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHcaption] = ACTIONS(5014), + [anon_sym_BSLASHcite] = ACTIONS(5014), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCite] = ACTIONS(5014), + [anon_sym_BSLASHnocite] = ACTIONS(5014), + [anon_sym_BSLASHcitet] = ACTIONS(5014), + [anon_sym_BSLASHcitep] = ACTIONS(5014), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteauthor] = ACTIONS(5014), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5014), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitetitle] = ACTIONS(5014), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteyear] = ACTIONS(5014), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitedate] = ACTIONS(5014), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteurl] = ACTIONS(5014), + [anon_sym_BSLASHfullcite] = ACTIONS(5014), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5014), + [anon_sym_BSLASHcitealt] = ACTIONS(5014), + [anon_sym_BSLASHcitealp] = ACTIONS(5014), + [anon_sym_BSLASHcitetext] = ACTIONS(5014), + [anon_sym_BSLASHparencite] = ACTIONS(5014), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHParencite] = ACTIONS(5014), + [anon_sym_BSLASHfootcite] = ACTIONS(5014), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5014), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5014), + [anon_sym_BSLASHtextcite] = ACTIONS(5014), + [anon_sym_BSLASHTextcite] = ACTIONS(5014), + [anon_sym_BSLASHsmartcite] = ACTIONS(5014), + [anon_sym_BSLASHSmartcite] = ACTIONS(5014), + [anon_sym_BSLASHsupercite] = ACTIONS(5014), + [anon_sym_BSLASHautocite] = ACTIONS(5014), + [anon_sym_BSLASHAutocite] = ACTIONS(5014), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHvolcite] = ACTIONS(5014), + [anon_sym_BSLASHVolcite] = ACTIONS(5014), + [anon_sym_BSLASHpvolcite] = ACTIONS(5014), + [anon_sym_BSLASHPvolcite] = ACTIONS(5014), + [anon_sym_BSLASHfvolcite] = ACTIONS(5014), + [anon_sym_BSLASHftvolcite] = ACTIONS(5014), + [anon_sym_BSLASHsvolcite] = ACTIONS(5014), + [anon_sym_BSLASHSvolcite] = ACTIONS(5014), + [anon_sym_BSLASHtvolcite] = ACTIONS(5014), + [anon_sym_BSLASHTvolcite] = ACTIONS(5014), + [anon_sym_BSLASHavolcite] = ACTIONS(5014), + [anon_sym_BSLASHAvolcite] = ACTIONS(5014), + [anon_sym_BSLASHnotecite] = ACTIONS(5014), + [anon_sym_BSLASHNotecite] = ACTIONS(5014), + [anon_sym_BSLASHpnotecite] = ACTIONS(5014), + [anon_sym_BSLASHPnotecite] = ACTIONS(5014), + [anon_sym_BSLASHfnotecite] = ACTIONS(5014), + [anon_sym_BSLASHlabel] = ACTIONS(5014), + [anon_sym_BSLASHref] = ACTIONS(5014), + [anon_sym_BSLASHeqref] = ACTIONS(5014), + [anon_sym_BSLASHvref] = ACTIONS(5014), + [anon_sym_BSLASHVref] = ACTIONS(5014), + [anon_sym_BSLASHautoref] = ACTIONS(5014), + [anon_sym_BSLASHpageref] = ACTIONS(5014), + [anon_sym_BSLASHcref] = ACTIONS(5014), + [anon_sym_BSLASHCref] = ACTIONS(5014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnameCref] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHlabelcref] = ACTIONS(5014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCrefrange] = ACTIONS(5014), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnewlabel] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5014), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5014), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5014), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdef] = ACTIONS(5014), + [anon_sym_BSLASHlet] = ACTIONS(5014), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5014), + [anon_sym_BSLASHgls] = ACTIONS(5014), + [anon_sym_BSLASHGls] = ACTIONS(5014), + [anon_sym_BSLASHGLS] = ACTIONS(5014), + [anon_sym_BSLASHglspl] = ACTIONS(5014), + [anon_sym_BSLASHGlspl] = ACTIONS(5014), + [anon_sym_BSLASHGLSpl] = ACTIONS(5014), + [anon_sym_BSLASHglsdisp] = ACTIONS(5014), + [anon_sym_BSLASHglslink] = ACTIONS(5014), + [anon_sym_BSLASHglstext] = ACTIONS(5014), + [anon_sym_BSLASHGlstext] = ACTIONS(5014), + [anon_sym_BSLASHGLStext] = ACTIONS(5014), + [anon_sym_BSLASHglsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5014), + [anon_sym_BSLASHglsplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSplural] = ACTIONS(5014), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHglsname] = ACTIONS(5014), + [anon_sym_BSLASHGlsname] = ACTIONS(5014), + [anon_sym_BSLASHGLSname] = ACTIONS(5014), + [anon_sym_BSLASHglssymbol] = ACTIONS(5014), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5014), + [anon_sym_BSLASHglsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5014), + [anon_sym_BSLASHglsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5014), + [anon_sym_BSLASHglsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5014), + [anon_sym_BSLASHglsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5014), + [anon_sym_BSLASHglsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5014), + [anon_sym_BSLASHnewacronym] = ACTIONS(5014), + [anon_sym_BSLASHacrshort] = ACTIONS(5014), + [anon_sym_BSLASHAcrshort] = ACTIONS(5014), + [anon_sym_BSLASHACRshort] = ACTIONS(5014), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5014), + [anon_sym_BSLASHacrlong] = ACTIONS(5014), + [anon_sym_BSLASHAcrlong] = ACTIONS(5014), + [anon_sym_BSLASHACRlong] = ACTIONS(5014), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5014), + [anon_sym_BSLASHacrfull] = ACTIONS(5014), + [anon_sym_BSLASHAcrfull] = ACTIONS(5014), + [anon_sym_BSLASHACRfull] = ACTIONS(5014), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5014), + [anon_sym_BSLASHacs] = ACTIONS(5014), + [anon_sym_BSLASHAcs] = ACTIONS(5014), + [anon_sym_BSLASHacsp] = ACTIONS(5014), + [anon_sym_BSLASHAcsp] = ACTIONS(5014), + [anon_sym_BSLASHacl] = ACTIONS(5014), + [anon_sym_BSLASHAcl] = ACTIONS(5014), + [anon_sym_BSLASHaclp] = ACTIONS(5014), + [anon_sym_BSLASHAclp] = ACTIONS(5014), + [anon_sym_BSLASHacf] = ACTIONS(5014), + [anon_sym_BSLASHAcf] = ACTIONS(5014), + [anon_sym_BSLASHacfp] = ACTIONS(5014), + [anon_sym_BSLASHAcfp] = ACTIONS(5014), + [anon_sym_BSLASHac] = ACTIONS(5014), + [anon_sym_BSLASHAc] = ACTIONS(5014), + [anon_sym_BSLASHacp] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5014), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5014), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5014), + [anon_sym_BSLASHcolor] = ACTIONS(5014), + [anon_sym_BSLASHcolorbox] = ACTIONS(5014), + [anon_sym_BSLASHtextcolor] = ACTIONS(5014), + [anon_sym_BSLASHpagecolor] = ACTIONS(5014), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5014), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5014), + [anon_sym_BSLASHtext] = ACTIONS(5014), + [anon_sym_BSLASHintertext] = ACTIONS(5014), + [anon_sym_shortintertext] = ACTIONS(5014), }, [1240] = { - [sym_command_name] = ACTIONS(5131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_BSLASHpart] = ACTIONS(5131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddpart] = ACTIONS(5131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), - [anon_sym_BSLASHchapter] = ACTIONS(5131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddchap] = ACTIONS(5131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsection] = ACTIONS(5131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHaddsec] = ACTIONS(5131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), - [anon_sym_BSLASHparagraph] = ACTIONS(5131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), - [anon_sym_BSLASHitem] = ACTIONS(5131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5129), - [sym_word] = ACTIONS(5131), - [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_DOLLAR_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), - [anon_sym_BSLASHbegin] = ACTIONS(5131), - [anon_sym_BSLASHend] = ACTIONS(5131), - [anon_sym_BSLASHusepackage] = ACTIONS(5131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), - [anon_sym_BSLASHinclude] = ACTIONS(5131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), - [anon_sym_BSLASHinput] = ACTIONS(5131), - [anon_sym_BSLASHsubfile] = ACTIONS(5131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), - [anon_sym_BSLASHbibliography] = ACTIONS(5131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), - [anon_sym_BSLASHincludesvg] = ACTIONS(5131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), - [anon_sym_BSLASHimport] = ACTIONS(5131), - [anon_sym_BSLASHsubimport] = ACTIONS(5131), - [anon_sym_BSLASHinputfrom] = ACTIONS(5131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), - [anon_sym_BSLASHincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHcaption] = ACTIONS(5131), - [anon_sym_BSLASHcite] = ACTIONS(5131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCite] = ACTIONS(5131), - [anon_sym_BSLASHnocite] = ACTIONS(5131), - [anon_sym_BSLASHcitet] = ACTIONS(5131), - [anon_sym_BSLASHcitep] = ACTIONS(5131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor] = ACTIONS(5131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle] = ACTIONS(5131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteyear] = ACTIONS(5131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitedate] = ACTIONS(5131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteurl] = ACTIONS(5131), - [anon_sym_BSLASHfullcite] = ACTIONS(5131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), - [anon_sym_BSLASHcitealt] = ACTIONS(5131), - [anon_sym_BSLASHcitealp] = ACTIONS(5131), - [anon_sym_BSLASHcitetext] = ACTIONS(5131), - [anon_sym_BSLASHparencite] = ACTIONS(5131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHParencite] = ACTIONS(5131), - [anon_sym_BSLASHfootcite] = ACTIONS(5131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), - [anon_sym_BSLASHtextcite] = ACTIONS(5131), - [anon_sym_BSLASHTextcite] = ACTIONS(5131), - [anon_sym_BSLASHsmartcite] = ACTIONS(5131), - [anon_sym_BSLASHSmartcite] = ACTIONS(5131), - [anon_sym_BSLASHsupercite] = ACTIONS(5131), - [anon_sym_BSLASHautocite] = ACTIONS(5131), - [anon_sym_BSLASHAutocite] = ACTIONS(5131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHvolcite] = ACTIONS(5131), - [anon_sym_BSLASHVolcite] = ACTIONS(5131), - [anon_sym_BSLASHpvolcite] = ACTIONS(5131), - [anon_sym_BSLASHPvolcite] = ACTIONS(5131), - [anon_sym_BSLASHfvolcite] = ACTIONS(5131), - [anon_sym_BSLASHftvolcite] = ACTIONS(5131), - [anon_sym_BSLASHsvolcite] = ACTIONS(5131), - [anon_sym_BSLASHSvolcite] = ACTIONS(5131), - [anon_sym_BSLASHtvolcite] = ACTIONS(5131), - [anon_sym_BSLASHTvolcite] = ACTIONS(5131), - [anon_sym_BSLASHavolcite] = ACTIONS(5131), - [anon_sym_BSLASHAvolcite] = ACTIONS(5131), - [anon_sym_BSLASHnotecite] = ACTIONS(5131), - [anon_sym_BSLASHNotecite] = ACTIONS(5131), - [anon_sym_BSLASHpnotecite] = ACTIONS(5131), - [anon_sym_BSLASHPnotecite] = ACTIONS(5131), - [anon_sym_BSLASHfnotecite] = ACTIONS(5131), - [anon_sym_BSLASHlabel] = ACTIONS(5131), - [anon_sym_BSLASHref] = ACTIONS(5131), - [anon_sym_BSLASHeqref] = ACTIONS(5131), - [anon_sym_BSLASHvref] = ACTIONS(5131), - [anon_sym_BSLASHVref] = ACTIONS(5131), - [anon_sym_BSLASHautoref] = ACTIONS(5131), - [anon_sym_BSLASHpageref] = ACTIONS(5131), - [anon_sym_BSLASHcref] = ACTIONS(5131), - [anon_sym_BSLASHCref] = ACTIONS(5131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnameCref] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHlabelcref] = ACTIONS(5131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange] = ACTIONS(5131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnewlabel] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), - [anon_sym_BSLASHdef] = ACTIONS(5131), - [anon_sym_BSLASHlet] = ACTIONS(5131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), - [anon_sym_BSLASHgls] = ACTIONS(5131), - [anon_sym_BSLASHGls] = ACTIONS(5131), - [anon_sym_BSLASHGLS] = ACTIONS(5131), - [anon_sym_BSLASHglspl] = ACTIONS(5131), - [anon_sym_BSLASHGlspl] = ACTIONS(5131), - [anon_sym_BSLASHGLSpl] = ACTIONS(5131), - [anon_sym_BSLASHglsdisp] = ACTIONS(5131), - [anon_sym_BSLASHglslink] = ACTIONS(5131), - [anon_sym_BSLASHglstext] = ACTIONS(5131), - [anon_sym_BSLASHGlstext] = ACTIONS(5131), - [anon_sym_BSLASHGLStext] = ACTIONS(5131), - [anon_sym_BSLASHglsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), - [anon_sym_BSLASHglsplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSplural] = ACTIONS(5131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHglsname] = ACTIONS(5131), - [anon_sym_BSLASHGlsname] = ACTIONS(5131), - [anon_sym_BSLASHGLSname] = ACTIONS(5131), - [anon_sym_BSLASHglssymbol] = ACTIONS(5131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), - [anon_sym_BSLASHglsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), - [anon_sym_BSLASHglsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), - [anon_sym_BSLASHglsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), - [anon_sym_BSLASHglsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), - [anon_sym_BSLASHglsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), - [anon_sym_BSLASHnewacronym] = ACTIONS(5131), - [anon_sym_BSLASHacrshort] = ACTIONS(5131), - [anon_sym_BSLASHAcrshort] = ACTIONS(5131), - [anon_sym_BSLASHACRshort] = ACTIONS(5131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), - [anon_sym_BSLASHacrlong] = ACTIONS(5131), - [anon_sym_BSLASHAcrlong] = ACTIONS(5131), - [anon_sym_BSLASHACRlong] = ACTIONS(5131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), - [anon_sym_BSLASHacrfull] = ACTIONS(5131), - [anon_sym_BSLASHAcrfull] = ACTIONS(5131), - [anon_sym_BSLASHACRfull] = ACTIONS(5131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), - [anon_sym_BSLASHacs] = ACTIONS(5131), - [anon_sym_BSLASHAcs] = ACTIONS(5131), - [anon_sym_BSLASHacsp] = ACTIONS(5131), - [anon_sym_BSLASHAcsp] = ACTIONS(5131), - [anon_sym_BSLASHacl] = ACTIONS(5131), - [anon_sym_BSLASHAcl] = ACTIONS(5131), - [anon_sym_BSLASHaclp] = ACTIONS(5131), - [anon_sym_BSLASHAclp] = ACTIONS(5131), - [anon_sym_BSLASHacf] = ACTIONS(5131), - [anon_sym_BSLASHAcf] = ACTIONS(5131), - [anon_sym_BSLASHacfp] = ACTIONS(5131), - [anon_sym_BSLASHAcfp] = ACTIONS(5131), - [anon_sym_BSLASHac] = ACTIONS(5131), - [anon_sym_BSLASHAc] = ACTIONS(5131), - [anon_sym_BSLASHacp] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), - [anon_sym_BSLASHcolor] = ACTIONS(5131), - [anon_sym_BSLASHcolorbox] = ACTIONS(5131), - [anon_sym_BSLASHtextcolor] = ACTIONS(5131), - [anon_sym_BSLASHpagecolor] = ACTIONS(5131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), - [anon_sym_BSLASHtext] = ACTIONS(5131), - [anon_sym_BSLASHintertext] = ACTIONS(5131), - [anon_sym_shortintertext] = ACTIONS(5131), + [sym_command_name] = ACTIONS(5210), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_BSLASHpart] = ACTIONS(5210), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddpart] = ACTIONS(5210), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5208), + [anon_sym_BSLASHchapter] = ACTIONS(5210), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddchap] = ACTIONS(5210), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsection] = ACTIONS(5210), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHaddsec] = ACTIONS(5210), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5210), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5208), + [anon_sym_BSLASHparagraph] = ACTIONS(5210), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5210), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5208), + [anon_sym_BSLASHitem] = ACTIONS(5210), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5208), + [sym_word] = ACTIONS(5210), + [sym_placeholder] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym__] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_SQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5208), + [anon_sym_BSLASHbegin] = ACTIONS(5210), + [anon_sym_BSLASHend] = ACTIONS(5210), + [anon_sym_BSLASHusepackage] = ACTIONS(5210), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5210), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5210), + [anon_sym_BSLASHinclude] = ACTIONS(5210), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5210), + [anon_sym_BSLASHinput] = ACTIONS(5210), + [anon_sym_BSLASHsubfile] = ACTIONS(5210), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5210), + [anon_sym_BSLASHbibliography] = ACTIONS(5210), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5210), + [anon_sym_BSLASHincludesvg] = ACTIONS(5210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5210), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5210), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5210), + [anon_sym_BSLASHimport] = ACTIONS(5210), + [anon_sym_BSLASHsubimport] = ACTIONS(5210), + [anon_sym_BSLASHinputfrom] = ACTIONS(5210), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5210), + [anon_sym_BSLASHincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHcaption] = ACTIONS(5210), + [anon_sym_BSLASHcite] = ACTIONS(5210), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCite] = ACTIONS(5210), + [anon_sym_BSLASHnocite] = ACTIONS(5210), + [anon_sym_BSLASHcitet] = ACTIONS(5210), + [anon_sym_BSLASHcitep] = ACTIONS(5210), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteauthor] = ACTIONS(5210), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5210), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitetitle] = ACTIONS(5210), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteyear] = ACTIONS(5210), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitedate] = ACTIONS(5210), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteurl] = ACTIONS(5210), + [anon_sym_BSLASHfullcite] = ACTIONS(5210), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5210), + [anon_sym_BSLASHcitealt] = ACTIONS(5210), + [anon_sym_BSLASHcitealp] = ACTIONS(5210), + [anon_sym_BSLASHcitetext] = ACTIONS(5210), + [anon_sym_BSLASHparencite] = ACTIONS(5210), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHParencite] = ACTIONS(5210), + [anon_sym_BSLASHfootcite] = ACTIONS(5210), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5210), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5210), + [anon_sym_BSLASHtextcite] = ACTIONS(5210), + [anon_sym_BSLASHTextcite] = ACTIONS(5210), + [anon_sym_BSLASHsmartcite] = ACTIONS(5210), + [anon_sym_BSLASHSmartcite] = ACTIONS(5210), + [anon_sym_BSLASHsupercite] = ACTIONS(5210), + [anon_sym_BSLASHautocite] = ACTIONS(5210), + [anon_sym_BSLASHAutocite] = ACTIONS(5210), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHvolcite] = ACTIONS(5210), + [anon_sym_BSLASHVolcite] = ACTIONS(5210), + [anon_sym_BSLASHpvolcite] = ACTIONS(5210), + [anon_sym_BSLASHPvolcite] = ACTIONS(5210), + [anon_sym_BSLASHfvolcite] = ACTIONS(5210), + [anon_sym_BSLASHftvolcite] = ACTIONS(5210), + [anon_sym_BSLASHsvolcite] = ACTIONS(5210), + [anon_sym_BSLASHSvolcite] = ACTIONS(5210), + [anon_sym_BSLASHtvolcite] = ACTIONS(5210), + [anon_sym_BSLASHTvolcite] = ACTIONS(5210), + [anon_sym_BSLASHavolcite] = ACTIONS(5210), + [anon_sym_BSLASHAvolcite] = ACTIONS(5210), + [anon_sym_BSLASHnotecite] = ACTIONS(5210), + [anon_sym_BSLASHNotecite] = ACTIONS(5210), + [anon_sym_BSLASHpnotecite] = ACTIONS(5210), + [anon_sym_BSLASHPnotecite] = ACTIONS(5210), + [anon_sym_BSLASHfnotecite] = ACTIONS(5210), + [anon_sym_BSLASHlabel] = ACTIONS(5210), + [anon_sym_BSLASHref] = ACTIONS(5210), + [anon_sym_BSLASHeqref] = ACTIONS(5210), + [anon_sym_BSLASHvref] = ACTIONS(5210), + [anon_sym_BSLASHVref] = ACTIONS(5210), + [anon_sym_BSLASHautoref] = ACTIONS(5210), + [anon_sym_BSLASHpageref] = ACTIONS(5210), + [anon_sym_BSLASHcref] = ACTIONS(5210), + [anon_sym_BSLASHCref] = ACTIONS(5210), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnameCref] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHlabelcref] = ACTIONS(5210), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCrefrange] = ACTIONS(5210), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnewlabel] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdef] = ACTIONS(5210), + [anon_sym_BSLASHlet] = ACTIONS(5210), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5210), + [anon_sym_BSLASHgls] = ACTIONS(5210), + [anon_sym_BSLASHGls] = ACTIONS(5210), + [anon_sym_BSLASHGLS] = ACTIONS(5210), + [anon_sym_BSLASHglspl] = ACTIONS(5210), + [anon_sym_BSLASHGlspl] = ACTIONS(5210), + [anon_sym_BSLASHGLSpl] = ACTIONS(5210), + [anon_sym_BSLASHglsdisp] = ACTIONS(5210), + [anon_sym_BSLASHglslink] = ACTIONS(5210), + [anon_sym_BSLASHglstext] = ACTIONS(5210), + [anon_sym_BSLASHGlstext] = ACTIONS(5210), + [anon_sym_BSLASHGLStext] = ACTIONS(5210), + [anon_sym_BSLASHglsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5210), + [anon_sym_BSLASHglsplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSplural] = ACTIONS(5210), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHglsname] = ACTIONS(5210), + [anon_sym_BSLASHGlsname] = ACTIONS(5210), + [anon_sym_BSLASHGLSname] = ACTIONS(5210), + [anon_sym_BSLASHglssymbol] = ACTIONS(5210), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5210), + [anon_sym_BSLASHglsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5210), + [anon_sym_BSLASHglsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5210), + [anon_sym_BSLASHglsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5210), + [anon_sym_BSLASHglsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5210), + [anon_sym_BSLASHglsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5210), + [anon_sym_BSLASHnewacronym] = ACTIONS(5210), + [anon_sym_BSLASHacrshort] = ACTIONS(5210), + [anon_sym_BSLASHAcrshort] = ACTIONS(5210), + [anon_sym_BSLASHACRshort] = ACTIONS(5210), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5210), + [anon_sym_BSLASHacrlong] = ACTIONS(5210), + [anon_sym_BSLASHAcrlong] = ACTIONS(5210), + [anon_sym_BSLASHACRlong] = ACTIONS(5210), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5210), + [anon_sym_BSLASHacrfull] = ACTIONS(5210), + [anon_sym_BSLASHAcrfull] = ACTIONS(5210), + [anon_sym_BSLASHACRfull] = ACTIONS(5210), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5210), + [anon_sym_BSLASHacs] = ACTIONS(5210), + [anon_sym_BSLASHAcs] = ACTIONS(5210), + [anon_sym_BSLASHacsp] = ACTIONS(5210), + [anon_sym_BSLASHAcsp] = ACTIONS(5210), + [anon_sym_BSLASHacl] = ACTIONS(5210), + [anon_sym_BSLASHAcl] = ACTIONS(5210), + [anon_sym_BSLASHaclp] = ACTIONS(5210), + [anon_sym_BSLASHAclp] = ACTIONS(5210), + [anon_sym_BSLASHacf] = ACTIONS(5210), + [anon_sym_BSLASHAcf] = ACTIONS(5210), + [anon_sym_BSLASHacfp] = ACTIONS(5210), + [anon_sym_BSLASHAcfp] = ACTIONS(5210), + [anon_sym_BSLASHac] = ACTIONS(5210), + [anon_sym_BSLASHAc] = ACTIONS(5210), + [anon_sym_BSLASHacp] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5210), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5210), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5210), + [anon_sym_BSLASHcolor] = ACTIONS(5210), + [anon_sym_BSLASHcolorbox] = ACTIONS(5210), + [anon_sym_BSLASHtextcolor] = ACTIONS(5210), + [anon_sym_BSLASHpagecolor] = ACTIONS(5210), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5210), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5210), + [anon_sym_BSLASHtext] = ACTIONS(5210), + [anon_sym_BSLASHintertext] = ACTIONS(5210), + [anon_sym_shortintertext] = ACTIONS(5210), }, [1241] = { - [sym_command_name] = ACTIONS(4943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_BSLASHpart] = ACTIONS(4943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddpart] = ACTIONS(4943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), - [anon_sym_BSLASHchapter] = ACTIONS(4943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddchap] = ACTIONS(4943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsection] = ACTIONS(4943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHaddsec] = ACTIONS(4943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), - [anon_sym_BSLASHparagraph] = ACTIONS(4943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), - [anon_sym_BSLASHitem] = ACTIONS(4943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4941), - [sym_word] = ACTIONS(4943), - [sym_placeholder] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4943), - [anon_sym__] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4941), - [anon_sym_BSLASHbegin] = ACTIONS(4943), - [anon_sym_BSLASHusepackage] = ACTIONS(4943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), - [anon_sym_BSLASHinclude] = ACTIONS(4943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), - [anon_sym_BSLASHinput] = ACTIONS(4943), - [anon_sym_BSLASHsubfile] = ACTIONS(4943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), - [anon_sym_BSLASHbibliography] = ACTIONS(4943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), - [anon_sym_BSLASHincludesvg] = ACTIONS(4943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), - [anon_sym_BSLASHimport] = ACTIONS(4943), - [anon_sym_BSLASHsubimport] = ACTIONS(4943), - [anon_sym_BSLASHinputfrom] = ACTIONS(4943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), - [anon_sym_BSLASHincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHcaption] = ACTIONS(4943), - [anon_sym_BSLASHcite] = ACTIONS(4943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCite] = ACTIONS(4943), - [anon_sym_BSLASHnocite] = ACTIONS(4943), - [anon_sym_BSLASHcitet] = ACTIONS(4943), - [anon_sym_BSLASHcitep] = ACTIONS(4943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteyear] = ACTIONS(4943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitedate] = ACTIONS(4943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteurl] = ACTIONS(4943), - [anon_sym_BSLASHfullcite] = ACTIONS(4943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), - [anon_sym_BSLASHcitealt] = ACTIONS(4943), - [anon_sym_BSLASHcitealp] = ACTIONS(4943), - [anon_sym_BSLASHcitetext] = ACTIONS(4943), - [anon_sym_BSLASHparencite] = ACTIONS(4943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHParencite] = ACTIONS(4943), - [anon_sym_BSLASHfootcite] = ACTIONS(4943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), - [anon_sym_BSLASHtextcite] = ACTIONS(4943), - [anon_sym_BSLASHTextcite] = ACTIONS(4943), - [anon_sym_BSLASHsmartcite] = ACTIONS(4943), - [anon_sym_BSLASHSmartcite] = ACTIONS(4943), - [anon_sym_BSLASHsupercite] = ACTIONS(4943), - [anon_sym_BSLASHautocite] = ACTIONS(4943), - [anon_sym_BSLASHAutocite] = ACTIONS(4943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHvolcite] = ACTIONS(4943), - [anon_sym_BSLASHVolcite] = ACTIONS(4943), - [anon_sym_BSLASHpvolcite] = ACTIONS(4943), - [anon_sym_BSLASHPvolcite] = ACTIONS(4943), - [anon_sym_BSLASHfvolcite] = ACTIONS(4943), - [anon_sym_BSLASHftvolcite] = ACTIONS(4943), - [anon_sym_BSLASHsvolcite] = ACTIONS(4943), - [anon_sym_BSLASHSvolcite] = ACTIONS(4943), - [anon_sym_BSLASHtvolcite] = ACTIONS(4943), - [anon_sym_BSLASHTvolcite] = ACTIONS(4943), - [anon_sym_BSLASHavolcite] = ACTIONS(4943), - [anon_sym_BSLASHAvolcite] = ACTIONS(4943), - [anon_sym_BSLASHnotecite] = ACTIONS(4943), - [anon_sym_BSLASHNotecite] = ACTIONS(4943), - [anon_sym_BSLASHpnotecite] = ACTIONS(4943), - [anon_sym_BSLASHPnotecite] = ACTIONS(4943), - [anon_sym_BSLASHfnotecite] = ACTIONS(4943), - [anon_sym_BSLASHlabel] = ACTIONS(4943), - [anon_sym_BSLASHref] = ACTIONS(4943), - [anon_sym_BSLASHeqref] = ACTIONS(4943), - [anon_sym_BSLASHvref] = ACTIONS(4943), - [anon_sym_BSLASHVref] = ACTIONS(4943), - [anon_sym_BSLASHautoref] = ACTIONS(4943), - [anon_sym_BSLASHpageref] = ACTIONS(4943), - [anon_sym_BSLASHcref] = ACTIONS(4943), - [anon_sym_BSLASHCref] = ACTIONS(4943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnameCref] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHlabelcref] = ACTIONS(4943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnewlabel] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), - [anon_sym_BSLASHdef] = ACTIONS(4943), - [anon_sym_BSLASHlet] = ACTIONS(4943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), - [anon_sym_BSLASHgls] = ACTIONS(4943), - [anon_sym_BSLASHGls] = ACTIONS(4943), - [anon_sym_BSLASHGLS] = ACTIONS(4943), - [anon_sym_BSLASHglspl] = ACTIONS(4943), - [anon_sym_BSLASHGlspl] = ACTIONS(4943), - [anon_sym_BSLASHGLSpl] = ACTIONS(4943), - [anon_sym_BSLASHglsdisp] = ACTIONS(4943), - [anon_sym_BSLASHglslink] = ACTIONS(4943), - [anon_sym_BSLASHglstext] = ACTIONS(4943), - [anon_sym_BSLASHGlstext] = ACTIONS(4943), - [anon_sym_BSLASHGLStext] = ACTIONS(4943), - [anon_sym_BSLASHglsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), - [anon_sym_BSLASHglsplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSplural] = ACTIONS(4943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHglsname] = ACTIONS(4943), - [anon_sym_BSLASHGlsname] = ACTIONS(4943), - [anon_sym_BSLASHGLSname] = ACTIONS(4943), - [anon_sym_BSLASHglssymbol] = ACTIONS(4943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), - [anon_sym_BSLASHglsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), - [anon_sym_BSLASHglsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), - [anon_sym_BSLASHglsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), - [anon_sym_BSLASHglsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), - [anon_sym_BSLASHglsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), - [anon_sym_BSLASHnewacronym] = ACTIONS(4943), - [anon_sym_BSLASHacrshort] = ACTIONS(4943), - [anon_sym_BSLASHAcrshort] = ACTIONS(4943), - [anon_sym_BSLASHACRshort] = ACTIONS(4943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), - [anon_sym_BSLASHacrlong] = ACTIONS(4943), - [anon_sym_BSLASHAcrlong] = ACTIONS(4943), - [anon_sym_BSLASHACRlong] = ACTIONS(4943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), - [anon_sym_BSLASHacrfull] = ACTIONS(4943), - [anon_sym_BSLASHAcrfull] = ACTIONS(4943), - [anon_sym_BSLASHACRfull] = ACTIONS(4943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), - [anon_sym_BSLASHacs] = ACTIONS(4943), - [anon_sym_BSLASHAcs] = ACTIONS(4943), - [anon_sym_BSLASHacsp] = ACTIONS(4943), - [anon_sym_BSLASHAcsp] = ACTIONS(4943), - [anon_sym_BSLASHacl] = ACTIONS(4943), - [anon_sym_BSLASHAcl] = ACTIONS(4943), - [anon_sym_BSLASHaclp] = ACTIONS(4943), - [anon_sym_BSLASHAclp] = ACTIONS(4943), - [anon_sym_BSLASHacf] = ACTIONS(4943), - [anon_sym_BSLASHAcf] = ACTIONS(4943), - [anon_sym_BSLASHacfp] = ACTIONS(4943), - [anon_sym_BSLASHAcfp] = ACTIONS(4943), - [anon_sym_BSLASHac] = ACTIONS(4943), - [anon_sym_BSLASHAc] = ACTIONS(4943), - [anon_sym_BSLASHacp] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), - [anon_sym_BSLASHcolor] = ACTIONS(4943), - [anon_sym_BSLASHcolorbox] = ACTIONS(4943), - [anon_sym_BSLASHtextcolor] = ACTIONS(4943), - [anon_sym_BSLASHpagecolor] = ACTIONS(4943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), - [anon_sym_BSLASHtext] = ACTIONS(4943), - [anon_sym_BSLASHintertext] = ACTIONS(4943), - [anon_sym_shortintertext] = ACTIONS(4943), + [sym_command_name] = ACTIONS(5022), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_BSLASHpart] = ACTIONS(5022), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddpart] = ACTIONS(5022), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5020), + [anon_sym_BSLASHchapter] = ACTIONS(5022), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddchap] = ACTIONS(5022), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsection] = ACTIONS(5022), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHaddsec] = ACTIONS(5022), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5022), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5020), + [anon_sym_BSLASHparagraph] = ACTIONS(5022), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5022), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5020), + [anon_sym_BSLASHitem] = ACTIONS(5022), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [sym_word] = ACTIONS(5022), + [sym_placeholder] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5020), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5020), + [anon_sym_BSLASHbegin] = ACTIONS(5022), + [anon_sym_BSLASHusepackage] = ACTIONS(5022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5022), + [anon_sym_BSLASHinclude] = ACTIONS(5022), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5022), + [anon_sym_BSLASHinput] = ACTIONS(5022), + [anon_sym_BSLASHsubfile] = ACTIONS(5022), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5022), + [anon_sym_BSLASHbibliography] = ACTIONS(5022), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5022), + [anon_sym_BSLASHincludesvg] = ACTIONS(5022), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5022), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), + [anon_sym_BSLASHimport] = ACTIONS(5022), + [anon_sym_BSLASHsubimport] = ACTIONS(5022), + [anon_sym_BSLASHinputfrom] = ACTIONS(5022), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5022), + [anon_sym_BSLASHincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHcaption] = ACTIONS(5022), + [anon_sym_BSLASHcite] = ACTIONS(5022), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCite] = ACTIONS(5022), + [anon_sym_BSLASHnocite] = ACTIONS(5022), + [anon_sym_BSLASHcitet] = ACTIONS(5022), + [anon_sym_BSLASHcitep] = ACTIONS(5022), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteauthor] = ACTIONS(5022), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5022), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitetitle] = ACTIONS(5022), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteyear] = ACTIONS(5022), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitedate] = ACTIONS(5022), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteurl] = ACTIONS(5022), + [anon_sym_BSLASHfullcite] = ACTIONS(5022), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5022), + [anon_sym_BSLASHcitealt] = ACTIONS(5022), + [anon_sym_BSLASHcitealp] = ACTIONS(5022), + [anon_sym_BSLASHcitetext] = ACTIONS(5022), + [anon_sym_BSLASHparencite] = ACTIONS(5022), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHParencite] = ACTIONS(5022), + [anon_sym_BSLASHfootcite] = ACTIONS(5022), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5022), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5022), + [anon_sym_BSLASHtextcite] = ACTIONS(5022), + [anon_sym_BSLASHTextcite] = ACTIONS(5022), + [anon_sym_BSLASHsmartcite] = ACTIONS(5022), + [anon_sym_BSLASHSmartcite] = ACTIONS(5022), + [anon_sym_BSLASHsupercite] = ACTIONS(5022), + [anon_sym_BSLASHautocite] = ACTIONS(5022), + [anon_sym_BSLASHAutocite] = ACTIONS(5022), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHvolcite] = ACTIONS(5022), + [anon_sym_BSLASHVolcite] = ACTIONS(5022), + [anon_sym_BSLASHpvolcite] = ACTIONS(5022), + [anon_sym_BSLASHPvolcite] = ACTIONS(5022), + [anon_sym_BSLASHfvolcite] = ACTIONS(5022), + [anon_sym_BSLASHftvolcite] = ACTIONS(5022), + [anon_sym_BSLASHsvolcite] = ACTIONS(5022), + [anon_sym_BSLASHSvolcite] = ACTIONS(5022), + [anon_sym_BSLASHtvolcite] = ACTIONS(5022), + [anon_sym_BSLASHTvolcite] = ACTIONS(5022), + [anon_sym_BSLASHavolcite] = ACTIONS(5022), + [anon_sym_BSLASHAvolcite] = ACTIONS(5022), + [anon_sym_BSLASHnotecite] = ACTIONS(5022), + [anon_sym_BSLASHNotecite] = ACTIONS(5022), + [anon_sym_BSLASHpnotecite] = ACTIONS(5022), + [anon_sym_BSLASHPnotecite] = ACTIONS(5022), + [anon_sym_BSLASHfnotecite] = ACTIONS(5022), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [anon_sym_BSLASHref] = ACTIONS(5022), + [anon_sym_BSLASHeqref] = ACTIONS(5022), + [anon_sym_BSLASHvref] = ACTIONS(5022), + [anon_sym_BSLASHVref] = ACTIONS(5022), + [anon_sym_BSLASHautoref] = ACTIONS(5022), + [anon_sym_BSLASHpageref] = ACTIONS(5022), + [anon_sym_BSLASHcref] = ACTIONS(5022), + [anon_sym_BSLASHCref] = ACTIONS(5022), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnameCref] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHlabelcref] = ACTIONS(5022), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCrefrange] = ACTIONS(5022), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnewlabel] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5022), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5022), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5022), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdef] = ACTIONS(5022), + [anon_sym_BSLASHlet] = ACTIONS(5022), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5022), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5022), + [anon_sym_BSLASHgls] = ACTIONS(5022), + [anon_sym_BSLASHGls] = ACTIONS(5022), + [anon_sym_BSLASHGLS] = ACTIONS(5022), + [anon_sym_BSLASHglspl] = ACTIONS(5022), + [anon_sym_BSLASHGlspl] = ACTIONS(5022), + [anon_sym_BSLASHGLSpl] = ACTIONS(5022), + [anon_sym_BSLASHglsdisp] = ACTIONS(5022), + [anon_sym_BSLASHglslink] = ACTIONS(5022), + [anon_sym_BSLASHglstext] = ACTIONS(5022), + [anon_sym_BSLASHGlstext] = ACTIONS(5022), + [anon_sym_BSLASHGLStext] = ACTIONS(5022), + [anon_sym_BSLASHglsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5022), + [anon_sym_BSLASHglsplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSplural] = ACTIONS(5022), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHglsname] = ACTIONS(5022), + [anon_sym_BSLASHGlsname] = ACTIONS(5022), + [anon_sym_BSLASHGLSname] = ACTIONS(5022), + [anon_sym_BSLASHglssymbol] = ACTIONS(5022), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5022), + [anon_sym_BSLASHglsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5022), + [anon_sym_BSLASHglsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5022), + [anon_sym_BSLASHglsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5022), + [anon_sym_BSLASHglsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5022), + [anon_sym_BSLASHglsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5022), + [anon_sym_BSLASHnewacronym] = ACTIONS(5022), + [anon_sym_BSLASHacrshort] = ACTIONS(5022), + [anon_sym_BSLASHAcrshort] = ACTIONS(5022), + [anon_sym_BSLASHACRshort] = ACTIONS(5022), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5022), + [anon_sym_BSLASHacrlong] = ACTIONS(5022), + [anon_sym_BSLASHAcrlong] = ACTIONS(5022), + [anon_sym_BSLASHACRlong] = ACTIONS(5022), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5022), + [anon_sym_BSLASHacrfull] = ACTIONS(5022), + [anon_sym_BSLASHAcrfull] = ACTIONS(5022), + [anon_sym_BSLASHACRfull] = ACTIONS(5022), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5022), + [anon_sym_BSLASHacs] = ACTIONS(5022), + [anon_sym_BSLASHAcs] = ACTIONS(5022), + [anon_sym_BSLASHacsp] = ACTIONS(5022), + [anon_sym_BSLASHAcsp] = ACTIONS(5022), + [anon_sym_BSLASHacl] = ACTIONS(5022), + [anon_sym_BSLASHAcl] = ACTIONS(5022), + [anon_sym_BSLASHaclp] = ACTIONS(5022), + [anon_sym_BSLASHAclp] = ACTIONS(5022), + [anon_sym_BSLASHacf] = ACTIONS(5022), + [anon_sym_BSLASHAcf] = ACTIONS(5022), + [anon_sym_BSLASHacfp] = ACTIONS(5022), + [anon_sym_BSLASHAcfp] = ACTIONS(5022), + [anon_sym_BSLASHac] = ACTIONS(5022), + [anon_sym_BSLASHAc] = ACTIONS(5022), + [anon_sym_BSLASHacp] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5022), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5022), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5022), + [anon_sym_BSLASHcolor] = ACTIONS(5022), + [anon_sym_BSLASHcolorbox] = ACTIONS(5022), + [anon_sym_BSLASHtextcolor] = ACTIONS(5022), + [anon_sym_BSLASHpagecolor] = ACTIONS(5022), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5022), + [anon_sym_BSLASHtext] = ACTIONS(5022), + [anon_sym_BSLASHintertext] = ACTIONS(5022), + [anon_sym_shortintertext] = ACTIONS(5022), }, [1242] = { - [sym_command_name] = ACTIONS(4947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_BSLASHpart] = ACTIONS(4947), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddpart] = ACTIONS(4947), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), - [anon_sym_BSLASHchapter] = ACTIONS(4947), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddchap] = ACTIONS(4947), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsection] = ACTIONS(4947), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHaddsec] = ACTIONS(4947), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), - [anon_sym_BSLASHparagraph] = ACTIONS(4947), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), - [anon_sym_BSLASHitem] = ACTIONS(4947), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4945), - [sym_word] = ACTIONS(4947), - [sym_placeholder] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4947), - [anon_sym__] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4945), - [anon_sym_BSLASHbegin] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), - [anon_sym_BSLASHinclude] = ACTIONS(4947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), - [anon_sym_BSLASHinput] = ACTIONS(4947), - [anon_sym_BSLASHsubfile] = ACTIONS(4947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), - [anon_sym_BSLASHbibliography] = ACTIONS(4947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), - [anon_sym_BSLASHincludesvg] = ACTIONS(4947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), - [anon_sym_BSLASHimport] = ACTIONS(4947), - [anon_sym_BSLASHsubimport] = ACTIONS(4947), - [anon_sym_BSLASHinputfrom] = ACTIONS(4947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), - [anon_sym_BSLASHincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHcaption] = ACTIONS(4947), - [anon_sym_BSLASHcite] = ACTIONS(4947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCite] = ACTIONS(4947), - [anon_sym_BSLASHnocite] = ACTIONS(4947), - [anon_sym_BSLASHcitet] = ACTIONS(4947), - [anon_sym_BSLASHcitep] = ACTIONS(4947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteyear] = ACTIONS(4947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitedate] = ACTIONS(4947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteurl] = ACTIONS(4947), - [anon_sym_BSLASHfullcite] = ACTIONS(4947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), - [anon_sym_BSLASHcitealt] = ACTIONS(4947), - [anon_sym_BSLASHcitealp] = ACTIONS(4947), - [anon_sym_BSLASHcitetext] = ACTIONS(4947), - [anon_sym_BSLASHparencite] = ACTIONS(4947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHParencite] = ACTIONS(4947), - [anon_sym_BSLASHfootcite] = ACTIONS(4947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), - [anon_sym_BSLASHtextcite] = ACTIONS(4947), - [anon_sym_BSLASHTextcite] = ACTIONS(4947), - [anon_sym_BSLASHsmartcite] = ACTIONS(4947), - [anon_sym_BSLASHSmartcite] = ACTIONS(4947), - [anon_sym_BSLASHsupercite] = ACTIONS(4947), - [anon_sym_BSLASHautocite] = ACTIONS(4947), - [anon_sym_BSLASHAutocite] = ACTIONS(4947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHvolcite] = ACTIONS(4947), - [anon_sym_BSLASHVolcite] = ACTIONS(4947), - [anon_sym_BSLASHpvolcite] = ACTIONS(4947), - [anon_sym_BSLASHPvolcite] = ACTIONS(4947), - [anon_sym_BSLASHfvolcite] = ACTIONS(4947), - [anon_sym_BSLASHftvolcite] = ACTIONS(4947), - [anon_sym_BSLASHsvolcite] = ACTIONS(4947), - [anon_sym_BSLASHSvolcite] = ACTIONS(4947), - [anon_sym_BSLASHtvolcite] = ACTIONS(4947), - [anon_sym_BSLASHTvolcite] = ACTIONS(4947), - [anon_sym_BSLASHavolcite] = ACTIONS(4947), - [anon_sym_BSLASHAvolcite] = ACTIONS(4947), - [anon_sym_BSLASHnotecite] = ACTIONS(4947), - [anon_sym_BSLASHNotecite] = ACTIONS(4947), - [anon_sym_BSLASHpnotecite] = ACTIONS(4947), - [anon_sym_BSLASHPnotecite] = ACTIONS(4947), - [anon_sym_BSLASHfnotecite] = ACTIONS(4947), - [anon_sym_BSLASHlabel] = ACTIONS(4947), - [anon_sym_BSLASHref] = ACTIONS(4947), - [anon_sym_BSLASHeqref] = ACTIONS(4947), - [anon_sym_BSLASHvref] = ACTIONS(4947), - [anon_sym_BSLASHVref] = ACTIONS(4947), - [anon_sym_BSLASHautoref] = ACTIONS(4947), - [anon_sym_BSLASHpageref] = ACTIONS(4947), - [anon_sym_BSLASHcref] = ACTIONS(4947), - [anon_sym_BSLASHCref] = ACTIONS(4947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnameCref] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHlabelcref] = ACTIONS(4947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnewlabel] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), - [anon_sym_BSLASHdef] = ACTIONS(4947), - [anon_sym_BSLASHlet] = ACTIONS(4947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), - [anon_sym_BSLASHgls] = ACTIONS(4947), - [anon_sym_BSLASHGls] = ACTIONS(4947), - [anon_sym_BSLASHGLS] = ACTIONS(4947), - [anon_sym_BSLASHglspl] = ACTIONS(4947), - [anon_sym_BSLASHGlspl] = ACTIONS(4947), - [anon_sym_BSLASHGLSpl] = ACTIONS(4947), - [anon_sym_BSLASHglsdisp] = ACTIONS(4947), - [anon_sym_BSLASHglslink] = ACTIONS(4947), - [anon_sym_BSLASHglstext] = ACTIONS(4947), - [anon_sym_BSLASHGlstext] = ACTIONS(4947), - [anon_sym_BSLASHGLStext] = ACTIONS(4947), - [anon_sym_BSLASHglsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), - [anon_sym_BSLASHglsplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSplural] = ACTIONS(4947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHglsname] = ACTIONS(4947), - [anon_sym_BSLASHGlsname] = ACTIONS(4947), - [anon_sym_BSLASHGLSname] = ACTIONS(4947), - [anon_sym_BSLASHglssymbol] = ACTIONS(4947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), - [anon_sym_BSLASHglsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), - [anon_sym_BSLASHglsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), - [anon_sym_BSLASHglsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), - [anon_sym_BSLASHglsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), - [anon_sym_BSLASHglsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), - [anon_sym_BSLASHnewacronym] = ACTIONS(4947), - [anon_sym_BSLASHacrshort] = ACTIONS(4947), - [anon_sym_BSLASHAcrshort] = ACTIONS(4947), - [anon_sym_BSLASHACRshort] = ACTIONS(4947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), - [anon_sym_BSLASHacrlong] = ACTIONS(4947), - [anon_sym_BSLASHAcrlong] = ACTIONS(4947), - [anon_sym_BSLASHACRlong] = ACTIONS(4947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), - [anon_sym_BSLASHacrfull] = ACTIONS(4947), - [anon_sym_BSLASHAcrfull] = ACTIONS(4947), - [anon_sym_BSLASHACRfull] = ACTIONS(4947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), - [anon_sym_BSLASHacs] = ACTIONS(4947), - [anon_sym_BSLASHAcs] = ACTIONS(4947), - [anon_sym_BSLASHacsp] = ACTIONS(4947), - [anon_sym_BSLASHAcsp] = ACTIONS(4947), - [anon_sym_BSLASHacl] = ACTIONS(4947), - [anon_sym_BSLASHAcl] = ACTIONS(4947), - [anon_sym_BSLASHaclp] = ACTIONS(4947), - [anon_sym_BSLASHAclp] = ACTIONS(4947), - [anon_sym_BSLASHacf] = ACTIONS(4947), - [anon_sym_BSLASHAcf] = ACTIONS(4947), - [anon_sym_BSLASHacfp] = ACTIONS(4947), - [anon_sym_BSLASHAcfp] = ACTIONS(4947), - [anon_sym_BSLASHac] = ACTIONS(4947), - [anon_sym_BSLASHAc] = ACTIONS(4947), - [anon_sym_BSLASHacp] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), - [anon_sym_BSLASHcolor] = ACTIONS(4947), - [anon_sym_BSLASHcolorbox] = ACTIONS(4947), - [anon_sym_BSLASHtextcolor] = ACTIONS(4947), - [anon_sym_BSLASHpagecolor] = ACTIONS(4947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), - [anon_sym_BSLASHtext] = ACTIONS(4947), - [anon_sym_BSLASHintertext] = ACTIONS(4947), - [anon_sym_shortintertext] = ACTIONS(4947), + [sym_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_BSLASHpart] = ACTIONS(5026), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddpart] = ACTIONS(5026), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5024), + [anon_sym_BSLASHchapter] = ACTIONS(5026), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddchap] = ACTIONS(5026), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsection] = ACTIONS(5026), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHaddsec] = ACTIONS(5026), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5026), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5024), + [anon_sym_BSLASHparagraph] = ACTIONS(5026), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5026), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5024), + [anon_sym_BSLASHitem] = ACTIONS(5026), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [sym_word] = ACTIONS(5026), + [sym_placeholder] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5024), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5024), + [anon_sym_BSLASHbegin] = ACTIONS(5026), + [anon_sym_BSLASHusepackage] = ACTIONS(5026), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5026), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5026), + [anon_sym_BSLASHinclude] = ACTIONS(5026), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5026), + [anon_sym_BSLASHinput] = ACTIONS(5026), + [anon_sym_BSLASHsubfile] = ACTIONS(5026), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5026), + [anon_sym_BSLASHbibliography] = ACTIONS(5026), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5026), + [anon_sym_BSLASHincludesvg] = ACTIONS(5026), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5026), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5026), + [anon_sym_BSLASHimport] = ACTIONS(5026), + [anon_sym_BSLASHsubimport] = ACTIONS(5026), + [anon_sym_BSLASHinputfrom] = ACTIONS(5026), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5026), + [anon_sym_BSLASHincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHcaption] = ACTIONS(5026), + [anon_sym_BSLASHcite] = ACTIONS(5026), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCite] = ACTIONS(5026), + [anon_sym_BSLASHnocite] = ACTIONS(5026), + [anon_sym_BSLASHcitet] = ACTIONS(5026), + [anon_sym_BSLASHcitep] = ACTIONS(5026), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteauthor] = ACTIONS(5026), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5026), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitetitle] = ACTIONS(5026), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteyear] = ACTIONS(5026), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitedate] = ACTIONS(5026), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteurl] = ACTIONS(5026), + [anon_sym_BSLASHfullcite] = ACTIONS(5026), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5026), + [anon_sym_BSLASHcitealt] = ACTIONS(5026), + [anon_sym_BSLASHcitealp] = ACTIONS(5026), + [anon_sym_BSLASHcitetext] = ACTIONS(5026), + [anon_sym_BSLASHparencite] = ACTIONS(5026), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHParencite] = ACTIONS(5026), + [anon_sym_BSLASHfootcite] = ACTIONS(5026), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5026), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5026), + [anon_sym_BSLASHtextcite] = ACTIONS(5026), + [anon_sym_BSLASHTextcite] = ACTIONS(5026), + [anon_sym_BSLASHsmartcite] = ACTIONS(5026), + [anon_sym_BSLASHSmartcite] = ACTIONS(5026), + [anon_sym_BSLASHsupercite] = ACTIONS(5026), + [anon_sym_BSLASHautocite] = ACTIONS(5026), + [anon_sym_BSLASHAutocite] = ACTIONS(5026), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHvolcite] = ACTIONS(5026), + [anon_sym_BSLASHVolcite] = ACTIONS(5026), + [anon_sym_BSLASHpvolcite] = ACTIONS(5026), + [anon_sym_BSLASHPvolcite] = ACTIONS(5026), + [anon_sym_BSLASHfvolcite] = ACTIONS(5026), + [anon_sym_BSLASHftvolcite] = ACTIONS(5026), + [anon_sym_BSLASHsvolcite] = ACTIONS(5026), + [anon_sym_BSLASHSvolcite] = ACTIONS(5026), + [anon_sym_BSLASHtvolcite] = ACTIONS(5026), + [anon_sym_BSLASHTvolcite] = ACTIONS(5026), + [anon_sym_BSLASHavolcite] = ACTIONS(5026), + [anon_sym_BSLASHAvolcite] = ACTIONS(5026), + [anon_sym_BSLASHnotecite] = ACTIONS(5026), + [anon_sym_BSLASHNotecite] = ACTIONS(5026), + [anon_sym_BSLASHpnotecite] = ACTIONS(5026), + [anon_sym_BSLASHPnotecite] = ACTIONS(5026), + [anon_sym_BSLASHfnotecite] = ACTIONS(5026), + [anon_sym_BSLASHlabel] = ACTIONS(5026), + [anon_sym_BSLASHref] = ACTIONS(5026), + [anon_sym_BSLASHeqref] = ACTIONS(5026), + [anon_sym_BSLASHvref] = ACTIONS(5026), + [anon_sym_BSLASHVref] = ACTIONS(5026), + [anon_sym_BSLASHautoref] = ACTIONS(5026), + [anon_sym_BSLASHpageref] = ACTIONS(5026), + [anon_sym_BSLASHcref] = ACTIONS(5026), + [anon_sym_BSLASHCref] = ACTIONS(5026), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnameCref] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHlabelcref] = ACTIONS(5026), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCrefrange] = ACTIONS(5026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnewlabel] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5026), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5026), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5026), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdef] = ACTIONS(5026), + [anon_sym_BSLASHlet] = ACTIONS(5026), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5026), + [anon_sym_BSLASHgls] = ACTIONS(5026), + [anon_sym_BSLASHGls] = ACTIONS(5026), + [anon_sym_BSLASHGLS] = ACTIONS(5026), + [anon_sym_BSLASHglspl] = ACTIONS(5026), + [anon_sym_BSLASHGlspl] = ACTIONS(5026), + [anon_sym_BSLASHGLSpl] = ACTIONS(5026), + [anon_sym_BSLASHglsdisp] = ACTIONS(5026), + [anon_sym_BSLASHglslink] = ACTIONS(5026), + [anon_sym_BSLASHglstext] = ACTIONS(5026), + [anon_sym_BSLASHGlstext] = ACTIONS(5026), + [anon_sym_BSLASHGLStext] = ACTIONS(5026), + [anon_sym_BSLASHglsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5026), + [anon_sym_BSLASHglsplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSplural] = ACTIONS(5026), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHglsname] = ACTIONS(5026), + [anon_sym_BSLASHGlsname] = ACTIONS(5026), + [anon_sym_BSLASHGLSname] = ACTIONS(5026), + [anon_sym_BSLASHglssymbol] = ACTIONS(5026), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5026), + [anon_sym_BSLASHglsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5026), + [anon_sym_BSLASHglsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5026), + [anon_sym_BSLASHglsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5026), + [anon_sym_BSLASHglsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5026), + [anon_sym_BSLASHglsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5026), + [anon_sym_BSLASHnewacronym] = ACTIONS(5026), + [anon_sym_BSLASHacrshort] = ACTIONS(5026), + [anon_sym_BSLASHAcrshort] = ACTIONS(5026), + [anon_sym_BSLASHACRshort] = ACTIONS(5026), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5026), + [anon_sym_BSLASHacrlong] = ACTIONS(5026), + [anon_sym_BSLASHAcrlong] = ACTIONS(5026), + [anon_sym_BSLASHACRlong] = ACTIONS(5026), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5026), + [anon_sym_BSLASHacrfull] = ACTIONS(5026), + [anon_sym_BSLASHAcrfull] = ACTIONS(5026), + [anon_sym_BSLASHACRfull] = ACTIONS(5026), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5026), + [anon_sym_BSLASHacs] = ACTIONS(5026), + [anon_sym_BSLASHAcs] = ACTIONS(5026), + [anon_sym_BSLASHacsp] = ACTIONS(5026), + [anon_sym_BSLASHAcsp] = ACTIONS(5026), + [anon_sym_BSLASHacl] = ACTIONS(5026), + [anon_sym_BSLASHAcl] = ACTIONS(5026), + [anon_sym_BSLASHaclp] = ACTIONS(5026), + [anon_sym_BSLASHAclp] = ACTIONS(5026), + [anon_sym_BSLASHacf] = ACTIONS(5026), + [anon_sym_BSLASHAcf] = ACTIONS(5026), + [anon_sym_BSLASHacfp] = ACTIONS(5026), + [anon_sym_BSLASHAcfp] = ACTIONS(5026), + [anon_sym_BSLASHac] = ACTIONS(5026), + [anon_sym_BSLASHAc] = ACTIONS(5026), + [anon_sym_BSLASHacp] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5026), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5026), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5026), + [anon_sym_BSLASHcolor] = ACTIONS(5026), + [anon_sym_BSLASHcolorbox] = ACTIONS(5026), + [anon_sym_BSLASHtextcolor] = ACTIONS(5026), + [anon_sym_BSLASHpagecolor] = ACTIONS(5026), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5026), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5026), + [anon_sym_BSLASHtext] = ACTIONS(5026), + [anon_sym_BSLASHintertext] = ACTIONS(5026), + [anon_sym_shortintertext] = ACTIONS(5026), }, [1243] = { - [sym_command_name] = ACTIONS(4951), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_BSLASHpart] = ACTIONS(4951), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddpart] = ACTIONS(4951), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), - [anon_sym_BSLASHchapter] = ACTIONS(4951), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddchap] = ACTIONS(4951), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsection] = ACTIONS(4951), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHaddsec] = ACTIONS(4951), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), - [anon_sym_BSLASHparagraph] = ACTIONS(4951), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), - [anon_sym_BSLASHitem] = ACTIONS(4951), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), - [sym_word] = ACTIONS(4951), - [sym_placeholder] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4949), - [anon_sym_BSLASHbegin] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4951), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), - [anon_sym_BSLASHinclude] = ACTIONS(4951), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), - [anon_sym_BSLASHinput] = ACTIONS(4951), - [anon_sym_BSLASHsubfile] = ACTIONS(4951), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), - [anon_sym_BSLASHbibliography] = ACTIONS(4951), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), - [anon_sym_BSLASHincludesvg] = ACTIONS(4951), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), - [anon_sym_BSLASHimport] = ACTIONS(4951), - [anon_sym_BSLASHsubimport] = ACTIONS(4951), - [anon_sym_BSLASHinputfrom] = ACTIONS(4951), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), - [anon_sym_BSLASHincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHcaption] = ACTIONS(4951), - [anon_sym_BSLASHcite] = ACTIONS(4951), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCite] = ACTIONS(4951), - [anon_sym_BSLASHnocite] = ACTIONS(4951), - [anon_sym_BSLASHcitet] = ACTIONS(4951), - [anon_sym_BSLASHcitep] = ACTIONS(4951), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteyear] = ACTIONS(4951), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitedate] = ACTIONS(4951), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteurl] = ACTIONS(4951), - [anon_sym_BSLASHfullcite] = ACTIONS(4951), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), - [anon_sym_BSLASHcitealt] = ACTIONS(4951), - [anon_sym_BSLASHcitealp] = ACTIONS(4951), - [anon_sym_BSLASHcitetext] = ACTIONS(4951), - [anon_sym_BSLASHparencite] = ACTIONS(4951), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHParencite] = ACTIONS(4951), - [anon_sym_BSLASHfootcite] = ACTIONS(4951), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), - [anon_sym_BSLASHtextcite] = ACTIONS(4951), - [anon_sym_BSLASHTextcite] = ACTIONS(4951), - [anon_sym_BSLASHsmartcite] = ACTIONS(4951), - [anon_sym_BSLASHSmartcite] = ACTIONS(4951), - [anon_sym_BSLASHsupercite] = ACTIONS(4951), - [anon_sym_BSLASHautocite] = ACTIONS(4951), - [anon_sym_BSLASHAutocite] = ACTIONS(4951), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHvolcite] = ACTIONS(4951), - [anon_sym_BSLASHVolcite] = ACTIONS(4951), - [anon_sym_BSLASHpvolcite] = ACTIONS(4951), - [anon_sym_BSLASHPvolcite] = ACTIONS(4951), - [anon_sym_BSLASHfvolcite] = ACTIONS(4951), - [anon_sym_BSLASHftvolcite] = ACTIONS(4951), - [anon_sym_BSLASHsvolcite] = ACTIONS(4951), - [anon_sym_BSLASHSvolcite] = ACTIONS(4951), - [anon_sym_BSLASHtvolcite] = ACTIONS(4951), - [anon_sym_BSLASHTvolcite] = ACTIONS(4951), - [anon_sym_BSLASHavolcite] = ACTIONS(4951), - [anon_sym_BSLASHAvolcite] = ACTIONS(4951), - [anon_sym_BSLASHnotecite] = ACTIONS(4951), - [anon_sym_BSLASHNotecite] = ACTIONS(4951), - [anon_sym_BSLASHpnotecite] = ACTIONS(4951), - [anon_sym_BSLASHPnotecite] = ACTIONS(4951), - [anon_sym_BSLASHfnotecite] = ACTIONS(4951), - [anon_sym_BSLASHlabel] = ACTIONS(4951), - [anon_sym_BSLASHref] = ACTIONS(4951), - [anon_sym_BSLASHeqref] = ACTIONS(4951), - [anon_sym_BSLASHvref] = ACTIONS(4951), - [anon_sym_BSLASHVref] = ACTIONS(4951), - [anon_sym_BSLASHautoref] = ACTIONS(4951), - [anon_sym_BSLASHpageref] = ACTIONS(4951), - [anon_sym_BSLASHcref] = ACTIONS(4951), - [anon_sym_BSLASHCref] = ACTIONS(4951), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnameCref] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHlabelcref] = ACTIONS(4951), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnewlabel] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), - [anon_sym_BSLASHdef] = ACTIONS(4951), - [anon_sym_BSLASHlet] = ACTIONS(4951), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), - [anon_sym_BSLASHgls] = ACTIONS(4951), - [anon_sym_BSLASHGls] = ACTIONS(4951), - [anon_sym_BSLASHGLS] = ACTIONS(4951), - [anon_sym_BSLASHglspl] = ACTIONS(4951), - [anon_sym_BSLASHGlspl] = ACTIONS(4951), - [anon_sym_BSLASHGLSpl] = ACTIONS(4951), - [anon_sym_BSLASHglsdisp] = ACTIONS(4951), - [anon_sym_BSLASHglslink] = ACTIONS(4951), - [anon_sym_BSLASHglstext] = ACTIONS(4951), - [anon_sym_BSLASHGlstext] = ACTIONS(4951), - [anon_sym_BSLASHGLStext] = ACTIONS(4951), - [anon_sym_BSLASHglsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), - [anon_sym_BSLASHglsplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSplural] = ACTIONS(4951), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHglsname] = ACTIONS(4951), - [anon_sym_BSLASHGlsname] = ACTIONS(4951), - [anon_sym_BSLASHGLSname] = ACTIONS(4951), - [anon_sym_BSLASHglssymbol] = ACTIONS(4951), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), - [anon_sym_BSLASHglsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), - [anon_sym_BSLASHglsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), - [anon_sym_BSLASHglsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), - [anon_sym_BSLASHglsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), - [anon_sym_BSLASHglsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), - [anon_sym_BSLASHnewacronym] = ACTIONS(4951), - [anon_sym_BSLASHacrshort] = ACTIONS(4951), - [anon_sym_BSLASHAcrshort] = ACTIONS(4951), - [anon_sym_BSLASHACRshort] = ACTIONS(4951), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), - [anon_sym_BSLASHacrlong] = ACTIONS(4951), - [anon_sym_BSLASHAcrlong] = ACTIONS(4951), - [anon_sym_BSLASHACRlong] = ACTIONS(4951), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), - [anon_sym_BSLASHacrfull] = ACTIONS(4951), - [anon_sym_BSLASHAcrfull] = ACTIONS(4951), - [anon_sym_BSLASHACRfull] = ACTIONS(4951), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), - [anon_sym_BSLASHacs] = ACTIONS(4951), - [anon_sym_BSLASHAcs] = ACTIONS(4951), - [anon_sym_BSLASHacsp] = ACTIONS(4951), - [anon_sym_BSLASHAcsp] = ACTIONS(4951), - [anon_sym_BSLASHacl] = ACTIONS(4951), - [anon_sym_BSLASHAcl] = ACTIONS(4951), - [anon_sym_BSLASHaclp] = ACTIONS(4951), - [anon_sym_BSLASHAclp] = ACTIONS(4951), - [anon_sym_BSLASHacf] = ACTIONS(4951), - [anon_sym_BSLASHAcf] = ACTIONS(4951), - [anon_sym_BSLASHacfp] = ACTIONS(4951), - [anon_sym_BSLASHAcfp] = ACTIONS(4951), - [anon_sym_BSLASHac] = ACTIONS(4951), - [anon_sym_BSLASHAc] = ACTIONS(4951), - [anon_sym_BSLASHacp] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), - [anon_sym_BSLASHcolor] = ACTIONS(4951), - [anon_sym_BSLASHcolorbox] = ACTIONS(4951), - [anon_sym_BSLASHtextcolor] = ACTIONS(4951), - [anon_sym_BSLASHpagecolor] = ACTIONS(4951), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), - [anon_sym_BSLASHtext] = ACTIONS(4951), - [anon_sym_BSLASHintertext] = ACTIONS(4951), - [anon_sym_shortintertext] = ACTIONS(4951), + [sym_command_name] = ACTIONS(5030), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_BSLASHpart] = ACTIONS(5030), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddpart] = ACTIONS(5030), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5028), + [anon_sym_BSLASHchapter] = ACTIONS(5030), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddchap] = ACTIONS(5030), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsection] = ACTIONS(5030), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHaddsec] = ACTIONS(5030), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5030), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5028), + [anon_sym_BSLASHparagraph] = ACTIONS(5030), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5030), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5028), + [anon_sym_BSLASHitem] = ACTIONS(5030), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [sym_word] = ACTIONS(5030), + [sym_placeholder] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5028), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5028), + [anon_sym_BSLASHbegin] = ACTIONS(5030), + [anon_sym_BSLASHusepackage] = ACTIONS(5030), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5030), + [anon_sym_BSLASHinclude] = ACTIONS(5030), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5030), + [anon_sym_BSLASHinput] = ACTIONS(5030), + [anon_sym_BSLASHsubfile] = ACTIONS(5030), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5030), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5030), + [anon_sym_BSLASHincludesvg] = ACTIONS(5030), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5030), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5030), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5030), + [anon_sym_BSLASHimport] = ACTIONS(5030), + [anon_sym_BSLASHsubimport] = ACTIONS(5030), + [anon_sym_BSLASHinputfrom] = ACTIONS(5030), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5030), + [anon_sym_BSLASHincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHcaption] = ACTIONS(5030), + [anon_sym_BSLASHcite] = ACTIONS(5030), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCite] = ACTIONS(5030), + [anon_sym_BSLASHnocite] = ACTIONS(5030), + [anon_sym_BSLASHcitet] = ACTIONS(5030), + [anon_sym_BSLASHcitep] = ACTIONS(5030), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteauthor] = ACTIONS(5030), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5030), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitetitle] = ACTIONS(5030), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteyear] = ACTIONS(5030), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitedate] = ACTIONS(5030), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteurl] = ACTIONS(5030), + [anon_sym_BSLASHfullcite] = ACTIONS(5030), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5030), + [anon_sym_BSLASHcitealt] = ACTIONS(5030), + [anon_sym_BSLASHcitealp] = ACTIONS(5030), + [anon_sym_BSLASHcitetext] = ACTIONS(5030), + [anon_sym_BSLASHparencite] = ACTIONS(5030), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHParencite] = ACTIONS(5030), + [anon_sym_BSLASHfootcite] = ACTIONS(5030), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5030), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5030), + [anon_sym_BSLASHtextcite] = ACTIONS(5030), + [anon_sym_BSLASHTextcite] = ACTIONS(5030), + [anon_sym_BSLASHsmartcite] = ACTIONS(5030), + [anon_sym_BSLASHSmartcite] = ACTIONS(5030), + [anon_sym_BSLASHsupercite] = ACTIONS(5030), + [anon_sym_BSLASHautocite] = ACTIONS(5030), + [anon_sym_BSLASHAutocite] = ACTIONS(5030), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHvolcite] = ACTIONS(5030), + [anon_sym_BSLASHVolcite] = ACTIONS(5030), + [anon_sym_BSLASHpvolcite] = ACTIONS(5030), + [anon_sym_BSLASHPvolcite] = ACTIONS(5030), + [anon_sym_BSLASHfvolcite] = ACTIONS(5030), + [anon_sym_BSLASHftvolcite] = ACTIONS(5030), + [anon_sym_BSLASHsvolcite] = ACTIONS(5030), + [anon_sym_BSLASHSvolcite] = ACTIONS(5030), + [anon_sym_BSLASHtvolcite] = ACTIONS(5030), + [anon_sym_BSLASHTvolcite] = ACTIONS(5030), + [anon_sym_BSLASHavolcite] = ACTIONS(5030), + [anon_sym_BSLASHAvolcite] = ACTIONS(5030), + [anon_sym_BSLASHnotecite] = ACTIONS(5030), + [anon_sym_BSLASHNotecite] = ACTIONS(5030), + [anon_sym_BSLASHpnotecite] = ACTIONS(5030), + [anon_sym_BSLASHPnotecite] = ACTIONS(5030), + [anon_sym_BSLASHfnotecite] = ACTIONS(5030), + [anon_sym_BSLASHlabel] = ACTIONS(5030), + [anon_sym_BSLASHref] = ACTIONS(5030), + [anon_sym_BSLASHeqref] = ACTIONS(5030), + [anon_sym_BSLASHvref] = ACTIONS(5030), + [anon_sym_BSLASHVref] = ACTIONS(5030), + [anon_sym_BSLASHautoref] = ACTIONS(5030), + [anon_sym_BSLASHpageref] = ACTIONS(5030), + [anon_sym_BSLASHcref] = ACTIONS(5030), + [anon_sym_BSLASHCref] = ACTIONS(5030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnameCref] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHlabelcref] = ACTIONS(5030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCrefrange] = ACTIONS(5030), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5030), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5030), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5030), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdef] = ACTIONS(5030), + [anon_sym_BSLASHlet] = ACTIONS(5030), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5030), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5030), + [anon_sym_BSLASHgls] = ACTIONS(5030), + [anon_sym_BSLASHGls] = ACTIONS(5030), + [anon_sym_BSLASHGLS] = ACTIONS(5030), + [anon_sym_BSLASHglspl] = ACTIONS(5030), + [anon_sym_BSLASHGlspl] = ACTIONS(5030), + [anon_sym_BSLASHGLSpl] = ACTIONS(5030), + [anon_sym_BSLASHglsdisp] = ACTIONS(5030), + [anon_sym_BSLASHglslink] = ACTIONS(5030), + [anon_sym_BSLASHglstext] = ACTIONS(5030), + [anon_sym_BSLASHGlstext] = ACTIONS(5030), + [anon_sym_BSLASHGLStext] = ACTIONS(5030), + [anon_sym_BSLASHglsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5030), + [anon_sym_BSLASHglsplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSplural] = ACTIONS(5030), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHglsname] = ACTIONS(5030), + [anon_sym_BSLASHGlsname] = ACTIONS(5030), + [anon_sym_BSLASHGLSname] = ACTIONS(5030), + [anon_sym_BSLASHglssymbol] = ACTIONS(5030), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5030), + [anon_sym_BSLASHglsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5030), + [anon_sym_BSLASHglsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5030), + [anon_sym_BSLASHglsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5030), + [anon_sym_BSLASHglsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5030), + [anon_sym_BSLASHglsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5030), + [anon_sym_BSLASHnewacronym] = ACTIONS(5030), + [anon_sym_BSLASHacrshort] = ACTIONS(5030), + [anon_sym_BSLASHAcrshort] = ACTIONS(5030), + [anon_sym_BSLASHACRshort] = ACTIONS(5030), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5030), + [anon_sym_BSLASHacrlong] = ACTIONS(5030), + [anon_sym_BSLASHAcrlong] = ACTIONS(5030), + [anon_sym_BSLASHACRlong] = ACTIONS(5030), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5030), + [anon_sym_BSLASHacrfull] = ACTIONS(5030), + [anon_sym_BSLASHAcrfull] = ACTIONS(5030), + [anon_sym_BSLASHACRfull] = ACTIONS(5030), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5030), + [anon_sym_BSLASHacs] = ACTIONS(5030), + [anon_sym_BSLASHAcs] = ACTIONS(5030), + [anon_sym_BSLASHacsp] = ACTIONS(5030), + [anon_sym_BSLASHAcsp] = ACTIONS(5030), + [anon_sym_BSLASHacl] = ACTIONS(5030), + [anon_sym_BSLASHAcl] = ACTIONS(5030), + [anon_sym_BSLASHaclp] = ACTIONS(5030), + [anon_sym_BSLASHAclp] = ACTIONS(5030), + [anon_sym_BSLASHacf] = ACTIONS(5030), + [anon_sym_BSLASHAcf] = ACTIONS(5030), + [anon_sym_BSLASHacfp] = ACTIONS(5030), + [anon_sym_BSLASHAcfp] = ACTIONS(5030), + [anon_sym_BSLASHac] = ACTIONS(5030), + [anon_sym_BSLASHAc] = ACTIONS(5030), + [anon_sym_BSLASHacp] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5030), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5030), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5030), + [anon_sym_BSLASHcolor] = ACTIONS(5030), + [anon_sym_BSLASHcolorbox] = ACTIONS(5030), + [anon_sym_BSLASHtextcolor] = ACTIONS(5030), + [anon_sym_BSLASHpagecolor] = ACTIONS(5030), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5030), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5030), + [anon_sym_BSLASHtext] = ACTIONS(5030), + [anon_sym_BSLASHintertext] = ACTIONS(5030), + [anon_sym_shortintertext] = ACTIONS(5030), }, [1244] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_BSLASHpart] = ACTIONS(4955), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddpart] = ACTIONS(4955), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), - [anon_sym_BSLASHchapter] = ACTIONS(4955), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddchap] = ACTIONS(4955), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsection] = ACTIONS(4955), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHaddsec] = ACTIONS(4955), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), - [anon_sym_BSLASHparagraph] = ACTIONS(4955), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), - [anon_sym_BSLASHitem] = ACTIONS(4955), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4953), - [anon_sym_BSLASHbegin] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_BSLASHpart] = ACTIONS(5034), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddpart] = ACTIONS(5034), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5032), + [anon_sym_BSLASHchapter] = ACTIONS(5034), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddchap] = ACTIONS(5034), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsection] = ACTIONS(5034), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHaddsec] = ACTIONS(5034), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5034), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5032), + [anon_sym_BSLASHparagraph] = ACTIONS(5034), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5034), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5032), + [anon_sym_BSLASHitem] = ACTIONS(5034), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5032), + [anon_sym_BSLASHbegin] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [1245] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5081), - [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), + [sym_command_name] = ACTIONS(5160), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_BSLASHpart] = ACTIONS(5160), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddpart] = ACTIONS(5160), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5158), + [anon_sym_BSLASHchapter] = ACTIONS(5160), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddchap] = ACTIONS(5160), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsection] = ACTIONS(5160), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHaddsec] = ACTIONS(5160), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5160), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5158), + [anon_sym_BSLASHparagraph] = ACTIONS(5160), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5160), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5158), + [anon_sym_BSLASHitem] = ACTIONS(5160), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [sym_word] = ACTIONS(5160), + [sym_placeholder] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym__] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_SQUOTE] = ACTIONS(5160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5158), + [anon_sym_BSLASHbegin] = ACTIONS(5160), + [anon_sym_BSLASHend] = ACTIONS(5160), + [anon_sym_BSLASHusepackage] = ACTIONS(5160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5160), + [anon_sym_BSLASHinclude] = ACTIONS(5160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5160), + [anon_sym_BSLASHinput] = ACTIONS(5160), + [anon_sym_BSLASHsubfile] = ACTIONS(5160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5160), + [anon_sym_BSLASHbibliography] = ACTIONS(5160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5160), + [anon_sym_BSLASHincludesvg] = ACTIONS(5160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5160), + [anon_sym_BSLASHimport] = ACTIONS(5160), + [anon_sym_BSLASHsubimport] = ACTIONS(5160), + [anon_sym_BSLASHinputfrom] = ACTIONS(5160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5160), + [anon_sym_BSLASHincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHcaption] = ACTIONS(5160), + [anon_sym_BSLASHcite] = ACTIONS(5160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCite] = ACTIONS(5160), + [anon_sym_BSLASHnocite] = ACTIONS(5160), + [anon_sym_BSLASHcitet] = ACTIONS(5160), + [anon_sym_BSLASHcitep] = ACTIONS(5160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteauthor] = ACTIONS(5160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitetitle] = ACTIONS(5160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteyear] = ACTIONS(5160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitedate] = ACTIONS(5160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteurl] = ACTIONS(5160), + [anon_sym_BSLASHfullcite] = ACTIONS(5160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5160), + [anon_sym_BSLASHcitealt] = ACTIONS(5160), + [anon_sym_BSLASHcitealp] = ACTIONS(5160), + [anon_sym_BSLASHcitetext] = ACTIONS(5160), + [anon_sym_BSLASHparencite] = ACTIONS(5160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHParencite] = ACTIONS(5160), + [anon_sym_BSLASHfootcite] = ACTIONS(5160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5160), + [anon_sym_BSLASHtextcite] = ACTIONS(5160), + [anon_sym_BSLASHTextcite] = ACTIONS(5160), + [anon_sym_BSLASHsmartcite] = ACTIONS(5160), + [anon_sym_BSLASHSmartcite] = ACTIONS(5160), + [anon_sym_BSLASHsupercite] = ACTIONS(5160), + [anon_sym_BSLASHautocite] = ACTIONS(5160), + [anon_sym_BSLASHAutocite] = ACTIONS(5160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHvolcite] = ACTIONS(5160), + [anon_sym_BSLASHVolcite] = ACTIONS(5160), + [anon_sym_BSLASHpvolcite] = ACTIONS(5160), + [anon_sym_BSLASHPvolcite] = ACTIONS(5160), + [anon_sym_BSLASHfvolcite] = ACTIONS(5160), + [anon_sym_BSLASHftvolcite] = ACTIONS(5160), + [anon_sym_BSLASHsvolcite] = ACTIONS(5160), + [anon_sym_BSLASHSvolcite] = ACTIONS(5160), + [anon_sym_BSLASHtvolcite] = ACTIONS(5160), + [anon_sym_BSLASHTvolcite] = ACTIONS(5160), + [anon_sym_BSLASHavolcite] = ACTIONS(5160), + [anon_sym_BSLASHAvolcite] = ACTIONS(5160), + [anon_sym_BSLASHnotecite] = ACTIONS(5160), + [anon_sym_BSLASHNotecite] = ACTIONS(5160), + [anon_sym_BSLASHpnotecite] = ACTIONS(5160), + [anon_sym_BSLASHPnotecite] = ACTIONS(5160), + [anon_sym_BSLASHfnotecite] = ACTIONS(5160), + [anon_sym_BSLASHlabel] = ACTIONS(5160), + [anon_sym_BSLASHref] = ACTIONS(5160), + [anon_sym_BSLASHeqref] = ACTIONS(5160), + [anon_sym_BSLASHvref] = ACTIONS(5160), + [anon_sym_BSLASHVref] = ACTIONS(5160), + [anon_sym_BSLASHautoref] = ACTIONS(5160), + [anon_sym_BSLASHpageref] = ACTIONS(5160), + [anon_sym_BSLASHcref] = ACTIONS(5160), + [anon_sym_BSLASHCref] = ACTIONS(5160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnameCref] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHlabelcref] = ACTIONS(5160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCrefrange] = ACTIONS(5160), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnewlabel] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5160), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5160), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdef] = ACTIONS(5160), + [anon_sym_BSLASHlet] = ACTIONS(5160), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5160), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5160), + [anon_sym_BSLASHgls] = ACTIONS(5160), + [anon_sym_BSLASHGls] = ACTIONS(5160), + [anon_sym_BSLASHGLS] = ACTIONS(5160), + [anon_sym_BSLASHglspl] = ACTIONS(5160), + [anon_sym_BSLASHGlspl] = ACTIONS(5160), + [anon_sym_BSLASHGLSpl] = ACTIONS(5160), + [anon_sym_BSLASHglsdisp] = ACTIONS(5160), + [anon_sym_BSLASHglslink] = ACTIONS(5160), + [anon_sym_BSLASHglstext] = ACTIONS(5160), + [anon_sym_BSLASHGlstext] = ACTIONS(5160), + [anon_sym_BSLASHGLStext] = ACTIONS(5160), + [anon_sym_BSLASHglsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5160), + [anon_sym_BSLASHglsplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSplural] = ACTIONS(5160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHglsname] = ACTIONS(5160), + [anon_sym_BSLASHGlsname] = ACTIONS(5160), + [anon_sym_BSLASHGLSname] = ACTIONS(5160), + [anon_sym_BSLASHglssymbol] = ACTIONS(5160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5160), + [anon_sym_BSLASHglsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5160), + [anon_sym_BSLASHglsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5160), + [anon_sym_BSLASHglsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5160), + [anon_sym_BSLASHglsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5160), + [anon_sym_BSLASHglsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5160), + [anon_sym_BSLASHnewacronym] = ACTIONS(5160), + [anon_sym_BSLASHacrshort] = ACTIONS(5160), + [anon_sym_BSLASHAcrshort] = ACTIONS(5160), + [anon_sym_BSLASHACRshort] = ACTIONS(5160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5160), + [anon_sym_BSLASHacrlong] = ACTIONS(5160), + [anon_sym_BSLASHAcrlong] = ACTIONS(5160), + [anon_sym_BSLASHACRlong] = ACTIONS(5160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5160), + [anon_sym_BSLASHacrfull] = ACTIONS(5160), + [anon_sym_BSLASHAcrfull] = ACTIONS(5160), + [anon_sym_BSLASHACRfull] = ACTIONS(5160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5160), + [anon_sym_BSLASHacs] = ACTIONS(5160), + [anon_sym_BSLASHAcs] = ACTIONS(5160), + [anon_sym_BSLASHacsp] = ACTIONS(5160), + [anon_sym_BSLASHAcsp] = ACTIONS(5160), + [anon_sym_BSLASHacl] = ACTIONS(5160), + [anon_sym_BSLASHAcl] = ACTIONS(5160), + [anon_sym_BSLASHaclp] = ACTIONS(5160), + [anon_sym_BSLASHAclp] = ACTIONS(5160), + [anon_sym_BSLASHacf] = ACTIONS(5160), + [anon_sym_BSLASHAcf] = ACTIONS(5160), + [anon_sym_BSLASHacfp] = ACTIONS(5160), + [anon_sym_BSLASHAcfp] = ACTIONS(5160), + [anon_sym_BSLASHac] = ACTIONS(5160), + [anon_sym_BSLASHAc] = ACTIONS(5160), + [anon_sym_BSLASHacp] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5160), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5160), + [anon_sym_BSLASHcolor] = ACTIONS(5160), + [anon_sym_BSLASHcolorbox] = ACTIONS(5160), + [anon_sym_BSLASHtextcolor] = ACTIONS(5160), + [anon_sym_BSLASHpagecolor] = ACTIONS(5160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5160), + [anon_sym_BSLASHtext] = ACTIONS(5160), + [anon_sym_BSLASHintertext] = ACTIONS(5160), + [anon_sym_shortintertext] = ACTIONS(5160), }, [1246] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5085), - [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), + [sym_command_name] = ACTIONS(5164), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_BSLASHpart] = ACTIONS(5164), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddpart] = ACTIONS(5164), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5162), + [anon_sym_BSLASHchapter] = ACTIONS(5164), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddchap] = ACTIONS(5164), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsection] = ACTIONS(5164), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHaddsec] = ACTIONS(5164), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5164), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5162), + [anon_sym_BSLASHparagraph] = ACTIONS(5164), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5164), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5162), + [anon_sym_BSLASHitem] = ACTIONS(5164), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [sym_word] = ACTIONS(5164), + [sym_placeholder] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym__] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_SQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5162), + [anon_sym_BSLASHbegin] = ACTIONS(5164), + [anon_sym_BSLASHend] = ACTIONS(5164), + [anon_sym_BSLASHusepackage] = ACTIONS(5164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5164), + [anon_sym_BSLASHinclude] = ACTIONS(5164), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5164), + [anon_sym_BSLASHinput] = ACTIONS(5164), + [anon_sym_BSLASHsubfile] = ACTIONS(5164), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5164), + [anon_sym_BSLASHbibliography] = ACTIONS(5164), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), + [anon_sym_BSLASHincludesvg] = ACTIONS(5164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5164), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5164), + [anon_sym_BSLASHimport] = ACTIONS(5164), + [anon_sym_BSLASHsubimport] = ACTIONS(5164), + [anon_sym_BSLASHinputfrom] = ACTIONS(5164), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5164), + [anon_sym_BSLASHincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHcaption] = ACTIONS(5164), + [anon_sym_BSLASHcite] = ACTIONS(5164), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCite] = ACTIONS(5164), + [anon_sym_BSLASHnocite] = ACTIONS(5164), + [anon_sym_BSLASHcitet] = ACTIONS(5164), + [anon_sym_BSLASHcitep] = ACTIONS(5164), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteauthor] = ACTIONS(5164), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5164), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitetitle] = ACTIONS(5164), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteyear] = ACTIONS(5164), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitedate] = ACTIONS(5164), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteurl] = ACTIONS(5164), + [anon_sym_BSLASHfullcite] = ACTIONS(5164), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5164), + [anon_sym_BSLASHcitealt] = ACTIONS(5164), + [anon_sym_BSLASHcitealp] = ACTIONS(5164), + [anon_sym_BSLASHcitetext] = ACTIONS(5164), + [anon_sym_BSLASHparencite] = ACTIONS(5164), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHParencite] = ACTIONS(5164), + [anon_sym_BSLASHfootcite] = ACTIONS(5164), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5164), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5164), + [anon_sym_BSLASHtextcite] = ACTIONS(5164), + [anon_sym_BSLASHTextcite] = ACTIONS(5164), + [anon_sym_BSLASHsmartcite] = ACTIONS(5164), + [anon_sym_BSLASHSmartcite] = ACTIONS(5164), + [anon_sym_BSLASHsupercite] = ACTIONS(5164), + [anon_sym_BSLASHautocite] = ACTIONS(5164), + [anon_sym_BSLASHAutocite] = ACTIONS(5164), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHvolcite] = ACTIONS(5164), + [anon_sym_BSLASHVolcite] = ACTIONS(5164), + [anon_sym_BSLASHpvolcite] = ACTIONS(5164), + [anon_sym_BSLASHPvolcite] = ACTIONS(5164), + [anon_sym_BSLASHfvolcite] = ACTIONS(5164), + [anon_sym_BSLASHftvolcite] = ACTIONS(5164), + [anon_sym_BSLASHsvolcite] = ACTIONS(5164), + [anon_sym_BSLASHSvolcite] = ACTIONS(5164), + [anon_sym_BSLASHtvolcite] = ACTIONS(5164), + [anon_sym_BSLASHTvolcite] = ACTIONS(5164), + [anon_sym_BSLASHavolcite] = ACTIONS(5164), + [anon_sym_BSLASHAvolcite] = ACTIONS(5164), + [anon_sym_BSLASHnotecite] = ACTIONS(5164), + [anon_sym_BSLASHNotecite] = ACTIONS(5164), + [anon_sym_BSLASHpnotecite] = ACTIONS(5164), + [anon_sym_BSLASHPnotecite] = ACTIONS(5164), + [anon_sym_BSLASHfnotecite] = ACTIONS(5164), + [anon_sym_BSLASHlabel] = ACTIONS(5164), + [anon_sym_BSLASHref] = ACTIONS(5164), + [anon_sym_BSLASHeqref] = ACTIONS(5164), + [anon_sym_BSLASHvref] = ACTIONS(5164), + [anon_sym_BSLASHVref] = ACTIONS(5164), + [anon_sym_BSLASHautoref] = ACTIONS(5164), + [anon_sym_BSLASHpageref] = ACTIONS(5164), + [anon_sym_BSLASHcref] = ACTIONS(5164), + [anon_sym_BSLASHCref] = ACTIONS(5164), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnameCref] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHlabelcref] = ACTIONS(5164), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCrefrange] = ACTIONS(5164), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnewlabel] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5164), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5164), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5164), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdef] = ACTIONS(5164), + [anon_sym_BSLASHlet] = ACTIONS(5164), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5164), + [anon_sym_BSLASHgls] = ACTIONS(5164), + [anon_sym_BSLASHGls] = ACTIONS(5164), + [anon_sym_BSLASHGLS] = ACTIONS(5164), + [anon_sym_BSLASHglspl] = ACTIONS(5164), + [anon_sym_BSLASHGlspl] = ACTIONS(5164), + [anon_sym_BSLASHGLSpl] = ACTIONS(5164), + [anon_sym_BSLASHglsdisp] = ACTIONS(5164), + [anon_sym_BSLASHglslink] = ACTIONS(5164), + [anon_sym_BSLASHglstext] = ACTIONS(5164), + [anon_sym_BSLASHGlstext] = ACTIONS(5164), + [anon_sym_BSLASHGLStext] = ACTIONS(5164), + [anon_sym_BSLASHglsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5164), + [anon_sym_BSLASHglsplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSplural] = ACTIONS(5164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHglsname] = ACTIONS(5164), + [anon_sym_BSLASHGlsname] = ACTIONS(5164), + [anon_sym_BSLASHGLSname] = ACTIONS(5164), + [anon_sym_BSLASHglssymbol] = ACTIONS(5164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5164), + [anon_sym_BSLASHglsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5164), + [anon_sym_BSLASHglsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5164), + [anon_sym_BSLASHglsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5164), + [anon_sym_BSLASHglsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5164), + [anon_sym_BSLASHglsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5164), + [anon_sym_BSLASHnewacronym] = ACTIONS(5164), + [anon_sym_BSLASHacrshort] = ACTIONS(5164), + [anon_sym_BSLASHAcrshort] = ACTIONS(5164), + [anon_sym_BSLASHACRshort] = ACTIONS(5164), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5164), + [anon_sym_BSLASHacrlong] = ACTIONS(5164), + [anon_sym_BSLASHAcrlong] = ACTIONS(5164), + [anon_sym_BSLASHACRlong] = ACTIONS(5164), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5164), + [anon_sym_BSLASHacrfull] = ACTIONS(5164), + [anon_sym_BSLASHAcrfull] = ACTIONS(5164), + [anon_sym_BSLASHACRfull] = ACTIONS(5164), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5164), + [anon_sym_BSLASHacs] = ACTIONS(5164), + [anon_sym_BSLASHAcs] = ACTIONS(5164), + [anon_sym_BSLASHacsp] = ACTIONS(5164), + [anon_sym_BSLASHAcsp] = ACTIONS(5164), + [anon_sym_BSLASHacl] = ACTIONS(5164), + [anon_sym_BSLASHAcl] = ACTIONS(5164), + [anon_sym_BSLASHaclp] = ACTIONS(5164), + [anon_sym_BSLASHAclp] = ACTIONS(5164), + [anon_sym_BSLASHacf] = ACTIONS(5164), + [anon_sym_BSLASHAcf] = ACTIONS(5164), + [anon_sym_BSLASHacfp] = ACTIONS(5164), + [anon_sym_BSLASHAcfp] = ACTIONS(5164), + [anon_sym_BSLASHac] = ACTIONS(5164), + [anon_sym_BSLASHAc] = ACTIONS(5164), + [anon_sym_BSLASHacp] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5164), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5164), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5164), + [anon_sym_BSLASHcolor] = ACTIONS(5164), + [anon_sym_BSLASHcolorbox] = ACTIONS(5164), + [anon_sym_BSLASHtextcolor] = ACTIONS(5164), + [anon_sym_BSLASHpagecolor] = ACTIONS(5164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5164), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5164), + [anon_sym_BSLASHtext] = ACTIONS(5164), + [anon_sym_BSLASHintertext] = ACTIONS(5164), + [anon_sym_shortintertext] = ACTIONS(5164), }, [1247] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5089), - [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), + [sym_command_name] = ACTIONS(5168), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_BSLASHpart] = ACTIONS(5168), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddpart] = ACTIONS(5168), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5166), + [anon_sym_BSLASHchapter] = ACTIONS(5168), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddchap] = ACTIONS(5168), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsection] = ACTIONS(5168), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHaddsec] = ACTIONS(5168), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5168), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5166), + [anon_sym_BSLASHparagraph] = ACTIONS(5168), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5168), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5166), + [anon_sym_BSLASHitem] = ACTIONS(5168), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [sym_word] = ACTIONS(5168), + [sym_placeholder] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym__] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_SQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(5168), + [anon_sym_BSLASHend] = ACTIONS(5168), + [anon_sym_BSLASHusepackage] = ACTIONS(5168), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5168), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5168), + [anon_sym_BSLASHinclude] = ACTIONS(5168), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5168), + [anon_sym_BSLASHinput] = ACTIONS(5168), + [anon_sym_BSLASHsubfile] = ACTIONS(5168), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5168), + [anon_sym_BSLASHbibliography] = ACTIONS(5168), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5168), + [anon_sym_BSLASHincludesvg] = ACTIONS(5168), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5168), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5168), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5168), + [anon_sym_BSLASHimport] = ACTIONS(5168), + [anon_sym_BSLASHsubimport] = ACTIONS(5168), + [anon_sym_BSLASHinputfrom] = ACTIONS(5168), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5168), + [anon_sym_BSLASHincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(5168), + [anon_sym_BSLASHcite] = ACTIONS(5168), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCite] = ACTIONS(5168), + [anon_sym_BSLASHnocite] = ACTIONS(5168), + [anon_sym_BSLASHcitet] = ACTIONS(5168), + [anon_sym_BSLASHcitep] = ACTIONS(5168), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteauthor] = ACTIONS(5168), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5168), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitetitle] = ACTIONS(5168), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteyear] = ACTIONS(5168), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitedate] = ACTIONS(5168), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteurl] = ACTIONS(5168), + [anon_sym_BSLASHfullcite] = ACTIONS(5168), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5168), + [anon_sym_BSLASHcitealt] = ACTIONS(5168), + [anon_sym_BSLASHcitealp] = ACTIONS(5168), + [anon_sym_BSLASHcitetext] = ACTIONS(5168), + [anon_sym_BSLASHparencite] = ACTIONS(5168), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHParencite] = ACTIONS(5168), + [anon_sym_BSLASHfootcite] = ACTIONS(5168), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5168), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5168), + [anon_sym_BSLASHtextcite] = ACTIONS(5168), + [anon_sym_BSLASHTextcite] = ACTIONS(5168), + [anon_sym_BSLASHsmartcite] = ACTIONS(5168), + [anon_sym_BSLASHSmartcite] = ACTIONS(5168), + [anon_sym_BSLASHsupercite] = ACTIONS(5168), + [anon_sym_BSLASHautocite] = ACTIONS(5168), + [anon_sym_BSLASHAutocite] = ACTIONS(5168), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHvolcite] = ACTIONS(5168), + [anon_sym_BSLASHVolcite] = ACTIONS(5168), + [anon_sym_BSLASHpvolcite] = ACTIONS(5168), + [anon_sym_BSLASHPvolcite] = ACTIONS(5168), + [anon_sym_BSLASHfvolcite] = ACTIONS(5168), + [anon_sym_BSLASHftvolcite] = ACTIONS(5168), + [anon_sym_BSLASHsvolcite] = ACTIONS(5168), + [anon_sym_BSLASHSvolcite] = ACTIONS(5168), + [anon_sym_BSLASHtvolcite] = ACTIONS(5168), + [anon_sym_BSLASHTvolcite] = ACTIONS(5168), + [anon_sym_BSLASHavolcite] = ACTIONS(5168), + [anon_sym_BSLASHAvolcite] = ACTIONS(5168), + [anon_sym_BSLASHnotecite] = ACTIONS(5168), + [anon_sym_BSLASHNotecite] = ACTIONS(5168), + [anon_sym_BSLASHpnotecite] = ACTIONS(5168), + [anon_sym_BSLASHPnotecite] = ACTIONS(5168), + [anon_sym_BSLASHfnotecite] = ACTIONS(5168), + [anon_sym_BSLASHlabel] = ACTIONS(5168), + [anon_sym_BSLASHref] = ACTIONS(5168), + [anon_sym_BSLASHeqref] = ACTIONS(5168), + [anon_sym_BSLASHvref] = ACTIONS(5168), + [anon_sym_BSLASHVref] = ACTIONS(5168), + [anon_sym_BSLASHautoref] = ACTIONS(5168), + [anon_sym_BSLASHpageref] = ACTIONS(5168), + [anon_sym_BSLASHcref] = ACTIONS(5168), + [anon_sym_BSLASHCref] = ACTIONS(5168), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnameCref] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHlabelcref] = ACTIONS(5168), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCrefrange] = ACTIONS(5168), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnewlabel] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5168), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5168), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5168), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdef] = ACTIONS(5168), + [anon_sym_BSLASHlet] = ACTIONS(5168), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5168), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5168), + [anon_sym_BSLASHgls] = ACTIONS(5168), + [anon_sym_BSLASHGls] = ACTIONS(5168), + [anon_sym_BSLASHGLS] = ACTIONS(5168), + [anon_sym_BSLASHglspl] = ACTIONS(5168), + [anon_sym_BSLASHGlspl] = ACTIONS(5168), + [anon_sym_BSLASHGLSpl] = ACTIONS(5168), + [anon_sym_BSLASHglsdisp] = ACTIONS(5168), + [anon_sym_BSLASHglslink] = ACTIONS(5168), + [anon_sym_BSLASHglstext] = ACTIONS(5168), + [anon_sym_BSLASHGlstext] = ACTIONS(5168), + [anon_sym_BSLASHGLStext] = ACTIONS(5168), + [anon_sym_BSLASHglsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5168), + [anon_sym_BSLASHglsplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSplural] = ACTIONS(5168), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHglsname] = ACTIONS(5168), + [anon_sym_BSLASHGlsname] = ACTIONS(5168), + [anon_sym_BSLASHGLSname] = ACTIONS(5168), + [anon_sym_BSLASHglssymbol] = ACTIONS(5168), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5168), + [anon_sym_BSLASHglsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5168), + [anon_sym_BSLASHglsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5168), + [anon_sym_BSLASHglsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5168), + [anon_sym_BSLASHglsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5168), + [anon_sym_BSLASHglsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5168), + [anon_sym_BSLASHnewacronym] = ACTIONS(5168), + [anon_sym_BSLASHacrshort] = ACTIONS(5168), + [anon_sym_BSLASHAcrshort] = ACTIONS(5168), + [anon_sym_BSLASHACRshort] = ACTIONS(5168), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5168), + [anon_sym_BSLASHacrlong] = ACTIONS(5168), + [anon_sym_BSLASHAcrlong] = ACTIONS(5168), + [anon_sym_BSLASHACRlong] = ACTIONS(5168), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5168), + [anon_sym_BSLASHacrfull] = ACTIONS(5168), + [anon_sym_BSLASHAcrfull] = ACTIONS(5168), + [anon_sym_BSLASHACRfull] = ACTIONS(5168), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5168), + [anon_sym_BSLASHacs] = ACTIONS(5168), + [anon_sym_BSLASHAcs] = ACTIONS(5168), + [anon_sym_BSLASHacsp] = ACTIONS(5168), + [anon_sym_BSLASHAcsp] = ACTIONS(5168), + [anon_sym_BSLASHacl] = ACTIONS(5168), + [anon_sym_BSLASHAcl] = ACTIONS(5168), + [anon_sym_BSLASHaclp] = ACTIONS(5168), + [anon_sym_BSLASHAclp] = ACTIONS(5168), + [anon_sym_BSLASHacf] = ACTIONS(5168), + [anon_sym_BSLASHAcf] = ACTIONS(5168), + [anon_sym_BSLASHacfp] = ACTIONS(5168), + [anon_sym_BSLASHAcfp] = ACTIONS(5168), + [anon_sym_BSLASHac] = ACTIONS(5168), + [anon_sym_BSLASHAc] = ACTIONS(5168), + [anon_sym_BSLASHacp] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5168), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5168), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5168), + [anon_sym_BSLASHcolor] = ACTIONS(5168), + [anon_sym_BSLASHcolorbox] = ACTIONS(5168), + [anon_sym_BSLASHtextcolor] = ACTIONS(5168), + [anon_sym_BSLASHpagecolor] = ACTIONS(5168), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5168), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5168), + [anon_sym_BSLASHtext] = ACTIONS(5168), + [anon_sym_BSLASHintertext] = ACTIONS(5168), + [anon_sym_shortintertext] = ACTIONS(5168), }, [1248] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5093), - [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), + [sym_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_BSLASHpart] = ACTIONS(5172), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddpart] = ACTIONS(5172), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5170), + [anon_sym_BSLASHchapter] = ACTIONS(5172), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddchap] = ACTIONS(5172), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsection] = ACTIONS(5172), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHaddsec] = ACTIONS(5172), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5172), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5170), + [anon_sym_BSLASHparagraph] = ACTIONS(5172), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5172), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5170), + [anon_sym_BSLASHitem] = ACTIONS(5172), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [sym_word] = ACTIONS(5172), + [sym_placeholder] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym__] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5172), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_SQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5170), + [anon_sym_BSLASHbegin] = ACTIONS(5172), + [anon_sym_BSLASHend] = ACTIONS(5172), + [anon_sym_BSLASHusepackage] = ACTIONS(5172), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5172), + [anon_sym_BSLASHinclude] = ACTIONS(5172), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5172), + [anon_sym_BSLASHinput] = ACTIONS(5172), + [anon_sym_BSLASHsubfile] = ACTIONS(5172), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5172), + [anon_sym_BSLASHbibliography] = ACTIONS(5172), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5172), + [anon_sym_BSLASHincludesvg] = ACTIONS(5172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5172), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5172), + [anon_sym_BSLASHimport] = ACTIONS(5172), + [anon_sym_BSLASHsubimport] = ACTIONS(5172), + [anon_sym_BSLASHinputfrom] = ACTIONS(5172), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5172), + [anon_sym_BSLASHincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHcaption] = ACTIONS(5172), + [anon_sym_BSLASHcite] = ACTIONS(5172), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCite] = ACTIONS(5172), + [anon_sym_BSLASHnocite] = ACTIONS(5172), + [anon_sym_BSLASHcitet] = ACTIONS(5172), + [anon_sym_BSLASHcitep] = ACTIONS(5172), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteauthor] = ACTIONS(5172), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5172), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitetitle] = ACTIONS(5172), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteyear] = ACTIONS(5172), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitedate] = ACTIONS(5172), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteurl] = ACTIONS(5172), + [anon_sym_BSLASHfullcite] = ACTIONS(5172), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5172), + [anon_sym_BSLASHcitealt] = ACTIONS(5172), + [anon_sym_BSLASHcitealp] = ACTIONS(5172), + [anon_sym_BSLASHcitetext] = ACTIONS(5172), + [anon_sym_BSLASHparencite] = ACTIONS(5172), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHParencite] = ACTIONS(5172), + [anon_sym_BSLASHfootcite] = ACTIONS(5172), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5172), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5172), + [anon_sym_BSLASHtextcite] = ACTIONS(5172), + [anon_sym_BSLASHTextcite] = ACTIONS(5172), + [anon_sym_BSLASHsmartcite] = ACTIONS(5172), + [anon_sym_BSLASHSmartcite] = ACTIONS(5172), + [anon_sym_BSLASHsupercite] = ACTIONS(5172), + [anon_sym_BSLASHautocite] = ACTIONS(5172), + [anon_sym_BSLASHAutocite] = ACTIONS(5172), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHvolcite] = ACTIONS(5172), + [anon_sym_BSLASHVolcite] = ACTIONS(5172), + [anon_sym_BSLASHpvolcite] = ACTIONS(5172), + [anon_sym_BSLASHPvolcite] = ACTIONS(5172), + [anon_sym_BSLASHfvolcite] = ACTIONS(5172), + [anon_sym_BSLASHftvolcite] = ACTIONS(5172), + [anon_sym_BSLASHsvolcite] = ACTIONS(5172), + [anon_sym_BSLASHSvolcite] = ACTIONS(5172), + [anon_sym_BSLASHtvolcite] = ACTIONS(5172), + [anon_sym_BSLASHTvolcite] = ACTIONS(5172), + [anon_sym_BSLASHavolcite] = ACTIONS(5172), + [anon_sym_BSLASHAvolcite] = ACTIONS(5172), + [anon_sym_BSLASHnotecite] = ACTIONS(5172), + [anon_sym_BSLASHNotecite] = ACTIONS(5172), + [anon_sym_BSLASHpnotecite] = ACTIONS(5172), + [anon_sym_BSLASHPnotecite] = ACTIONS(5172), + [anon_sym_BSLASHfnotecite] = ACTIONS(5172), + [anon_sym_BSLASHlabel] = ACTIONS(5172), + [anon_sym_BSLASHref] = ACTIONS(5172), + [anon_sym_BSLASHeqref] = ACTIONS(5172), + [anon_sym_BSLASHvref] = ACTIONS(5172), + [anon_sym_BSLASHVref] = ACTIONS(5172), + [anon_sym_BSLASHautoref] = ACTIONS(5172), + [anon_sym_BSLASHpageref] = ACTIONS(5172), + [anon_sym_BSLASHcref] = ACTIONS(5172), + [anon_sym_BSLASHCref] = ACTIONS(5172), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnameCref] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHlabelcref] = ACTIONS(5172), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCrefrange] = ACTIONS(5172), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnewlabel] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5172), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5172), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5172), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdef] = ACTIONS(5172), + [anon_sym_BSLASHlet] = ACTIONS(5172), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5172), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5172), + [anon_sym_BSLASHgls] = ACTIONS(5172), + [anon_sym_BSLASHGls] = ACTIONS(5172), + [anon_sym_BSLASHGLS] = ACTIONS(5172), + [anon_sym_BSLASHglspl] = ACTIONS(5172), + [anon_sym_BSLASHGlspl] = ACTIONS(5172), + [anon_sym_BSLASHGLSpl] = ACTIONS(5172), + [anon_sym_BSLASHglsdisp] = ACTIONS(5172), + [anon_sym_BSLASHglslink] = ACTIONS(5172), + [anon_sym_BSLASHglstext] = ACTIONS(5172), + [anon_sym_BSLASHGlstext] = ACTIONS(5172), + [anon_sym_BSLASHGLStext] = ACTIONS(5172), + [anon_sym_BSLASHglsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5172), + [anon_sym_BSLASHglsplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSplural] = ACTIONS(5172), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHglsname] = ACTIONS(5172), + [anon_sym_BSLASHGlsname] = ACTIONS(5172), + [anon_sym_BSLASHGLSname] = ACTIONS(5172), + [anon_sym_BSLASHglssymbol] = ACTIONS(5172), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5172), + [anon_sym_BSLASHglsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5172), + [anon_sym_BSLASHglsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5172), + [anon_sym_BSLASHglsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5172), + [anon_sym_BSLASHglsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5172), + [anon_sym_BSLASHglsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5172), + [anon_sym_BSLASHnewacronym] = ACTIONS(5172), + [anon_sym_BSLASHacrshort] = ACTIONS(5172), + [anon_sym_BSLASHAcrshort] = ACTIONS(5172), + [anon_sym_BSLASHACRshort] = ACTIONS(5172), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5172), + [anon_sym_BSLASHacrlong] = ACTIONS(5172), + [anon_sym_BSLASHAcrlong] = ACTIONS(5172), + [anon_sym_BSLASHACRlong] = ACTIONS(5172), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5172), + [anon_sym_BSLASHacrfull] = ACTIONS(5172), + [anon_sym_BSLASHAcrfull] = ACTIONS(5172), + [anon_sym_BSLASHACRfull] = ACTIONS(5172), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5172), + [anon_sym_BSLASHacs] = ACTIONS(5172), + [anon_sym_BSLASHAcs] = ACTIONS(5172), + [anon_sym_BSLASHacsp] = ACTIONS(5172), + [anon_sym_BSLASHAcsp] = ACTIONS(5172), + [anon_sym_BSLASHacl] = ACTIONS(5172), + [anon_sym_BSLASHAcl] = ACTIONS(5172), + [anon_sym_BSLASHaclp] = ACTIONS(5172), + [anon_sym_BSLASHAclp] = ACTIONS(5172), + [anon_sym_BSLASHacf] = ACTIONS(5172), + [anon_sym_BSLASHAcf] = ACTIONS(5172), + [anon_sym_BSLASHacfp] = ACTIONS(5172), + [anon_sym_BSLASHAcfp] = ACTIONS(5172), + [anon_sym_BSLASHac] = ACTIONS(5172), + [anon_sym_BSLASHAc] = ACTIONS(5172), + [anon_sym_BSLASHacp] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5172), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5172), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5172), + [anon_sym_BSLASHcolor] = ACTIONS(5172), + [anon_sym_BSLASHcolorbox] = ACTIONS(5172), + [anon_sym_BSLASHtextcolor] = ACTIONS(5172), + [anon_sym_BSLASHpagecolor] = ACTIONS(5172), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5172), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5172), + [anon_sym_BSLASHtext] = ACTIONS(5172), + [anon_sym_BSLASHintertext] = ACTIONS(5172), + [anon_sym_shortintertext] = ACTIONS(5172), }, [1249] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5097), - [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), + [sym_command_name] = ACTIONS(5176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_BSLASHpart] = ACTIONS(5176), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddpart] = ACTIONS(5176), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5174), + [anon_sym_BSLASHchapter] = ACTIONS(5176), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddchap] = ACTIONS(5176), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsection] = ACTIONS(5176), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHaddsec] = ACTIONS(5176), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5176), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5174), + [anon_sym_BSLASHparagraph] = ACTIONS(5176), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5176), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5174), + [anon_sym_BSLASHitem] = ACTIONS(5176), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5174), + [sym_word] = ACTIONS(5176), + [sym_placeholder] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym__] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_SQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5176), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5174), + [anon_sym_BSLASHbegin] = ACTIONS(5176), + [anon_sym_BSLASHend] = ACTIONS(5176), + [anon_sym_BSLASHusepackage] = ACTIONS(5176), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5176), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5176), + [anon_sym_BSLASHinclude] = ACTIONS(5176), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5176), + [anon_sym_BSLASHinput] = ACTIONS(5176), + [anon_sym_BSLASHsubfile] = ACTIONS(5176), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5176), + [anon_sym_BSLASHbibliography] = ACTIONS(5176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5176), + [anon_sym_BSLASHincludesvg] = ACTIONS(5176), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5176), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5176), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5176), + [anon_sym_BSLASHimport] = ACTIONS(5176), + [anon_sym_BSLASHsubimport] = ACTIONS(5176), + [anon_sym_BSLASHinputfrom] = ACTIONS(5176), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), + [anon_sym_BSLASHincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHcaption] = ACTIONS(5176), + [anon_sym_BSLASHcite] = ACTIONS(5176), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCite] = ACTIONS(5176), + [anon_sym_BSLASHnocite] = ACTIONS(5176), + [anon_sym_BSLASHcitet] = ACTIONS(5176), + [anon_sym_BSLASHcitep] = ACTIONS(5176), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteauthor] = ACTIONS(5176), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5176), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitetitle] = ACTIONS(5176), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteyear] = ACTIONS(5176), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitedate] = ACTIONS(5176), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteurl] = ACTIONS(5176), + [anon_sym_BSLASHfullcite] = ACTIONS(5176), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5176), + [anon_sym_BSLASHcitealt] = ACTIONS(5176), + [anon_sym_BSLASHcitealp] = ACTIONS(5176), + [anon_sym_BSLASHcitetext] = ACTIONS(5176), + [anon_sym_BSLASHparencite] = ACTIONS(5176), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHParencite] = ACTIONS(5176), + [anon_sym_BSLASHfootcite] = ACTIONS(5176), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5176), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5176), + [anon_sym_BSLASHtextcite] = ACTIONS(5176), + [anon_sym_BSLASHTextcite] = ACTIONS(5176), + [anon_sym_BSLASHsmartcite] = ACTIONS(5176), + [anon_sym_BSLASHSmartcite] = ACTIONS(5176), + [anon_sym_BSLASHsupercite] = ACTIONS(5176), + [anon_sym_BSLASHautocite] = ACTIONS(5176), + [anon_sym_BSLASHAutocite] = ACTIONS(5176), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHvolcite] = ACTIONS(5176), + [anon_sym_BSLASHVolcite] = ACTIONS(5176), + [anon_sym_BSLASHpvolcite] = ACTIONS(5176), + [anon_sym_BSLASHPvolcite] = ACTIONS(5176), + [anon_sym_BSLASHfvolcite] = ACTIONS(5176), + [anon_sym_BSLASHftvolcite] = ACTIONS(5176), + [anon_sym_BSLASHsvolcite] = ACTIONS(5176), + [anon_sym_BSLASHSvolcite] = ACTIONS(5176), + [anon_sym_BSLASHtvolcite] = ACTIONS(5176), + [anon_sym_BSLASHTvolcite] = ACTIONS(5176), + [anon_sym_BSLASHavolcite] = ACTIONS(5176), + [anon_sym_BSLASHAvolcite] = ACTIONS(5176), + [anon_sym_BSLASHnotecite] = ACTIONS(5176), + [anon_sym_BSLASHNotecite] = ACTIONS(5176), + [anon_sym_BSLASHpnotecite] = ACTIONS(5176), + [anon_sym_BSLASHPnotecite] = ACTIONS(5176), + [anon_sym_BSLASHfnotecite] = ACTIONS(5176), + [anon_sym_BSLASHlabel] = ACTIONS(5176), + [anon_sym_BSLASHref] = ACTIONS(5176), + [anon_sym_BSLASHeqref] = ACTIONS(5176), + [anon_sym_BSLASHvref] = ACTIONS(5176), + [anon_sym_BSLASHVref] = ACTIONS(5176), + [anon_sym_BSLASHautoref] = ACTIONS(5176), + [anon_sym_BSLASHpageref] = ACTIONS(5176), + [anon_sym_BSLASHcref] = ACTIONS(5176), + [anon_sym_BSLASHCref] = ACTIONS(5176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnameCref] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHlabelcref] = ACTIONS(5176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCrefrange] = ACTIONS(5176), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnewlabel] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5176), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5176), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5176), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdef] = ACTIONS(5176), + [anon_sym_BSLASHlet] = ACTIONS(5176), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5176), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5176), + [anon_sym_BSLASHgls] = ACTIONS(5176), + [anon_sym_BSLASHGls] = ACTIONS(5176), + [anon_sym_BSLASHGLS] = ACTIONS(5176), + [anon_sym_BSLASHglspl] = ACTIONS(5176), + [anon_sym_BSLASHGlspl] = ACTIONS(5176), + [anon_sym_BSLASHGLSpl] = ACTIONS(5176), + [anon_sym_BSLASHglsdisp] = ACTIONS(5176), + [anon_sym_BSLASHglslink] = ACTIONS(5176), + [anon_sym_BSLASHglstext] = ACTIONS(5176), + [anon_sym_BSLASHGlstext] = ACTIONS(5176), + [anon_sym_BSLASHGLStext] = ACTIONS(5176), + [anon_sym_BSLASHglsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5176), + [anon_sym_BSLASHglsplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSplural] = ACTIONS(5176), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHglsname] = ACTIONS(5176), + [anon_sym_BSLASHGlsname] = ACTIONS(5176), + [anon_sym_BSLASHGLSname] = ACTIONS(5176), + [anon_sym_BSLASHglssymbol] = ACTIONS(5176), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5176), + [anon_sym_BSLASHglsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5176), + [anon_sym_BSLASHglsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5176), + [anon_sym_BSLASHglsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5176), + [anon_sym_BSLASHglsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5176), + [anon_sym_BSLASHglsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5176), + [anon_sym_BSLASHnewacronym] = ACTIONS(5176), + [anon_sym_BSLASHacrshort] = ACTIONS(5176), + [anon_sym_BSLASHAcrshort] = ACTIONS(5176), + [anon_sym_BSLASHACRshort] = ACTIONS(5176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5176), + [anon_sym_BSLASHacrlong] = ACTIONS(5176), + [anon_sym_BSLASHAcrlong] = ACTIONS(5176), + [anon_sym_BSLASHACRlong] = ACTIONS(5176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5176), + [anon_sym_BSLASHacrfull] = ACTIONS(5176), + [anon_sym_BSLASHAcrfull] = ACTIONS(5176), + [anon_sym_BSLASHACRfull] = ACTIONS(5176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5176), + [anon_sym_BSLASHacs] = ACTIONS(5176), + [anon_sym_BSLASHAcs] = ACTIONS(5176), + [anon_sym_BSLASHacsp] = ACTIONS(5176), + [anon_sym_BSLASHAcsp] = ACTIONS(5176), + [anon_sym_BSLASHacl] = ACTIONS(5176), + [anon_sym_BSLASHAcl] = ACTIONS(5176), + [anon_sym_BSLASHaclp] = ACTIONS(5176), + [anon_sym_BSLASHAclp] = ACTIONS(5176), + [anon_sym_BSLASHacf] = ACTIONS(5176), + [anon_sym_BSLASHAcf] = ACTIONS(5176), + [anon_sym_BSLASHacfp] = ACTIONS(5176), + [anon_sym_BSLASHAcfp] = ACTIONS(5176), + [anon_sym_BSLASHac] = ACTIONS(5176), + [anon_sym_BSLASHAc] = ACTIONS(5176), + [anon_sym_BSLASHacp] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5176), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5176), + [anon_sym_BSLASHcolor] = ACTIONS(5176), + [anon_sym_BSLASHcolorbox] = ACTIONS(5176), + [anon_sym_BSLASHtextcolor] = ACTIONS(5176), + [anon_sym_BSLASHpagecolor] = ACTIONS(5176), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5176), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5176), + [anon_sym_BSLASHtext] = ACTIONS(5176), + [anon_sym_BSLASHintertext] = ACTIONS(5176), + [anon_sym_shortintertext] = ACTIONS(5176), }, [1250] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5101), - [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), + [sym_command_name] = ACTIONS(5180), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_BSLASHpart] = ACTIONS(5180), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddpart] = ACTIONS(5180), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5178), + [anon_sym_BSLASHchapter] = ACTIONS(5180), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddchap] = ACTIONS(5180), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsection] = ACTIONS(5180), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHaddsec] = ACTIONS(5180), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5180), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5178), + [anon_sym_BSLASHparagraph] = ACTIONS(5180), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5180), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5178), + [anon_sym_BSLASHitem] = ACTIONS(5180), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5178), + [sym_word] = ACTIONS(5180), + [sym_placeholder] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym__] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_SQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5178), + [anon_sym_BSLASHbegin] = ACTIONS(5180), + [anon_sym_BSLASHend] = ACTIONS(5180), + [anon_sym_BSLASHusepackage] = ACTIONS(5180), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5180), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5180), + [anon_sym_BSLASHinclude] = ACTIONS(5180), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5180), + [anon_sym_BSLASHinput] = ACTIONS(5180), + [anon_sym_BSLASHsubfile] = ACTIONS(5180), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5180), + [anon_sym_BSLASHbibliography] = ACTIONS(5180), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5180), + [anon_sym_BSLASHincludesvg] = ACTIONS(5180), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5180), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5180), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5180), + [anon_sym_BSLASHimport] = ACTIONS(5180), + [anon_sym_BSLASHsubimport] = ACTIONS(5180), + [anon_sym_BSLASHinputfrom] = ACTIONS(5180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5180), + [anon_sym_BSLASHincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHcaption] = ACTIONS(5180), + [anon_sym_BSLASHcite] = ACTIONS(5180), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCite] = ACTIONS(5180), + [anon_sym_BSLASHnocite] = ACTIONS(5180), + [anon_sym_BSLASHcitet] = ACTIONS(5180), + [anon_sym_BSLASHcitep] = ACTIONS(5180), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteauthor] = ACTIONS(5180), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5180), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitetitle] = ACTIONS(5180), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteyear] = ACTIONS(5180), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitedate] = ACTIONS(5180), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteurl] = ACTIONS(5180), + [anon_sym_BSLASHfullcite] = ACTIONS(5180), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5180), + [anon_sym_BSLASHcitealt] = ACTIONS(5180), + [anon_sym_BSLASHcitealp] = ACTIONS(5180), + [anon_sym_BSLASHcitetext] = ACTIONS(5180), + [anon_sym_BSLASHparencite] = ACTIONS(5180), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHParencite] = ACTIONS(5180), + [anon_sym_BSLASHfootcite] = ACTIONS(5180), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5180), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5180), + [anon_sym_BSLASHtextcite] = ACTIONS(5180), + [anon_sym_BSLASHTextcite] = ACTIONS(5180), + [anon_sym_BSLASHsmartcite] = ACTIONS(5180), + [anon_sym_BSLASHSmartcite] = ACTIONS(5180), + [anon_sym_BSLASHsupercite] = ACTIONS(5180), + [anon_sym_BSLASHautocite] = ACTIONS(5180), + [anon_sym_BSLASHAutocite] = ACTIONS(5180), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHvolcite] = ACTIONS(5180), + [anon_sym_BSLASHVolcite] = ACTIONS(5180), + [anon_sym_BSLASHpvolcite] = ACTIONS(5180), + [anon_sym_BSLASHPvolcite] = ACTIONS(5180), + [anon_sym_BSLASHfvolcite] = ACTIONS(5180), + [anon_sym_BSLASHftvolcite] = ACTIONS(5180), + [anon_sym_BSLASHsvolcite] = ACTIONS(5180), + [anon_sym_BSLASHSvolcite] = ACTIONS(5180), + [anon_sym_BSLASHtvolcite] = ACTIONS(5180), + [anon_sym_BSLASHTvolcite] = ACTIONS(5180), + [anon_sym_BSLASHavolcite] = ACTIONS(5180), + [anon_sym_BSLASHAvolcite] = ACTIONS(5180), + [anon_sym_BSLASHnotecite] = ACTIONS(5180), + [anon_sym_BSLASHNotecite] = ACTIONS(5180), + [anon_sym_BSLASHpnotecite] = ACTIONS(5180), + [anon_sym_BSLASHPnotecite] = ACTIONS(5180), + [anon_sym_BSLASHfnotecite] = ACTIONS(5180), + [anon_sym_BSLASHlabel] = ACTIONS(5180), + [anon_sym_BSLASHref] = ACTIONS(5180), + [anon_sym_BSLASHeqref] = ACTIONS(5180), + [anon_sym_BSLASHvref] = ACTIONS(5180), + [anon_sym_BSLASHVref] = ACTIONS(5180), + [anon_sym_BSLASHautoref] = ACTIONS(5180), + [anon_sym_BSLASHpageref] = ACTIONS(5180), + [anon_sym_BSLASHcref] = ACTIONS(5180), + [anon_sym_BSLASHCref] = ACTIONS(5180), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnameCref] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHlabelcref] = ACTIONS(5180), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCrefrange] = ACTIONS(5180), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnewlabel] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5180), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5180), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5180), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdef] = ACTIONS(5180), + [anon_sym_BSLASHlet] = ACTIONS(5180), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5180), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5180), + [anon_sym_BSLASHgls] = ACTIONS(5180), + [anon_sym_BSLASHGls] = ACTIONS(5180), + [anon_sym_BSLASHGLS] = ACTIONS(5180), + [anon_sym_BSLASHglspl] = ACTIONS(5180), + [anon_sym_BSLASHGlspl] = ACTIONS(5180), + [anon_sym_BSLASHGLSpl] = ACTIONS(5180), + [anon_sym_BSLASHglsdisp] = ACTIONS(5180), + [anon_sym_BSLASHglslink] = ACTIONS(5180), + [anon_sym_BSLASHglstext] = ACTIONS(5180), + [anon_sym_BSLASHGlstext] = ACTIONS(5180), + [anon_sym_BSLASHGLStext] = ACTIONS(5180), + [anon_sym_BSLASHglsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5180), + [anon_sym_BSLASHglsplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSplural] = ACTIONS(5180), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHglsname] = ACTIONS(5180), + [anon_sym_BSLASHGlsname] = ACTIONS(5180), + [anon_sym_BSLASHGLSname] = ACTIONS(5180), + [anon_sym_BSLASHglssymbol] = ACTIONS(5180), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5180), + [anon_sym_BSLASHglsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5180), + [anon_sym_BSLASHglsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5180), + [anon_sym_BSLASHglsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5180), + [anon_sym_BSLASHglsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5180), + [anon_sym_BSLASHglsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5180), + [anon_sym_BSLASHnewacronym] = ACTIONS(5180), + [anon_sym_BSLASHacrshort] = ACTIONS(5180), + [anon_sym_BSLASHAcrshort] = ACTIONS(5180), + [anon_sym_BSLASHACRshort] = ACTIONS(5180), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5180), + [anon_sym_BSLASHacrlong] = ACTIONS(5180), + [anon_sym_BSLASHAcrlong] = ACTIONS(5180), + [anon_sym_BSLASHACRlong] = ACTIONS(5180), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5180), + [anon_sym_BSLASHacrfull] = ACTIONS(5180), + [anon_sym_BSLASHAcrfull] = ACTIONS(5180), + [anon_sym_BSLASHACRfull] = ACTIONS(5180), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5180), + [anon_sym_BSLASHacs] = ACTIONS(5180), + [anon_sym_BSLASHAcs] = ACTIONS(5180), + [anon_sym_BSLASHacsp] = ACTIONS(5180), + [anon_sym_BSLASHAcsp] = ACTIONS(5180), + [anon_sym_BSLASHacl] = ACTIONS(5180), + [anon_sym_BSLASHAcl] = ACTIONS(5180), + [anon_sym_BSLASHaclp] = ACTIONS(5180), + [anon_sym_BSLASHAclp] = ACTIONS(5180), + [anon_sym_BSLASHacf] = ACTIONS(5180), + [anon_sym_BSLASHAcf] = ACTIONS(5180), + [anon_sym_BSLASHacfp] = ACTIONS(5180), + [anon_sym_BSLASHAcfp] = ACTIONS(5180), + [anon_sym_BSLASHac] = ACTIONS(5180), + [anon_sym_BSLASHAc] = ACTIONS(5180), + [anon_sym_BSLASHacp] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5180), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5180), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5180), + [anon_sym_BSLASHcolor] = ACTIONS(5180), + [anon_sym_BSLASHcolorbox] = ACTIONS(5180), + [anon_sym_BSLASHtextcolor] = ACTIONS(5180), + [anon_sym_BSLASHpagecolor] = ACTIONS(5180), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5180), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5180), + [anon_sym_BSLASHtext] = ACTIONS(5180), + [anon_sym_BSLASHintertext] = ACTIONS(5180), + [anon_sym_shortintertext] = ACTIONS(5180), }, [1251] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5105), - [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), + [sym_command_name] = ACTIONS(5184), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_BSLASHpart] = ACTIONS(5184), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddpart] = ACTIONS(5184), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5182), + [anon_sym_BSLASHchapter] = ACTIONS(5184), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddchap] = ACTIONS(5184), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsection] = ACTIONS(5184), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHaddsec] = ACTIONS(5184), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5184), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5182), + [anon_sym_BSLASHparagraph] = ACTIONS(5184), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5184), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5182), + [anon_sym_BSLASHitem] = ACTIONS(5184), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [sym_word] = ACTIONS(5184), + [sym_placeholder] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym__] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5182), + [anon_sym_BSLASHbegin] = ACTIONS(5184), + [anon_sym_BSLASHend] = ACTIONS(5184), + [anon_sym_BSLASHusepackage] = ACTIONS(5184), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5184), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5184), + [anon_sym_BSLASHinclude] = ACTIONS(5184), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5184), + [anon_sym_BSLASHinput] = ACTIONS(5184), + [anon_sym_BSLASHsubfile] = ACTIONS(5184), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5184), + [anon_sym_BSLASHbibliography] = ACTIONS(5184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5184), + [anon_sym_BSLASHincludesvg] = ACTIONS(5184), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5184), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5184), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5184), + [anon_sym_BSLASHimport] = ACTIONS(5184), + [anon_sym_BSLASHsubimport] = ACTIONS(5184), + [anon_sym_BSLASHinputfrom] = ACTIONS(5184), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5184), + [anon_sym_BSLASHincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHcaption] = ACTIONS(5184), + [anon_sym_BSLASHcite] = ACTIONS(5184), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCite] = ACTIONS(5184), + [anon_sym_BSLASHnocite] = ACTIONS(5184), + [anon_sym_BSLASHcitet] = ACTIONS(5184), + [anon_sym_BSLASHcitep] = ACTIONS(5184), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteauthor] = ACTIONS(5184), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5184), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitetitle] = ACTIONS(5184), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteyear] = ACTIONS(5184), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitedate] = ACTIONS(5184), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteurl] = ACTIONS(5184), + [anon_sym_BSLASHfullcite] = ACTIONS(5184), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5184), + [anon_sym_BSLASHcitealt] = ACTIONS(5184), + [anon_sym_BSLASHcitealp] = ACTIONS(5184), + [anon_sym_BSLASHcitetext] = ACTIONS(5184), + [anon_sym_BSLASHparencite] = ACTIONS(5184), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHParencite] = ACTIONS(5184), + [anon_sym_BSLASHfootcite] = ACTIONS(5184), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5184), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5184), + [anon_sym_BSLASHtextcite] = ACTIONS(5184), + [anon_sym_BSLASHTextcite] = ACTIONS(5184), + [anon_sym_BSLASHsmartcite] = ACTIONS(5184), + [anon_sym_BSLASHSmartcite] = ACTIONS(5184), + [anon_sym_BSLASHsupercite] = ACTIONS(5184), + [anon_sym_BSLASHautocite] = ACTIONS(5184), + [anon_sym_BSLASHAutocite] = ACTIONS(5184), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHvolcite] = ACTIONS(5184), + [anon_sym_BSLASHVolcite] = ACTIONS(5184), + [anon_sym_BSLASHpvolcite] = ACTIONS(5184), + [anon_sym_BSLASHPvolcite] = ACTIONS(5184), + [anon_sym_BSLASHfvolcite] = ACTIONS(5184), + [anon_sym_BSLASHftvolcite] = ACTIONS(5184), + [anon_sym_BSLASHsvolcite] = ACTIONS(5184), + [anon_sym_BSLASHSvolcite] = ACTIONS(5184), + [anon_sym_BSLASHtvolcite] = ACTIONS(5184), + [anon_sym_BSLASHTvolcite] = ACTIONS(5184), + [anon_sym_BSLASHavolcite] = ACTIONS(5184), + [anon_sym_BSLASHAvolcite] = ACTIONS(5184), + [anon_sym_BSLASHnotecite] = ACTIONS(5184), + [anon_sym_BSLASHNotecite] = ACTIONS(5184), + [anon_sym_BSLASHpnotecite] = ACTIONS(5184), + [anon_sym_BSLASHPnotecite] = ACTIONS(5184), + [anon_sym_BSLASHfnotecite] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5184), + [anon_sym_BSLASHref] = ACTIONS(5184), + [anon_sym_BSLASHeqref] = ACTIONS(5184), + [anon_sym_BSLASHvref] = ACTIONS(5184), + [anon_sym_BSLASHVref] = ACTIONS(5184), + [anon_sym_BSLASHautoref] = ACTIONS(5184), + [anon_sym_BSLASHpageref] = ACTIONS(5184), + [anon_sym_BSLASHcref] = ACTIONS(5184), + [anon_sym_BSLASHCref] = ACTIONS(5184), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnameCref] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHlabelcref] = ACTIONS(5184), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCrefrange] = ACTIONS(5184), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnewlabel] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5184), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5184), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5184), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdef] = ACTIONS(5184), + [anon_sym_BSLASHlet] = ACTIONS(5184), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5184), + [anon_sym_BSLASHgls] = ACTIONS(5184), + [anon_sym_BSLASHGls] = ACTIONS(5184), + [anon_sym_BSLASHGLS] = ACTIONS(5184), + [anon_sym_BSLASHglspl] = ACTIONS(5184), + [anon_sym_BSLASHGlspl] = ACTIONS(5184), + [anon_sym_BSLASHGLSpl] = ACTIONS(5184), + [anon_sym_BSLASHglsdisp] = ACTIONS(5184), + [anon_sym_BSLASHglslink] = ACTIONS(5184), + [anon_sym_BSLASHglstext] = ACTIONS(5184), + [anon_sym_BSLASHGlstext] = ACTIONS(5184), + [anon_sym_BSLASHGLStext] = ACTIONS(5184), + [anon_sym_BSLASHglsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5184), + [anon_sym_BSLASHglsplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSplural] = ACTIONS(5184), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHglsname] = ACTIONS(5184), + [anon_sym_BSLASHGlsname] = ACTIONS(5184), + [anon_sym_BSLASHGLSname] = ACTIONS(5184), + [anon_sym_BSLASHglssymbol] = ACTIONS(5184), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5184), + [anon_sym_BSLASHglsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5184), + [anon_sym_BSLASHglsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5184), + [anon_sym_BSLASHglsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5184), + [anon_sym_BSLASHglsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5184), + [anon_sym_BSLASHglsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5184), + [anon_sym_BSLASHnewacronym] = ACTIONS(5184), + [anon_sym_BSLASHacrshort] = ACTIONS(5184), + [anon_sym_BSLASHAcrshort] = ACTIONS(5184), + [anon_sym_BSLASHACRshort] = ACTIONS(5184), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5184), + [anon_sym_BSLASHacrlong] = ACTIONS(5184), + [anon_sym_BSLASHAcrlong] = ACTIONS(5184), + [anon_sym_BSLASHACRlong] = ACTIONS(5184), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5184), + [anon_sym_BSLASHacrfull] = ACTIONS(5184), + [anon_sym_BSLASHAcrfull] = ACTIONS(5184), + [anon_sym_BSLASHACRfull] = ACTIONS(5184), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5184), + [anon_sym_BSLASHacs] = ACTIONS(5184), + [anon_sym_BSLASHAcs] = ACTIONS(5184), + [anon_sym_BSLASHacsp] = ACTIONS(5184), + [anon_sym_BSLASHAcsp] = ACTIONS(5184), + [anon_sym_BSLASHacl] = ACTIONS(5184), + [anon_sym_BSLASHAcl] = ACTIONS(5184), + [anon_sym_BSLASHaclp] = ACTIONS(5184), + [anon_sym_BSLASHAclp] = ACTIONS(5184), + [anon_sym_BSLASHacf] = ACTIONS(5184), + [anon_sym_BSLASHAcf] = ACTIONS(5184), + [anon_sym_BSLASHacfp] = ACTIONS(5184), + [anon_sym_BSLASHAcfp] = ACTIONS(5184), + [anon_sym_BSLASHac] = ACTIONS(5184), + [anon_sym_BSLASHAc] = ACTIONS(5184), + [anon_sym_BSLASHacp] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5184), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5184), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5184), + [anon_sym_BSLASHcolor] = ACTIONS(5184), + [anon_sym_BSLASHcolorbox] = ACTIONS(5184), + [anon_sym_BSLASHtextcolor] = ACTIONS(5184), + [anon_sym_BSLASHpagecolor] = ACTIONS(5184), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5184), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5184), + [anon_sym_BSLASHtext] = ACTIONS(5184), + [anon_sym_BSLASHintertext] = ACTIONS(5184), + [anon_sym_shortintertext] = ACTIONS(5184), }, [1252] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_BSLASHpart] = ACTIONS(4887), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddpart] = ACTIONS(4887), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), - [anon_sym_BSLASHchapter] = ACTIONS(4887), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddchap] = ACTIONS(4887), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsection] = ACTIONS(4887), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHaddsec] = ACTIONS(4887), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), - [anon_sym_BSLASHparagraph] = ACTIONS(4887), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), - [anon_sym_BSLASHitem] = ACTIONS(4887), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASHbegin] = ACTIONS(4887), - [anon_sym_BSLASHend] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BSLASHpart] = ACTIONS(4966), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddpart] = ACTIONS(4966), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4964), + [anon_sym_BSLASHchapter] = ACTIONS(4966), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddchap] = ACTIONS(4966), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsection] = ACTIONS(4966), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHaddsec] = ACTIONS(4966), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4966), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4964), + [anon_sym_BSLASHparagraph] = ACTIONS(4966), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4966), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4964), + [anon_sym_BSLASHitem] = ACTIONS(4966), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASHbegin] = ACTIONS(4966), + [anon_sym_BSLASHend] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [1253] = { [sym_block_comment] = STATE(1560), @@ -376974,241 +379500,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1253), - [sym_command_name] = ACTIONS(5327), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5330), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5336), - [anon_sym_PLUS] = ACTIONS(5339), - [anon_sym_DASH] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(5339), - [anon_sym_SLASH] = ACTIONS(5339), - [anon_sym_CARET] = ACTIONS(5339), - [anon_sym__] = ACTIONS(5339), - [anon_sym_LT] = ACTIONS(5339), - [anon_sym_GT] = ACTIONS(5339), - [anon_sym_BANG] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(5339), - [anon_sym_COLON] = ACTIONS(5339), - [anon_sym_SQUOTE] = ACTIONS(5339), - [anon_sym_BSLASHusepackage] = ACTIONS(5342), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5342), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5348), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), - [anon_sym_BSLASHinput] = ACTIONS(5348), - [anon_sym_BSLASHsubfile] = ACTIONS(5348), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5351), - [anon_sym_BSLASHbibliography] = ACTIONS(5354), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5360), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5363), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5366), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5366), - [anon_sym_BSLASHimport] = ACTIONS(5369), - [anon_sym_BSLASHsubimport] = ACTIONS(5369), - [anon_sym_BSLASHinputfrom] = ACTIONS(5369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5369), - [anon_sym_BSLASHincludefrom] = ACTIONS(5369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5369), - [anon_sym_BSLASHcaption] = ACTIONS(5372), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), - [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(5378), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), - [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(5378), - [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(5378), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), - [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(5381), - [anon_sym_BSLASHref] = ACTIONS(5384), - [anon_sym_BSLASHeqref] = ACTIONS(5384), - [anon_sym_BSLASHvref] = ACTIONS(5384), - [anon_sym_BSLASHVref] = ACTIONS(5384), - [anon_sym_BSLASHautoref] = ACTIONS(5384), - [anon_sym_BSLASHpageref] = ACTIONS(5384), - [anon_sym_BSLASHcref] = ACTIONS(5384), - [anon_sym_BSLASHCref] = ACTIONS(5384), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5387), - [anon_sym_BSLASHnamecref] = ACTIONS(5384), - [anon_sym_BSLASHnameCref] = ACTIONS(5384), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), - [anon_sym_BSLASHlabelcref] = ACTIONS(5384), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), - [anon_sym_BSLASHcrefrange] = ACTIONS(5390), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5390), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5396), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5402), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5402), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5402), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5402), - [anon_sym_BSLASHdef] = ACTIONS(5405), - [anon_sym_BSLASHlet] = ACTIONS(5408), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5414), - [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(5420), - [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(5426), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5426), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5432), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5438), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5438), + [sym_command_name] = ACTIONS(5406), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5409), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [sym_word] = ACTIONS(5412), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5418), + [anon_sym__] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_BANG] = ACTIONS(5418), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_SQUOTE] = ACTIONS(5418), + [anon_sym_BSLASHusepackage] = ACTIONS(5421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5424), + [anon_sym_BSLASHinclude] = ACTIONS(5427), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), + [anon_sym_BSLASHinput] = ACTIONS(5427), + [anon_sym_BSLASHsubfile] = ACTIONS(5427), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5430), + [anon_sym_BSLASHbibliography] = ACTIONS(5433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5436), + [anon_sym_BSLASHincludesvg] = ACTIONS(5439), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5442), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5445), + [anon_sym_BSLASHimport] = ACTIONS(5448), + [anon_sym_BSLASHsubimport] = ACTIONS(5448), + [anon_sym_BSLASHinputfrom] = ACTIONS(5448), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5448), + [anon_sym_BSLASHincludefrom] = ACTIONS(5448), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5448), + [anon_sym_BSLASHcaption] = ACTIONS(5451), + [anon_sym_BSLASHcite] = ACTIONS(5454), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), + [anon_sym_BSLASHCite] = ACTIONS(5454), + [anon_sym_BSLASHnocite] = ACTIONS(5454), + [anon_sym_BSLASHcitet] = ACTIONS(5454), + [anon_sym_BSLASHcitep] = ACTIONS(5454), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), + [anon_sym_BSLASHciteauthor] = ACTIONS(5454), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5454), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), + [anon_sym_BSLASHcitetitle] = ACTIONS(5454), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), + [anon_sym_BSLASHciteyear] = ACTIONS(5454), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), + [anon_sym_BSLASHcitedate] = ACTIONS(5454), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), + [anon_sym_BSLASHciteurl] = ACTIONS(5454), + [anon_sym_BSLASHfullcite] = ACTIONS(5454), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5454), + [anon_sym_BSLASHcitealt] = ACTIONS(5454), + [anon_sym_BSLASHcitealp] = ACTIONS(5454), + [anon_sym_BSLASHcitetext] = ACTIONS(5454), + [anon_sym_BSLASHparencite] = ACTIONS(5454), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), + [anon_sym_BSLASHParencite] = ACTIONS(5454), + [anon_sym_BSLASHfootcite] = ACTIONS(5454), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5454), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5454), + [anon_sym_BSLASHtextcite] = ACTIONS(5454), + [anon_sym_BSLASHTextcite] = ACTIONS(5454), + [anon_sym_BSLASHsmartcite] = ACTIONS(5454), + [anon_sym_BSLASHSmartcite] = ACTIONS(5454), + [anon_sym_BSLASHsupercite] = ACTIONS(5454), + [anon_sym_BSLASHautocite] = ACTIONS(5454), + [anon_sym_BSLASHAutocite] = ACTIONS(5454), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), + [anon_sym_BSLASHvolcite] = ACTIONS(5454), + [anon_sym_BSLASHVolcite] = ACTIONS(5454), + [anon_sym_BSLASHpvolcite] = ACTIONS(5454), + [anon_sym_BSLASHPvolcite] = ACTIONS(5454), + [anon_sym_BSLASHfvolcite] = ACTIONS(5454), + [anon_sym_BSLASHftvolcite] = ACTIONS(5454), + [anon_sym_BSLASHsvolcite] = ACTIONS(5454), + [anon_sym_BSLASHSvolcite] = ACTIONS(5454), + [anon_sym_BSLASHtvolcite] = ACTIONS(5454), + [anon_sym_BSLASHTvolcite] = ACTIONS(5454), + [anon_sym_BSLASHavolcite] = ACTIONS(5454), + [anon_sym_BSLASHAvolcite] = ACTIONS(5454), + [anon_sym_BSLASHnotecite] = ACTIONS(5454), + [anon_sym_BSLASHNotecite] = ACTIONS(5454), + [anon_sym_BSLASHpnotecite] = ACTIONS(5454), + [anon_sym_BSLASHPnotecite] = ACTIONS(5454), + [anon_sym_BSLASHfnotecite] = ACTIONS(5454), + [anon_sym_BSLASHlabel] = ACTIONS(5460), + [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(5466), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5466), + [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(5469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5472), + [anon_sym_BSLASHCrefrange] = ACTIONS(5469), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5472), + [anon_sym_BSLASHnewlabel] = ACTIONS(5475), + [anon_sym_BSLASHnewcommand] = ACTIONS(5478), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5478), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5478), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5478), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), + [anon_sym_BSLASHdef] = ACTIONS(5484), + [anon_sym_BSLASHlet] = ACTIONS(5487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5490), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5493), + [anon_sym_BSLASHgls] = ACTIONS(5496), + [anon_sym_BSLASHGls] = ACTIONS(5496), + [anon_sym_BSLASHGLS] = ACTIONS(5496), + [anon_sym_BSLASHglspl] = ACTIONS(5496), + [anon_sym_BSLASHGlspl] = ACTIONS(5496), + [anon_sym_BSLASHGLSpl] = ACTIONS(5496), + [anon_sym_BSLASHglsdisp] = ACTIONS(5496), + [anon_sym_BSLASHglslink] = ACTIONS(5496), + [anon_sym_BSLASHglstext] = ACTIONS(5496), + [anon_sym_BSLASHGlstext] = ACTIONS(5496), + [anon_sym_BSLASHGLStext] = ACTIONS(5496), + [anon_sym_BSLASHglsfirst] = ACTIONS(5496), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5496), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5496), + [anon_sym_BSLASHglsplural] = ACTIONS(5496), + [anon_sym_BSLASHGlsplural] = ACTIONS(5496), + [anon_sym_BSLASHGLSplural] = ACTIONS(5496), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5496), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5496), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5496), + [anon_sym_BSLASHglsname] = ACTIONS(5496), + [anon_sym_BSLASHGlsname] = ACTIONS(5496), + [anon_sym_BSLASHGLSname] = ACTIONS(5496), + [anon_sym_BSLASHglssymbol] = ACTIONS(5496), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5496), + [anon_sym_BSLASHglsdesc] = ACTIONS(5496), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5496), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5496), + [anon_sym_BSLASHglsuseri] = ACTIONS(5496), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5496), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5496), + [anon_sym_BSLASHglsuserii] = ACTIONS(5496), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5496), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5496), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5496), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5496), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5496), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5496), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5496), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5496), + [anon_sym_BSLASHglsuserv] = ACTIONS(5496), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5496), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5496), + [anon_sym_BSLASHglsuservi] = ACTIONS(5496), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5496), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5496), + [anon_sym_BSLASHnewacronym] = ACTIONS(5499), + [anon_sym_BSLASHacrshort] = ACTIONS(5502), + [anon_sym_BSLASHAcrshort] = ACTIONS(5502), + [anon_sym_BSLASHACRshort] = ACTIONS(5502), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5502), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5502), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5502), + [anon_sym_BSLASHacrlong] = ACTIONS(5502), + [anon_sym_BSLASHAcrlong] = ACTIONS(5502), + [anon_sym_BSLASHACRlong] = ACTIONS(5502), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5502), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5502), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5502), + [anon_sym_BSLASHacrfull] = ACTIONS(5502), + [anon_sym_BSLASHAcrfull] = ACTIONS(5502), + [anon_sym_BSLASHACRfull] = ACTIONS(5502), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5502), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5502), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5502), + [anon_sym_BSLASHacs] = ACTIONS(5502), + [anon_sym_BSLASHAcs] = ACTIONS(5502), + [anon_sym_BSLASHacsp] = ACTIONS(5502), + [anon_sym_BSLASHAcsp] = ACTIONS(5502), + [anon_sym_BSLASHacl] = ACTIONS(5502), + [anon_sym_BSLASHAcl] = ACTIONS(5502), + [anon_sym_BSLASHaclp] = ACTIONS(5502), + [anon_sym_BSLASHAclp] = ACTIONS(5502), + [anon_sym_BSLASHacf] = ACTIONS(5502), + [anon_sym_BSLASHAcf] = ACTIONS(5502), + [anon_sym_BSLASHacfp] = ACTIONS(5502), + [anon_sym_BSLASHAcfp] = ACTIONS(5502), + [anon_sym_BSLASHac] = ACTIONS(5502), + [anon_sym_BSLASHAc] = ACTIONS(5502), + [anon_sym_BSLASHacp] = ACTIONS(5502), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5502), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5502), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5502), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5502), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5502), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5502), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5502), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5502), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5502), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5502), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5505), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5508), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5505), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5508), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5511), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5514), + [anon_sym_BSLASHcolor] = ACTIONS(5517), + [anon_sym_BSLASHcolorbox] = ACTIONS(5517), + [anon_sym_BSLASHtextcolor] = ACTIONS(5517), + [anon_sym_BSLASHpagecolor] = ACTIONS(5517), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5520), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5520), }, [1254] = { [sym_block_comment] = STATE(1560), @@ -377245,241 +379773,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1253), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_EQ] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1255] = { [sym_block_comment] = STATE(1560), @@ -377518,238 +380048,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5523), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1256] = { [sym_block_comment] = STATE(1560), @@ -377788,238 +380320,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5443), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5525), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1257] = { [sym_block_comment] = STATE(1560), @@ -378058,238 +380592,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5527), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1258] = { [sym_block_comment] = STATE(1560), @@ -378328,238 +380864,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5447), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5529), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1259] = { [sym_block_comment] = STATE(1560), @@ -378598,238 +381136,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5531), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1260] = { [sym_block_comment] = STATE(1560), @@ -378868,238 +381408,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACK] = ACTIONS(5451), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACK] = ACTIONS(5533), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1261] = { [sym_block_comment] = STATE(1560), @@ -379138,238 +381680,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5535), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1262] = { [sym_block_comment] = STATE(1560), @@ -379408,238 +381952,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5455), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5537), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1263] = { [sym_block_comment] = STATE(1560), @@ -379678,238 +382224,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5539), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1264] = { [sym_block_comment] = STATE(1560), @@ -379947,238 +382495,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5459), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5541), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1265] = { [sym_block_comment] = STATE(1560), @@ -380216,238 +382766,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5543), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1266] = { [sym_block_comment] = STATE(1560), @@ -380485,238 +383037,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5463), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5545), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1267] = { [sym_block_comment] = STATE(1560), @@ -380755,237 +383309,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1268] = { [sym_block_comment] = STATE(1560), @@ -381023,238 +383579,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5547), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1269] = { [sym_block_comment] = STATE(1560), @@ -381292,238 +383850,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5467), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5549), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1270] = { [sym_block_comment] = STATE(1560), @@ -381562,237 +384122,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1271] = { [sym_block_comment] = STATE(1560), @@ -381830,238 +384392,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5551), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1272] = { [sym_block_comment] = STATE(1560), @@ -382099,238 +384663,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5471), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5553), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1273] = { [sym_block_comment] = STATE(1560), @@ -382368,238 +384934,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [anon_sym_RBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [anon_sym_RBRACE] = ACTIONS(5555), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1274] = { [sym_block_comment] = STATE(1560), @@ -382637,237 +385205,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1275] = { [sym_block_comment] = STATE(1560), @@ -382905,237 +385475,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1276] = { [sym_block_comment] = STATE(1560), @@ -383173,237 +385745,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1277] = { [sym_block_comment] = STATE(1560), @@ -383441,237 +386015,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1278] = { [sym_block_comment] = STATE(1560), @@ -383709,237 +386285,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1279] = { [sym_block_comment] = STATE(1560), @@ -383977,237 +386555,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1280] = { [sym_block_comment] = STATE(1560), @@ -384245,237 +386825,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1281] = { [sym_block_comment] = STATE(1560), @@ -384513,237 +387095,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1282] = { [sym_block_comment] = STATE(1560), @@ -384781,237 +387365,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1283] = { [sym_block_comment] = STATE(1560), @@ -385049,237 +387635,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1284] = { [sym_block_comment] = STATE(1560), @@ -385317,237 +387905,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1285] = { [sym_block_comment] = STATE(1560), @@ -385585,237 +388175,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1286] = { [sym_block_comment] = STATE(1560), @@ -385853,237 +388445,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1287] = { [sym_block_comment] = STATE(1560), @@ -386121,237 +388715,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1288] = { [sym_block_comment] = STATE(1560), @@ -386389,237 +388985,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1289] = { [sym_block_comment] = STATE(1560), @@ -386657,237 +389255,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1290] = { [sym_block_comment] = STATE(1560), @@ -386925,237 +389525,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1291] = { [sym_block_comment] = STATE(1560), @@ -387193,70206 +389795,70778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(1560), [sym_tikz_library_import] = STATE(1560), [aux_sym_text_repeat1] = STATE(1254), - [sym_command_name] = ACTIONS(4359), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4361), - [sym_word] = ACTIONS(4363), - [sym_placeholder] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym__] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_GT] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_PIPE] = ACTIONS(4367), - [anon_sym_COLON] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_BSLASHusepackage] = ACTIONS(4379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), - [anon_sym_BSLASHinclude] = ACTIONS(4383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), - [anon_sym_BSLASHinput] = ACTIONS(4383), - [anon_sym_BSLASHsubfile] = ACTIONS(4383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), - [anon_sym_BSLASHbibliography] = ACTIONS(4387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4397), - [anon_sym_BSLASHsubimport] = ACTIONS(4397), - [anon_sym_BSLASHinputfrom] = ACTIONS(4397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), - [anon_sym_BSLASHincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCite] = ACTIONS(4401), - [anon_sym_BSLASHnocite] = ACTIONS(4401), - [anon_sym_BSLASHcitet] = ACTIONS(4401), - [anon_sym_BSLASHcitep] = ACTIONS(4401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteauthor] = ACTIONS(4401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitetitle] = ACTIONS(4401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteyear] = ACTIONS(4401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), - [anon_sym_BSLASHcitedate] = ACTIONS(4401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), - [anon_sym_BSLASHciteurl] = ACTIONS(4401), - [anon_sym_BSLASHfullcite] = ACTIONS(4401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), - [anon_sym_BSLASHcitealt] = ACTIONS(4401), - [anon_sym_BSLASHcitealp] = ACTIONS(4401), - [anon_sym_BSLASHcitetext] = ACTIONS(4401), - [anon_sym_BSLASHparencite] = ACTIONS(4401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHParencite] = ACTIONS(4401), - [anon_sym_BSLASHfootcite] = ACTIONS(4401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), - [anon_sym_BSLASHtextcite] = ACTIONS(4401), - [anon_sym_BSLASHTextcite] = ACTIONS(4401), - [anon_sym_BSLASHsmartcite] = ACTIONS(4401), - [anon_sym_BSLASHSmartcite] = ACTIONS(4401), - [anon_sym_BSLASHsupercite] = ACTIONS(4401), - [anon_sym_BSLASHautocite] = ACTIONS(4401), - [anon_sym_BSLASHAutocite] = ACTIONS(4401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), - [anon_sym_BSLASHvolcite] = ACTIONS(4401), - [anon_sym_BSLASHVolcite] = ACTIONS(4401), - [anon_sym_BSLASHpvolcite] = ACTIONS(4401), - [anon_sym_BSLASHPvolcite] = ACTIONS(4401), - [anon_sym_BSLASHfvolcite] = ACTIONS(4401), - [anon_sym_BSLASHftvolcite] = ACTIONS(4401), - [anon_sym_BSLASHsvolcite] = ACTIONS(4401), - [anon_sym_BSLASHSvolcite] = ACTIONS(4401), - [anon_sym_BSLASHtvolcite] = ACTIONS(4401), - [anon_sym_BSLASHTvolcite] = ACTIONS(4401), - [anon_sym_BSLASHavolcite] = ACTIONS(4401), - [anon_sym_BSLASHAvolcite] = ACTIONS(4401), - [anon_sym_BSLASHnotecite] = ACTIONS(4401), - [anon_sym_BSLASHNotecite] = ACTIONS(4401), - [anon_sym_BSLASHpnotecite] = ACTIONS(4401), - [anon_sym_BSLASHPnotecite] = ACTIONS(4401), - [anon_sym_BSLASHfnotecite] = ACTIONS(4401), - [anon_sym_BSLASHlabel] = ACTIONS(4405), - [anon_sym_BSLASHref] = ACTIONS(4407), - [anon_sym_BSLASHeqref] = ACTIONS(4407), - [anon_sym_BSLASHvref] = ACTIONS(4407), - [anon_sym_BSLASHVref] = ACTIONS(4407), - [anon_sym_BSLASHautoref] = ACTIONS(4407), - [anon_sym_BSLASHpageref] = ACTIONS(4407), - [anon_sym_BSLASHcref] = ACTIONS(4407), - [anon_sym_BSLASHCref] = ACTIONS(4407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), - [anon_sym_BSLASHnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnameCref] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), - [anon_sym_BSLASHlabelcref] = ACTIONS(4407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), - [anon_sym_BSLASHcrefrange] = ACTIONS(4411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHCrefrange] = ACTIONS(4411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), - [anon_sym_BSLASHnewlabel] = ACTIONS(4415), - [anon_sym_BSLASHnewcommand] = ACTIONS(4417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), - [anon_sym_BSLASHdef] = ACTIONS(4421), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), - [anon_sym_BSLASHgls] = ACTIONS(4429), - [anon_sym_BSLASHGls] = ACTIONS(4429), - [anon_sym_BSLASHGLS] = ACTIONS(4429), - [anon_sym_BSLASHglspl] = ACTIONS(4429), - [anon_sym_BSLASHGlspl] = ACTIONS(4429), - [anon_sym_BSLASHGLSpl] = ACTIONS(4429), - [anon_sym_BSLASHglsdisp] = ACTIONS(4429), - [anon_sym_BSLASHglslink] = ACTIONS(4429), - [anon_sym_BSLASHglstext] = ACTIONS(4429), - [anon_sym_BSLASHGlstext] = ACTIONS(4429), - [anon_sym_BSLASHGLStext] = ACTIONS(4429), - [anon_sym_BSLASHglsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), - [anon_sym_BSLASHglsplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSplural] = ACTIONS(4429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), - [anon_sym_BSLASHglsname] = ACTIONS(4429), - [anon_sym_BSLASHGlsname] = ACTIONS(4429), - [anon_sym_BSLASHGLSname] = ACTIONS(4429), - [anon_sym_BSLASHglssymbol] = ACTIONS(4429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), - [anon_sym_BSLASHglsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), - [anon_sym_BSLASHglsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), - [anon_sym_BSLASHglsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), - [anon_sym_BSLASHglsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), - [anon_sym_BSLASHglsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), - [anon_sym_BSLASHnewacronym] = ACTIONS(4431), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + [sym_command_name] = ACTIONS(4436), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4438), + [sym_word] = ACTIONS(4440), + [sym_placeholder] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym__] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_BSLASHusepackage] = ACTIONS(4456), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4456), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4458), + [anon_sym_BSLASHinclude] = ACTIONS(4460), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4460), + [anon_sym_BSLASHinput] = ACTIONS(4460), + [anon_sym_BSLASHsubfile] = ACTIONS(4460), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4462), + [anon_sym_BSLASHbibliography] = ACTIONS(4464), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4466), + [anon_sym_BSLASHincludesvg] = ACTIONS(4468), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4470), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4472), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4472), + [anon_sym_BSLASHimport] = ACTIONS(4474), + [anon_sym_BSLASHsubimport] = ACTIONS(4474), + [anon_sym_BSLASHinputfrom] = ACTIONS(4474), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4474), + [anon_sym_BSLASHincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4474), + [anon_sym_BSLASHcaption] = ACTIONS(4476), + [anon_sym_BSLASHcite] = ACTIONS(4478), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCite] = ACTIONS(4478), + [anon_sym_BSLASHnocite] = ACTIONS(4478), + [anon_sym_BSLASHcitet] = ACTIONS(4478), + [anon_sym_BSLASHcitep] = ACTIONS(4478), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteauthor] = ACTIONS(4478), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4478), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitetitle] = ACTIONS(4478), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteyear] = ACTIONS(4478), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4480), + [anon_sym_BSLASHcitedate] = ACTIONS(4478), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4480), + [anon_sym_BSLASHciteurl] = ACTIONS(4478), + [anon_sym_BSLASHfullcite] = ACTIONS(4478), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4478), + [anon_sym_BSLASHcitealt] = ACTIONS(4478), + [anon_sym_BSLASHcitealp] = ACTIONS(4478), + [anon_sym_BSLASHcitetext] = ACTIONS(4478), + [anon_sym_BSLASHparencite] = ACTIONS(4478), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHParencite] = ACTIONS(4478), + [anon_sym_BSLASHfootcite] = ACTIONS(4478), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4478), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4478), + [anon_sym_BSLASHtextcite] = ACTIONS(4478), + [anon_sym_BSLASHTextcite] = ACTIONS(4478), + [anon_sym_BSLASHsmartcite] = ACTIONS(4478), + [anon_sym_BSLASHSmartcite] = ACTIONS(4478), + [anon_sym_BSLASHsupercite] = ACTIONS(4478), + [anon_sym_BSLASHautocite] = ACTIONS(4478), + [anon_sym_BSLASHAutocite] = ACTIONS(4478), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4480), + [anon_sym_BSLASHvolcite] = ACTIONS(4478), + [anon_sym_BSLASHVolcite] = ACTIONS(4478), + [anon_sym_BSLASHpvolcite] = ACTIONS(4478), + [anon_sym_BSLASHPvolcite] = ACTIONS(4478), + [anon_sym_BSLASHfvolcite] = ACTIONS(4478), + [anon_sym_BSLASHftvolcite] = ACTIONS(4478), + [anon_sym_BSLASHsvolcite] = ACTIONS(4478), + [anon_sym_BSLASHSvolcite] = ACTIONS(4478), + [anon_sym_BSLASHtvolcite] = ACTIONS(4478), + [anon_sym_BSLASHTvolcite] = ACTIONS(4478), + [anon_sym_BSLASHavolcite] = ACTIONS(4478), + [anon_sym_BSLASHAvolcite] = ACTIONS(4478), + [anon_sym_BSLASHnotecite] = ACTIONS(4478), + [anon_sym_BSLASHNotecite] = ACTIONS(4478), + [anon_sym_BSLASHpnotecite] = ACTIONS(4478), + [anon_sym_BSLASHPnotecite] = ACTIONS(4478), + [anon_sym_BSLASHfnotecite] = ACTIONS(4478), + [anon_sym_BSLASHlabel] = ACTIONS(4482), + [anon_sym_BSLASHref] = ACTIONS(4484), + [anon_sym_BSLASHeqref] = ACTIONS(4484), + [anon_sym_BSLASHvref] = ACTIONS(4484), + [anon_sym_BSLASHVref] = ACTIONS(4484), + [anon_sym_BSLASHautoref] = ACTIONS(4484), + [anon_sym_BSLASHpageref] = ACTIONS(4484), + [anon_sym_BSLASHcref] = ACTIONS(4484), + [anon_sym_BSLASHCref] = ACTIONS(4484), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4486), + [anon_sym_BSLASHnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnameCref] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4484), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4484), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4484), + [anon_sym_BSLASHlabelcref] = ACTIONS(4484), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4484), + [anon_sym_BSLASHcrefrange] = ACTIONS(4488), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHCrefrange] = ACTIONS(4488), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4490), + [anon_sym_BSLASHnewlabel] = ACTIONS(4492), + [anon_sym_BSLASHnewcommand] = ACTIONS(4494), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4494), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4494), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4496), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4494), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4496), + [anon_sym_BSLASHdef] = ACTIONS(4498), + [anon_sym_BSLASHlet] = ACTIONS(4500), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4502), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4504), + [anon_sym_BSLASHgls] = ACTIONS(4506), + [anon_sym_BSLASHGls] = ACTIONS(4506), + [anon_sym_BSLASHGLS] = ACTIONS(4506), + [anon_sym_BSLASHglspl] = ACTIONS(4506), + [anon_sym_BSLASHGlspl] = ACTIONS(4506), + [anon_sym_BSLASHGLSpl] = ACTIONS(4506), + [anon_sym_BSLASHglsdisp] = ACTIONS(4506), + [anon_sym_BSLASHglslink] = ACTIONS(4506), + [anon_sym_BSLASHglstext] = ACTIONS(4506), + [anon_sym_BSLASHGlstext] = ACTIONS(4506), + [anon_sym_BSLASHGLStext] = ACTIONS(4506), + [anon_sym_BSLASHglsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4506), + [anon_sym_BSLASHglsplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSplural] = ACTIONS(4506), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4506), + [anon_sym_BSLASHglsname] = ACTIONS(4506), + [anon_sym_BSLASHGlsname] = ACTIONS(4506), + [anon_sym_BSLASHGLSname] = ACTIONS(4506), + [anon_sym_BSLASHglssymbol] = ACTIONS(4506), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4506), + [anon_sym_BSLASHglsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4506), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4506), + [anon_sym_BSLASHglsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4506), + [anon_sym_BSLASHglsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4506), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4506), + [anon_sym_BSLASHglsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4506), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4506), + [anon_sym_BSLASHglsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4506), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4506), + [anon_sym_BSLASHnewacronym] = ACTIONS(4508), + [anon_sym_BSLASHacrshort] = ACTIONS(4510), + [anon_sym_BSLASHAcrshort] = ACTIONS(4510), + [anon_sym_BSLASHACRshort] = ACTIONS(4510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4510), + [anon_sym_BSLASHacrlong] = ACTIONS(4510), + [anon_sym_BSLASHAcrlong] = ACTIONS(4510), + [anon_sym_BSLASHACRlong] = ACTIONS(4510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4510), + [anon_sym_BSLASHacrfull] = ACTIONS(4510), + [anon_sym_BSLASHAcrfull] = ACTIONS(4510), + [anon_sym_BSLASHACRfull] = ACTIONS(4510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4510), + [anon_sym_BSLASHacs] = ACTIONS(4510), + [anon_sym_BSLASHAcs] = ACTIONS(4510), + [anon_sym_BSLASHacsp] = ACTIONS(4510), + [anon_sym_BSLASHAcsp] = ACTIONS(4510), + [anon_sym_BSLASHacl] = ACTIONS(4510), + [anon_sym_BSLASHAcl] = ACTIONS(4510), + [anon_sym_BSLASHaclp] = ACTIONS(4510), + [anon_sym_BSLASHAclp] = ACTIONS(4510), + [anon_sym_BSLASHacf] = ACTIONS(4510), + [anon_sym_BSLASHAcf] = ACTIONS(4510), + [anon_sym_BSLASHacfp] = ACTIONS(4510), + [anon_sym_BSLASHAcfp] = ACTIONS(4510), + [anon_sym_BSLASHac] = ACTIONS(4510), + [anon_sym_BSLASHAc] = ACTIONS(4510), + [anon_sym_BSLASHacp] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4514), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4516), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4518), + [anon_sym_BSLASHcolor] = ACTIONS(4520), + [anon_sym_BSLASHcolorbox] = ACTIONS(4520), + [anon_sym_BSLASHtextcolor] = ACTIONS(4520), + [anon_sym_BSLASHpagecolor] = ACTIONS(4520), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4522), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4522), }, [1292] = { [sym_curly_group] = STATE(1402), [sym_mixed_group] = STATE(1402), [aux_sym_generic_command_repeat1] = STATE(1292), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(5475), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(5478), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASHbegin] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(5557), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(5557), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(5560), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASHbegin] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [1293] = { [sym_curly_group] = STATE(1402), [sym_mixed_group] = STATE(1402), [aux_sym_generic_command_repeat1] = STATE(1292), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASHbegin] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASHbegin] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [1294] = { [sym_curly_group] = STATE(1402), [sym_mixed_group] = STATE(1402), [aux_sym_generic_command_repeat1] = STATE(1293), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASHbegin] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASHbegin] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [1295] = { [sym_curly_group] = STATE(1492), [sym_mixed_group] = STATE(1492), [aux_sym_generic_command_repeat1] = STATE(1295), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(4459), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), - [anon_sym_BSLASHtext] = ACTIONS(4461), - [anon_sym_BSLASHintertext] = ACTIONS(4461), - [anon_sym_shortintertext] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(5563), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(5563), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(5566), + [anon_sym_RBRACE] = ACTIONS(4538), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4538), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4538), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), + [anon_sym_BSLASHtext] = ACTIONS(4540), + [anon_sym_BSLASHintertext] = ACTIONS(4540), + [anon_sym_shortintertext] = ACTIONS(4540), }, [1296] = { [sym_curly_group] = STATE(1304), [sym_brack_group_text] = STATE(2146), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(3263), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASHbegin] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASHbegin] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [1297] = { [sym_curly_group] = STATE(1492), [sym_mixed_group] = STATE(1492), [aux_sym_generic_command_repeat1] = STATE(1295), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(5487), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_LBRACK] = ACTIONS(5487), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(4449), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(4451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), - [anon_sym_BSLASHtext] = ACTIONS(4451), - [anon_sym_BSLASHintertext] = ACTIONS(4451), - [anon_sym_shortintertext] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(5569), + [anon_sym_RPAREN] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(5569), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4528), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4528), + [anon_sym_DOLLAR] = ACTIONS(4530), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4528), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4528), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [1298] = { [sym_curly_group] = STATE(1302), [sym_brack_group_text] = STATE(2155), - [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(4693), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(3263), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(3318), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASHbegin] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [1299] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(5489), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASHbegin] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(5491), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(5571), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASHbegin] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(5573), }, [1300] = { [sym_curly_group] = STATE(1492), [sym_mixed_group] = STATE(1492), [aux_sym_generic_command_repeat1] = STATE(1297), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(5487), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(5487), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(4563), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4565), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), - [anon_sym_BSLASHtext] = ACTIONS(4565), - [anon_sym_BSLASHintertext] = ACTIONS(4565), - [anon_sym_shortintertext] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(5569), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(5569), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4642), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4642), + [anon_sym_DOLLAR] = ACTIONS(4644), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4642), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4642), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), + [anon_sym_BSLASHtext] = ACTIONS(4644), + [anon_sym_BSLASHintertext] = ACTIONS(4644), + [anon_sym_shortintertext] = ACTIONS(4644), }, [1301] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5493), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASHbegin] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5575), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASHbegin] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [1302] = { [sym_brack_group_text] = STATE(1372), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASHbegin] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(5577), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASHbegin] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [1303] = { [sym_curly_group] = STATE(1398), [sym_brack_group_text] = STATE(2228), - [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(4693), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(3711), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4768), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4768), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4768), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), + [anon_sym_BSLASHtext] = ACTIONS(4770), + [anon_sym_BSLASHintertext] = ACTIONS(4770), + [anon_sym_shortintertext] = ACTIONS(4770), }, [1304] = { [sym_brack_group_text] = STATE(1316), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASHbegin] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(5577), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASHbegin] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [1305] = { [sym_curly_group] = STATE(1401), [sym_brack_group_text] = STATE(2219), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_RBRACE] = ACTIONS(4815), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4817), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), - [anon_sym_BSLASHtext] = ACTIONS(4817), - [anon_sym_BSLASHintertext] = ACTIONS(4817), - [anon_sym_shortintertext] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(4894), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4894), + [anon_sym_DOLLAR] = ACTIONS(4896), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4894), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), + [anon_sym_BSLASHtext] = ACTIONS(4896), + [anon_sym_BSLASHintertext] = ACTIONS(4896), + [anon_sym_shortintertext] = ACTIONS(4896), }, [1306] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(5497), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [anon_sym_RBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [anon_sym_BSLASHtext] = ACTIONS(4753), - [anon_sym_BSLASHintertext] = ACTIONS(4753), - [anon_sym_shortintertext] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(5499), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(5579), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4830), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4830), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [anon_sym_BSLASHtext] = ACTIONS(4832), + [anon_sym_BSLASHintertext] = ACTIONS(4832), + [anon_sym_shortintertext] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(5581), }, [1307] = { - [sym_command_name] = ACTIONS(4935), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4933), - [sym_word] = ACTIONS(4935), - [sym_placeholder] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_CARET] = ACTIONS(4935), - [anon_sym__] = ACTIONS(4935), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4935), - [anon_sym_COLON] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), - [anon_sym_DOLLAR] = ACTIONS(4935), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), - [anon_sym_BSLASHbegin] = ACTIONS(4935), - [anon_sym_BSLASHusepackage] = ACTIONS(4935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), - [anon_sym_BSLASHinclude] = ACTIONS(4935), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), - [anon_sym_BSLASHinput] = ACTIONS(4935), - [anon_sym_BSLASHsubfile] = ACTIONS(4935), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), - [anon_sym_BSLASHbibliography] = ACTIONS(4935), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), - [anon_sym_BSLASHincludesvg] = ACTIONS(4935), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), - [anon_sym_BSLASHimport] = ACTIONS(4935), - [anon_sym_BSLASHsubimport] = ACTIONS(4935), - [anon_sym_BSLASHinputfrom] = ACTIONS(4935), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), - [anon_sym_BSLASHincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), - [anon_sym_BSLASHcaption] = ACTIONS(4935), - [anon_sym_BSLASHcite] = ACTIONS(4935), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCite] = ACTIONS(4935), - [anon_sym_BSLASHnocite] = ACTIONS(4935), - [anon_sym_BSLASHcitet] = ACTIONS(4935), - [anon_sym_BSLASHcitep] = ACTIONS(4935), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteauthor] = ACTIONS(4935), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitetitle] = ACTIONS(4935), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteyear] = ACTIONS(4935), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), - [anon_sym_BSLASHcitedate] = ACTIONS(4935), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), - [anon_sym_BSLASHciteurl] = ACTIONS(4935), - [anon_sym_BSLASHfullcite] = ACTIONS(4935), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), - [anon_sym_BSLASHcitealt] = ACTIONS(4935), - [anon_sym_BSLASHcitealp] = ACTIONS(4935), - [anon_sym_BSLASHcitetext] = ACTIONS(4935), - [anon_sym_BSLASHparencite] = ACTIONS(4935), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHParencite] = ACTIONS(4935), - [anon_sym_BSLASHfootcite] = ACTIONS(4935), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), - [anon_sym_BSLASHtextcite] = ACTIONS(4935), - [anon_sym_BSLASHTextcite] = ACTIONS(4935), - [anon_sym_BSLASHsmartcite] = ACTIONS(4935), - [anon_sym_BSLASHSmartcite] = ACTIONS(4935), - [anon_sym_BSLASHsupercite] = ACTIONS(4935), - [anon_sym_BSLASHautocite] = ACTIONS(4935), - [anon_sym_BSLASHAutocite] = ACTIONS(4935), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), - [anon_sym_BSLASHvolcite] = ACTIONS(4935), - [anon_sym_BSLASHVolcite] = ACTIONS(4935), - [anon_sym_BSLASHpvolcite] = ACTIONS(4935), - [anon_sym_BSLASHPvolcite] = ACTIONS(4935), - [anon_sym_BSLASHfvolcite] = ACTIONS(4935), - [anon_sym_BSLASHftvolcite] = ACTIONS(4935), - [anon_sym_BSLASHsvolcite] = ACTIONS(4935), - [anon_sym_BSLASHSvolcite] = ACTIONS(4935), - [anon_sym_BSLASHtvolcite] = ACTIONS(4935), - [anon_sym_BSLASHTvolcite] = ACTIONS(4935), - [anon_sym_BSLASHavolcite] = ACTIONS(4935), - [anon_sym_BSLASHAvolcite] = ACTIONS(4935), - [anon_sym_BSLASHnotecite] = ACTIONS(4935), - [anon_sym_BSLASHNotecite] = ACTIONS(4935), - [anon_sym_BSLASHpnotecite] = ACTIONS(4935), - [anon_sym_BSLASHPnotecite] = ACTIONS(4935), - [anon_sym_BSLASHfnotecite] = ACTIONS(4935), - [anon_sym_BSLASHlabel] = ACTIONS(4935), - [anon_sym_BSLASHref] = ACTIONS(4935), - [anon_sym_BSLASHeqref] = ACTIONS(4935), - [anon_sym_BSLASHvref] = ACTIONS(4935), - [anon_sym_BSLASHVref] = ACTIONS(4935), - [anon_sym_BSLASHautoref] = ACTIONS(4935), - [anon_sym_BSLASHpageref] = ACTIONS(4935), - [anon_sym_BSLASHcref] = ACTIONS(4935), - [anon_sym_BSLASHCref] = ACTIONS(4935), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnameCref] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), - [anon_sym_BSLASHlabelcref] = ACTIONS(4935), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange] = ACTIONS(4935), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHCrefrange] = ACTIONS(4935), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), - [anon_sym_BSLASHnewlabel] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand] = ACTIONS(4935), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), - [anon_sym_BSLASHdef] = ACTIONS(4935), - [anon_sym_BSLASHlet] = ACTIONS(4935), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), - [anon_sym_BSLASHgls] = ACTIONS(4935), - [anon_sym_BSLASHGls] = ACTIONS(4935), - [anon_sym_BSLASHGLS] = ACTIONS(4935), - [anon_sym_BSLASHglspl] = ACTIONS(4935), - [anon_sym_BSLASHGlspl] = ACTIONS(4935), - [anon_sym_BSLASHGLSpl] = ACTIONS(4935), - [anon_sym_BSLASHglsdisp] = ACTIONS(4935), - [anon_sym_BSLASHglslink] = ACTIONS(4935), - [anon_sym_BSLASHglstext] = ACTIONS(4935), - [anon_sym_BSLASHGlstext] = ACTIONS(4935), - [anon_sym_BSLASHGLStext] = ACTIONS(4935), - [anon_sym_BSLASHglsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), - [anon_sym_BSLASHglsplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSplural] = ACTIONS(4935), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), - [anon_sym_BSLASHglsname] = ACTIONS(4935), - [anon_sym_BSLASHGlsname] = ACTIONS(4935), - [anon_sym_BSLASHGLSname] = ACTIONS(4935), - [anon_sym_BSLASHglssymbol] = ACTIONS(4935), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), - [anon_sym_BSLASHglsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), - [anon_sym_BSLASHglsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), - [anon_sym_BSLASHglsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), - [anon_sym_BSLASHglsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), - [anon_sym_BSLASHglsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), - [anon_sym_BSLASHnewacronym] = ACTIONS(4935), - [anon_sym_BSLASHacrshort] = ACTIONS(4935), - [anon_sym_BSLASHAcrshort] = ACTIONS(4935), - [anon_sym_BSLASHACRshort] = ACTIONS(4935), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), - [anon_sym_BSLASHacrlong] = ACTIONS(4935), - [anon_sym_BSLASHAcrlong] = ACTIONS(4935), - [anon_sym_BSLASHACRlong] = ACTIONS(4935), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), - [anon_sym_BSLASHacrfull] = ACTIONS(4935), - [anon_sym_BSLASHAcrfull] = ACTIONS(4935), - [anon_sym_BSLASHACRfull] = ACTIONS(4935), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), - [anon_sym_BSLASHacs] = ACTIONS(4935), - [anon_sym_BSLASHAcs] = ACTIONS(4935), - [anon_sym_BSLASHacsp] = ACTIONS(4935), - [anon_sym_BSLASHAcsp] = ACTIONS(4935), - [anon_sym_BSLASHacl] = ACTIONS(4935), - [anon_sym_BSLASHAcl] = ACTIONS(4935), - [anon_sym_BSLASHaclp] = ACTIONS(4935), - [anon_sym_BSLASHAclp] = ACTIONS(4935), - [anon_sym_BSLASHacf] = ACTIONS(4935), - [anon_sym_BSLASHAcf] = ACTIONS(4935), - [anon_sym_BSLASHacfp] = ACTIONS(4935), - [anon_sym_BSLASHAcfp] = ACTIONS(4935), - [anon_sym_BSLASHac] = ACTIONS(4935), - [anon_sym_BSLASHAc] = ACTIONS(4935), - [anon_sym_BSLASHacp] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), - [anon_sym_BSLASHcolor] = ACTIONS(4935), - [anon_sym_BSLASHcolorbox] = ACTIONS(4935), - [anon_sym_BSLASHtextcolor] = ACTIONS(4935), - [anon_sym_BSLASHpagecolor] = ACTIONS(4935), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - [anon_sym_BSLASHtext] = ACTIONS(4935), - [anon_sym_BSLASHintertext] = ACTIONS(4935), - [anon_sym_shortintertext] = ACTIONS(4935), + [sym_command_name] = ACTIONS(5014), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [sym_word] = ACTIONS(5014), + [sym_placeholder] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym__] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5012), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5012), + [anon_sym_BSLASHbegin] = ACTIONS(5014), + [anon_sym_BSLASHusepackage] = ACTIONS(5014), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5014), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5014), + [anon_sym_BSLASHinclude] = ACTIONS(5014), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5014), + [anon_sym_BSLASHinput] = ACTIONS(5014), + [anon_sym_BSLASHsubfile] = ACTIONS(5014), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5014), + [anon_sym_BSLASHbibliography] = ACTIONS(5014), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5014), + [anon_sym_BSLASHincludesvg] = ACTIONS(5014), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5014), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5014), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5014), + [anon_sym_BSLASHimport] = ACTIONS(5014), + [anon_sym_BSLASHsubimport] = ACTIONS(5014), + [anon_sym_BSLASHinputfrom] = ACTIONS(5014), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5014), + [anon_sym_BSLASHincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5014), + [anon_sym_BSLASHcaption] = ACTIONS(5014), + [anon_sym_BSLASHcite] = ACTIONS(5014), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCite] = ACTIONS(5014), + [anon_sym_BSLASHnocite] = ACTIONS(5014), + [anon_sym_BSLASHcitet] = ACTIONS(5014), + [anon_sym_BSLASHcitep] = ACTIONS(5014), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteauthor] = ACTIONS(5014), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5014), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitetitle] = ACTIONS(5014), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteyear] = ACTIONS(5014), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5012), + [anon_sym_BSLASHcitedate] = ACTIONS(5014), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5012), + [anon_sym_BSLASHciteurl] = ACTIONS(5014), + [anon_sym_BSLASHfullcite] = ACTIONS(5014), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5014), + [anon_sym_BSLASHcitealt] = ACTIONS(5014), + [anon_sym_BSLASHcitealp] = ACTIONS(5014), + [anon_sym_BSLASHcitetext] = ACTIONS(5014), + [anon_sym_BSLASHparencite] = ACTIONS(5014), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHParencite] = ACTIONS(5014), + [anon_sym_BSLASHfootcite] = ACTIONS(5014), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5014), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5014), + [anon_sym_BSLASHtextcite] = ACTIONS(5014), + [anon_sym_BSLASHTextcite] = ACTIONS(5014), + [anon_sym_BSLASHsmartcite] = ACTIONS(5014), + [anon_sym_BSLASHSmartcite] = ACTIONS(5014), + [anon_sym_BSLASHsupercite] = ACTIONS(5014), + [anon_sym_BSLASHautocite] = ACTIONS(5014), + [anon_sym_BSLASHAutocite] = ACTIONS(5014), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5012), + [anon_sym_BSLASHvolcite] = ACTIONS(5014), + [anon_sym_BSLASHVolcite] = ACTIONS(5014), + [anon_sym_BSLASHpvolcite] = ACTIONS(5014), + [anon_sym_BSLASHPvolcite] = ACTIONS(5014), + [anon_sym_BSLASHfvolcite] = ACTIONS(5014), + [anon_sym_BSLASHftvolcite] = ACTIONS(5014), + [anon_sym_BSLASHsvolcite] = ACTIONS(5014), + [anon_sym_BSLASHSvolcite] = ACTIONS(5014), + [anon_sym_BSLASHtvolcite] = ACTIONS(5014), + [anon_sym_BSLASHTvolcite] = ACTIONS(5014), + [anon_sym_BSLASHavolcite] = ACTIONS(5014), + [anon_sym_BSLASHAvolcite] = ACTIONS(5014), + [anon_sym_BSLASHnotecite] = ACTIONS(5014), + [anon_sym_BSLASHNotecite] = ACTIONS(5014), + [anon_sym_BSLASHpnotecite] = ACTIONS(5014), + [anon_sym_BSLASHPnotecite] = ACTIONS(5014), + [anon_sym_BSLASHfnotecite] = ACTIONS(5014), + [anon_sym_BSLASHlabel] = ACTIONS(5014), + [anon_sym_BSLASHref] = ACTIONS(5014), + [anon_sym_BSLASHeqref] = ACTIONS(5014), + [anon_sym_BSLASHvref] = ACTIONS(5014), + [anon_sym_BSLASHVref] = ACTIONS(5014), + [anon_sym_BSLASHautoref] = ACTIONS(5014), + [anon_sym_BSLASHpageref] = ACTIONS(5014), + [anon_sym_BSLASHcref] = ACTIONS(5014), + [anon_sym_BSLASHCref] = ACTIONS(5014), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnameCref] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5014), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5014), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5014), + [anon_sym_BSLASHlabelcref] = ACTIONS(5014), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange] = ACTIONS(5014), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHCrefrange] = ACTIONS(5014), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5012), + [anon_sym_BSLASHnewlabel] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand] = ACTIONS(5014), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5014), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5014), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5012), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5014), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdef] = ACTIONS(5014), + [anon_sym_BSLASHlet] = ACTIONS(5014), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5014), + [anon_sym_BSLASHgls] = ACTIONS(5014), + [anon_sym_BSLASHGls] = ACTIONS(5014), + [anon_sym_BSLASHGLS] = ACTIONS(5014), + [anon_sym_BSLASHglspl] = ACTIONS(5014), + [anon_sym_BSLASHGlspl] = ACTIONS(5014), + [anon_sym_BSLASHGLSpl] = ACTIONS(5014), + [anon_sym_BSLASHglsdisp] = ACTIONS(5014), + [anon_sym_BSLASHglslink] = ACTIONS(5014), + [anon_sym_BSLASHglstext] = ACTIONS(5014), + [anon_sym_BSLASHGlstext] = ACTIONS(5014), + [anon_sym_BSLASHGLStext] = ACTIONS(5014), + [anon_sym_BSLASHglsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5014), + [anon_sym_BSLASHglsplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSplural] = ACTIONS(5014), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5014), + [anon_sym_BSLASHglsname] = ACTIONS(5014), + [anon_sym_BSLASHGlsname] = ACTIONS(5014), + [anon_sym_BSLASHGLSname] = ACTIONS(5014), + [anon_sym_BSLASHglssymbol] = ACTIONS(5014), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5014), + [anon_sym_BSLASHglsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5014), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5014), + [anon_sym_BSLASHglsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5014), + [anon_sym_BSLASHglsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5014), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5014), + [anon_sym_BSLASHglsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5014), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5014), + [anon_sym_BSLASHglsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5014), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5014), + [anon_sym_BSLASHnewacronym] = ACTIONS(5014), + [anon_sym_BSLASHacrshort] = ACTIONS(5014), + [anon_sym_BSLASHAcrshort] = ACTIONS(5014), + [anon_sym_BSLASHACRshort] = ACTIONS(5014), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5014), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5014), + [anon_sym_BSLASHacrlong] = ACTIONS(5014), + [anon_sym_BSLASHAcrlong] = ACTIONS(5014), + [anon_sym_BSLASHACRlong] = ACTIONS(5014), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5014), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5014), + [anon_sym_BSLASHacrfull] = ACTIONS(5014), + [anon_sym_BSLASHAcrfull] = ACTIONS(5014), + [anon_sym_BSLASHACRfull] = ACTIONS(5014), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5014), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5014), + [anon_sym_BSLASHacs] = ACTIONS(5014), + [anon_sym_BSLASHAcs] = ACTIONS(5014), + [anon_sym_BSLASHacsp] = ACTIONS(5014), + [anon_sym_BSLASHAcsp] = ACTIONS(5014), + [anon_sym_BSLASHacl] = ACTIONS(5014), + [anon_sym_BSLASHAcl] = ACTIONS(5014), + [anon_sym_BSLASHaclp] = ACTIONS(5014), + [anon_sym_BSLASHAclp] = ACTIONS(5014), + [anon_sym_BSLASHacf] = ACTIONS(5014), + [anon_sym_BSLASHAcf] = ACTIONS(5014), + [anon_sym_BSLASHacfp] = ACTIONS(5014), + [anon_sym_BSLASHAcfp] = ACTIONS(5014), + [anon_sym_BSLASHac] = ACTIONS(5014), + [anon_sym_BSLASHAc] = ACTIONS(5014), + [anon_sym_BSLASHacp] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5014), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5014), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5014), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5014), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5014), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5014), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5014), + [anon_sym_BSLASHcolor] = ACTIONS(5014), + [anon_sym_BSLASHcolorbox] = ACTIONS(5014), + [anon_sym_BSLASHtextcolor] = ACTIONS(5014), + [anon_sym_BSLASHpagecolor] = ACTIONS(5014), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5014), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5014), + [anon_sym_BSLASHtext] = ACTIONS(5014), + [anon_sym_BSLASHintertext] = ACTIONS(5014), + [anon_sym_shortintertext] = ACTIONS(5014), }, [1308] = { - [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_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASHbegin] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [1309] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASHbegin] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [1310] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASHbegin] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [1311] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASHbegin] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [1312] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASHbegin] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [1313] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASHbegin] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [1314] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASHbegin] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [1315] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASHbegin] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [1316] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASHbegin] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [1317] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASHbegin] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [1318] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASHbegin] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [1319] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASHbegin] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [1320] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASHbegin] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [1321] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASHbegin] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [1322] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASHbegin] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [1323] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASHbegin] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [1324] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASHbegin] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [1325] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASHbegin] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASHbegin] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [1326] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASHbegin] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASHbegin] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [1327] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASHbegin] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASHbegin] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [1328] = { - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASHbegin] = ACTIONS(5285), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASHbegin] = ACTIONS(5364), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [1329] = { - [sym_command_name] = ACTIONS(4891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_LBRACE] = ACTIONS(4889), - [sym_word] = ACTIONS(4891), - [sym_placeholder] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym__] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_COLON] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), - [anon_sym_BSLASHbegin] = ACTIONS(4891), - [anon_sym_BSLASHusepackage] = ACTIONS(4891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), - [anon_sym_BSLASHinclude] = ACTIONS(4891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), - [anon_sym_BSLASHinput] = ACTIONS(4891), - [anon_sym_BSLASHsubfile] = ACTIONS(4891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), - [anon_sym_BSLASHbibliography] = ACTIONS(4891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), - [anon_sym_BSLASHincludesvg] = ACTIONS(4891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), - [anon_sym_BSLASHimport] = ACTIONS(4891), - [anon_sym_BSLASHsubimport] = ACTIONS(4891), - [anon_sym_BSLASHinputfrom] = ACTIONS(4891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), - [anon_sym_BSLASHincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), - [anon_sym_BSLASHcaption] = ACTIONS(4891), - [anon_sym_BSLASHcite] = ACTIONS(4891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCite] = ACTIONS(4891), - [anon_sym_BSLASHnocite] = ACTIONS(4891), - [anon_sym_BSLASHcitet] = ACTIONS(4891), - [anon_sym_BSLASHcitep] = ACTIONS(4891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteauthor] = ACTIONS(4891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitetitle] = ACTIONS(4891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteyear] = ACTIONS(4891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), - [anon_sym_BSLASHcitedate] = ACTIONS(4891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), - [anon_sym_BSLASHciteurl] = ACTIONS(4891), - [anon_sym_BSLASHfullcite] = ACTIONS(4891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), - [anon_sym_BSLASHcitealt] = ACTIONS(4891), - [anon_sym_BSLASHcitealp] = ACTIONS(4891), - [anon_sym_BSLASHcitetext] = ACTIONS(4891), - [anon_sym_BSLASHparencite] = ACTIONS(4891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHParencite] = ACTIONS(4891), - [anon_sym_BSLASHfootcite] = ACTIONS(4891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), - [anon_sym_BSLASHtextcite] = ACTIONS(4891), - [anon_sym_BSLASHTextcite] = ACTIONS(4891), - [anon_sym_BSLASHsmartcite] = ACTIONS(4891), - [anon_sym_BSLASHSmartcite] = ACTIONS(4891), - [anon_sym_BSLASHsupercite] = ACTIONS(4891), - [anon_sym_BSLASHautocite] = ACTIONS(4891), - [anon_sym_BSLASHAutocite] = ACTIONS(4891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), - [anon_sym_BSLASHvolcite] = ACTIONS(4891), - [anon_sym_BSLASHVolcite] = ACTIONS(4891), - [anon_sym_BSLASHpvolcite] = ACTIONS(4891), - [anon_sym_BSLASHPvolcite] = ACTIONS(4891), - [anon_sym_BSLASHfvolcite] = ACTIONS(4891), - [anon_sym_BSLASHftvolcite] = ACTIONS(4891), - [anon_sym_BSLASHsvolcite] = ACTIONS(4891), - [anon_sym_BSLASHSvolcite] = ACTIONS(4891), - [anon_sym_BSLASHtvolcite] = ACTIONS(4891), - [anon_sym_BSLASHTvolcite] = ACTIONS(4891), - [anon_sym_BSLASHavolcite] = ACTIONS(4891), - [anon_sym_BSLASHAvolcite] = ACTIONS(4891), - [anon_sym_BSLASHnotecite] = ACTIONS(4891), - [anon_sym_BSLASHNotecite] = ACTIONS(4891), - [anon_sym_BSLASHpnotecite] = ACTIONS(4891), - [anon_sym_BSLASHPnotecite] = ACTIONS(4891), - [anon_sym_BSLASHfnotecite] = ACTIONS(4891), - [anon_sym_BSLASHlabel] = ACTIONS(4891), - [anon_sym_BSLASHref] = ACTIONS(4891), - [anon_sym_BSLASHeqref] = ACTIONS(4891), - [anon_sym_BSLASHvref] = ACTIONS(4891), - [anon_sym_BSLASHVref] = ACTIONS(4891), - [anon_sym_BSLASHautoref] = ACTIONS(4891), - [anon_sym_BSLASHpageref] = ACTIONS(4891), - [anon_sym_BSLASHcref] = ACTIONS(4891), - [anon_sym_BSLASHCref] = ACTIONS(4891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnameCref] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), - [anon_sym_BSLASHlabelcref] = ACTIONS(4891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange] = ACTIONS(4891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHCrefrange] = ACTIONS(4891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), - [anon_sym_BSLASHnewlabel] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), - [anon_sym_BSLASHdef] = ACTIONS(4891), - [anon_sym_BSLASHlet] = ACTIONS(4891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), - [anon_sym_BSLASHgls] = ACTIONS(4891), - [anon_sym_BSLASHGls] = ACTIONS(4891), - [anon_sym_BSLASHGLS] = ACTIONS(4891), - [anon_sym_BSLASHglspl] = ACTIONS(4891), - [anon_sym_BSLASHGlspl] = ACTIONS(4891), - [anon_sym_BSLASHGLSpl] = ACTIONS(4891), - [anon_sym_BSLASHglsdisp] = ACTIONS(4891), - [anon_sym_BSLASHglslink] = ACTIONS(4891), - [anon_sym_BSLASHglstext] = ACTIONS(4891), - [anon_sym_BSLASHGlstext] = ACTIONS(4891), - [anon_sym_BSLASHGLStext] = ACTIONS(4891), - [anon_sym_BSLASHglsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), - [anon_sym_BSLASHglsplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSplural] = ACTIONS(4891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), - [anon_sym_BSLASHglsname] = ACTIONS(4891), - [anon_sym_BSLASHGlsname] = ACTIONS(4891), - [anon_sym_BSLASHGLSname] = ACTIONS(4891), - [anon_sym_BSLASHglssymbol] = ACTIONS(4891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), - [anon_sym_BSLASHglsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), - [anon_sym_BSLASHglsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), - [anon_sym_BSLASHglsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), - [anon_sym_BSLASHglsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), - [anon_sym_BSLASHglsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), - [anon_sym_BSLASHnewacronym] = ACTIONS(4891), - [anon_sym_BSLASHacrshort] = ACTIONS(4891), - [anon_sym_BSLASHAcrshort] = ACTIONS(4891), - [anon_sym_BSLASHACRshort] = ACTIONS(4891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), - [anon_sym_BSLASHacrlong] = ACTIONS(4891), - [anon_sym_BSLASHAcrlong] = ACTIONS(4891), - [anon_sym_BSLASHACRlong] = ACTIONS(4891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), - [anon_sym_BSLASHacrfull] = ACTIONS(4891), - [anon_sym_BSLASHAcrfull] = ACTIONS(4891), - [anon_sym_BSLASHACRfull] = ACTIONS(4891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), - [anon_sym_BSLASHacs] = ACTIONS(4891), - [anon_sym_BSLASHAcs] = ACTIONS(4891), - [anon_sym_BSLASHacsp] = ACTIONS(4891), - [anon_sym_BSLASHAcsp] = ACTIONS(4891), - [anon_sym_BSLASHacl] = ACTIONS(4891), - [anon_sym_BSLASHAcl] = ACTIONS(4891), - [anon_sym_BSLASHaclp] = ACTIONS(4891), - [anon_sym_BSLASHAclp] = ACTIONS(4891), - [anon_sym_BSLASHacf] = ACTIONS(4891), - [anon_sym_BSLASHAcf] = ACTIONS(4891), - [anon_sym_BSLASHacfp] = ACTIONS(4891), - [anon_sym_BSLASHAcfp] = ACTIONS(4891), - [anon_sym_BSLASHac] = ACTIONS(4891), - [anon_sym_BSLASHAc] = ACTIONS(4891), - [anon_sym_BSLASHacp] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), - [anon_sym_BSLASHcolor] = ACTIONS(4891), - [anon_sym_BSLASHcolorbox] = ACTIONS(4891), - [anon_sym_BSLASHtextcolor] = ACTIONS(4891), - [anon_sym_BSLASHpagecolor] = ACTIONS(4891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), - [anon_sym_BSLASHtext] = ACTIONS(4891), - [anon_sym_BSLASHintertext] = ACTIONS(4891), - [anon_sym_shortintertext] = ACTIONS(4891), + [sym_command_name] = ACTIONS(4970), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4968), + [sym_word] = ACTIONS(4970), + [sym_placeholder] = ACTIONS(4968), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym__] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4968), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4968), + [anon_sym_BSLASHbegin] = ACTIONS(4970), + [anon_sym_BSLASHusepackage] = ACTIONS(4970), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4970), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4970), + [anon_sym_BSLASHinclude] = ACTIONS(4970), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4970), + [anon_sym_BSLASHinput] = ACTIONS(4970), + [anon_sym_BSLASHsubfile] = ACTIONS(4970), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4970), + [anon_sym_BSLASHbibliography] = ACTIONS(4970), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4970), + [anon_sym_BSLASHincludesvg] = ACTIONS(4970), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4970), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4970), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4970), + [anon_sym_BSLASHimport] = ACTIONS(4970), + [anon_sym_BSLASHsubimport] = ACTIONS(4970), + [anon_sym_BSLASHinputfrom] = ACTIONS(4970), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4970), + [anon_sym_BSLASHincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4970), + [anon_sym_BSLASHcaption] = ACTIONS(4970), + [anon_sym_BSLASHcite] = ACTIONS(4970), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCite] = ACTIONS(4970), + [anon_sym_BSLASHnocite] = ACTIONS(4970), + [anon_sym_BSLASHcitet] = ACTIONS(4970), + [anon_sym_BSLASHcitep] = ACTIONS(4970), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteauthor] = ACTIONS(4970), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4970), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitetitle] = ACTIONS(4970), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteyear] = ACTIONS(4970), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4968), + [anon_sym_BSLASHcitedate] = ACTIONS(4970), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4968), + [anon_sym_BSLASHciteurl] = ACTIONS(4970), + [anon_sym_BSLASHfullcite] = ACTIONS(4970), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4970), + [anon_sym_BSLASHcitealt] = ACTIONS(4970), + [anon_sym_BSLASHcitealp] = ACTIONS(4970), + [anon_sym_BSLASHcitetext] = ACTIONS(4970), + [anon_sym_BSLASHparencite] = ACTIONS(4970), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHParencite] = ACTIONS(4970), + [anon_sym_BSLASHfootcite] = ACTIONS(4970), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4970), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4970), + [anon_sym_BSLASHtextcite] = ACTIONS(4970), + [anon_sym_BSLASHTextcite] = ACTIONS(4970), + [anon_sym_BSLASHsmartcite] = ACTIONS(4970), + [anon_sym_BSLASHSmartcite] = ACTIONS(4970), + [anon_sym_BSLASHsupercite] = ACTIONS(4970), + [anon_sym_BSLASHautocite] = ACTIONS(4970), + [anon_sym_BSLASHAutocite] = ACTIONS(4970), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4968), + [anon_sym_BSLASHvolcite] = ACTIONS(4970), + [anon_sym_BSLASHVolcite] = ACTIONS(4970), + [anon_sym_BSLASHpvolcite] = ACTIONS(4970), + [anon_sym_BSLASHPvolcite] = ACTIONS(4970), + [anon_sym_BSLASHfvolcite] = ACTIONS(4970), + [anon_sym_BSLASHftvolcite] = ACTIONS(4970), + [anon_sym_BSLASHsvolcite] = ACTIONS(4970), + [anon_sym_BSLASHSvolcite] = ACTIONS(4970), + [anon_sym_BSLASHtvolcite] = ACTIONS(4970), + [anon_sym_BSLASHTvolcite] = ACTIONS(4970), + [anon_sym_BSLASHavolcite] = ACTIONS(4970), + [anon_sym_BSLASHAvolcite] = ACTIONS(4970), + [anon_sym_BSLASHnotecite] = ACTIONS(4970), + [anon_sym_BSLASHNotecite] = ACTIONS(4970), + [anon_sym_BSLASHpnotecite] = ACTIONS(4970), + [anon_sym_BSLASHPnotecite] = ACTIONS(4970), + [anon_sym_BSLASHfnotecite] = ACTIONS(4970), + [anon_sym_BSLASHlabel] = ACTIONS(4970), + [anon_sym_BSLASHref] = ACTIONS(4970), + [anon_sym_BSLASHeqref] = ACTIONS(4970), + [anon_sym_BSLASHvref] = ACTIONS(4970), + [anon_sym_BSLASHVref] = ACTIONS(4970), + [anon_sym_BSLASHautoref] = ACTIONS(4970), + [anon_sym_BSLASHpageref] = ACTIONS(4970), + [anon_sym_BSLASHcref] = ACTIONS(4970), + [anon_sym_BSLASHCref] = ACTIONS(4970), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnameCref] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4970), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4970), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4970), + [anon_sym_BSLASHlabelcref] = ACTIONS(4970), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange] = ACTIONS(4970), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHCrefrange] = ACTIONS(4970), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4968), + [anon_sym_BSLASHnewlabel] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand] = ACTIONS(4970), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4970), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4970), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4970), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdef] = ACTIONS(4970), + [anon_sym_BSLASHlet] = ACTIONS(4970), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4970), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4970), + [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(4970), + [anon_sym_BSLASHacrshort] = ACTIONS(4970), + [anon_sym_BSLASHAcrshort] = ACTIONS(4970), + [anon_sym_BSLASHACRshort] = ACTIONS(4970), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4970), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4970), + [anon_sym_BSLASHacrlong] = ACTIONS(4970), + [anon_sym_BSLASHAcrlong] = ACTIONS(4970), + [anon_sym_BSLASHACRlong] = ACTIONS(4970), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4970), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4970), + [anon_sym_BSLASHacrfull] = ACTIONS(4970), + [anon_sym_BSLASHAcrfull] = ACTIONS(4970), + [anon_sym_BSLASHACRfull] = ACTIONS(4970), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4970), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4970), + [anon_sym_BSLASHacs] = ACTIONS(4970), + [anon_sym_BSLASHAcs] = ACTIONS(4970), + [anon_sym_BSLASHacsp] = ACTIONS(4970), + [anon_sym_BSLASHAcsp] = ACTIONS(4970), + [anon_sym_BSLASHacl] = ACTIONS(4970), + [anon_sym_BSLASHAcl] = ACTIONS(4970), + [anon_sym_BSLASHaclp] = ACTIONS(4970), + [anon_sym_BSLASHAclp] = ACTIONS(4970), + [anon_sym_BSLASHacf] = ACTIONS(4970), + [anon_sym_BSLASHAcf] = ACTIONS(4970), + [anon_sym_BSLASHacfp] = ACTIONS(4970), + [anon_sym_BSLASHAcfp] = ACTIONS(4970), + [anon_sym_BSLASHac] = ACTIONS(4970), + [anon_sym_BSLASHAc] = ACTIONS(4970), + [anon_sym_BSLASHacp] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4970), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4970), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4970), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4970), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4970), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4968), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4970), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4970), + [anon_sym_BSLASHcolor] = ACTIONS(4970), + [anon_sym_BSLASHcolorbox] = ACTIONS(4970), + [anon_sym_BSLASHtextcolor] = ACTIONS(4970), + [anon_sym_BSLASHpagecolor] = ACTIONS(4970), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4970), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4970), + [anon_sym_BSLASHtext] = ACTIONS(4970), + [anon_sym_BSLASHintertext] = ACTIONS(4970), + [anon_sym_shortintertext] = ACTIONS(4970), }, [1330] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5501), - [anon_sym_LPAREN] = ACTIONS(4863), - [anon_sym_RPAREN] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), - [anon_sym_DOLLAR] = ACTIONS(4865), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), - [anon_sym_BSLASHtext] = ACTIONS(4865), - [anon_sym_BSLASHintertext] = ACTIONS(4865), - [anon_sym_shortintertext] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5583), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4942), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4942), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), + [anon_sym_BSLASHtext] = ACTIONS(4944), + [anon_sym_BSLASHintertext] = ACTIONS(4944), + [anon_sym_shortintertext] = ACTIONS(4944), }, [1331] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASHbegin] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASHbegin] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [1332] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASHbegin] = ACTIONS(5086), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [1333] = { - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHbegin] = ACTIONS(133), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHbegin] = ACTIONS(135), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [1334] = { - [sym_command_name] = ACTIONS(4943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4941), - [sym_word] = ACTIONS(4943), - [sym_placeholder] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4943), - [anon_sym__] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), - [anon_sym_BSLASHbegin] = ACTIONS(4943), - [anon_sym_BSLASHusepackage] = ACTIONS(4943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), - [anon_sym_BSLASHinclude] = ACTIONS(4943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), - [anon_sym_BSLASHinput] = ACTIONS(4943), - [anon_sym_BSLASHsubfile] = ACTIONS(4943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), - [anon_sym_BSLASHbibliography] = ACTIONS(4943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), - [anon_sym_BSLASHincludesvg] = ACTIONS(4943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), - [anon_sym_BSLASHimport] = ACTIONS(4943), - [anon_sym_BSLASHsubimport] = ACTIONS(4943), - [anon_sym_BSLASHinputfrom] = ACTIONS(4943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), - [anon_sym_BSLASHincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), - [anon_sym_BSLASHcaption] = ACTIONS(4943), - [anon_sym_BSLASHcite] = ACTIONS(4943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCite] = ACTIONS(4943), - [anon_sym_BSLASHnocite] = ACTIONS(4943), - [anon_sym_BSLASHcitet] = ACTIONS(4943), - [anon_sym_BSLASHcitep] = ACTIONS(4943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteyear] = ACTIONS(4943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), - [anon_sym_BSLASHcitedate] = ACTIONS(4943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), - [anon_sym_BSLASHciteurl] = ACTIONS(4943), - [anon_sym_BSLASHfullcite] = ACTIONS(4943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), - [anon_sym_BSLASHcitealt] = ACTIONS(4943), - [anon_sym_BSLASHcitealp] = ACTIONS(4943), - [anon_sym_BSLASHcitetext] = ACTIONS(4943), - [anon_sym_BSLASHparencite] = ACTIONS(4943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHParencite] = ACTIONS(4943), - [anon_sym_BSLASHfootcite] = ACTIONS(4943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), - [anon_sym_BSLASHtextcite] = ACTIONS(4943), - [anon_sym_BSLASHTextcite] = ACTIONS(4943), - [anon_sym_BSLASHsmartcite] = ACTIONS(4943), - [anon_sym_BSLASHSmartcite] = ACTIONS(4943), - [anon_sym_BSLASHsupercite] = ACTIONS(4943), - [anon_sym_BSLASHautocite] = ACTIONS(4943), - [anon_sym_BSLASHAutocite] = ACTIONS(4943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), - [anon_sym_BSLASHvolcite] = ACTIONS(4943), - [anon_sym_BSLASHVolcite] = ACTIONS(4943), - [anon_sym_BSLASHpvolcite] = ACTIONS(4943), - [anon_sym_BSLASHPvolcite] = ACTIONS(4943), - [anon_sym_BSLASHfvolcite] = ACTIONS(4943), - [anon_sym_BSLASHftvolcite] = ACTIONS(4943), - [anon_sym_BSLASHsvolcite] = ACTIONS(4943), - [anon_sym_BSLASHSvolcite] = ACTIONS(4943), - [anon_sym_BSLASHtvolcite] = ACTIONS(4943), - [anon_sym_BSLASHTvolcite] = ACTIONS(4943), - [anon_sym_BSLASHavolcite] = ACTIONS(4943), - [anon_sym_BSLASHAvolcite] = ACTIONS(4943), - [anon_sym_BSLASHnotecite] = ACTIONS(4943), - [anon_sym_BSLASHNotecite] = ACTIONS(4943), - [anon_sym_BSLASHpnotecite] = ACTIONS(4943), - [anon_sym_BSLASHPnotecite] = ACTIONS(4943), - [anon_sym_BSLASHfnotecite] = ACTIONS(4943), - [anon_sym_BSLASHlabel] = ACTIONS(4943), - [anon_sym_BSLASHref] = ACTIONS(4943), - [anon_sym_BSLASHeqref] = ACTIONS(4943), - [anon_sym_BSLASHvref] = ACTIONS(4943), - [anon_sym_BSLASHVref] = ACTIONS(4943), - [anon_sym_BSLASHautoref] = ACTIONS(4943), - [anon_sym_BSLASHpageref] = ACTIONS(4943), - [anon_sym_BSLASHcref] = ACTIONS(4943), - [anon_sym_BSLASHCref] = ACTIONS(4943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnameCref] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), - [anon_sym_BSLASHlabelcref] = ACTIONS(4943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange] = ACTIONS(4943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), - [anon_sym_BSLASHnewlabel] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand] = ACTIONS(4943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), - [anon_sym_BSLASHdef] = ACTIONS(4943), - [anon_sym_BSLASHlet] = ACTIONS(4943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), - [anon_sym_BSLASHgls] = ACTIONS(4943), - [anon_sym_BSLASHGls] = ACTIONS(4943), - [anon_sym_BSLASHGLS] = ACTIONS(4943), - [anon_sym_BSLASHglspl] = ACTIONS(4943), - [anon_sym_BSLASHGlspl] = ACTIONS(4943), - [anon_sym_BSLASHGLSpl] = ACTIONS(4943), - [anon_sym_BSLASHglsdisp] = ACTIONS(4943), - [anon_sym_BSLASHglslink] = ACTIONS(4943), - [anon_sym_BSLASHglstext] = ACTIONS(4943), - [anon_sym_BSLASHGlstext] = ACTIONS(4943), - [anon_sym_BSLASHGLStext] = ACTIONS(4943), - [anon_sym_BSLASHglsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), - [anon_sym_BSLASHglsplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSplural] = ACTIONS(4943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), - [anon_sym_BSLASHglsname] = ACTIONS(4943), - [anon_sym_BSLASHGlsname] = ACTIONS(4943), - [anon_sym_BSLASHGLSname] = ACTIONS(4943), - [anon_sym_BSLASHglssymbol] = ACTIONS(4943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), - [anon_sym_BSLASHglsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), - [anon_sym_BSLASHglsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), - [anon_sym_BSLASHglsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), - [anon_sym_BSLASHglsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), - [anon_sym_BSLASHglsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), - [anon_sym_BSLASHnewacronym] = ACTIONS(4943), - [anon_sym_BSLASHacrshort] = ACTIONS(4943), - [anon_sym_BSLASHAcrshort] = ACTIONS(4943), - [anon_sym_BSLASHACRshort] = ACTIONS(4943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), - [anon_sym_BSLASHacrlong] = ACTIONS(4943), - [anon_sym_BSLASHAcrlong] = ACTIONS(4943), - [anon_sym_BSLASHACRlong] = ACTIONS(4943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), - [anon_sym_BSLASHacrfull] = ACTIONS(4943), - [anon_sym_BSLASHAcrfull] = ACTIONS(4943), - [anon_sym_BSLASHACRfull] = ACTIONS(4943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), - [anon_sym_BSLASHacs] = ACTIONS(4943), - [anon_sym_BSLASHAcs] = ACTIONS(4943), - [anon_sym_BSLASHacsp] = ACTIONS(4943), - [anon_sym_BSLASHAcsp] = ACTIONS(4943), - [anon_sym_BSLASHacl] = ACTIONS(4943), - [anon_sym_BSLASHAcl] = ACTIONS(4943), - [anon_sym_BSLASHaclp] = ACTIONS(4943), - [anon_sym_BSLASHAclp] = ACTIONS(4943), - [anon_sym_BSLASHacf] = ACTIONS(4943), - [anon_sym_BSLASHAcf] = ACTIONS(4943), - [anon_sym_BSLASHacfp] = ACTIONS(4943), - [anon_sym_BSLASHAcfp] = ACTIONS(4943), - [anon_sym_BSLASHac] = ACTIONS(4943), - [anon_sym_BSLASHAc] = ACTIONS(4943), - [anon_sym_BSLASHacp] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), - [anon_sym_BSLASHcolor] = ACTIONS(4943), - [anon_sym_BSLASHcolorbox] = ACTIONS(4943), - [anon_sym_BSLASHtextcolor] = ACTIONS(4943), - [anon_sym_BSLASHpagecolor] = ACTIONS(4943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), - [anon_sym_BSLASHtext] = ACTIONS(4943), - [anon_sym_BSLASHintertext] = ACTIONS(4943), - [anon_sym_shortintertext] = ACTIONS(4943), + [sym_command_name] = ACTIONS(5022), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [sym_word] = ACTIONS(5022), + [sym_placeholder] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym__] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5020), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5020), + [anon_sym_BSLASHbegin] = ACTIONS(5022), + [anon_sym_BSLASHusepackage] = ACTIONS(5022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5022), + [anon_sym_BSLASHinclude] = ACTIONS(5022), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5022), + [anon_sym_BSLASHinput] = ACTIONS(5022), + [anon_sym_BSLASHsubfile] = ACTIONS(5022), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5022), + [anon_sym_BSLASHbibliography] = ACTIONS(5022), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5022), + [anon_sym_BSLASHincludesvg] = ACTIONS(5022), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5022), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), + [anon_sym_BSLASHimport] = ACTIONS(5022), + [anon_sym_BSLASHsubimport] = ACTIONS(5022), + [anon_sym_BSLASHinputfrom] = ACTIONS(5022), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5022), + [anon_sym_BSLASHincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5022), + [anon_sym_BSLASHcaption] = ACTIONS(5022), + [anon_sym_BSLASHcite] = ACTIONS(5022), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCite] = ACTIONS(5022), + [anon_sym_BSLASHnocite] = ACTIONS(5022), + [anon_sym_BSLASHcitet] = ACTIONS(5022), + [anon_sym_BSLASHcitep] = ACTIONS(5022), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteauthor] = ACTIONS(5022), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5022), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitetitle] = ACTIONS(5022), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteyear] = ACTIONS(5022), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5020), + [anon_sym_BSLASHcitedate] = ACTIONS(5022), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5020), + [anon_sym_BSLASHciteurl] = ACTIONS(5022), + [anon_sym_BSLASHfullcite] = ACTIONS(5022), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5022), + [anon_sym_BSLASHcitealt] = ACTIONS(5022), + [anon_sym_BSLASHcitealp] = ACTIONS(5022), + [anon_sym_BSLASHcitetext] = ACTIONS(5022), + [anon_sym_BSLASHparencite] = ACTIONS(5022), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHParencite] = ACTIONS(5022), + [anon_sym_BSLASHfootcite] = ACTIONS(5022), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5022), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5022), + [anon_sym_BSLASHtextcite] = ACTIONS(5022), + [anon_sym_BSLASHTextcite] = ACTIONS(5022), + [anon_sym_BSLASHsmartcite] = ACTIONS(5022), + [anon_sym_BSLASHSmartcite] = ACTIONS(5022), + [anon_sym_BSLASHsupercite] = ACTIONS(5022), + [anon_sym_BSLASHautocite] = ACTIONS(5022), + [anon_sym_BSLASHAutocite] = ACTIONS(5022), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5020), + [anon_sym_BSLASHvolcite] = ACTIONS(5022), + [anon_sym_BSLASHVolcite] = ACTIONS(5022), + [anon_sym_BSLASHpvolcite] = ACTIONS(5022), + [anon_sym_BSLASHPvolcite] = ACTIONS(5022), + [anon_sym_BSLASHfvolcite] = ACTIONS(5022), + [anon_sym_BSLASHftvolcite] = ACTIONS(5022), + [anon_sym_BSLASHsvolcite] = ACTIONS(5022), + [anon_sym_BSLASHSvolcite] = ACTIONS(5022), + [anon_sym_BSLASHtvolcite] = ACTIONS(5022), + [anon_sym_BSLASHTvolcite] = ACTIONS(5022), + [anon_sym_BSLASHavolcite] = ACTIONS(5022), + [anon_sym_BSLASHAvolcite] = ACTIONS(5022), + [anon_sym_BSLASHnotecite] = ACTIONS(5022), + [anon_sym_BSLASHNotecite] = ACTIONS(5022), + [anon_sym_BSLASHpnotecite] = ACTIONS(5022), + [anon_sym_BSLASHPnotecite] = ACTIONS(5022), + [anon_sym_BSLASHfnotecite] = ACTIONS(5022), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [anon_sym_BSLASHref] = ACTIONS(5022), + [anon_sym_BSLASHeqref] = ACTIONS(5022), + [anon_sym_BSLASHvref] = ACTIONS(5022), + [anon_sym_BSLASHVref] = ACTIONS(5022), + [anon_sym_BSLASHautoref] = ACTIONS(5022), + [anon_sym_BSLASHpageref] = ACTIONS(5022), + [anon_sym_BSLASHcref] = ACTIONS(5022), + [anon_sym_BSLASHCref] = ACTIONS(5022), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnameCref] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5022), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5022), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5022), + [anon_sym_BSLASHlabelcref] = ACTIONS(5022), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange] = ACTIONS(5022), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHCrefrange] = ACTIONS(5022), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5020), + [anon_sym_BSLASHnewlabel] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand] = ACTIONS(5022), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5022), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5022), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5020), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5022), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdef] = ACTIONS(5022), + [anon_sym_BSLASHlet] = ACTIONS(5022), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5022), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5022), + [anon_sym_BSLASHgls] = ACTIONS(5022), + [anon_sym_BSLASHGls] = ACTIONS(5022), + [anon_sym_BSLASHGLS] = ACTIONS(5022), + [anon_sym_BSLASHglspl] = ACTIONS(5022), + [anon_sym_BSLASHGlspl] = ACTIONS(5022), + [anon_sym_BSLASHGLSpl] = ACTIONS(5022), + [anon_sym_BSLASHglsdisp] = ACTIONS(5022), + [anon_sym_BSLASHglslink] = ACTIONS(5022), + [anon_sym_BSLASHglstext] = ACTIONS(5022), + [anon_sym_BSLASHGlstext] = ACTIONS(5022), + [anon_sym_BSLASHGLStext] = ACTIONS(5022), + [anon_sym_BSLASHglsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5022), + [anon_sym_BSLASHglsplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSplural] = ACTIONS(5022), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5022), + [anon_sym_BSLASHglsname] = ACTIONS(5022), + [anon_sym_BSLASHGlsname] = ACTIONS(5022), + [anon_sym_BSLASHGLSname] = ACTIONS(5022), + [anon_sym_BSLASHglssymbol] = ACTIONS(5022), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5022), + [anon_sym_BSLASHglsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5022), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5022), + [anon_sym_BSLASHglsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5022), + [anon_sym_BSLASHglsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5022), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5022), + [anon_sym_BSLASHglsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5022), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5022), + [anon_sym_BSLASHglsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5022), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5022), + [anon_sym_BSLASHnewacronym] = ACTIONS(5022), + [anon_sym_BSLASHacrshort] = ACTIONS(5022), + [anon_sym_BSLASHAcrshort] = ACTIONS(5022), + [anon_sym_BSLASHACRshort] = ACTIONS(5022), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5022), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5022), + [anon_sym_BSLASHacrlong] = ACTIONS(5022), + [anon_sym_BSLASHAcrlong] = ACTIONS(5022), + [anon_sym_BSLASHACRlong] = ACTIONS(5022), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5022), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5022), + [anon_sym_BSLASHacrfull] = ACTIONS(5022), + [anon_sym_BSLASHAcrfull] = ACTIONS(5022), + [anon_sym_BSLASHACRfull] = ACTIONS(5022), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5022), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5022), + [anon_sym_BSLASHacs] = ACTIONS(5022), + [anon_sym_BSLASHAcs] = ACTIONS(5022), + [anon_sym_BSLASHacsp] = ACTIONS(5022), + [anon_sym_BSLASHAcsp] = ACTIONS(5022), + [anon_sym_BSLASHacl] = ACTIONS(5022), + [anon_sym_BSLASHAcl] = ACTIONS(5022), + [anon_sym_BSLASHaclp] = ACTIONS(5022), + [anon_sym_BSLASHAclp] = ACTIONS(5022), + [anon_sym_BSLASHacf] = ACTIONS(5022), + [anon_sym_BSLASHAcf] = ACTIONS(5022), + [anon_sym_BSLASHacfp] = ACTIONS(5022), + [anon_sym_BSLASHAcfp] = ACTIONS(5022), + [anon_sym_BSLASHac] = ACTIONS(5022), + [anon_sym_BSLASHAc] = ACTIONS(5022), + [anon_sym_BSLASHacp] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5022), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5022), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5022), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5022), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5022), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5020), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5022), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5022), + [anon_sym_BSLASHcolor] = ACTIONS(5022), + [anon_sym_BSLASHcolorbox] = ACTIONS(5022), + [anon_sym_BSLASHtextcolor] = ACTIONS(5022), + [anon_sym_BSLASHpagecolor] = ACTIONS(5022), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5022), + [anon_sym_BSLASHtext] = ACTIONS(5022), + [anon_sym_BSLASHintertext] = ACTIONS(5022), + [anon_sym_shortintertext] = ACTIONS(5022), }, [1335] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHbegin] = ACTIONS(151), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [1336] = { - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASHbegin] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASHbegin] = ACTIONS(5048), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [1337] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [1338] = { - [sym_command_name] = ACTIONS(4947), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4945), - [sym_word] = ACTIONS(4947), - [sym_placeholder] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4947), - [anon_sym__] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), - [anon_sym_BSLASHbegin] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4947), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), - [anon_sym_BSLASHinclude] = ACTIONS(4947), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), - [anon_sym_BSLASHinput] = ACTIONS(4947), - [anon_sym_BSLASHsubfile] = ACTIONS(4947), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), - [anon_sym_BSLASHbibliography] = ACTIONS(4947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), - [anon_sym_BSLASHincludesvg] = ACTIONS(4947), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), - [anon_sym_BSLASHimport] = ACTIONS(4947), - [anon_sym_BSLASHsubimport] = ACTIONS(4947), - [anon_sym_BSLASHinputfrom] = ACTIONS(4947), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), - [anon_sym_BSLASHincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), - [anon_sym_BSLASHcaption] = ACTIONS(4947), - [anon_sym_BSLASHcite] = ACTIONS(4947), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCite] = ACTIONS(4947), - [anon_sym_BSLASHnocite] = ACTIONS(4947), - [anon_sym_BSLASHcitet] = ACTIONS(4947), - [anon_sym_BSLASHcitep] = ACTIONS(4947), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteyear] = ACTIONS(4947), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), - [anon_sym_BSLASHcitedate] = ACTIONS(4947), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), - [anon_sym_BSLASHciteurl] = ACTIONS(4947), - [anon_sym_BSLASHfullcite] = ACTIONS(4947), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), - [anon_sym_BSLASHcitealt] = ACTIONS(4947), - [anon_sym_BSLASHcitealp] = ACTIONS(4947), - [anon_sym_BSLASHcitetext] = ACTIONS(4947), - [anon_sym_BSLASHparencite] = ACTIONS(4947), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHParencite] = ACTIONS(4947), - [anon_sym_BSLASHfootcite] = ACTIONS(4947), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), - [anon_sym_BSLASHtextcite] = ACTIONS(4947), - [anon_sym_BSLASHTextcite] = ACTIONS(4947), - [anon_sym_BSLASHsmartcite] = ACTIONS(4947), - [anon_sym_BSLASHSmartcite] = ACTIONS(4947), - [anon_sym_BSLASHsupercite] = ACTIONS(4947), - [anon_sym_BSLASHautocite] = ACTIONS(4947), - [anon_sym_BSLASHAutocite] = ACTIONS(4947), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), - [anon_sym_BSLASHvolcite] = ACTIONS(4947), - [anon_sym_BSLASHVolcite] = ACTIONS(4947), - [anon_sym_BSLASHpvolcite] = ACTIONS(4947), - [anon_sym_BSLASHPvolcite] = ACTIONS(4947), - [anon_sym_BSLASHfvolcite] = ACTIONS(4947), - [anon_sym_BSLASHftvolcite] = ACTIONS(4947), - [anon_sym_BSLASHsvolcite] = ACTIONS(4947), - [anon_sym_BSLASHSvolcite] = ACTIONS(4947), - [anon_sym_BSLASHtvolcite] = ACTIONS(4947), - [anon_sym_BSLASHTvolcite] = ACTIONS(4947), - [anon_sym_BSLASHavolcite] = ACTIONS(4947), - [anon_sym_BSLASHAvolcite] = ACTIONS(4947), - [anon_sym_BSLASHnotecite] = ACTIONS(4947), - [anon_sym_BSLASHNotecite] = ACTIONS(4947), - [anon_sym_BSLASHpnotecite] = ACTIONS(4947), - [anon_sym_BSLASHPnotecite] = ACTIONS(4947), - [anon_sym_BSLASHfnotecite] = ACTIONS(4947), - [anon_sym_BSLASHlabel] = ACTIONS(4947), - [anon_sym_BSLASHref] = ACTIONS(4947), - [anon_sym_BSLASHeqref] = ACTIONS(4947), - [anon_sym_BSLASHvref] = ACTIONS(4947), - [anon_sym_BSLASHVref] = ACTIONS(4947), - [anon_sym_BSLASHautoref] = ACTIONS(4947), - [anon_sym_BSLASHpageref] = ACTIONS(4947), - [anon_sym_BSLASHcref] = ACTIONS(4947), - [anon_sym_BSLASHCref] = ACTIONS(4947), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnameCref] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), - [anon_sym_BSLASHlabelcref] = ACTIONS(4947), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange] = ACTIONS(4947), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), - [anon_sym_BSLASHnewlabel] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand] = ACTIONS(4947), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), - [anon_sym_BSLASHdef] = ACTIONS(4947), - [anon_sym_BSLASHlet] = ACTIONS(4947), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), - [anon_sym_BSLASHgls] = ACTIONS(4947), - [anon_sym_BSLASHGls] = ACTIONS(4947), - [anon_sym_BSLASHGLS] = ACTIONS(4947), - [anon_sym_BSLASHglspl] = ACTIONS(4947), - [anon_sym_BSLASHGlspl] = ACTIONS(4947), - [anon_sym_BSLASHGLSpl] = ACTIONS(4947), - [anon_sym_BSLASHglsdisp] = ACTIONS(4947), - [anon_sym_BSLASHglslink] = ACTIONS(4947), - [anon_sym_BSLASHglstext] = ACTIONS(4947), - [anon_sym_BSLASHGlstext] = ACTIONS(4947), - [anon_sym_BSLASHGLStext] = ACTIONS(4947), - [anon_sym_BSLASHglsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), - [anon_sym_BSLASHglsplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSplural] = ACTIONS(4947), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), - [anon_sym_BSLASHglsname] = ACTIONS(4947), - [anon_sym_BSLASHGlsname] = ACTIONS(4947), - [anon_sym_BSLASHGLSname] = ACTIONS(4947), - [anon_sym_BSLASHglssymbol] = ACTIONS(4947), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), - [anon_sym_BSLASHglsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), - [anon_sym_BSLASHglsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), - [anon_sym_BSLASHglsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), - [anon_sym_BSLASHglsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), - [anon_sym_BSLASHglsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), - [anon_sym_BSLASHnewacronym] = ACTIONS(4947), - [anon_sym_BSLASHacrshort] = ACTIONS(4947), - [anon_sym_BSLASHAcrshort] = ACTIONS(4947), - [anon_sym_BSLASHACRshort] = ACTIONS(4947), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), - [anon_sym_BSLASHacrlong] = ACTIONS(4947), - [anon_sym_BSLASHAcrlong] = ACTIONS(4947), - [anon_sym_BSLASHACRlong] = ACTIONS(4947), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), - [anon_sym_BSLASHacrfull] = ACTIONS(4947), - [anon_sym_BSLASHAcrfull] = ACTIONS(4947), - [anon_sym_BSLASHACRfull] = ACTIONS(4947), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), - [anon_sym_BSLASHacs] = ACTIONS(4947), - [anon_sym_BSLASHAcs] = ACTIONS(4947), - [anon_sym_BSLASHacsp] = ACTIONS(4947), - [anon_sym_BSLASHAcsp] = ACTIONS(4947), - [anon_sym_BSLASHacl] = ACTIONS(4947), - [anon_sym_BSLASHAcl] = ACTIONS(4947), - [anon_sym_BSLASHaclp] = ACTIONS(4947), - [anon_sym_BSLASHAclp] = ACTIONS(4947), - [anon_sym_BSLASHacf] = ACTIONS(4947), - [anon_sym_BSLASHAcf] = ACTIONS(4947), - [anon_sym_BSLASHacfp] = ACTIONS(4947), - [anon_sym_BSLASHAcfp] = ACTIONS(4947), - [anon_sym_BSLASHac] = ACTIONS(4947), - [anon_sym_BSLASHAc] = ACTIONS(4947), - [anon_sym_BSLASHacp] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), - [anon_sym_BSLASHcolor] = ACTIONS(4947), - [anon_sym_BSLASHcolorbox] = ACTIONS(4947), - [anon_sym_BSLASHtextcolor] = ACTIONS(4947), - [anon_sym_BSLASHpagecolor] = ACTIONS(4947), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), - [anon_sym_BSLASHtext] = ACTIONS(4947), - [anon_sym_BSLASHintertext] = ACTIONS(4947), - [anon_sym_shortintertext] = ACTIONS(4947), + [sym_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [sym_word] = ACTIONS(5026), + [sym_placeholder] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym__] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5024), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5024), + [anon_sym_BSLASHbegin] = ACTIONS(5026), + [anon_sym_BSLASHusepackage] = ACTIONS(5026), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5026), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5026), + [anon_sym_BSLASHinclude] = ACTIONS(5026), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5026), + [anon_sym_BSLASHinput] = ACTIONS(5026), + [anon_sym_BSLASHsubfile] = ACTIONS(5026), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5026), + [anon_sym_BSLASHbibliography] = ACTIONS(5026), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5026), + [anon_sym_BSLASHincludesvg] = ACTIONS(5026), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5026), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5026), + [anon_sym_BSLASHimport] = ACTIONS(5026), + [anon_sym_BSLASHsubimport] = ACTIONS(5026), + [anon_sym_BSLASHinputfrom] = ACTIONS(5026), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5026), + [anon_sym_BSLASHincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5026), + [anon_sym_BSLASHcaption] = ACTIONS(5026), + [anon_sym_BSLASHcite] = ACTIONS(5026), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCite] = ACTIONS(5026), + [anon_sym_BSLASHnocite] = ACTIONS(5026), + [anon_sym_BSLASHcitet] = ACTIONS(5026), + [anon_sym_BSLASHcitep] = ACTIONS(5026), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteauthor] = ACTIONS(5026), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5026), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitetitle] = ACTIONS(5026), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteyear] = ACTIONS(5026), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5024), + [anon_sym_BSLASHcitedate] = ACTIONS(5026), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5024), + [anon_sym_BSLASHciteurl] = ACTIONS(5026), + [anon_sym_BSLASHfullcite] = ACTIONS(5026), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5026), + [anon_sym_BSLASHcitealt] = ACTIONS(5026), + [anon_sym_BSLASHcitealp] = ACTIONS(5026), + [anon_sym_BSLASHcitetext] = ACTIONS(5026), + [anon_sym_BSLASHparencite] = ACTIONS(5026), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHParencite] = ACTIONS(5026), + [anon_sym_BSLASHfootcite] = ACTIONS(5026), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5026), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5026), + [anon_sym_BSLASHtextcite] = ACTIONS(5026), + [anon_sym_BSLASHTextcite] = ACTIONS(5026), + [anon_sym_BSLASHsmartcite] = ACTIONS(5026), + [anon_sym_BSLASHSmartcite] = ACTIONS(5026), + [anon_sym_BSLASHsupercite] = ACTIONS(5026), + [anon_sym_BSLASHautocite] = ACTIONS(5026), + [anon_sym_BSLASHAutocite] = ACTIONS(5026), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5024), + [anon_sym_BSLASHvolcite] = ACTIONS(5026), + [anon_sym_BSLASHVolcite] = ACTIONS(5026), + [anon_sym_BSLASHpvolcite] = ACTIONS(5026), + [anon_sym_BSLASHPvolcite] = ACTIONS(5026), + [anon_sym_BSLASHfvolcite] = ACTIONS(5026), + [anon_sym_BSLASHftvolcite] = ACTIONS(5026), + [anon_sym_BSLASHsvolcite] = ACTIONS(5026), + [anon_sym_BSLASHSvolcite] = ACTIONS(5026), + [anon_sym_BSLASHtvolcite] = ACTIONS(5026), + [anon_sym_BSLASHTvolcite] = ACTIONS(5026), + [anon_sym_BSLASHavolcite] = ACTIONS(5026), + [anon_sym_BSLASHAvolcite] = ACTIONS(5026), + [anon_sym_BSLASHnotecite] = ACTIONS(5026), + [anon_sym_BSLASHNotecite] = ACTIONS(5026), + [anon_sym_BSLASHpnotecite] = ACTIONS(5026), + [anon_sym_BSLASHPnotecite] = ACTIONS(5026), + [anon_sym_BSLASHfnotecite] = ACTIONS(5026), + [anon_sym_BSLASHlabel] = ACTIONS(5026), + [anon_sym_BSLASHref] = ACTIONS(5026), + [anon_sym_BSLASHeqref] = ACTIONS(5026), + [anon_sym_BSLASHvref] = ACTIONS(5026), + [anon_sym_BSLASHVref] = ACTIONS(5026), + [anon_sym_BSLASHautoref] = ACTIONS(5026), + [anon_sym_BSLASHpageref] = ACTIONS(5026), + [anon_sym_BSLASHcref] = ACTIONS(5026), + [anon_sym_BSLASHCref] = ACTIONS(5026), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnameCref] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5026), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5026), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5026), + [anon_sym_BSLASHlabelcref] = ACTIONS(5026), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange] = ACTIONS(5026), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHCrefrange] = ACTIONS(5026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5024), + [anon_sym_BSLASHnewlabel] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand] = ACTIONS(5026), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5026), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5026), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5024), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5026), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdef] = ACTIONS(5026), + [anon_sym_BSLASHlet] = ACTIONS(5026), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5026), + [anon_sym_BSLASHgls] = ACTIONS(5026), + [anon_sym_BSLASHGls] = ACTIONS(5026), + [anon_sym_BSLASHGLS] = ACTIONS(5026), + [anon_sym_BSLASHglspl] = ACTIONS(5026), + [anon_sym_BSLASHGlspl] = ACTIONS(5026), + [anon_sym_BSLASHGLSpl] = ACTIONS(5026), + [anon_sym_BSLASHglsdisp] = ACTIONS(5026), + [anon_sym_BSLASHglslink] = ACTIONS(5026), + [anon_sym_BSLASHglstext] = ACTIONS(5026), + [anon_sym_BSLASHGlstext] = ACTIONS(5026), + [anon_sym_BSLASHGLStext] = ACTIONS(5026), + [anon_sym_BSLASHglsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5026), + [anon_sym_BSLASHglsplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSplural] = ACTIONS(5026), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5026), + [anon_sym_BSLASHglsname] = ACTIONS(5026), + [anon_sym_BSLASHGlsname] = ACTIONS(5026), + [anon_sym_BSLASHGLSname] = ACTIONS(5026), + [anon_sym_BSLASHglssymbol] = ACTIONS(5026), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5026), + [anon_sym_BSLASHglsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5026), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5026), + [anon_sym_BSLASHglsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5026), + [anon_sym_BSLASHglsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5026), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5026), + [anon_sym_BSLASHglsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5026), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5026), + [anon_sym_BSLASHglsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5026), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5026), + [anon_sym_BSLASHnewacronym] = ACTIONS(5026), + [anon_sym_BSLASHacrshort] = ACTIONS(5026), + [anon_sym_BSLASHAcrshort] = ACTIONS(5026), + [anon_sym_BSLASHACRshort] = ACTIONS(5026), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5026), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5026), + [anon_sym_BSLASHacrlong] = ACTIONS(5026), + [anon_sym_BSLASHAcrlong] = ACTIONS(5026), + [anon_sym_BSLASHACRlong] = ACTIONS(5026), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5026), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5026), + [anon_sym_BSLASHacrfull] = ACTIONS(5026), + [anon_sym_BSLASHAcrfull] = ACTIONS(5026), + [anon_sym_BSLASHACRfull] = ACTIONS(5026), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5026), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5026), + [anon_sym_BSLASHacs] = ACTIONS(5026), + [anon_sym_BSLASHAcs] = ACTIONS(5026), + [anon_sym_BSLASHacsp] = ACTIONS(5026), + [anon_sym_BSLASHAcsp] = ACTIONS(5026), + [anon_sym_BSLASHacl] = ACTIONS(5026), + [anon_sym_BSLASHAcl] = ACTIONS(5026), + [anon_sym_BSLASHaclp] = ACTIONS(5026), + [anon_sym_BSLASHAclp] = ACTIONS(5026), + [anon_sym_BSLASHacf] = ACTIONS(5026), + [anon_sym_BSLASHAcf] = ACTIONS(5026), + [anon_sym_BSLASHacfp] = ACTIONS(5026), + [anon_sym_BSLASHAcfp] = ACTIONS(5026), + [anon_sym_BSLASHac] = ACTIONS(5026), + [anon_sym_BSLASHAc] = ACTIONS(5026), + [anon_sym_BSLASHacp] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5026), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5026), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5026), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5026), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5026), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5024), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5026), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5026), + [anon_sym_BSLASHcolor] = ACTIONS(5026), + [anon_sym_BSLASHcolorbox] = ACTIONS(5026), + [anon_sym_BSLASHtextcolor] = ACTIONS(5026), + [anon_sym_BSLASHpagecolor] = ACTIONS(5026), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5026), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5026), + [anon_sym_BSLASHtext] = ACTIONS(5026), + [anon_sym_BSLASHintertext] = ACTIONS(5026), + [anon_sym_shortintertext] = ACTIONS(5026), }, [1339] = { - [sym_command_name] = ACTIONS(4951), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), - [sym_word] = ACTIONS(4951), - [sym_placeholder] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), - [anon_sym_BSLASHbegin] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4951), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), - [anon_sym_BSLASHinclude] = ACTIONS(4951), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), - [anon_sym_BSLASHinput] = ACTIONS(4951), - [anon_sym_BSLASHsubfile] = ACTIONS(4951), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), - [anon_sym_BSLASHbibliography] = ACTIONS(4951), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), - [anon_sym_BSLASHincludesvg] = ACTIONS(4951), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), - [anon_sym_BSLASHimport] = ACTIONS(4951), - [anon_sym_BSLASHsubimport] = ACTIONS(4951), - [anon_sym_BSLASHinputfrom] = ACTIONS(4951), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), - [anon_sym_BSLASHincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), - [anon_sym_BSLASHcaption] = ACTIONS(4951), - [anon_sym_BSLASHcite] = ACTIONS(4951), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCite] = ACTIONS(4951), - [anon_sym_BSLASHnocite] = ACTIONS(4951), - [anon_sym_BSLASHcitet] = ACTIONS(4951), - [anon_sym_BSLASHcitep] = ACTIONS(4951), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteyear] = ACTIONS(4951), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), - [anon_sym_BSLASHcitedate] = ACTIONS(4951), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), - [anon_sym_BSLASHciteurl] = ACTIONS(4951), - [anon_sym_BSLASHfullcite] = ACTIONS(4951), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), - [anon_sym_BSLASHcitealt] = ACTIONS(4951), - [anon_sym_BSLASHcitealp] = ACTIONS(4951), - [anon_sym_BSLASHcitetext] = ACTIONS(4951), - [anon_sym_BSLASHparencite] = ACTIONS(4951), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHParencite] = ACTIONS(4951), - [anon_sym_BSLASHfootcite] = ACTIONS(4951), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), - [anon_sym_BSLASHtextcite] = ACTIONS(4951), - [anon_sym_BSLASHTextcite] = ACTIONS(4951), - [anon_sym_BSLASHsmartcite] = ACTIONS(4951), - [anon_sym_BSLASHSmartcite] = ACTIONS(4951), - [anon_sym_BSLASHsupercite] = ACTIONS(4951), - [anon_sym_BSLASHautocite] = ACTIONS(4951), - [anon_sym_BSLASHAutocite] = ACTIONS(4951), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), - [anon_sym_BSLASHvolcite] = ACTIONS(4951), - [anon_sym_BSLASHVolcite] = ACTIONS(4951), - [anon_sym_BSLASHpvolcite] = ACTIONS(4951), - [anon_sym_BSLASHPvolcite] = ACTIONS(4951), - [anon_sym_BSLASHfvolcite] = ACTIONS(4951), - [anon_sym_BSLASHftvolcite] = ACTIONS(4951), - [anon_sym_BSLASHsvolcite] = ACTIONS(4951), - [anon_sym_BSLASHSvolcite] = ACTIONS(4951), - [anon_sym_BSLASHtvolcite] = ACTIONS(4951), - [anon_sym_BSLASHTvolcite] = ACTIONS(4951), - [anon_sym_BSLASHavolcite] = ACTIONS(4951), - [anon_sym_BSLASHAvolcite] = ACTIONS(4951), - [anon_sym_BSLASHnotecite] = ACTIONS(4951), - [anon_sym_BSLASHNotecite] = ACTIONS(4951), - [anon_sym_BSLASHpnotecite] = ACTIONS(4951), - [anon_sym_BSLASHPnotecite] = ACTIONS(4951), - [anon_sym_BSLASHfnotecite] = ACTIONS(4951), - [anon_sym_BSLASHlabel] = ACTIONS(4951), - [anon_sym_BSLASHref] = ACTIONS(4951), - [anon_sym_BSLASHeqref] = ACTIONS(4951), - [anon_sym_BSLASHvref] = ACTIONS(4951), - [anon_sym_BSLASHVref] = ACTIONS(4951), - [anon_sym_BSLASHautoref] = ACTIONS(4951), - [anon_sym_BSLASHpageref] = ACTIONS(4951), - [anon_sym_BSLASHcref] = ACTIONS(4951), - [anon_sym_BSLASHCref] = ACTIONS(4951), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnameCref] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), - [anon_sym_BSLASHlabelcref] = ACTIONS(4951), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange] = ACTIONS(4951), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), - [anon_sym_BSLASHnewlabel] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand] = ACTIONS(4951), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), - [anon_sym_BSLASHdef] = ACTIONS(4951), - [anon_sym_BSLASHlet] = ACTIONS(4951), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), - [anon_sym_BSLASHgls] = ACTIONS(4951), - [anon_sym_BSLASHGls] = ACTIONS(4951), - [anon_sym_BSLASHGLS] = ACTIONS(4951), - [anon_sym_BSLASHglspl] = ACTIONS(4951), - [anon_sym_BSLASHGlspl] = ACTIONS(4951), - [anon_sym_BSLASHGLSpl] = ACTIONS(4951), - [anon_sym_BSLASHglsdisp] = ACTIONS(4951), - [anon_sym_BSLASHglslink] = ACTIONS(4951), - [anon_sym_BSLASHglstext] = ACTIONS(4951), - [anon_sym_BSLASHGlstext] = ACTIONS(4951), - [anon_sym_BSLASHGLStext] = ACTIONS(4951), - [anon_sym_BSLASHglsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), - [anon_sym_BSLASHglsplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSplural] = ACTIONS(4951), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), - [anon_sym_BSLASHglsname] = ACTIONS(4951), - [anon_sym_BSLASHGlsname] = ACTIONS(4951), - [anon_sym_BSLASHGLSname] = ACTIONS(4951), - [anon_sym_BSLASHglssymbol] = ACTIONS(4951), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), - [anon_sym_BSLASHglsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), - [anon_sym_BSLASHglsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), - [anon_sym_BSLASHglsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), - [anon_sym_BSLASHglsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), - [anon_sym_BSLASHglsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), - [anon_sym_BSLASHnewacronym] = ACTIONS(4951), - [anon_sym_BSLASHacrshort] = ACTIONS(4951), - [anon_sym_BSLASHAcrshort] = ACTIONS(4951), - [anon_sym_BSLASHACRshort] = ACTIONS(4951), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), - [anon_sym_BSLASHacrlong] = ACTIONS(4951), - [anon_sym_BSLASHAcrlong] = ACTIONS(4951), - [anon_sym_BSLASHACRlong] = ACTIONS(4951), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), - [anon_sym_BSLASHacrfull] = ACTIONS(4951), - [anon_sym_BSLASHAcrfull] = ACTIONS(4951), - [anon_sym_BSLASHACRfull] = ACTIONS(4951), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), - [anon_sym_BSLASHacs] = ACTIONS(4951), - [anon_sym_BSLASHAcs] = ACTIONS(4951), - [anon_sym_BSLASHacsp] = ACTIONS(4951), - [anon_sym_BSLASHAcsp] = ACTIONS(4951), - [anon_sym_BSLASHacl] = ACTIONS(4951), - [anon_sym_BSLASHAcl] = ACTIONS(4951), - [anon_sym_BSLASHaclp] = ACTIONS(4951), - [anon_sym_BSLASHAclp] = ACTIONS(4951), - [anon_sym_BSLASHacf] = ACTIONS(4951), - [anon_sym_BSLASHAcf] = ACTIONS(4951), - [anon_sym_BSLASHacfp] = ACTIONS(4951), - [anon_sym_BSLASHAcfp] = ACTIONS(4951), - [anon_sym_BSLASHac] = ACTIONS(4951), - [anon_sym_BSLASHAc] = ACTIONS(4951), - [anon_sym_BSLASHacp] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), - [anon_sym_BSLASHcolor] = ACTIONS(4951), - [anon_sym_BSLASHcolorbox] = ACTIONS(4951), - [anon_sym_BSLASHtextcolor] = ACTIONS(4951), - [anon_sym_BSLASHpagecolor] = ACTIONS(4951), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), - [anon_sym_BSLASHtext] = ACTIONS(4951), - [anon_sym_BSLASHintertext] = ACTIONS(4951), - [anon_sym_shortintertext] = ACTIONS(4951), + [sym_command_name] = ACTIONS(5030), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5028), + [sym_word] = ACTIONS(5030), + [sym_placeholder] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym__] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5030), + [anon_sym_SQUOTE] = ACTIONS(5030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5028), + [anon_sym_DOLLAR] = ACTIONS(5030), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5028), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5028), + [anon_sym_BSLASHbegin] = ACTIONS(5030), + [anon_sym_BSLASHusepackage] = ACTIONS(5030), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5030), + [anon_sym_BSLASHinclude] = ACTIONS(5030), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5030), + [anon_sym_BSLASHinput] = ACTIONS(5030), + [anon_sym_BSLASHsubfile] = ACTIONS(5030), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5030), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5030), + [anon_sym_BSLASHincludesvg] = ACTIONS(5030), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5030), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5030), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5030), + [anon_sym_BSLASHimport] = ACTIONS(5030), + [anon_sym_BSLASHsubimport] = ACTIONS(5030), + [anon_sym_BSLASHinputfrom] = ACTIONS(5030), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5030), + [anon_sym_BSLASHincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5030), + [anon_sym_BSLASHcaption] = ACTIONS(5030), + [anon_sym_BSLASHcite] = ACTIONS(5030), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCite] = ACTIONS(5030), + [anon_sym_BSLASHnocite] = ACTIONS(5030), + [anon_sym_BSLASHcitet] = ACTIONS(5030), + [anon_sym_BSLASHcitep] = ACTIONS(5030), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteauthor] = ACTIONS(5030), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5030), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitetitle] = ACTIONS(5030), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteyear] = ACTIONS(5030), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5028), + [anon_sym_BSLASHcitedate] = ACTIONS(5030), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5028), + [anon_sym_BSLASHciteurl] = ACTIONS(5030), + [anon_sym_BSLASHfullcite] = ACTIONS(5030), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5030), + [anon_sym_BSLASHcitealt] = ACTIONS(5030), + [anon_sym_BSLASHcitealp] = ACTIONS(5030), + [anon_sym_BSLASHcitetext] = ACTIONS(5030), + [anon_sym_BSLASHparencite] = ACTIONS(5030), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHParencite] = ACTIONS(5030), + [anon_sym_BSLASHfootcite] = ACTIONS(5030), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5030), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5030), + [anon_sym_BSLASHtextcite] = ACTIONS(5030), + [anon_sym_BSLASHTextcite] = ACTIONS(5030), + [anon_sym_BSLASHsmartcite] = ACTIONS(5030), + [anon_sym_BSLASHSmartcite] = ACTIONS(5030), + [anon_sym_BSLASHsupercite] = ACTIONS(5030), + [anon_sym_BSLASHautocite] = ACTIONS(5030), + [anon_sym_BSLASHAutocite] = ACTIONS(5030), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5028), + [anon_sym_BSLASHvolcite] = ACTIONS(5030), + [anon_sym_BSLASHVolcite] = ACTIONS(5030), + [anon_sym_BSLASHpvolcite] = ACTIONS(5030), + [anon_sym_BSLASHPvolcite] = ACTIONS(5030), + [anon_sym_BSLASHfvolcite] = ACTIONS(5030), + [anon_sym_BSLASHftvolcite] = ACTIONS(5030), + [anon_sym_BSLASHsvolcite] = ACTIONS(5030), + [anon_sym_BSLASHSvolcite] = ACTIONS(5030), + [anon_sym_BSLASHtvolcite] = ACTIONS(5030), + [anon_sym_BSLASHTvolcite] = ACTIONS(5030), + [anon_sym_BSLASHavolcite] = ACTIONS(5030), + [anon_sym_BSLASHAvolcite] = ACTIONS(5030), + [anon_sym_BSLASHnotecite] = ACTIONS(5030), + [anon_sym_BSLASHNotecite] = ACTIONS(5030), + [anon_sym_BSLASHpnotecite] = ACTIONS(5030), + [anon_sym_BSLASHPnotecite] = ACTIONS(5030), + [anon_sym_BSLASHfnotecite] = ACTIONS(5030), + [anon_sym_BSLASHlabel] = ACTIONS(5030), + [anon_sym_BSLASHref] = ACTIONS(5030), + [anon_sym_BSLASHeqref] = ACTIONS(5030), + [anon_sym_BSLASHvref] = ACTIONS(5030), + [anon_sym_BSLASHVref] = ACTIONS(5030), + [anon_sym_BSLASHautoref] = ACTIONS(5030), + [anon_sym_BSLASHpageref] = ACTIONS(5030), + [anon_sym_BSLASHcref] = ACTIONS(5030), + [anon_sym_BSLASHCref] = ACTIONS(5030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnameCref] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5030), + [anon_sym_BSLASHlabelcref] = ACTIONS(5030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange] = ACTIONS(5030), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHCrefrange] = ACTIONS(5030), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand] = ACTIONS(5030), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5030), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5030), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5030), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdef] = ACTIONS(5030), + [anon_sym_BSLASHlet] = ACTIONS(5030), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5030), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5030), + [anon_sym_BSLASHgls] = ACTIONS(5030), + [anon_sym_BSLASHGls] = ACTIONS(5030), + [anon_sym_BSLASHGLS] = ACTIONS(5030), + [anon_sym_BSLASHglspl] = ACTIONS(5030), + [anon_sym_BSLASHGlspl] = ACTIONS(5030), + [anon_sym_BSLASHGLSpl] = ACTIONS(5030), + [anon_sym_BSLASHglsdisp] = ACTIONS(5030), + [anon_sym_BSLASHglslink] = ACTIONS(5030), + [anon_sym_BSLASHglstext] = ACTIONS(5030), + [anon_sym_BSLASHGlstext] = ACTIONS(5030), + [anon_sym_BSLASHGLStext] = ACTIONS(5030), + [anon_sym_BSLASHglsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5030), + [anon_sym_BSLASHglsplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSplural] = ACTIONS(5030), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5030), + [anon_sym_BSLASHglsname] = ACTIONS(5030), + [anon_sym_BSLASHGlsname] = ACTIONS(5030), + [anon_sym_BSLASHGLSname] = ACTIONS(5030), + [anon_sym_BSLASHglssymbol] = ACTIONS(5030), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5030), + [anon_sym_BSLASHglsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5030), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5030), + [anon_sym_BSLASHglsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5030), + [anon_sym_BSLASHglsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5030), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5030), + [anon_sym_BSLASHglsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5030), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5030), + [anon_sym_BSLASHglsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5030), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5030), + [anon_sym_BSLASHnewacronym] = ACTIONS(5030), + [anon_sym_BSLASHacrshort] = ACTIONS(5030), + [anon_sym_BSLASHAcrshort] = ACTIONS(5030), + [anon_sym_BSLASHACRshort] = ACTIONS(5030), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5030), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5030), + [anon_sym_BSLASHacrlong] = ACTIONS(5030), + [anon_sym_BSLASHAcrlong] = ACTIONS(5030), + [anon_sym_BSLASHACRlong] = ACTIONS(5030), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5030), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5030), + [anon_sym_BSLASHacrfull] = ACTIONS(5030), + [anon_sym_BSLASHAcrfull] = ACTIONS(5030), + [anon_sym_BSLASHACRfull] = ACTIONS(5030), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5030), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5030), + [anon_sym_BSLASHacs] = ACTIONS(5030), + [anon_sym_BSLASHAcs] = ACTIONS(5030), + [anon_sym_BSLASHacsp] = ACTIONS(5030), + [anon_sym_BSLASHAcsp] = ACTIONS(5030), + [anon_sym_BSLASHacl] = ACTIONS(5030), + [anon_sym_BSLASHAcl] = ACTIONS(5030), + [anon_sym_BSLASHaclp] = ACTIONS(5030), + [anon_sym_BSLASHAclp] = ACTIONS(5030), + [anon_sym_BSLASHacf] = ACTIONS(5030), + [anon_sym_BSLASHAcf] = ACTIONS(5030), + [anon_sym_BSLASHacfp] = ACTIONS(5030), + [anon_sym_BSLASHAcfp] = ACTIONS(5030), + [anon_sym_BSLASHac] = ACTIONS(5030), + [anon_sym_BSLASHAc] = ACTIONS(5030), + [anon_sym_BSLASHacp] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5030), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5030), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5030), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5030), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5030), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5030), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5030), + [anon_sym_BSLASHcolor] = ACTIONS(5030), + [anon_sym_BSLASHcolorbox] = ACTIONS(5030), + [anon_sym_BSLASHtextcolor] = ACTIONS(5030), + [anon_sym_BSLASHpagecolor] = ACTIONS(5030), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5030), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5030), + [anon_sym_BSLASHtext] = ACTIONS(5030), + [anon_sym_BSLASHintertext] = ACTIONS(5030), + [anon_sym_shortintertext] = ACTIONS(5030), }, [1340] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASHbegin] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASHbegin] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [1341] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASHbegin] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASHbegin] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [1342] = { - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [anon_sym_BSLASHbegin] = 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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHbegin] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [1343] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASHbegin] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [1344] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASHbegin] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [1345] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASHbegin] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [1346] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASHbegin] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [1347] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASHbegin] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [1348] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASHbegin] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [1349] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASHbegin] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASHbegin] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [1350] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASHbegin] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [1351] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASHbegin] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [1352] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASHbegin] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [1353] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASHbegin] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASHbegin] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [1354] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASHbegin] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASHbegin] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [1355] = { - [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_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASHbegin] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [1356] = { - [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_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASHbegin] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [1357] = { - [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_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASHbegin] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [1358] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASHbegin] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [1359] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5081), - [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), + [sym_command_name] = ACTIONS(5160), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [sym_word] = ACTIONS(5160), + [sym_placeholder] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym__] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_BANG] = ACTIONS(5160), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_SQUOTE] = ACTIONS(5160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5158), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5158), + [anon_sym_BSLASHbegin] = ACTIONS(5160), + [anon_sym_BSLASHusepackage] = ACTIONS(5160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5160), + [anon_sym_BSLASHinclude] = ACTIONS(5160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5160), + [anon_sym_BSLASHinput] = ACTIONS(5160), + [anon_sym_BSLASHsubfile] = ACTIONS(5160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5160), + [anon_sym_BSLASHbibliography] = ACTIONS(5160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5160), + [anon_sym_BSLASHincludesvg] = ACTIONS(5160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5160), + [anon_sym_BSLASHimport] = ACTIONS(5160), + [anon_sym_BSLASHsubimport] = ACTIONS(5160), + [anon_sym_BSLASHinputfrom] = ACTIONS(5160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5160), + [anon_sym_BSLASHincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5160), + [anon_sym_BSLASHcaption] = ACTIONS(5160), + [anon_sym_BSLASHcite] = ACTIONS(5160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCite] = ACTIONS(5160), + [anon_sym_BSLASHnocite] = ACTIONS(5160), + [anon_sym_BSLASHcitet] = ACTIONS(5160), + [anon_sym_BSLASHcitep] = ACTIONS(5160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteauthor] = ACTIONS(5160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitetitle] = ACTIONS(5160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteyear] = ACTIONS(5160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5158), + [anon_sym_BSLASHcitedate] = ACTIONS(5160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5158), + [anon_sym_BSLASHciteurl] = ACTIONS(5160), + [anon_sym_BSLASHfullcite] = ACTIONS(5160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5160), + [anon_sym_BSLASHcitealt] = ACTIONS(5160), + [anon_sym_BSLASHcitealp] = ACTIONS(5160), + [anon_sym_BSLASHcitetext] = ACTIONS(5160), + [anon_sym_BSLASHparencite] = ACTIONS(5160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHParencite] = ACTIONS(5160), + [anon_sym_BSLASHfootcite] = ACTIONS(5160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5160), + [anon_sym_BSLASHtextcite] = ACTIONS(5160), + [anon_sym_BSLASHTextcite] = ACTIONS(5160), + [anon_sym_BSLASHsmartcite] = ACTIONS(5160), + [anon_sym_BSLASHSmartcite] = ACTIONS(5160), + [anon_sym_BSLASHsupercite] = ACTIONS(5160), + [anon_sym_BSLASHautocite] = ACTIONS(5160), + [anon_sym_BSLASHAutocite] = ACTIONS(5160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5158), + [anon_sym_BSLASHvolcite] = ACTIONS(5160), + [anon_sym_BSLASHVolcite] = ACTIONS(5160), + [anon_sym_BSLASHpvolcite] = ACTIONS(5160), + [anon_sym_BSLASHPvolcite] = ACTIONS(5160), + [anon_sym_BSLASHfvolcite] = ACTIONS(5160), + [anon_sym_BSLASHftvolcite] = ACTIONS(5160), + [anon_sym_BSLASHsvolcite] = ACTIONS(5160), + [anon_sym_BSLASHSvolcite] = ACTIONS(5160), + [anon_sym_BSLASHtvolcite] = ACTIONS(5160), + [anon_sym_BSLASHTvolcite] = ACTIONS(5160), + [anon_sym_BSLASHavolcite] = ACTIONS(5160), + [anon_sym_BSLASHAvolcite] = ACTIONS(5160), + [anon_sym_BSLASHnotecite] = ACTIONS(5160), + [anon_sym_BSLASHNotecite] = ACTIONS(5160), + [anon_sym_BSLASHpnotecite] = ACTIONS(5160), + [anon_sym_BSLASHPnotecite] = ACTIONS(5160), + [anon_sym_BSLASHfnotecite] = ACTIONS(5160), + [anon_sym_BSLASHlabel] = ACTIONS(5160), + [anon_sym_BSLASHref] = ACTIONS(5160), + [anon_sym_BSLASHeqref] = ACTIONS(5160), + [anon_sym_BSLASHvref] = ACTIONS(5160), + [anon_sym_BSLASHVref] = ACTIONS(5160), + [anon_sym_BSLASHautoref] = ACTIONS(5160), + [anon_sym_BSLASHpageref] = ACTIONS(5160), + [anon_sym_BSLASHcref] = ACTIONS(5160), + [anon_sym_BSLASHCref] = ACTIONS(5160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnameCref] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5160), + [anon_sym_BSLASHlabelcref] = ACTIONS(5160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange] = ACTIONS(5160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHCrefrange] = ACTIONS(5160), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5158), + [anon_sym_BSLASHnewlabel] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand] = ACTIONS(5160), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5160), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5160), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5158), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdef] = ACTIONS(5160), + [anon_sym_BSLASHlet] = ACTIONS(5160), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5160), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5160), + [anon_sym_BSLASHgls] = ACTIONS(5160), + [anon_sym_BSLASHGls] = ACTIONS(5160), + [anon_sym_BSLASHGLS] = ACTIONS(5160), + [anon_sym_BSLASHglspl] = ACTIONS(5160), + [anon_sym_BSLASHGlspl] = ACTIONS(5160), + [anon_sym_BSLASHGLSpl] = ACTIONS(5160), + [anon_sym_BSLASHglsdisp] = ACTIONS(5160), + [anon_sym_BSLASHglslink] = ACTIONS(5160), + [anon_sym_BSLASHglstext] = ACTIONS(5160), + [anon_sym_BSLASHGlstext] = ACTIONS(5160), + [anon_sym_BSLASHGLStext] = ACTIONS(5160), + [anon_sym_BSLASHglsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5160), + [anon_sym_BSLASHglsplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSplural] = ACTIONS(5160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5160), + [anon_sym_BSLASHglsname] = ACTIONS(5160), + [anon_sym_BSLASHGlsname] = ACTIONS(5160), + [anon_sym_BSLASHGLSname] = ACTIONS(5160), + [anon_sym_BSLASHglssymbol] = ACTIONS(5160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5160), + [anon_sym_BSLASHglsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5160), + [anon_sym_BSLASHglsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5160), + [anon_sym_BSLASHglsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5160), + [anon_sym_BSLASHglsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5160), + [anon_sym_BSLASHglsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5160), + [anon_sym_BSLASHnewacronym] = ACTIONS(5160), + [anon_sym_BSLASHacrshort] = ACTIONS(5160), + [anon_sym_BSLASHAcrshort] = ACTIONS(5160), + [anon_sym_BSLASHACRshort] = ACTIONS(5160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5160), + [anon_sym_BSLASHacrlong] = ACTIONS(5160), + [anon_sym_BSLASHAcrlong] = ACTIONS(5160), + [anon_sym_BSLASHACRlong] = ACTIONS(5160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5160), + [anon_sym_BSLASHacrfull] = ACTIONS(5160), + [anon_sym_BSLASHAcrfull] = ACTIONS(5160), + [anon_sym_BSLASHACRfull] = ACTIONS(5160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5160), + [anon_sym_BSLASHacs] = ACTIONS(5160), + [anon_sym_BSLASHAcs] = ACTIONS(5160), + [anon_sym_BSLASHacsp] = ACTIONS(5160), + [anon_sym_BSLASHAcsp] = ACTIONS(5160), + [anon_sym_BSLASHacl] = ACTIONS(5160), + [anon_sym_BSLASHAcl] = ACTIONS(5160), + [anon_sym_BSLASHaclp] = ACTIONS(5160), + [anon_sym_BSLASHAclp] = ACTIONS(5160), + [anon_sym_BSLASHacf] = ACTIONS(5160), + [anon_sym_BSLASHAcf] = ACTIONS(5160), + [anon_sym_BSLASHacfp] = ACTIONS(5160), + [anon_sym_BSLASHAcfp] = ACTIONS(5160), + [anon_sym_BSLASHac] = ACTIONS(5160), + [anon_sym_BSLASHAc] = ACTIONS(5160), + [anon_sym_BSLASHacp] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5160), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5160), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5160), + [anon_sym_BSLASHcolor] = ACTIONS(5160), + [anon_sym_BSLASHcolorbox] = ACTIONS(5160), + [anon_sym_BSLASHtextcolor] = ACTIONS(5160), + [anon_sym_BSLASHpagecolor] = ACTIONS(5160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5160), + [anon_sym_BSLASHtext] = ACTIONS(5160), + [anon_sym_BSLASHintertext] = ACTIONS(5160), + [anon_sym_shortintertext] = ACTIONS(5160), }, [1360] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5085), - [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), + [sym_command_name] = ACTIONS(5164), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [sym_word] = ACTIONS(5164), + [sym_placeholder] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym__] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_SQUOTE] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5162), + [anon_sym_DOLLAR] = ACTIONS(5164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5162), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5162), + [anon_sym_BSLASHbegin] = ACTIONS(5164), + [anon_sym_BSLASHusepackage] = ACTIONS(5164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5164), + [anon_sym_BSLASHinclude] = ACTIONS(5164), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5164), + [anon_sym_BSLASHinput] = ACTIONS(5164), + [anon_sym_BSLASHsubfile] = ACTIONS(5164), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5164), + [anon_sym_BSLASHbibliography] = ACTIONS(5164), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), + [anon_sym_BSLASHincludesvg] = ACTIONS(5164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5164), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5164), + [anon_sym_BSLASHimport] = ACTIONS(5164), + [anon_sym_BSLASHsubimport] = ACTIONS(5164), + [anon_sym_BSLASHinputfrom] = ACTIONS(5164), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5164), + [anon_sym_BSLASHincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5164), + [anon_sym_BSLASHcaption] = ACTIONS(5164), + [anon_sym_BSLASHcite] = ACTIONS(5164), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCite] = ACTIONS(5164), + [anon_sym_BSLASHnocite] = ACTIONS(5164), + [anon_sym_BSLASHcitet] = ACTIONS(5164), + [anon_sym_BSLASHcitep] = ACTIONS(5164), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteauthor] = ACTIONS(5164), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5164), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitetitle] = ACTIONS(5164), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteyear] = ACTIONS(5164), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5162), + [anon_sym_BSLASHcitedate] = ACTIONS(5164), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5162), + [anon_sym_BSLASHciteurl] = ACTIONS(5164), + [anon_sym_BSLASHfullcite] = ACTIONS(5164), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5164), + [anon_sym_BSLASHcitealt] = ACTIONS(5164), + [anon_sym_BSLASHcitealp] = ACTIONS(5164), + [anon_sym_BSLASHcitetext] = ACTIONS(5164), + [anon_sym_BSLASHparencite] = ACTIONS(5164), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHParencite] = ACTIONS(5164), + [anon_sym_BSLASHfootcite] = ACTIONS(5164), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5164), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5164), + [anon_sym_BSLASHtextcite] = ACTIONS(5164), + [anon_sym_BSLASHTextcite] = ACTIONS(5164), + [anon_sym_BSLASHsmartcite] = ACTIONS(5164), + [anon_sym_BSLASHSmartcite] = ACTIONS(5164), + [anon_sym_BSLASHsupercite] = ACTIONS(5164), + [anon_sym_BSLASHautocite] = ACTIONS(5164), + [anon_sym_BSLASHAutocite] = ACTIONS(5164), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5162), + [anon_sym_BSLASHvolcite] = ACTIONS(5164), + [anon_sym_BSLASHVolcite] = ACTIONS(5164), + [anon_sym_BSLASHpvolcite] = ACTIONS(5164), + [anon_sym_BSLASHPvolcite] = ACTIONS(5164), + [anon_sym_BSLASHfvolcite] = ACTIONS(5164), + [anon_sym_BSLASHftvolcite] = ACTIONS(5164), + [anon_sym_BSLASHsvolcite] = ACTIONS(5164), + [anon_sym_BSLASHSvolcite] = ACTIONS(5164), + [anon_sym_BSLASHtvolcite] = ACTIONS(5164), + [anon_sym_BSLASHTvolcite] = ACTIONS(5164), + [anon_sym_BSLASHavolcite] = ACTIONS(5164), + [anon_sym_BSLASHAvolcite] = ACTIONS(5164), + [anon_sym_BSLASHnotecite] = ACTIONS(5164), + [anon_sym_BSLASHNotecite] = ACTIONS(5164), + [anon_sym_BSLASHpnotecite] = ACTIONS(5164), + [anon_sym_BSLASHPnotecite] = ACTIONS(5164), + [anon_sym_BSLASHfnotecite] = ACTIONS(5164), + [anon_sym_BSLASHlabel] = ACTIONS(5164), + [anon_sym_BSLASHref] = ACTIONS(5164), + [anon_sym_BSLASHeqref] = ACTIONS(5164), + [anon_sym_BSLASHvref] = ACTIONS(5164), + [anon_sym_BSLASHVref] = ACTIONS(5164), + [anon_sym_BSLASHautoref] = ACTIONS(5164), + [anon_sym_BSLASHpageref] = ACTIONS(5164), + [anon_sym_BSLASHcref] = ACTIONS(5164), + [anon_sym_BSLASHCref] = ACTIONS(5164), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnameCref] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5164), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5164), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5164), + [anon_sym_BSLASHlabelcref] = ACTIONS(5164), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange] = ACTIONS(5164), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHCrefrange] = ACTIONS(5164), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5162), + [anon_sym_BSLASHnewlabel] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand] = ACTIONS(5164), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5164), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5164), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5162), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5164), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdef] = ACTIONS(5164), + [anon_sym_BSLASHlet] = ACTIONS(5164), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5164), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5164), + [anon_sym_BSLASHgls] = ACTIONS(5164), + [anon_sym_BSLASHGls] = ACTIONS(5164), + [anon_sym_BSLASHGLS] = ACTIONS(5164), + [anon_sym_BSLASHglspl] = ACTIONS(5164), + [anon_sym_BSLASHGlspl] = ACTIONS(5164), + [anon_sym_BSLASHGLSpl] = ACTIONS(5164), + [anon_sym_BSLASHglsdisp] = ACTIONS(5164), + [anon_sym_BSLASHglslink] = ACTIONS(5164), + [anon_sym_BSLASHglstext] = ACTIONS(5164), + [anon_sym_BSLASHGlstext] = ACTIONS(5164), + [anon_sym_BSLASHGLStext] = ACTIONS(5164), + [anon_sym_BSLASHglsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5164), + [anon_sym_BSLASHglsplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSplural] = ACTIONS(5164), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5164), + [anon_sym_BSLASHglsname] = ACTIONS(5164), + [anon_sym_BSLASHGlsname] = ACTIONS(5164), + [anon_sym_BSLASHGLSname] = ACTIONS(5164), + [anon_sym_BSLASHglssymbol] = ACTIONS(5164), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5164), + [anon_sym_BSLASHglsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5164), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5164), + [anon_sym_BSLASHglsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5164), + [anon_sym_BSLASHglsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5164), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5164), + [anon_sym_BSLASHglsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5164), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5164), + [anon_sym_BSLASHglsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5164), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5164), + [anon_sym_BSLASHnewacronym] = ACTIONS(5164), + [anon_sym_BSLASHacrshort] = ACTIONS(5164), + [anon_sym_BSLASHAcrshort] = ACTIONS(5164), + [anon_sym_BSLASHACRshort] = ACTIONS(5164), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5164), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5164), + [anon_sym_BSLASHacrlong] = ACTIONS(5164), + [anon_sym_BSLASHAcrlong] = ACTIONS(5164), + [anon_sym_BSLASHACRlong] = ACTIONS(5164), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5164), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5164), + [anon_sym_BSLASHacrfull] = ACTIONS(5164), + [anon_sym_BSLASHAcrfull] = ACTIONS(5164), + [anon_sym_BSLASHACRfull] = ACTIONS(5164), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5164), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5164), + [anon_sym_BSLASHacs] = ACTIONS(5164), + [anon_sym_BSLASHAcs] = ACTIONS(5164), + [anon_sym_BSLASHacsp] = ACTIONS(5164), + [anon_sym_BSLASHAcsp] = ACTIONS(5164), + [anon_sym_BSLASHacl] = ACTIONS(5164), + [anon_sym_BSLASHAcl] = ACTIONS(5164), + [anon_sym_BSLASHaclp] = ACTIONS(5164), + [anon_sym_BSLASHAclp] = ACTIONS(5164), + [anon_sym_BSLASHacf] = ACTIONS(5164), + [anon_sym_BSLASHAcf] = ACTIONS(5164), + [anon_sym_BSLASHacfp] = ACTIONS(5164), + [anon_sym_BSLASHAcfp] = ACTIONS(5164), + [anon_sym_BSLASHac] = ACTIONS(5164), + [anon_sym_BSLASHAc] = ACTIONS(5164), + [anon_sym_BSLASHacp] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5164), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5164), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5164), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5164), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5164), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5162), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5164), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5164), + [anon_sym_BSLASHcolor] = ACTIONS(5164), + [anon_sym_BSLASHcolorbox] = ACTIONS(5164), + [anon_sym_BSLASHtextcolor] = ACTIONS(5164), + [anon_sym_BSLASHpagecolor] = ACTIONS(5164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5164), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5164), + [anon_sym_BSLASHtext] = ACTIONS(5164), + [anon_sym_BSLASHintertext] = ACTIONS(5164), + [anon_sym_shortintertext] = ACTIONS(5164), }, [1361] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5089), - [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), + [sym_command_name] = ACTIONS(5168), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [sym_word] = ACTIONS(5168), + [sym_placeholder] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym__] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_SQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(5168), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(5168), + [anon_sym_BSLASHusepackage] = ACTIONS(5168), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5168), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5168), + [anon_sym_BSLASHinclude] = ACTIONS(5168), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5168), + [anon_sym_BSLASHinput] = ACTIONS(5168), + [anon_sym_BSLASHsubfile] = ACTIONS(5168), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5168), + [anon_sym_BSLASHbibliography] = ACTIONS(5168), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5168), + [anon_sym_BSLASHincludesvg] = ACTIONS(5168), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5168), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5168), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5168), + [anon_sym_BSLASHimport] = ACTIONS(5168), + [anon_sym_BSLASHsubimport] = ACTIONS(5168), + [anon_sym_BSLASHinputfrom] = ACTIONS(5168), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5168), + [anon_sym_BSLASHincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(5168), + [anon_sym_BSLASHcite] = ACTIONS(5168), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCite] = ACTIONS(5168), + [anon_sym_BSLASHnocite] = ACTIONS(5168), + [anon_sym_BSLASHcitet] = ACTIONS(5168), + [anon_sym_BSLASHcitep] = ACTIONS(5168), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteauthor] = ACTIONS(5168), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5168), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitetitle] = ACTIONS(5168), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteyear] = ACTIONS(5168), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5166), + [anon_sym_BSLASHcitedate] = ACTIONS(5168), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5166), + [anon_sym_BSLASHciteurl] = ACTIONS(5168), + [anon_sym_BSLASHfullcite] = ACTIONS(5168), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5168), + [anon_sym_BSLASHcitealt] = ACTIONS(5168), + [anon_sym_BSLASHcitealp] = ACTIONS(5168), + [anon_sym_BSLASHcitetext] = ACTIONS(5168), + [anon_sym_BSLASHparencite] = ACTIONS(5168), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHParencite] = ACTIONS(5168), + [anon_sym_BSLASHfootcite] = ACTIONS(5168), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5168), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5168), + [anon_sym_BSLASHtextcite] = ACTIONS(5168), + [anon_sym_BSLASHTextcite] = ACTIONS(5168), + [anon_sym_BSLASHsmartcite] = ACTIONS(5168), + [anon_sym_BSLASHSmartcite] = ACTIONS(5168), + [anon_sym_BSLASHsupercite] = ACTIONS(5168), + [anon_sym_BSLASHautocite] = ACTIONS(5168), + [anon_sym_BSLASHAutocite] = ACTIONS(5168), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5166), + [anon_sym_BSLASHvolcite] = ACTIONS(5168), + [anon_sym_BSLASHVolcite] = ACTIONS(5168), + [anon_sym_BSLASHpvolcite] = ACTIONS(5168), + [anon_sym_BSLASHPvolcite] = ACTIONS(5168), + [anon_sym_BSLASHfvolcite] = ACTIONS(5168), + [anon_sym_BSLASHftvolcite] = ACTIONS(5168), + [anon_sym_BSLASHsvolcite] = ACTIONS(5168), + [anon_sym_BSLASHSvolcite] = ACTIONS(5168), + [anon_sym_BSLASHtvolcite] = ACTIONS(5168), + [anon_sym_BSLASHTvolcite] = ACTIONS(5168), + [anon_sym_BSLASHavolcite] = ACTIONS(5168), + [anon_sym_BSLASHAvolcite] = ACTIONS(5168), + [anon_sym_BSLASHnotecite] = ACTIONS(5168), + [anon_sym_BSLASHNotecite] = ACTIONS(5168), + [anon_sym_BSLASHpnotecite] = ACTIONS(5168), + [anon_sym_BSLASHPnotecite] = ACTIONS(5168), + [anon_sym_BSLASHfnotecite] = ACTIONS(5168), + [anon_sym_BSLASHlabel] = ACTIONS(5168), + [anon_sym_BSLASHref] = ACTIONS(5168), + [anon_sym_BSLASHeqref] = ACTIONS(5168), + [anon_sym_BSLASHvref] = ACTIONS(5168), + [anon_sym_BSLASHVref] = ACTIONS(5168), + [anon_sym_BSLASHautoref] = ACTIONS(5168), + [anon_sym_BSLASHpageref] = ACTIONS(5168), + [anon_sym_BSLASHcref] = ACTIONS(5168), + [anon_sym_BSLASHCref] = ACTIONS(5168), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnameCref] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5168), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5168), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5168), + [anon_sym_BSLASHlabelcref] = ACTIONS(5168), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange] = ACTIONS(5168), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHCrefrange] = ACTIONS(5168), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5166), + [anon_sym_BSLASHnewlabel] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand] = ACTIONS(5168), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5168), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5168), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5166), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5168), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdef] = ACTIONS(5168), + [anon_sym_BSLASHlet] = ACTIONS(5168), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5168), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5168), + [anon_sym_BSLASHgls] = ACTIONS(5168), + [anon_sym_BSLASHGls] = ACTIONS(5168), + [anon_sym_BSLASHGLS] = ACTIONS(5168), + [anon_sym_BSLASHglspl] = ACTIONS(5168), + [anon_sym_BSLASHGlspl] = ACTIONS(5168), + [anon_sym_BSLASHGLSpl] = ACTIONS(5168), + [anon_sym_BSLASHglsdisp] = ACTIONS(5168), + [anon_sym_BSLASHglslink] = ACTIONS(5168), + [anon_sym_BSLASHglstext] = ACTIONS(5168), + [anon_sym_BSLASHGlstext] = ACTIONS(5168), + [anon_sym_BSLASHGLStext] = ACTIONS(5168), + [anon_sym_BSLASHglsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5168), + [anon_sym_BSLASHglsplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSplural] = ACTIONS(5168), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5168), + [anon_sym_BSLASHglsname] = ACTIONS(5168), + [anon_sym_BSLASHGlsname] = ACTIONS(5168), + [anon_sym_BSLASHGLSname] = ACTIONS(5168), + [anon_sym_BSLASHglssymbol] = ACTIONS(5168), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5168), + [anon_sym_BSLASHglsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5168), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5168), + [anon_sym_BSLASHglsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5168), + [anon_sym_BSLASHglsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5168), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5168), + [anon_sym_BSLASHglsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5168), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5168), + [anon_sym_BSLASHglsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5168), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5168), + [anon_sym_BSLASHnewacronym] = ACTIONS(5168), + [anon_sym_BSLASHacrshort] = ACTIONS(5168), + [anon_sym_BSLASHAcrshort] = ACTIONS(5168), + [anon_sym_BSLASHACRshort] = ACTIONS(5168), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5168), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5168), + [anon_sym_BSLASHacrlong] = ACTIONS(5168), + [anon_sym_BSLASHAcrlong] = ACTIONS(5168), + [anon_sym_BSLASHACRlong] = ACTIONS(5168), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5168), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5168), + [anon_sym_BSLASHacrfull] = ACTIONS(5168), + [anon_sym_BSLASHAcrfull] = ACTIONS(5168), + [anon_sym_BSLASHACRfull] = ACTIONS(5168), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5168), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5168), + [anon_sym_BSLASHacs] = ACTIONS(5168), + [anon_sym_BSLASHAcs] = ACTIONS(5168), + [anon_sym_BSLASHacsp] = ACTIONS(5168), + [anon_sym_BSLASHAcsp] = ACTIONS(5168), + [anon_sym_BSLASHacl] = ACTIONS(5168), + [anon_sym_BSLASHAcl] = ACTIONS(5168), + [anon_sym_BSLASHaclp] = ACTIONS(5168), + [anon_sym_BSLASHAclp] = ACTIONS(5168), + [anon_sym_BSLASHacf] = ACTIONS(5168), + [anon_sym_BSLASHAcf] = ACTIONS(5168), + [anon_sym_BSLASHacfp] = ACTIONS(5168), + [anon_sym_BSLASHAcfp] = ACTIONS(5168), + [anon_sym_BSLASHac] = ACTIONS(5168), + [anon_sym_BSLASHAc] = ACTIONS(5168), + [anon_sym_BSLASHacp] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5168), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5168), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5168), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5168), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5168), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5166), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5168), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5168), + [anon_sym_BSLASHcolor] = ACTIONS(5168), + [anon_sym_BSLASHcolorbox] = ACTIONS(5168), + [anon_sym_BSLASHtextcolor] = ACTIONS(5168), + [anon_sym_BSLASHpagecolor] = ACTIONS(5168), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5168), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5168), + [anon_sym_BSLASHtext] = ACTIONS(5168), + [anon_sym_BSLASHintertext] = ACTIONS(5168), + [anon_sym_shortintertext] = ACTIONS(5168), }, [1362] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5093), - [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), + [sym_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [sym_word] = ACTIONS(5172), + [sym_placeholder] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_SLASH] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym__] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5172), + [anon_sym_GT] = ACTIONS(5172), + [anon_sym_BANG] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_SQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5170), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5170), + [anon_sym_BSLASHbegin] = ACTIONS(5172), + [anon_sym_BSLASHusepackage] = ACTIONS(5172), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5172), + [anon_sym_BSLASHinclude] = ACTIONS(5172), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5172), + [anon_sym_BSLASHinput] = ACTIONS(5172), + [anon_sym_BSLASHsubfile] = ACTIONS(5172), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5172), + [anon_sym_BSLASHbibliography] = ACTIONS(5172), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5172), + [anon_sym_BSLASHincludesvg] = ACTIONS(5172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5172), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5172), + [anon_sym_BSLASHimport] = ACTIONS(5172), + [anon_sym_BSLASHsubimport] = ACTIONS(5172), + [anon_sym_BSLASHinputfrom] = ACTIONS(5172), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5172), + [anon_sym_BSLASHincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5172), + [anon_sym_BSLASHcaption] = ACTIONS(5172), + [anon_sym_BSLASHcite] = ACTIONS(5172), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCite] = ACTIONS(5172), + [anon_sym_BSLASHnocite] = ACTIONS(5172), + [anon_sym_BSLASHcitet] = ACTIONS(5172), + [anon_sym_BSLASHcitep] = ACTIONS(5172), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteauthor] = ACTIONS(5172), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5172), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitetitle] = ACTIONS(5172), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteyear] = ACTIONS(5172), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5170), + [anon_sym_BSLASHcitedate] = ACTIONS(5172), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5170), + [anon_sym_BSLASHciteurl] = ACTIONS(5172), + [anon_sym_BSLASHfullcite] = ACTIONS(5172), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5172), + [anon_sym_BSLASHcitealt] = ACTIONS(5172), + [anon_sym_BSLASHcitealp] = ACTIONS(5172), + [anon_sym_BSLASHcitetext] = ACTIONS(5172), + [anon_sym_BSLASHparencite] = ACTIONS(5172), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHParencite] = ACTIONS(5172), + [anon_sym_BSLASHfootcite] = ACTIONS(5172), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5172), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5172), + [anon_sym_BSLASHtextcite] = ACTIONS(5172), + [anon_sym_BSLASHTextcite] = ACTIONS(5172), + [anon_sym_BSLASHsmartcite] = ACTIONS(5172), + [anon_sym_BSLASHSmartcite] = ACTIONS(5172), + [anon_sym_BSLASHsupercite] = ACTIONS(5172), + [anon_sym_BSLASHautocite] = ACTIONS(5172), + [anon_sym_BSLASHAutocite] = ACTIONS(5172), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5170), + [anon_sym_BSLASHvolcite] = ACTIONS(5172), + [anon_sym_BSLASHVolcite] = ACTIONS(5172), + [anon_sym_BSLASHpvolcite] = ACTIONS(5172), + [anon_sym_BSLASHPvolcite] = ACTIONS(5172), + [anon_sym_BSLASHfvolcite] = ACTIONS(5172), + [anon_sym_BSLASHftvolcite] = ACTIONS(5172), + [anon_sym_BSLASHsvolcite] = ACTIONS(5172), + [anon_sym_BSLASHSvolcite] = ACTIONS(5172), + [anon_sym_BSLASHtvolcite] = ACTIONS(5172), + [anon_sym_BSLASHTvolcite] = ACTIONS(5172), + [anon_sym_BSLASHavolcite] = ACTIONS(5172), + [anon_sym_BSLASHAvolcite] = ACTIONS(5172), + [anon_sym_BSLASHnotecite] = ACTIONS(5172), + [anon_sym_BSLASHNotecite] = ACTIONS(5172), + [anon_sym_BSLASHpnotecite] = ACTIONS(5172), + [anon_sym_BSLASHPnotecite] = ACTIONS(5172), + [anon_sym_BSLASHfnotecite] = ACTIONS(5172), + [anon_sym_BSLASHlabel] = ACTIONS(5172), + [anon_sym_BSLASHref] = ACTIONS(5172), + [anon_sym_BSLASHeqref] = ACTIONS(5172), + [anon_sym_BSLASHvref] = ACTIONS(5172), + [anon_sym_BSLASHVref] = ACTIONS(5172), + [anon_sym_BSLASHautoref] = ACTIONS(5172), + [anon_sym_BSLASHpageref] = ACTIONS(5172), + [anon_sym_BSLASHcref] = ACTIONS(5172), + [anon_sym_BSLASHCref] = ACTIONS(5172), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnameCref] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5172), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5172), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5172), + [anon_sym_BSLASHlabelcref] = ACTIONS(5172), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange] = ACTIONS(5172), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHCrefrange] = ACTIONS(5172), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5170), + [anon_sym_BSLASHnewlabel] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand] = ACTIONS(5172), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5172), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5172), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5170), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5172), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdef] = ACTIONS(5172), + [anon_sym_BSLASHlet] = ACTIONS(5172), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5172), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5172), + [anon_sym_BSLASHgls] = ACTIONS(5172), + [anon_sym_BSLASHGls] = ACTIONS(5172), + [anon_sym_BSLASHGLS] = ACTIONS(5172), + [anon_sym_BSLASHglspl] = ACTIONS(5172), + [anon_sym_BSLASHGlspl] = ACTIONS(5172), + [anon_sym_BSLASHGLSpl] = ACTIONS(5172), + [anon_sym_BSLASHglsdisp] = ACTIONS(5172), + [anon_sym_BSLASHglslink] = ACTIONS(5172), + [anon_sym_BSLASHglstext] = ACTIONS(5172), + [anon_sym_BSLASHGlstext] = ACTIONS(5172), + [anon_sym_BSLASHGLStext] = ACTIONS(5172), + [anon_sym_BSLASHglsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5172), + [anon_sym_BSLASHglsplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSplural] = ACTIONS(5172), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5172), + [anon_sym_BSLASHglsname] = ACTIONS(5172), + [anon_sym_BSLASHGlsname] = ACTIONS(5172), + [anon_sym_BSLASHGLSname] = ACTIONS(5172), + [anon_sym_BSLASHglssymbol] = ACTIONS(5172), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5172), + [anon_sym_BSLASHglsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5172), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5172), + [anon_sym_BSLASHglsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5172), + [anon_sym_BSLASHglsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5172), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5172), + [anon_sym_BSLASHglsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5172), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5172), + [anon_sym_BSLASHglsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5172), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5172), + [anon_sym_BSLASHnewacronym] = ACTIONS(5172), + [anon_sym_BSLASHacrshort] = ACTIONS(5172), + [anon_sym_BSLASHAcrshort] = ACTIONS(5172), + [anon_sym_BSLASHACRshort] = ACTIONS(5172), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5172), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5172), + [anon_sym_BSLASHacrlong] = ACTIONS(5172), + [anon_sym_BSLASHAcrlong] = ACTIONS(5172), + [anon_sym_BSLASHACRlong] = ACTIONS(5172), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5172), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5172), + [anon_sym_BSLASHacrfull] = ACTIONS(5172), + [anon_sym_BSLASHAcrfull] = ACTIONS(5172), + [anon_sym_BSLASHACRfull] = ACTIONS(5172), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5172), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5172), + [anon_sym_BSLASHacs] = ACTIONS(5172), + [anon_sym_BSLASHAcs] = ACTIONS(5172), + [anon_sym_BSLASHacsp] = ACTIONS(5172), + [anon_sym_BSLASHAcsp] = ACTIONS(5172), + [anon_sym_BSLASHacl] = ACTIONS(5172), + [anon_sym_BSLASHAcl] = ACTIONS(5172), + [anon_sym_BSLASHaclp] = ACTIONS(5172), + [anon_sym_BSLASHAclp] = ACTIONS(5172), + [anon_sym_BSLASHacf] = ACTIONS(5172), + [anon_sym_BSLASHAcf] = ACTIONS(5172), + [anon_sym_BSLASHacfp] = ACTIONS(5172), + [anon_sym_BSLASHAcfp] = ACTIONS(5172), + [anon_sym_BSLASHac] = ACTIONS(5172), + [anon_sym_BSLASHAc] = ACTIONS(5172), + [anon_sym_BSLASHacp] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5172), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5172), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5172), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5172), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5172), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5170), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5172), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5172), + [anon_sym_BSLASHcolor] = ACTIONS(5172), + [anon_sym_BSLASHcolorbox] = ACTIONS(5172), + [anon_sym_BSLASHtextcolor] = ACTIONS(5172), + [anon_sym_BSLASHpagecolor] = ACTIONS(5172), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5172), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5172), + [anon_sym_BSLASHtext] = ACTIONS(5172), + [anon_sym_BSLASHintertext] = ACTIONS(5172), + [anon_sym_shortintertext] = ACTIONS(5172), }, [1363] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5097), - [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), + [sym_command_name] = ACTIONS(5176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5174), + [sym_word] = ACTIONS(5176), + [sym_placeholder] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym__] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_SQUOTE] = ACTIONS(5176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5176), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5174), + [anon_sym_BSLASHbegin] = ACTIONS(5176), + [anon_sym_BSLASHusepackage] = ACTIONS(5176), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5176), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5176), + [anon_sym_BSLASHinclude] = ACTIONS(5176), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5176), + [anon_sym_BSLASHinput] = ACTIONS(5176), + [anon_sym_BSLASHsubfile] = ACTIONS(5176), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5176), + [anon_sym_BSLASHbibliography] = ACTIONS(5176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5176), + [anon_sym_BSLASHincludesvg] = ACTIONS(5176), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5176), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5176), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5176), + [anon_sym_BSLASHimport] = ACTIONS(5176), + [anon_sym_BSLASHsubimport] = ACTIONS(5176), + [anon_sym_BSLASHinputfrom] = ACTIONS(5176), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), + [anon_sym_BSLASHincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), + [anon_sym_BSLASHcaption] = ACTIONS(5176), + [anon_sym_BSLASHcite] = ACTIONS(5176), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCite] = ACTIONS(5176), + [anon_sym_BSLASHnocite] = ACTIONS(5176), + [anon_sym_BSLASHcitet] = ACTIONS(5176), + [anon_sym_BSLASHcitep] = ACTIONS(5176), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteauthor] = ACTIONS(5176), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5176), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitetitle] = ACTIONS(5176), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteyear] = ACTIONS(5176), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5174), + [anon_sym_BSLASHcitedate] = ACTIONS(5176), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5174), + [anon_sym_BSLASHciteurl] = ACTIONS(5176), + [anon_sym_BSLASHfullcite] = ACTIONS(5176), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5176), + [anon_sym_BSLASHcitealt] = ACTIONS(5176), + [anon_sym_BSLASHcitealp] = ACTIONS(5176), + [anon_sym_BSLASHcitetext] = ACTIONS(5176), + [anon_sym_BSLASHparencite] = ACTIONS(5176), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHParencite] = ACTIONS(5176), + [anon_sym_BSLASHfootcite] = ACTIONS(5176), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5176), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5176), + [anon_sym_BSLASHtextcite] = ACTIONS(5176), + [anon_sym_BSLASHTextcite] = ACTIONS(5176), + [anon_sym_BSLASHsmartcite] = ACTIONS(5176), + [anon_sym_BSLASHSmartcite] = ACTIONS(5176), + [anon_sym_BSLASHsupercite] = ACTIONS(5176), + [anon_sym_BSLASHautocite] = ACTIONS(5176), + [anon_sym_BSLASHAutocite] = ACTIONS(5176), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5174), + [anon_sym_BSLASHvolcite] = ACTIONS(5176), + [anon_sym_BSLASHVolcite] = ACTIONS(5176), + [anon_sym_BSLASHpvolcite] = ACTIONS(5176), + [anon_sym_BSLASHPvolcite] = ACTIONS(5176), + [anon_sym_BSLASHfvolcite] = ACTIONS(5176), + [anon_sym_BSLASHftvolcite] = ACTIONS(5176), + [anon_sym_BSLASHsvolcite] = ACTIONS(5176), + [anon_sym_BSLASHSvolcite] = ACTIONS(5176), + [anon_sym_BSLASHtvolcite] = ACTIONS(5176), + [anon_sym_BSLASHTvolcite] = ACTIONS(5176), + [anon_sym_BSLASHavolcite] = ACTIONS(5176), + [anon_sym_BSLASHAvolcite] = ACTIONS(5176), + [anon_sym_BSLASHnotecite] = ACTIONS(5176), + [anon_sym_BSLASHNotecite] = ACTIONS(5176), + [anon_sym_BSLASHpnotecite] = ACTIONS(5176), + [anon_sym_BSLASHPnotecite] = ACTIONS(5176), + [anon_sym_BSLASHfnotecite] = ACTIONS(5176), + [anon_sym_BSLASHlabel] = ACTIONS(5176), + [anon_sym_BSLASHref] = ACTIONS(5176), + [anon_sym_BSLASHeqref] = ACTIONS(5176), + [anon_sym_BSLASHvref] = ACTIONS(5176), + [anon_sym_BSLASHVref] = ACTIONS(5176), + [anon_sym_BSLASHautoref] = ACTIONS(5176), + [anon_sym_BSLASHpageref] = ACTIONS(5176), + [anon_sym_BSLASHcref] = ACTIONS(5176), + [anon_sym_BSLASHCref] = ACTIONS(5176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnameCref] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5176), + [anon_sym_BSLASHlabelcref] = ACTIONS(5176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange] = ACTIONS(5176), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHCrefrange] = ACTIONS(5176), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5174), + [anon_sym_BSLASHnewlabel] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand] = ACTIONS(5176), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5176), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5176), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5174), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5176), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdef] = ACTIONS(5176), + [anon_sym_BSLASHlet] = ACTIONS(5176), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5176), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5176), + [anon_sym_BSLASHgls] = ACTIONS(5176), + [anon_sym_BSLASHGls] = ACTIONS(5176), + [anon_sym_BSLASHGLS] = ACTIONS(5176), + [anon_sym_BSLASHglspl] = ACTIONS(5176), + [anon_sym_BSLASHGlspl] = ACTIONS(5176), + [anon_sym_BSLASHGLSpl] = ACTIONS(5176), + [anon_sym_BSLASHglsdisp] = ACTIONS(5176), + [anon_sym_BSLASHglslink] = ACTIONS(5176), + [anon_sym_BSLASHglstext] = ACTIONS(5176), + [anon_sym_BSLASHGlstext] = ACTIONS(5176), + [anon_sym_BSLASHGLStext] = ACTIONS(5176), + [anon_sym_BSLASHglsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5176), + [anon_sym_BSLASHglsplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSplural] = ACTIONS(5176), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5176), + [anon_sym_BSLASHglsname] = ACTIONS(5176), + [anon_sym_BSLASHGlsname] = ACTIONS(5176), + [anon_sym_BSLASHGLSname] = ACTIONS(5176), + [anon_sym_BSLASHglssymbol] = ACTIONS(5176), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5176), + [anon_sym_BSLASHglsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5176), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5176), + [anon_sym_BSLASHglsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5176), + [anon_sym_BSLASHglsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5176), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5176), + [anon_sym_BSLASHglsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5176), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5176), + [anon_sym_BSLASHglsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5176), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5176), + [anon_sym_BSLASHnewacronym] = ACTIONS(5176), + [anon_sym_BSLASHacrshort] = ACTIONS(5176), + [anon_sym_BSLASHAcrshort] = ACTIONS(5176), + [anon_sym_BSLASHACRshort] = ACTIONS(5176), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5176), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5176), + [anon_sym_BSLASHacrlong] = ACTIONS(5176), + [anon_sym_BSLASHAcrlong] = ACTIONS(5176), + [anon_sym_BSLASHACRlong] = ACTIONS(5176), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5176), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5176), + [anon_sym_BSLASHacrfull] = ACTIONS(5176), + [anon_sym_BSLASHAcrfull] = ACTIONS(5176), + [anon_sym_BSLASHACRfull] = ACTIONS(5176), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5176), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5176), + [anon_sym_BSLASHacs] = ACTIONS(5176), + [anon_sym_BSLASHAcs] = ACTIONS(5176), + [anon_sym_BSLASHacsp] = ACTIONS(5176), + [anon_sym_BSLASHAcsp] = ACTIONS(5176), + [anon_sym_BSLASHacl] = ACTIONS(5176), + [anon_sym_BSLASHAcl] = ACTIONS(5176), + [anon_sym_BSLASHaclp] = ACTIONS(5176), + [anon_sym_BSLASHAclp] = ACTIONS(5176), + [anon_sym_BSLASHacf] = ACTIONS(5176), + [anon_sym_BSLASHAcf] = ACTIONS(5176), + [anon_sym_BSLASHacfp] = ACTIONS(5176), + [anon_sym_BSLASHAcfp] = ACTIONS(5176), + [anon_sym_BSLASHac] = ACTIONS(5176), + [anon_sym_BSLASHAc] = ACTIONS(5176), + [anon_sym_BSLASHacp] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5176), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5176), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5176), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5176), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5176), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5174), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5176), + [anon_sym_BSLASHcolor] = ACTIONS(5176), + [anon_sym_BSLASHcolorbox] = ACTIONS(5176), + [anon_sym_BSLASHtextcolor] = ACTIONS(5176), + [anon_sym_BSLASHpagecolor] = ACTIONS(5176), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5176), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5176), + [anon_sym_BSLASHtext] = ACTIONS(5176), + [anon_sym_BSLASHintertext] = ACTIONS(5176), + [anon_sym_shortintertext] = ACTIONS(5176), }, [1364] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5101), - [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), + [sym_command_name] = ACTIONS(5180), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5178), + [sym_word] = ACTIONS(5180), + [sym_placeholder] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym__] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_SQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5178), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5178), + [anon_sym_BSLASHbegin] = ACTIONS(5180), + [anon_sym_BSLASHusepackage] = ACTIONS(5180), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5180), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5180), + [anon_sym_BSLASHinclude] = ACTIONS(5180), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5180), + [anon_sym_BSLASHinput] = ACTIONS(5180), + [anon_sym_BSLASHsubfile] = ACTIONS(5180), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5180), + [anon_sym_BSLASHbibliography] = ACTIONS(5180), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5180), + [anon_sym_BSLASHincludesvg] = ACTIONS(5180), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5180), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5180), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5180), + [anon_sym_BSLASHimport] = ACTIONS(5180), + [anon_sym_BSLASHsubimport] = ACTIONS(5180), + [anon_sym_BSLASHinputfrom] = ACTIONS(5180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5180), + [anon_sym_BSLASHincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5180), + [anon_sym_BSLASHcaption] = ACTIONS(5180), + [anon_sym_BSLASHcite] = ACTIONS(5180), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCite] = ACTIONS(5180), + [anon_sym_BSLASHnocite] = ACTIONS(5180), + [anon_sym_BSLASHcitet] = ACTIONS(5180), + [anon_sym_BSLASHcitep] = ACTIONS(5180), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteauthor] = ACTIONS(5180), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5180), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitetitle] = ACTIONS(5180), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteyear] = ACTIONS(5180), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5178), + [anon_sym_BSLASHcitedate] = ACTIONS(5180), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5178), + [anon_sym_BSLASHciteurl] = ACTIONS(5180), + [anon_sym_BSLASHfullcite] = ACTIONS(5180), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5180), + [anon_sym_BSLASHcitealt] = ACTIONS(5180), + [anon_sym_BSLASHcitealp] = ACTIONS(5180), + [anon_sym_BSLASHcitetext] = ACTIONS(5180), + [anon_sym_BSLASHparencite] = ACTIONS(5180), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHParencite] = ACTIONS(5180), + [anon_sym_BSLASHfootcite] = ACTIONS(5180), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5180), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5180), + [anon_sym_BSLASHtextcite] = ACTIONS(5180), + [anon_sym_BSLASHTextcite] = ACTIONS(5180), + [anon_sym_BSLASHsmartcite] = ACTIONS(5180), + [anon_sym_BSLASHSmartcite] = ACTIONS(5180), + [anon_sym_BSLASHsupercite] = ACTIONS(5180), + [anon_sym_BSLASHautocite] = ACTIONS(5180), + [anon_sym_BSLASHAutocite] = ACTIONS(5180), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5178), + [anon_sym_BSLASHvolcite] = ACTIONS(5180), + [anon_sym_BSLASHVolcite] = ACTIONS(5180), + [anon_sym_BSLASHpvolcite] = ACTIONS(5180), + [anon_sym_BSLASHPvolcite] = ACTIONS(5180), + [anon_sym_BSLASHfvolcite] = ACTIONS(5180), + [anon_sym_BSLASHftvolcite] = ACTIONS(5180), + [anon_sym_BSLASHsvolcite] = ACTIONS(5180), + [anon_sym_BSLASHSvolcite] = ACTIONS(5180), + [anon_sym_BSLASHtvolcite] = ACTIONS(5180), + [anon_sym_BSLASHTvolcite] = ACTIONS(5180), + [anon_sym_BSLASHavolcite] = ACTIONS(5180), + [anon_sym_BSLASHAvolcite] = ACTIONS(5180), + [anon_sym_BSLASHnotecite] = ACTIONS(5180), + [anon_sym_BSLASHNotecite] = ACTIONS(5180), + [anon_sym_BSLASHpnotecite] = ACTIONS(5180), + [anon_sym_BSLASHPnotecite] = ACTIONS(5180), + [anon_sym_BSLASHfnotecite] = ACTIONS(5180), + [anon_sym_BSLASHlabel] = ACTIONS(5180), + [anon_sym_BSLASHref] = ACTIONS(5180), + [anon_sym_BSLASHeqref] = ACTIONS(5180), + [anon_sym_BSLASHvref] = ACTIONS(5180), + [anon_sym_BSLASHVref] = ACTIONS(5180), + [anon_sym_BSLASHautoref] = ACTIONS(5180), + [anon_sym_BSLASHpageref] = ACTIONS(5180), + [anon_sym_BSLASHcref] = ACTIONS(5180), + [anon_sym_BSLASHCref] = ACTIONS(5180), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnameCref] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5180), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5180), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5180), + [anon_sym_BSLASHlabelcref] = ACTIONS(5180), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange] = ACTIONS(5180), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHCrefrange] = ACTIONS(5180), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5178), + [anon_sym_BSLASHnewlabel] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand] = ACTIONS(5180), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5180), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5180), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5178), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5180), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdef] = ACTIONS(5180), + [anon_sym_BSLASHlet] = ACTIONS(5180), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5180), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5180), + [anon_sym_BSLASHgls] = ACTIONS(5180), + [anon_sym_BSLASHGls] = ACTIONS(5180), + [anon_sym_BSLASHGLS] = ACTIONS(5180), + [anon_sym_BSLASHglspl] = ACTIONS(5180), + [anon_sym_BSLASHGlspl] = ACTIONS(5180), + [anon_sym_BSLASHGLSpl] = ACTIONS(5180), + [anon_sym_BSLASHglsdisp] = ACTIONS(5180), + [anon_sym_BSLASHglslink] = ACTIONS(5180), + [anon_sym_BSLASHglstext] = ACTIONS(5180), + [anon_sym_BSLASHGlstext] = ACTIONS(5180), + [anon_sym_BSLASHGLStext] = ACTIONS(5180), + [anon_sym_BSLASHglsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5180), + [anon_sym_BSLASHglsplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSplural] = ACTIONS(5180), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5180), + [anon_sym_BSLASHglsname] = ACTIONS(5180), + [anon_sym_BSLASHGlsname] = ACTIONS(5180), + [anon_sym_BSLASHGLSname] = ACTIONS(5180), + [anon_sym_BSLASHglssymbol] = ACTIONS(5180), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5180), + [anon_sym_BSLASHglsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5180), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5180), + [anon_sym_BSLASHglsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5180), + [anon_sym_BSLASHglsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5180), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5180), + [anon_sym_BSLASHglsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5180), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5180), + [anon_sym_BSLASHglsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5180), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5180), + [anon_sym_BSLASHnewacronym] = ACTIONS(5180), + [anon_sym_BSLASHacrshort] = ACTIONS(5180), + [anon_sym_BSLASHAcrshort] = ACTIONS(5180), + [anon_sym_BSLASHACRshort] = ACTIONS(5180), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5180), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5180), + [anon_sym_BSLASHacrlong] = ACTIONS(5180), + [anon_sym_BSLASHAcrlong] = ACTIONS(5180), + [anon_sym_BSLASHACRlong] = ACTIONS(5180), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5180), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5180), + [anon_sym_BSLASHacrfull] = ACTIONS(5180), + [anon_sym_BSLASHAcrfull] = ACTIONS(5180), + [anon_sym_BSLASHACRfull] = ACTIONS(5180), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5180), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5180), + [anon_sym_BSLASHacs] = ACTIONS(5180), + [anon_sym_BSLASHAcs] = ACTIONS(5180), + [anon_sym_BSLASHacsp] = ACTIONS(5180), + [anon_sym_BSLASHAcsp] = ACTIONS(5180), + [anon_sym_BSLASHacl] = ACTIONS(5180), + [anon_sym_BSLASHAcl] = ACTIONS(5180), + [anon_sym_BSLASHaclp] = ACTIONS(5180), + [anon_sym_BSLASHAclp] = ACTIONS(5180), + [anon_sym_BSLASHacf] = ACTIONS(5180), + [anon_sym_BSLASHAcf] = ACTIONS(5180), + [anon_sym_BSLASHacfp] = ACTIONS(5180), + [anon_sym_BSLASHAcfp] = ACTIONS(5180), + [anon_sym_BSLASHac] = ACTIONS(5180), + [anon_sym_BSLASHAc] = ACTIONS(5180), + [anon_sym_BSLASHacp] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5180), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5180), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5180), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5180), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5180), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5178), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5180), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5180), + [anon_sym_BSLASHcolor] = ACTIONS(5180), + [anon_sym_BSLASHcolorbox] = ACTIONS(5180), + [anon_sym_BSLASHtextcolor] = ACTIONS(5180), + [anon_sym_BSLASHpagecolor] = ACTIONS(5180), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5180), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5180), + [anon_sym_BSLASHtext] = ACTIONS(5180), + [anon_sym_BSLASHintertext] = ACTIONS(5180), + [anon_sym_shortintertext] = ACTIONS(5180), }, [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_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_BSLASHdeclaretheorem] = ACTIONS(5105), - [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), + [sym_command_name] = ACTIONS(5184), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [sym_word] = ACTIONS(5184), + [sym_placeholder] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym__] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5182), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5182), + [anon_sym_BSLASHbegin] = ACTIONS(5184), + [anon_sym_BSLASHusepackage] = ACTIONS(5184), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5184), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5184), + [anon_sym_BSLASHinclude] = ACTIONS(5184), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5184), + [anon_sym_BSLASHinput] = ACTIONS(5184), + [anon_sym_BSLASHsubfile] = ACTIONS(5184), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5184), + [anon_sym_BSLASHbibliography] = ACTIONS(5184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5184), + [anon_sym_BSLASHincludesvg] = ACTIONS(5184), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5184), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5184), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5184), + [anon_sym_BSLASHimport] = ACTIONS(5184), + [anon_sym_BSLASHsubimport] = ACTIONS(5184), + [anon_sym_BSLASHinputfrom] = ACTIONS(5184), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5184), + [anon_sym_BSLASHincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5184), + [anon_sym_BSLASHcaption] = ACTIONS(5184), + [anon_sym_BSLASHcite] = ACTIONS(5184), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCite] = ACTIONS(5184), + [anon_sym_BSLASHnocite] = ACTIONS(5184), + [anon_sym_BSLASHcitet] = ACTIONS(5184), + [anon_sym_BSLASHcitep] = ACTIONS(5184), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteauthor] = ACTIONS(5184), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5184), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitetitle] = ACTIONS(5184), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteyear] = ACTIONS(5184), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5182), + [anon_sym_BSLASHcitedate] = ACTIONS(5184), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5182), + [anon_sym_BSLASHciteurl] = ACTIONS(5184), + [anon_sym_BSLASHfullcite] = ACTIONS(5184), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5184), + [anon_sym_BSLASHcitealt] = ACTIONS(5184), + [anon_sym_BSLASHcitealp] = ACTIONS(5184), + [anon_sym_BSLASHcitetext] = ACTIONS(5184), + [anon_sym_BSLASHparencite] = ACTIONS(5184), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHParencite] = ACTIONS(5184), + [anon_sym_BSLASHfootcite] = ACTIONS(5184), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5184), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5184), + [anon_sym_BSLASHtextcite] = ACTIONS(5184), + [anon_sym_BSLASHTextcite] = ACTIONS(5184), + [anon_sym_BSLASHsmartcite] = ACTIONS(5184), + [anon_sym_BSLASHSmartcite] = ACTIONS(5184), + [anon_sym_BSLASHsupercite] = ACTIONS(5184), + [anon_sym_BSLASHautocite] = ACTIONS(5184), + [anon_sym_BSLASHAutocite] = ACTIONS(5184), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5182), + [anon_sym_BSLASHvolcite] = ACTIONS(5184), + [anon_sym_BSLASHVolcite] = ACTIONS(5184), + [anon_sym_BSLASHpvolcite] = ACTIONS(5184), + [anon_sym_BSLASHPvolcite] = ACTIONS(5184), + [anon_sym_BSLASHfvolcite] = ACTIONS(5184), + [anon_sym_BSLASHftvolcite] = ACTIONS(5184), + [anon_sym_BSLASHsvolcite] = ACTIONS(5184), + [anon_sym_BSLASHSvolcite] = ACTIONS(5184), + [anon_sym_BSLASHtvolcite] = ACTIONS(5184), + [anon_sym_BSLASHTvolcite] = ACTIONS(5184), + [anon_sym_BSLASHavolcite] = ACTIONS(5184), + [anon_sym_BSLASHAvolcite] = ACTIONS(5184), + [anon_sym_BSLASHnotecite] = ACTIONS(5184), + [anon_sym_BSLASHNotecite] = ACTIONS(5184), + [anon_sym_BSLASHpnotecite] = ACTIONS(5184), + [anon_sym_BSLASHPnotecite] = ACTIONS(5184), + [anon_sym_BSLASHfnotecite] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5184), + [anon_sym_BSLASHref] = ACTIONS(5184), + [anon_sym_BSLASHeqref] = ACTIONS(5184), + [anon_sym_BSLASHvref] = ACTIONS(5184), + [anon_sym_BSLASHVref] = ACTIONS(5184), + [anon_sym_BSLASHautoref] = ACTIONS(5184), + [anon_sym_BSLASHpageref] = ACTIONS(5184), + [anon_sym_BSLASHcref] = ACTIONS(5184), + [anon_sym_BSLASHCref] = ACTIONS(5184), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnameCref] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5184), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5184), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5184), + [anon_sym_BSLASHlabelcref] = ACTIONS(5184), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange] = ACTIONS(5184), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHCrefrange] = ACTIONS(5184), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5182), + [anon_sym_BSLASHnewlabel] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand] = ACTIONS(5184), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5184), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5184), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5182), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5184), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdef] = ACTIONS(5184), + [anon_sym_BSLASHlet] = ACTIONS(5184), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5184), + [anon_sym_BSLASHgls] = ACTIONS(5184), + [anon_sym_BSLASHGls] = ACTIONS(5184), + [anon_sym_BSLASHGLS] = ACTIONS(5184), + [anon_sym_BSLASHglspl] = ACTIONS(5184), + [anon_sym_BSLASHGlspl] = ACTIONS(5184), + [anon_sym_BSLASHGLSpl] = ACTIONS(5184), + [anon_sym_BSLASHglsdisp] = ACTIONS(5184), + [anon_sym_BSLASHglslink] = ACTIONS(5184), + [anon_sym_BSLASHglstext] = ACTIONS(5184), + [anon_sym_BSLASHGlstext] = ACTIONS(5184), + [anon_sym_BSLASHGLStext] = ACTIONS(5184), + [anon_sym_BSLASHglsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5184), + [anon_sym_BSLASHglsplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSplural] = ACTIONS(5184), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5184), + [anon_sym_BSLASHglsname] = ACTIONS(5184), + [anon_sym_BSLASHGlsname] = ACTIONS(5184), + [anon_sym_BSLASHGLSname] = ACTIONS(5184), + [anon_sym_BSLASHglssymbol] = ACTIONS(5184), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5184), + [anon_sym_BSLASHglsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5184), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5184), + [anon_sym_BSLASHglsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5184), + [anon_sym_BSLASHglsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5184), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5184), + [anon_sym_BSLASHglsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5184), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5184), + [anon_sym_BSLASHglsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5184), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5184), + [anon_sym_BSLASHnewacronym] = ACTIONS(5184), + [anon_sym_BSLASHacrshort] = ACTIONS(5184), + [anon_sym_BSLASHAcrshort] = ACTIONS(5184), + [anon_sym_BSLASHACRshort] = ACTIONS(5184), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5184), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5184), + [anon_sym_BSLASHacrlong] = ACTIONS(5184), + [anon_sym_BSLASHAcrlong] = ACTIONS(5184), + [anon_sym_BSLASHACRlong] = ACTIONS(5184), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5184), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5184), + [anon_sym_BSLASHacrfull] = ACTIONS(5184), + [anon_sym_BSLASHAcrfull] = ACTIONS(5184), + [anon_sym_BSLASHACRfull] = ACTIONS(5184), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5184), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5184), + [anon_sym_BSLASHacs] = ACTIONS(5184), + [anon_sym_BSLASHAcs] = ACTIONS(5184), + [anon_sym_BSLASHacsp] = ACTIONS(5184), + [anon_sym_BSLASHAcsp] = ACTIONS(5184), + [anon_sym_BSLASHacl] = ACTIONS(5184), + [anon_sym_BSLASHAcl] = ACTIONS(5184), + [anon_sym_BSLASHaclp] = ACTIONS(5184), + [anon_sym_BSLASHAclp] = ACTIONS(5184), + [anon_sym_BSLASHacf] = ACTIONS(5184), + [anon_sym_BSLASHAcf] = ACTIONS(5184), + [anon_sym_BSLASHacfp] = ACTIONS(5184), + [anon_sym_BSLASHAcfp] = ACTIONS(5184), + [anon_sym_BSLASHac] = ACTIONS(5184), + [anon_sym_BSLASHAc] = ACTIONS(5184), + [anon_sym_BSLASHacp] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5184), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5184), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5184), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5184), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5184), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5182), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5184), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5184), + [anon_sym_BSLASHcolor] = ACTIONS(5184), + [anon_sym_BSLASHcolorbox] = ACTIONS(5184), + [anon_sym_BSLASHtextcolor] = ACTIONS(5184), + [anon_sym_BSLASHpagecolor] = ACTIONS(5184), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5184), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5184), + [anon_sym_BSLASHtext] = ACTIONS(5184), + [anon_sym_BSLASHintertext] = ACTIONS(5184), + [anon_sym_shortintertext] = ACTIONS(5184), }, [1366] = { - [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_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASHbegin] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [1367] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASHbegin] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [1368] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASHbegin] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASHbegin] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [1369] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [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(5319), - [sym_placeholder] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [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(5321), - [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(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [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(5321), - [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(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5319), - [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), + [sym_command_name] = ACTIONS(5398), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [sym_word] = ACTIONS(5398), + [sym_placeholder] = ACTIONS(5400), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym__] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_SQUOTE] = ACTIONS(5398), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5400), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5400), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5400), + [anon_sym_BSLASHbegin] = ACTIONS(5398), + [anon_sym_BSLASHusepackage] = ACTIONS(5398), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5398), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5398), + [anon_sym_BSLASHinclude] = ACTIONS(5398), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5398), + [anon_sym_BSLASHinput] = ACTIONS(5398), + [anon_sym_BSLASHsubfile] = ACTIONS(5398), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5398), + [anon_sym_BSLASHbibliography] = ACTIONS(5398), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5398), + [anon_sym_BSLASHincludesvg] = ACTIONS(5398), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5398), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5398), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5398), + [anon_sym_BSLASHimport] = ACTIONS(5398), + [anon_sym_BSLASHsubimport] = ACTIONS(5398), + [anon_sym_BSLASHinputfrom] = ACTIONS(5398), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5398), + [anon_sym_BSLASHincludefrom] = ACTIONS(5398), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5398), + [anon_sym_BSLASHcaption] = ACTIONS(5398), + [anon_sym_BSLASHcite] = ACTIONS(5398), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCite] = ACTIONS(5398), + [anon_sym_BSLASHnocite] = ACTIONS(5398), + [anon_sym_BSLASHcitet] = ACTIONS(5398), + [anon_sym_BSLASHcitep] = ACTIONS(5398), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteauthor] = ACTIONS(5398), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5398), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitetitle] = ACTIONS(5398), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteyear] = ACTIONS(5398), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitedate] = ACTIONS(5398), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteurl] = ACTIONS(5398), + [anon_sym_BSLASHfullcite] = ACTIONS(5398), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5398), + [anon_sym_BSLASHcitealt] = ACTIONS(5398), + [anon_sym_BSLASHcitealp] = ACTIONS(5398), + [anon_sym_BSLASHcitetext] = ACTIONS(5398), + [anon_sym_BSLASHparencite] = ACTIONS(5398), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHParencite] = ACTIONS(5398), + [anon_sym_BSLASHfootcite] = ACTIONS(5398), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5398), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5398), + [anon_sym_BSLASHtextcite] = ACTIONS(5398), + [anon_sym_BSLASHTextcite] = ACTIONS(5398), + [anon_sym_BSLASHsmartcite] = ACTIONS(5398), + [anon_sym_BSLASHSmartcite] = ACTIONS(5398), + [anon_sym_BSLASHsupercite] = ACTIONS(5398), + [anon_sym_BSLASHautocite] = ACTIONS(5398), + [anon_sym_BSLASHAutocite] = ACTIONS(5398), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHvolcite] = ACTIONS(5398), + [anon_sym_BSLASHVolcite] = ACTIONS(5398), + [anon_sym_BSLASHpvolcite] = ACTIONS(5398), + [anon_sym_BSLASHPvolcite] = ACTIONS(5398), + [anon_sym_BSLASHfvolcite] = ACTIONS(5398), + [anon_sym_BSLASHftvolcite] = ACTIONS(5398), + [anon_sym_BSLASHsvolcite] = ACTIONS(5398), + [anon_sym_BSLASHSvolcite] = ACTIONS(5398), + [anon_sym_BSLASHtvolcite] = ACTIONS(5398), + [anon_sym_BSLASHTvolcite] = ACTIONS(5398), + [anon_sym_BSLASHavolcite] = ACTIONS(5398), + [anon_sym_BSLASHAvolcite] = ACTIONS(5398), + [anon_sym_BSLASHnotecite] = ACTIONS(5398), + [anon_sym_BSLASHNotecite] = ACTIONS(5398), + [anon_sym_BSLASHpnotecite] = ACTIONS(5398), + [anon_sym_BSLASHPnotecite] = ACTIONS(5398), + [anon_sym_BSLASHfnotecite] = ACTIONS(5398), + [anon_sym_BSLASHlabel] = ACTIONS(5398), + [anon_sym_BSLASHref] = ACTIONS(5398), + [anon_sym_BSLASHeqref] = ACTIONS(5398), + [anon_sym_BSLASHvref] = ACTIONS(5398), + [anon_sym_BSLASHVref] = ACTIONS(5398), + [anon_sym_BSLASHautoref] = ACTIONS(5398), + [anon_sym_BSLASHpageref] = ACTIONS(5398), + [anon_sym_BSLASHcref] = ACTIONS(5398), + [anon_sym_BSLASHCref] = ACTIONS(5398), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5400), + [anon_sym_BSLASHnamecref] = ACTIONS(5398), + [anon_sym_BSLASHnameCref] = ACTIONS(5398), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5398), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5398), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5398), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5398), + [anon_sym_BSLASHlabelcref] = ACTIONS(5398), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5398), + [anon_sym_BSLASHcrefrange] = ACTIONS(5398), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCrefrange] = ACTIONS(5398), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5400), + [anon_sym_BSLASHnewlabel] = ACTIONS(5398), + [anon_sym_BSLASHnewcommand] = ACTIONS(5398), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5398), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5398), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5398), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdef] = ACTIONS(5398), + [anon_sym_BSLASHlet] = ACTIONS(5398), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5398), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5398), + [anon_sym_BSLASHgls] = ACTIONS(5398), + [anon_sym_BSLASHGls] = ACTIONS(5398), + [anon_sym_BSLASHGLS] = ACTIONS(5398), + [anon_sym_BSLASHglspl] = ACTIONS(5398), + [anon_sym_BSLASHGlspl] = ACTIONS(5398), + [anon_sym_BSLASHGLSpl] = ACTIONS(5398), + [anon_sym_BSLASHglsdisp] = ACTIONS(5398), + [anon_sym_BSLASHglslink] = ACTIONS(5398), + [anon_sym_BSLASHglstext] = ACTIONS(5398), + [anon_sym_BSLASHGlstext] = ACTIONS(5398), + [anon_sym_BSLASHGLStext] = ACTIONS(5398), + [anon_sym_BSLASHglsfirst] = ACTIONS(5398), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5398), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5398), + [anon_sym_BSLASHglsplural] = ACTIONS(5398), + [anon_sym_BSLASHGlsplural] = ACTIONS(5398), + [anon_sym_BSLASHGLSplural] = ACTIONS(5398), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHglsname] = ACTIONS(5398), + [anon_sym_BSLASHGlsname] = ACTIONS(5398), + [anon_sym_BSLASHGLSname] = ACTIONS(5398), + [anon_sym_BSLASHglssymbol] = ACTIONS(5398), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5398), + [anon_sym_BSLASHglsdesc] = ACTIONS(5398), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5398), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5398), + [anon_sym_BSLASHglsuseri] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5398), + [anon_sym_BSLASHglsuserii] = ACTIONS(5398), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5398), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5398), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5398), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5398), + [anon_sym_BSLASHglsuserv] = ACTIONS(5398), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5398), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5398), + [anon_sym_BSLASHglsuservi] = ACTIONS(5398), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5398), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5398), + [anon_sym_BSLASHnewacronym] = ACTIONS(5398), + [anon_sym_BSLASHacrshort] = ACTIONS(5398), + [anon_sym_BSLASHAcrshort] = ACTIONS(5398), + [anon_sym_BSLASHACRshort] = ACTIONS(5398), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5398), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5398), + [anon_sym_BSLASHacrlong] = ACTIONS(5398), + [anon_sym_BSLASHAcrlong] = ACTIONS(5398), + [anon_sym_BSLASHACRlong] = ACTIONS(5398), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5398), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5398), + [anon_sym_BSLASHacrfull] = ACTIONS(5398), + [anon_sym_BSLASHAcrfull] = ACTIONS(5398), + [anon_sym_BSLASHACRfull] = ACTIONS(5398), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5398), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5398), + [anon_sym_BSLASHacs] = ACTIONS(5398), + [anon_sym_BSLASHAcs] = ACTIONS(5398), + [anon_sym_BSLASHacsp] = ACTIONS(5398), + [anon_sym_BSLASHAcsp] = ACTIONS(5398), + [anon_sym_BSLASHacl] = ACTIONS(5398), + [anon_sym_BSLASHAcl] = ACTIONS(5398), + [anon_sym_BSLASHaclp] = ACTIONS(5398), + [anon_sym_BSLASHAclp] = ACTIONS(5398), + [anon_sym_BSLASHacf] = ACTIONS(5398), + [anon_sym_BSLASHAcf] = ACTIONS(5398), + [anon_sym_BSLASHacfp] = ACTIONS(5398), + [anon_sym_BSLASHAcfp] = ACTIONS(5398), + [anon_sym_BSLASHac] = ACTIONS(5398), + [anon_sym_BSLASHAc] = ACTIONS(5398), + [anon_sym_BSLASHacp] = ACTIONS(5398), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5398), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5398), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5398), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5398), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5398), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5398), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5398), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5398), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5398), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5398), + [anon_sym_BSLASHcolor] = ACTIONS(5398), + [anon_sym_BSLASHcolorbox] = ACTIONS(5398), + [anon_sym_BSLASHtextcolor] = ACTIONS(5398), + [anon_sym_BSLASHpagecolor] = ACTIONS(5398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5398), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5398), + [anon_sym_BSLASHtext] = ACTIONS(5398), + [anon_sym_BSLASHintertext] = ACTIONS(5398), + [anon_sym_shortintertext] = ACTIONS(5398), }, [1370] = { - [sym_command_name] = ACTIONS(5323), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [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(5323), - [sym_placeholder] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [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(5325), - [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(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [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(5325), - [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(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5323), - [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), + [sym_command_name] = ACTIONS(5402), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [sym_word] = ACTIONS(5402), + [sym_placeholder] = ACTIONS(5404), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym__] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_SQUOTE] = ACTIONS(5402), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5404), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5402), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5404), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5404), + [anon_sym_BSLASHbegin] = ACTIONS(5402), + [anon_sym_BSLASHusepackage] = ACTIONS(5402), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5402), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5402), + [anon_sym_BSLASHinclude] = ACTIONS(5402), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5402), + [anon_sym_BSLASHinput] = ACTIONS(5402), + [anon_sym_BSLASHsubfile] = ACTIONS(5402), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5402), + [anon_sym_BSLASHbibliography] = ACTIONS(5402), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5402), + [anon_sym_BSLASHincludesvg] = ACTIONS(5402), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5402), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5402), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5402), + [anon_sym_BSLASHimport] = ACTIONS(5402), + [anon_sym_BSLASHsubimport] = ACTIONS(5402), + [anon_sym_BSLASHinputfrom] = ACTIONS(5402), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5402), + [anon_sym_BSLASHincludefrom] = ACTIONS(5402), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5402), + [anon_sym_BSLASHcaption] = ACTIONS(5402), + [anon_sym_BSLASHcite] = ACTIONS(5402), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCite] = ACTIONS(5402), + [anon_sym_BSLASHnocite] = ACTIONS(5402), + [anon_sym_BSLASHcitet] = ACTIONS(5402), + [anon_sym_BSLASHcitep] = ACTIONS(5402), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteauthor] = ACTIONS(5402), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5402), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitetitle] = ACTIONS(5402), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteyear] = ACTIONS(5402), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitedate] = ACTIONS(5402), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteurl] = ACTIONS(5402), + [anon_sym_BSLASHfullcite] = ACTIONS(5402), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5402), + [anon_sym_BSLASHcitealt] = ACTIONS(5402), + [anon_sym_BSLASHcitealp] = ACTIONS(5402), + [anon_sym_BSLASHcitetext] = ACTIONS(5402), + [anon_sym_BSLASHparencite] = ACTIONS(5402), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHParencite] = ACTIONS(5402), + [anon_sym_BSLASHfootcite] = ACTIONS(5402), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5402), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5402), + [anon_sym_BSLASHtextcite] = ACTIONS(5402), + [anon_sym_BSLASHTextcite] = ACTIONS(5402), + [anon_sym_BSLASHsmartcite] = ACTIONS(5402), + [anon_sym_BSLASHSmartcite] = ACTIONS(5402), + [anon_sym_BSLASHsupercite] = ACTIONS(5402), + [anon_sym_BSLASHautocite] = ACTIONS(5402), + [anon_sym_BSLASHAutocite] = ACTIONS(5402), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHvolcite] = ACTIONS(5402), + [anon_sym_BSLASHVolcite] = ACTIONS(5402), + [anon_sym_BSLASHpvolcite] = ACTIONS(5402), + [anon_sym_BSLASHPvolcite] = ACTIONS(5402), + [anon_sym_BSLASHfvolcite] = ACTIONS(5402), + [anon_sym_BSLASHftvolcite] = ACTIONS(5402), + [anon_sym_BSLASHsvolcite] = ACTIONS(5402), + [anon_sym_BSLASHSvolcite] = ACTIONS(5402), + [anon_sym_BSLASHtvolcite] = ACTIONS(5402), + [anon_sym_BSLASHTvolcite] = ACTIONS(5402), + [anon_sym_BSLASHavolcite] = ACTIONS(5402), + [anon_sym_BSLASHAvolcite] = ACTIONS(5402), + [anon_sym_BSLASHnotecite] = ACTIONS(5402), + [anon_sym_BSLASHNotecite] = ACTIONS(5402), + [anon_sym_BSLASHpnotecite] = ACTIONS(5402), + [anon_sym_BSLASHPnotecite] = ACTIONS(5402), + [anon_sym_BSLASHfnotecite] = ACTIONS(5402), + [anon_sym_BSLASHlabel] = ACTIONS(5402), + [anon_sym_BSLASHref] = ACTIONS(5402), + [anon_sym_BSLASHeqref] = ACTIONS(5402), + [anon_sym_BSLASHvref] = ACTIONS(5402), + [anon_sym_BSLASHVref] = ACTIONS(5402), + [anon_sym_BSLASHautoref] = ACTIONS(5402), + [anon_sym_BSLASHpageref] = ACTIONS(5402), + [anon_sym_BSLASHcref] = ACTIONS(5402), + [anon_sym_BSLASHCref] = ACTIONS(5402), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5404), + [anon_sym_BSLASHnamecref] = ACTIONS(5402), + [anon_sym_BSLASHnameCref] = ACTIONS(5402), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5402), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5402), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5402), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5402), + [anon_sym_BSLASHlabelcref] = ACTIONS(5402), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5402), + [anon_sym_BSLASHcrefrange] = ACTIONS(5402), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCrefrange] = ACTIONS(5402), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5404), + [anon_sym_BSLASHnewlabel] = ACTIONS(5402), + [anon_sym_BSLASHnewcommand] = ACTIONS(5402), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5402), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5402), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5402), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdef] = ACTIONS(5402), + [anon_sym_BSLASHlet] = ACTIONS(5402), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5402), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5402), + [anon_sym_BSLASHgls] = ACTIONS(5402), + [anon_sym_BSLASHGls] = ACTIONS(5402), + [anon_sym_BSLASHGLS] = ACTIONS(5402), + [anon_sym_BSLASHglspl] = ACTIONS(5402), + [anon_sym_BSLASHGlspl] = ACTIONS(5402), + [anon_sym_BSLASHGLSpl] = ACTIONS(5402), + [anon_sym_BSLASHglsdisp] = ACTIONS(5402), + [anon_sym_BSLASHglslink] = ACTIONS(5402), + [anon_sym_BSLASHglstext] = ACTIONS(5402), + [anon_sym_BSLASHGlstext] = ACTIONS(5402), + [anon_sym_BSLASHGLStext] = ACTIONS(5402), + [anon_sym_BSLASHglsfirst] = ACTIONS(5402), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5402), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5402), + [anon_sym_BSLASHglsplural] = ACTIONS(5402), + [anon_sym_BSLASHGlsplural] = ACTIONS(5402), + [anon_sym_BSLASHGLSplural] = ACTIONS(5402), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHglsname] = ACTIONS(5402), + [anon_sym_BSLASHGlsname] = ACTIONS(5402), + [anon_sym_BSLASHGLSname] = ACTIONS(5402), + [anon_sym_BSLASHglssymbol] = ACTIONS(5402), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5402), + [anon_sym_BSLASHglsdesc] = ACTIONS(5402), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5402), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5402), + [anon_sym_BSLASHglsuseri] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5402), + [anon_sym_BSLASHglsuserii] = ACTIONS(5402), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5402), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5402), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5402), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5402), + [anon_sym_BSLASHglsuserv] = ACTIONS(5402), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5402), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5402), + [anon_sym_BSLASHglsuservi] = ACTIONS(5402), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5402), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5402), + [anon_sym_BSLASHnewacronym] = ACTIONS(5402), + [anon_sym_BSLASHacrshort] = ACTIONS(5402), + [anon_sym_BSLASHAcrshort] = ACTIONS(5402), + [anon_sym_BSLASHACRshort] = ACTIONS(5402), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5402), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5402), + [anon_sym_BSLASHacrlong] = ACTIONS(5402), + [anon_sym_BSLASHAcrlong] = ACTIONS(5402), + [anon_sym_BSLASHACRlong] = ACTIONS(5402), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5402), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5402), + [anon_sym_BSLASHacrfull] = ACTIONS(5402), + [anon_sym_BSLASHAcrfull] = ACTIONS(5402), + [anon_sym_BSLASHACRfull] = ACTIONS(5402), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5402), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5402), + [anon_sym_BSLASHacs] = ACTIONS(5402), + [anon_sym_BSLASHAcs] = ACTIONS(5402), + [anon_sym_BSLASHacsp] = ACTIONS(5402), + [anon_sym_BSLASHAcsp] = ACTIONS(5402), + [anon_sym_BSLASHacl] = ACTIONS(5402), + [anon_sym_BSLASHAcl] = ACTIONS(5402), + [anon_sym_BSLASHaclp] = ACTIONS(5402), + [anon_sym_BSLASHAclp] = ACTIONS(5402), + [anon_sym_BSLASHacf] = ACTIONS(5402), + [anon_sym_BSLASHAcf] = ACTIONS(5402), + [anon_sym_BSLASHacfp] = ACTIONS(5402), + [anon_sym_BSLASHAcfp] = ACTIONS(5402), + [anon_sym_BSLASHac] = ACTIONS(5402), + [anon_sym_BSLASHAc] = ACTIONS(5402), + [anon_sym_BSLASHacp] = ACTIONS(5402), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5402), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5402), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5402), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5402), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5402), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5402), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5402), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5402), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5402), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5402), + [anon_sym_BSLASHcolor] = ACTIONS(5402), + [anon_sym_BSLASHcolorbox] = ACTIONS(5402), + [anon_sym_BSLASHtextcolor] = ACTIONS(5402), + [anon_sym_BSLASHpagecolor] = ACTIONS(5402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5402), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5402), + [anon_sym_BSLASHtext] = ACTIONS(5402), + [anon_sym_BSLASHintertext] = ACTIONS(5402), + [anon_sym_shortintertext] = ACTIONS(5402), }, [1371] = { - [sym_command_name] = ACTIONS(5131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5129), - [sym_word] = ACTIONS(5131), - [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_DOLLAR_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), - [anon_sym_BSLASHbegin] = ACTIONS(5131), - [anon_sym_BSLASHusepackage] = ACTIONS(5131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), - [anon_sym_BSLASHinclude] = ACTIONS(5131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), - [anon_sym_BSLASHinput] = ACTIONS(5131), - [anon_sym_BSLASHsubfile] = ACTIONS(5131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), - [anon_sym_BSLASHbibliography] = ACTIONS(5131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), - [anon_sym_BSLASHincludesvg] = ACTIONS(5131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), - [anon_sym_BSLASHimport] = ACTIONS(5131), - [anon_sym_BSLASHsubimport] = ACTIONS(5131), - [anon_sym_BSLASHinputfrom] = ACTIONS(5131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), - [anon_sym_BSLASHincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), - [anon_sym_BSLASHcaption] = ACTIONS(5131), - [anon_sym_BSLASHcite] = ACTIONS(5131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCite] = ACTIONS(5131), - [anon_sym_BSLASHnocite] = ACTIONS(5131), - [anon_sym_BSLASHcitet] = ACTIONS(5131), - [anon_sym_BSLASHcitep] = ACTIONS(5131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor] = ACTIONS(5131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle] = ACTIONS(5131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteyear] = ACTIONS(5131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), - [anon_sym_BSLASHcitedate] = ACTIONS(5131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), - [anon_sym_BSLASHciteurl] = ACTIONS(5131), - [anon_sym_BSLASHfullcite] = ACTIONS(5131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), - [anon_sym_BSLASHcitealt] = ACTIONS(5131), - [anon_sym_BSLASHcitealp] = ACTIONS(5131), - [anon_sym_BSLASHcitetext] = ACTIONS(5131), - [anon_sym_BSLASHparencite] = ACTIONS(5131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHParencite] = ACTIONS(5131), - [anon_sym_BSLASHfootcite] = ACTIONS(5131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), - [anon_sym_BSLASHtextcite] = ACTIONS(5131), - [anon_sym_BSLASHTextcite] = ACTIONS(5131), - [anon_sym_BSLASHsmartcite] = ACTIONS(5131), - [anon_sym_BSLASHSmartcite] = ACTIONS(5131), - [anon_sym_BSLASHsupercite] = ACTIONS(5131), - [anon_sym_BSLASHautocite] = ACTIONS(5131), - [anon_sym_BSLASHAutocite] = ACTIONS(5131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), - [anon_sym_BSLASHvolcite] = ACTIONS(5131), - [anon_sym_BSLASHVolcite] = ACTIONS(5131), - [anon_sym_BSLASHpvolcite] = ACTIONS(5131), - [anon_sym_BSLASHPvolcite] = ACTIONS(5131), - [anon_sym_BSLASHfvolcite] = ACTIONS(5131), - [anon_sym_BSLASHftvolcite] = ACTIONS(5131), - [anon_sym_BSLASHsvolcite] = ACTIONS(5131), - [anon_sym_BSLASHSvolcite] = ACTIONS(5131), - [anon_sym_BSLASHtvolcite] = ACTIONS(5131), - [anon_sym_BSLASHTvolcite] = ACTIONS(5131), - [anon_sym_BSLASHavolcite] = ACTIONS(5131), - [anon_sym_BSLASHAvolcite] = ACTIONS(5131), - [anon_sym_BSLASHnotecite] = ACTIONS(5131), - [anon_sym_BSLASHNotecite] = ACTIONS(5131), - [anon_sym_BSLASHpnotecite] = ACTIONS(5131), - [anon_sym_BSLASHPnotecite] = ACTIONS(5131), - [anon_sym_BSLASHfnotecite] = ACTIONS(5131), - [anon_sym_BSLASHlabel] = ACTIONS(5131), - [anon_sym_BSLASHref] = ACTIONS(5131), - [anon_sym_BSLASHeqref] = ACTIONS(5131), - [anon_sym_BSLASHvref] = ACTIONS(5131), - [anon_sym_BSLASHVref] = ACTIONS(5131), - [anon_sym_BSLASHautoref] = ACTIONS(5131), - [anon_sym_BSLASHpageref] = ACTIONS(5131), - [anon_sym_BSLASHcref] = ACTIONS(5131), - [anon_sym_BSLASHCref] = ACTIONS(5131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnameCref] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), - [anon_sym_BSLASHlabelcref] = ACTIONS(5131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange] = ACTIONS(5131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange] = ACTIONS(5131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), - [anon_sym_BSLASHnewlabel] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand] = ACTIONS(5131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), - [anon_sym_BSLASHdef] = ACTIONS(5131), - [anon_sym_BSLASHlet] = ACTIONS(5131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), - [anon_sym_BSLASHgls] = ACTIONS(5131), - [anon_sym_BSLASHGls] = ACTIONS(5131), - [anon_sym_BSLASHGLS] = ACTIONS(5131), - [anon_sym_BSLASHglspl] = ACTIONS(5131), - [anon_sym_BSLASHGlspl] = ACTIONS(5131), - [anon_sym_BSLASHGLSpl] = ACTIONS(5131), - [anon_sym_BSLASHglsdisp] = ACTIONS(5131), - [anon_sym_BSLASHglslink] = ACTIONS(5131), - [anon_sym_BSLASHglstext] = ACTIONS(5131), - [anon_sym_BSLASHGlstext] = ACTIONS(5131), - [anon_sym_BSLASHGLStext] = ACTIONS(5131), - [anon_sym_BSLASHglsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), - [anon_sym_BSLASHglsplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSplural] = ACTIONS(5131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), - [anon_sym_BSLASHglsname] = ACTIONS(5131), - [anon_sym_BSLASHGlsname] = ACTIONS(5131), - [anon_sym_BSLASHGLSname] = ACTIONS(5131), - [anon_sym_BSLASHglssymbol] = ACTIONS(5131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), - [anon_sym_BSLASHglsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), - [anon_sym_BSLASHglsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), - [anon_sym_BSLASHglsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), - [anon_sym_BSLASHglsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), - [anon_sym_BSLASHglsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), - [anon_sym_BSLASHnewacronym] = ACTIONS(5131), - [anon_sym_BSLASHacrshort] = ACTIONS(5131), - [anon_sym_BSLASHAcrshort] = ACTIONS(5131), - [anon_sym_BSLASHACRshort] = ACTIONS(5131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), - [anon_sym_BSLASHacrlong] = ACTIONS(5131), - [anon_sym_BSLASHAcrlong] = ACTIONS(5131), - [anon_sym_BSLASHACRlong] = ACTIONS(5131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), - [anon_sym_BSLASHacrfull] = ACTIONS(5131), - [anon_sym_BSLASHAcrfull] = ACTIONS(5131), - [anon_sym_BSLASHACRfull] = ACTIONS(5131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), - [anon_sym_BSLASHacs] = ACTIONS(5131), - [anon_sym_BSLASHAcs] = ACTIONS(5131), - [anon_sym_BSLASHacsp] = ACTIONS(5131), - [anon_sym_BSLASHAcsp] = ACTIONS(5131), - [anon_sym_BSLASHacl] = ACTIONS(5131), - [anon_sym_BSLASHAcl] = ACTIONS(5131), - [anon_sym_BSLASHaclp] = ACTIONS(5131), - [anon_sym_BSLASHAclp] = ACTIONS(5131), - [anon_sym_BSLASHacf] = ACTIONS(5131), - [anon_sym_BSLASHAcf] = ACTIONS(5131), - [anon_sym_BSLASHacfp] = ACTIONS(5131), - [anon_sym_BSLASHAcfp] = ACTIONS(5131), - [anon_sym_BSLASHac] = ACTIONS(5131), - [anon_sym_BSLASHAc] = ACTIONS(5131), - [anon_sym_BSLASHacp] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), - [anon_sym_BSLASHcolor] = ACTIONS(5131), - [anon_sym_BSLASHcolorbox] = ACTIONS(5131), - [anon_sym_BSLASHtextcolor] = ACTIONS(5131), - [anon_sym_BSLASHpagecolor] = ACTIONS(5131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), - [anon_sym_BSLASHtext] = ACTIONS(5131), - [anon_sym_BSLASHintertext] = ACTIONS(5131), - [anon_sym_shortintertext] = ACTIONS(5131), + [sym_command_name] = ACTIONS(5210), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5208), + [sym_word] = ACTIONS(5210), + [sym_placeholder] = ACTIONS(5208), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym__] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5210), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_SQUOTE] = ACTIONS(5210), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5208), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5208), + [anon_sym_BSLASHbegin] = ACTIONS(5210), + [anon_sym_BSLASHusepackage] = ACTIONS(5210), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5210), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5210), + [anon_sym_BSLASHinclude] = ACTIONS(5210), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5210), + [anon_sym_BSLASHinput] = ACTIONS(5210), + [anon_sym_BSLASHsubfile] = ACTIONS(5210), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5210), + [anon_sym_BSLASHbibliography] = ACTIONS(5210), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5210), + [anon_sym_BSLASHincludesvg] = ACTIONS(5210), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5210), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5210), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5210), + [anon_sym_BSLASHimport] = ACTIONS(5210), + [anon_sym_BSLASHsubimport] = ACTIONS(5210), + [anon_sym_BSLASHinputfrom] = ACTIONS(5210), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5210), + [anon_sym_BSLASHincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5210), + [anon_sym_BSLASHcaption] = ACTIONS(5210), + [anon_sym_BSLASHcite] = ACTIONS(5210), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCite] = ACTIONS(5210), + [anon_sym_BSLASHnocite] = ACTIONS(5210), + [anon_sym_BSLASHcitet] = ACTIONS(5210), + [anon_sym_BSLASHcitep] = ACTIONS(5210), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteauthor] = ACTIONS(5210), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5210), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitetitle] = ACTIONS(5210), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteyear] = ACTIONS(5210), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5208), + [anon_sym_BSLASHcitedate] = ACTIONS(5210), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5208), + [anon_sym_BSLASHciteurl] = ACTIONS(5210), + [anon_sym_BSLASHfullcite] = ACTIONS(5210), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5210), + [anon_sym_BSLASHcitealt] = ACTIONS(5210), + [anon_sym_BSLASHcitealp] = ACTIONS(5210), + [anon_sym_BSLASHcitetext] = ACTIONS(5210), + [anon_sym_BSLASHparencite] = ACTIONS(5210), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHParencite] = ACTIONS(5210), + [anon_sym_BSLASHfootcite] = ACTIONS(5210), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5210), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5210), + [anon_sym_BSLASHtextcite] = ACTIONS(5210), + [anon_sym_BSLASHTextcite] = ACTIONS(5210), + [anon_sym_BSLASHsmartcite] = ACTIONS(5210), + [anon_sym_BSLASHSmartcite] = ACTIONS(5210), + [anon_sym_BSLASHsupercite] = ACTIONS(5210), + [anon_sym_BSLASHautocite] = ACTIONS(5210), + [anon_sym_BSLASHAutocite] = ACTIONS(5210), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5208), + [anon_sym_BSLASHvolcite] = ACTIONS(5210), + [anon_sym_BSLASHVolcite] = ACTIONS(5210), + [anon_sym_BSLASHpvolcite] = ACTIONS(5210), + [anon_sym_BSLASHPvolcite] = ACTIONS(5210), + [anon_sym_BSLASHfvolcite] = ACTIONS(5210), + [anon_sym_BSLASHftvolcite] = ACTIONS(5210), + [anon_sym_BSLASHsvolcite] = ACTIONS(5210), + [anon_sym_BSLASHSvolcite] = ACTIONS(5210), + [anon_sym_BSLASHtvolcite] = ACTIONS(5210), + [anon_sym_BSLASHTvolcite] = ACTIONS(5210), + [anon_sym_BSLASHavolcite] = ACTIONS(5210), + [anon_sym_BSLASHAvolcite] = ACTIONS(5210), + [anon_sym_BSLASHnotecite] = ACTIONS(5210), + [anon_sym_BSLASHNotecite] = ACTIONS(5210), + [anon_sym_BSLASHpnotecite] = ACTIONS(5210), + [anon_sym_BSLASHPnotecite] = ACTIONS(5210), + [anon_sym_BSLASHfnotecite] = ACTIONS(5210), + [anon_sym_BSLASHlabel] = ACTIONS(5210), + [anon_sym_BSLASHref] = ACTIONS(5210), + [anon_sym_BSLASHeqref] = ACTIONS(5210), + [anon_sym_BSLASHvref] = ACTIONS(5210), + [anon_sym_BSLASHVref] = ACTIONS(5210), + [anon_sym_BSLASHautoref] = ACTIONS(5210), + [anon_sym_BSLASHpageref] = ACTIONS(5210), + [anon_sym_BSLASHcref] = ACTIONS(5210), + [anon_sym_BSLASHCref] = ACTIONS(5210), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnameCref] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5210), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5210), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5210), + [anon_sym_BSLASHlabelcref] = ACTIONS(5210), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange] = ACTIONS(5210), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHCrefrange] = ACTIONS(5210), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5208), + [anon_sym_BSLASHnewlabel] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand] = ACTIONS(5210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdef] = ACTIONS(5210), + [anon_sym_BSLASHlet] = ACTIONS(5210), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5210), + [anon_sym_BSLASHgls] = ACTIONS(5210), + [anon_sym_BSLASHGls] = ACTIONS(5210), + [anon_sym_BSLASHGLS] = ACTIONS(5210), + [anon_sym_BSLASHglspl] = ACTIONS(5210), + [anon_sym_BSLASHGlspl] = ACTIONS(5210), + [anon_sym_BSLASHGLSpl] = ACTIONS(5210), + [anon_sym_BSLASHglsdisp] = ACTIONS(5210), + [anon_sym_BSLASHglslink] = ACTIONS(5210), + [anon_sym_BSLASHglstext] = ACTIONS(5210), + [anon_sym_BSLASHGlstext] = ACTIONS(5210), + [anon_sym_BSLASHGLStext] = ACTIONS(5210), + [anon_sym_BSLASHglsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5210), + [anon_sym_BSLASHglsplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSplural] = ACTIONS(5210), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5210), + [anon_sym_BSLASHglsname] = ACTIONS(5210), + [anon_sym_BSLASHGlsname] = ACTIONS(5210), + [anon_sym_BSLASHGLSname] = ACTIONS(5210), + [anon_sym_BSLASHglssymbol] = ACTIONS(5210), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5210), + [anon_sym_BSLASHglsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5210), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5210), + [anon_sym_BSLASHglsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5210), + [anon_sym_BSLASHglsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5210), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5210), + [anon_sym_BSLASHglsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5210), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5210), + [anon_sym_BSLASHglsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5210), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5210), + [anon_sym_BSLASHnewacronym] = ACTIONS(5210), + [anon_sym_BSLASHacrshort] = ACTIONS(5210), + [anon_sym_BSLASHAcrshort] = ACTIONS(5210), + [anon_sym_BSLASHACRshort] = ACTIONS(5210), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5210), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5210), + [anon_sym_BSLASHacrlong] = ACTIONS(5210), + [anon_sym_BSLASHAcrlong] = ACTIONS(5210), + [anon_sym_BSLASHACRlong] = ACTIONS(5210), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5210), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5210), + [anon_sym_BSLASHacrfull] = ACTIONS(5210), + [anon_sym_BSLASHAcrfull] = ACTIONS(5210), + [anon_sym_BSLASHACRfull] = ACTIONS(5210), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5210), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5210), + [anon_sym_BSLASHacs] = ACTIONS(5210), + [anon_sym_BSLASHAcs] = ACTIONS(5210), + [anon_sym_BSLASHacsp] = ACTIONS(5210), + [anon_sym_BSLASHAcsp] = ACTIONS(5210), + [anon_sym_BSLASHacl] = ACTIONS(5210), + [anon_sym_BSLASHAcl] = ACTIONS(5210), + [anon_sym_BSLASHaclp] = ACTIONS(5210), + [anon_sym_BSLASHAclp] = ACTIONS(5210), + [anon_sym_BSLASHacf] = ACTIONS(5210), + [anon_sym_BSLASHAcf] = ACTIONS(5210), + [anon_sym_BSLASHacfp] = ACTIONS(5210), + [anon_sym_BSLASHAcfp] = ACTIONS(5210), + [anon_sym_BSLASHac] = ACTIONS(5210), + [anon_sym_BSLASHAc] = ACTIONS(5210), + [anon_sym_BSLASHacp] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5210), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5210), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5210), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5210), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5210), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5208), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5210), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5210), + [anon_sym_BSLASHcolor] = ACTIONS(5210), + [anon_sym_BSLASHcolorbox] = ACTIONS(5210), + [anon_sym_BSLASHtextcolor] = ACTIONS(5210), + [anon_sym_BSLASHpagecolor] = ACTIONS(5210), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5210), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5210), + [anon_sym_BSLASHtext] = ACTIONS(5210), + [anon_sym_BSLASHintertext] = ACTIONS(5210), + [anon_sym_shortintertext] = ACTIONS(5210), }, [1372] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASHbegin] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASHbegin] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [1373] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASHbegin] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASHbegin] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [1374] = { - [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_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASHbegin] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [1375] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASHbegin] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASHbegin] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [1376] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASHbegin] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASHbegin] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [1377] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASHbegin] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [1378] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASHbegin] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASHbegin] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [1379] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASHbegin] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASHbegin] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [1380] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASHbegin] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [1381] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASHbegin] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [1382] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASHbegin] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASHbegin] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [1383] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASHbegin] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASHbegin] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [1384] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASHbegin] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [1385] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASHbegin] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [1386] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASHbegin] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASHbegin] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [1387] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASHbegin] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [1388] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASHbegin] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [1389] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5233), - [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), + [sym_command_name] = ACTIONS(5312), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5312), + [sym_placeholder] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5312), + [anon_sym_SLASH] = ACTIONS(5312), + [anon_sym_CARET] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_SQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5310), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5310), + [anon_sym_BSLASHbegin] = ACTIONS(5312), + [anon_sym_BSLASHusepackage] = ACTIONS(5312), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5312), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5312), + [anon_sym_BSLASHinclude] = ACTIONS(5312), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5312), + [anon_sym_BSLASHinput] = ACTIONS(5312), + [anon_sym_BSLASHsubfile] = ACTIONS(5312), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5312), + [anon_sym_BSLASHbibliography] = ACTIONS(5312), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5312), + [anon_sym_BSLASHincludesvg] = ACTIONS(5312), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5312), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5312), + [anon_sym_BSLASHimport] = ACTIONS(5312), + [anon_sym_BSLASHsubimport] = ACTIONS(5312), + [anon_sym_BSLASHinputfrom] = ACTIONS(5312), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5312), + [anon_sym_BSLASHincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5312), + [anon_sym_BSLASHcaption] = ACTIONS(5312), + [anon_sym_BSLASHcite] = ACTIONS(5312), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCite] = ACTIONS(5312), + [anon_sym_BSLASHnocite] = ACTIONS(5312), + [anon_sym_BSLASHcitet] = ACTIONS(5312), + [anon_sym_BSLASHcitep] = ACTIONS(5312), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteauthor] = ACTIONS(5312), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5312), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitetitle] = ACTIONS(5312), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteyear] = ACTIONS(5312), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5310), + [anon_sym_BSLASHcitedate] = ACTIONS(5312), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5310), + [anon_sym_BSLASHciteurl] = ACTIONS(5312), + [anon_sym_BSLASHfullcite] = ACTIONS(5312), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5312), + [anon_sym_BSLASHcitealt] = ACTIONS(5312), + [anon_sym_BSLASHcitealp] = ACTIONS(5312), + [anon_sym_BSLASHcitetext] = ACTIONS(5312), + [anon_sym_BSLASHparencite] = ACTIONS(5312), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHParencite] = ACTIONS(5312), + [anon_sym_BSLASHfootcite] = ACTIONS(5312), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5312), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5312), + [anon_sym_BSLASHtextcite] = ACTIONS(5312), + [anon_sym_BSLASHTextcite] = ACTIONS(5312), + [anon_sym_BSLASHsmartcite] = ACTIONS(5312), + [anon_sym_BSLASHSmartcite] = ACTIONS(5312), + [anon_sym_BSLASHsupercite] = ACTIONS(5312), + [anon_sym_BSLASHautocite] = ACTIONS(5312), + [anon_sym_BSLASHAutocite] = ACTIONS(5312), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5310), + [anon_sym_BSLASHvolcite] = ACTIONS(5312), + [anon_sym_BSLASHVolcite] = ACTIONS(5312), + [anon_sym_BSLASHpvolcite] = ACTIONS(5312), + [anon_sym_BSLASHPvolcite] = ACTIONS(5312), + [anon_sym_BSLASHfvolcite] = ACTIONS(5312), + [anon_sym_BSLASHftvolcite] = ACTIONS(5312), + [anon_sym_BSLASHsvolcite] = ACTIONS(5312), + [anon_sym_BSLASHSvolcite] = ACTIONS(5312), + [anon_sym_BSLASHtvolcite] = ACTIONS(5312), + [anon_sym_BSLASHTvolcite] = ACTIONS(5312), + [anon_sym_BSLASHavolcite] = ACTIONS(5312), + [anon_sym_BSLASHAvolcite] = ACTIONS(5312), + [anon_sym_BSLASHnotecite] = ACTIONS(5312), + [anon_sym_BSLASHNotecite] = ACTIONS(5312), + [anon_sym_BSLASHpnotecite] = ACTIONS(5312), + [anon_sym_BSLASHPnotecite] = ACTIONS(5312), + [anon_sym_BSLASHfnotecite] = ACTIONS(5312), + [anon_sym_BSLASHlabel] = ACTIONS(5312), + [anon_sym_BSLASHref] = ACTIONS(5312), + [anon_sym_BSLASHeqref] = ACTIONS(5312), + [anon_sym_BSLASHvref] = ACTIONS(5312), + [anon_sym_BSLASHVref] = ACTIONS(5312), + [anon_sym_BSLASHautoref] = ACTIONS(5312), + [anon_sym_BSLASHpageref] = ACTIONS(5312), + [anon_sym_BSLASHcref] = ACTIONS(5312), + [anon_sym_BSLASHCref] = ACTIONS(5312), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnameCref] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5312), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5312), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5312), + [anon_sym_BSLASHlabelcref] = ACTIONS(5312), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange] = ACTIONS(5312), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHCrefrange] = ACTIONS(5312), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5310), + [anon_sym_BSLASHnewlabel] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand] = ACTIONS(5312), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5312), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5312), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5310), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5312), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdef] = ACTIONS(5312), + [anon_sym_BSLASHlet] = ACTIONS(5312), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5312), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5312), + [anon_sym_BSLASHgls] = ACTIONS(5312), + [anon_sym_BSLASHGls] = ACTIONS(5312), + [anon_sym_BSLASHGLS] = ACTIONS(5312), + [anon_sym_BSLASHglspl] = ACTIONS(5312), + [anon_sym_BSLASHGlspl] = ACTIONS(5312), + [anon_sym_BSLASHGLSpl] = ACTIONS(5312), + [anon_sym_BSLASHglsdisp] = ACTIONS(5312), + [anon_sym_BSLASHglslink] = ACTIONS(5312), + [anon_sym_BSLASHglstext] = ACTIONS(5312), + [anon_sym_BSLASHGlstext] = ACTIONS(5312), + [anon_sym_BSLASHGLStext] = ACTIONS(5312), + [anon_sym_BSLASHglsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5312), + [anon_sym_BSLASHglsplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSplural] = ACTIONS(5312), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5312), + [anon_sym_BSLASHglsname] = ACTIONS(5312), + [anon_sym_BSLASHGlsname] = ACTIONS(5312), + [anon_sym_BSLASHGLSname] = ACTIONS(5312), + [anon_sym_BSLASHglssymbol] = ACTIONS(5312), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5312), + [anon_sym_BSLASHglsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5312), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5312), + [anon_sym_BSLASHglsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5312), + [anon_sym_BSLASHglsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5312), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5312), + [anon_sym_BSLASHglsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5312), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5312), + [anon_sym_BSLASHglsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5312), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5312), + [anon_sym_BSLASHnewacronym] = ACTIONS(5312), + [anon_sym_BSLASHacrshort] = ACTIONS(5312), + [anon_sym_BSLASHAcrshort] = ACTIONS(5312), + [anon_sym_BSLASHACRshort] = ACTIONS(5312), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5312), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5312), + [anon_sym_BSLASHacrlong] = ACTIONS(5312), + [anon_sym_BSLASHAcrlong] = ACTIONS(5312), + [anon_sym_BSLASHACRlong] = ACTIONS(5312), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5312), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5312), + [anon_sym_BSLASHacrfull] = ACTIONS(5312), + [anon_sym_BSLASHAcrfull] = ACTIONS(5312), + [anon_sym_BSLASHACRfull] = ACTIONS(5312), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5312), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5312), + [anon_sym_BSLASHacs] = ACTIONS(5312), + [anon_sym_BSLASHAcs] = ACTIONS(5312), + [anon_sym_BSLASHacsp] = ACTIONS(5312), + [anon_sym_BSLASHAcsp] = ACTIONS(5312), + [anon_sym_BSLASHacl] = ACTIONS(5312), + [anon_sym_BSLASHAcl] = ACTIONS(5312), + [anon_sym_BSLASHaclp] = ACTIONS(5312), + [anon_sym_BSLASHAclp] = ACTIONS(5312), + [anon_sym_BSLASHacf] = ACTIONS(5312), + [anon_sym_BSLASHAcf] = ACTIONS(5312), + [anon_sym_BSLASHacfp] = ACTIONS(5312), + [anon_sym_BSLASHAcfp] = ACTIONS(5312), + [anon_sym_BSLASHac] = ACTIONS(5312), + [anon_sym_BSLASHAc] = ACTIONS(5312), + [anon_sym_BSLASHacp] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5312), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5312), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5312), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5312), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5312), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5310), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5312), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5312), + [anon_sym_BSLASHcolor] = ACTIONS(5312), + [anon_sym_BSLASHcolorbox] = ACTIONS(5312), + [anon_sym_BSLASHtextcolor] = ACTIONS(5312), + [anon_sym_BSLASHpagecolor] = ACTIONS(5312), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5312), + [anon_sym_BSLASHtext] = ACTIONS(5312), + [anon_sym_BSLASHintertext] = ACTIONS(5312), + [anon_sym_shortintertext] = ACTIONS(5312), }, [1390] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5229), - [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), + [sym_command_name] = ACTIONS(5308), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_RPAREN] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_LBRACE] = ACTIONS(5306), + [sym_word] = ACTIONS(5308), + [sym_placeholder] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_SLASH] = ACTIONS(5308), + [anon_sym_CARET] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5308), + [anon_sym_GT] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_PIPE] = ACTIONS(5308), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_SQUOTE] = ACTIONS(5308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5306), + [anon_sym_DOLLAR] = ACTIONS(5308), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5306), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5306), + [anon_sym_BSLASHbegin] = ACTIONS(5308), + [anon_sym_BSLASHusepackage] = ACTIONS(5308), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5308), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5308), + [anon_sym_BSLASHinclude] = ACTIONS(5308), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5308), + [anon_sym_BSLASHinput] = ACTIONS(5308), + [anon_sym_BSLASHsubfile] = ACTIONS(5308), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5308), + [anon_sym_BSLASHbibliography] = ACTIONS(5308), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5308), + [anon_sym_BSLASHincludesvg] = ACTIONS(5308), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5308), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5308), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5308), + [anon_sym_BSLASHimport] = ACTIONS(5308), + [anon_sym_BSLASHsubimport] = ACTIONS(5308), + [anon_sym_BSLASHinputfrom] = ACTIONS(5308), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5308), + [anon_sym_BSLASHincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5308), + [anon_sym_BSLASHcaption] = ACTIONS(5308), + [anon_sym_BSLASHcite] = ACTIONS(5308), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCite] = ACTIONS(5308), + [anon_sym_BSLASHnocite] = ACTIONS(5308), + [anon_sym_BSLASHcitet] = ACTIONS(5308), + [anon_sym_BSLASHcitep] = ACTIONS(5308), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteauthor] = ACTIONS(5308), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5308), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitetitle] = ACTIONS(5308), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteyear] = ACTIONS(5308), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5306), + [anon_sym_BSLASHcitedate] = ACTIONS(5308), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5306), + [anon_sym_BSLASHciteurl] = ACTIONS(5308), + [anon_sym_BSLASHfullcite] = ACTIONS(5308), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5308), + [anon_sym_BSLASHcitealt] = ACTIONS(5308), + [anon_sym_BSLASHcitealp] = ACTIONS(5308), + [anon_sym_BSLASHcitetext] = ACTIONS(5308), + [anon_sym_BSLASHparencite] = ACTIONS(5308), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHParencite] = ACTIONS(5308), + [anon_sym_BSLASHfootcite] = ACTIONS(5308), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5308), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5308), + [anon_sym_BSLASHtextcite] = ACTIONS(5308), + [anon_sym_BSLASHTextcite] = ACTIONS(5308), + [anon_sym_BSLASHsmartcite] = ACTIONS(5308), + [anon_sym_BSLASHSmartcite] = ACTIONS(5308), + [anon_sym_BSLASHsupercite] = ACTIONS(5308), + [anon_sym_BSLASHautocite] = ACTIONS(5308), + [anon_sym_BSLASHAutocite] = ACTIONS(5308), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5306), + [anon_sym_BSLASHvolcite] = ACTIONS(5308), + [anon_sym_BSLASHVolcite] = ACTIONS(5308), + [anon_sym_BSLASHpvolcite] = ACTIONS(5308), + [anon_sym_BSLASHPvolcite] = ACTIONS(5308), + [anon_sym_BSLASHfvolcite] = ACTIONS(5308), + [anon_sym_BSLASHftvolcite] = ACTIONS(5308), + [anon_sym_BSLASHsvolcite] = ACTIONS(5308), + [anon_sym_BSLASHSvolcite] = ACTIONS(5308), + [anon_sym_BSLASHtvolcite] = ACTIONS(5308), + [anon_sym_BSLASHTvolcite] = ACTIONS(5308), + [anon_sym_BSLASHavolcite] = ACTIONS(5308), + [anon_sym_BSLASHAvolcite] = ACTIONS(5308), + [anon_sym_BSLASHnotecite] = ACTIONS(5308), + [anon_sym_BSLASHNotecite] = ACTIONS(5308), + [anon_sym_BSLASHpnotecite] = ACTIONS(5308), + [anon_sym_BSLASHPnotecite] = ACTIONS(5308), + [anon_sym_BSLASHfnotecite] = ACTIONS(5308), + [anon_sym_BSLASHlabel] = ACTIONS(5308), + [anon_sym_BSLASHref] = ACTIONS(5308), + [anon_sym_BSLASHeqref] = ACTIONS(5308), + [anon_sym_BSLASHvref] = ACTIONS(5308), + [anon_sym_BSLASHVref] = ACTIONS(5308), + [anon_sym_BSLASHautoref] = ACTIONS(5308), + [anon_sym_BSLASHpageref] = ACTIONS(5308), + [anon_sym_BSLASHcref] = ACTIONS(5308), + [anon_sym_BSLASHCref] = ACTIONS(5308), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnameCref] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5308), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5308), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5308), + [anon_sym_BSLASHlabelcref] = ACTIONS(5308), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange] = ACTIONS(5308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHCrefrange] = ACTIONS(5308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5306), + [anon_sym_BSLASHnewlabel] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand] = ACTIONS(5308), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5308), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5308), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5306), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5308), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdef] = ACTIONS(5308), + [anon_sym_BSLASHlet] = ACTIONS(5308), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5308), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5308), + [anon_sym_BSLASHgls] = ACTIONS(5308), + [anon_sym_BSLASHGls] = ACTIONS(5308), + [anon_sym_BSLASHGLS] = ACTIONS(5308), + [anon_sym_BSLASHglspl] = ACTIONS(5308), + [anon_sym_BSLASHGlspl] = ACTIONS(5308), + [anon_sym_BSLASHGLSpl] = ACTIONS(5308), + [anon_sym_BSLASHglsdisp] = ACTIONS(5308), + [anon_sym_BSLASHglslink] = ACTIONS(5308), + [anon_sym_BSLASHglstext] = ACTIONS(5308), + [anon_sym_BSLASHGlstext] = ACTIONS(5308), + [anon_sym_BSLASHGLStext] = ACTIONS(5308), + [anon_sym_BSLASHglsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5308), + [anon_sym_BSLASHglsplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSplural] = ACTIONS(5308), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5308), + [anon_sym_BSLASHglsname] = ACTIONS(5308), + [anon_sym_BSLASHGlsname] = ACTIONS(5308), + [anon_sym_BSLASHGLSname] = ACTIONS(5308), + [anon_sym_BSLASHglssymbol] = ACTIONS(5308), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5308), + [anon_sym_BSLASHglsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5308), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5308), + [anon_sym_BSLASHglsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5308), + [anon_sym_BSLASHglsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5308), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5308), + [anon_sym_BSLASHglsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5308), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5308), + [anon_sym_BSLASHglsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5308), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5308), + [anon_sym_BSLASHnewacronym] = ACTIONS(5308), + [anon_sym_BSLASHacrshort] = ACTIONS(5308), + [anon_sym_BSLASHAcrshort] = ACTIONS(5308), + [anon_sym_BSLASHACRshort] = ACTIONS(5308), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5308), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5308), + [anon_sym_BSLASHacrlong] = ACTIONS(5308), + [anon_sym_BSLASHAcrlong] = ACTIONS(5308), + [anon_sym_BSLASHACRlong] = ACTIONS(5308), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5308), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5308), + [anon_sym_BSLASHacrfull] = ACTIONS(5308), + [anon_sym_BSLASHAcrfull] = ACTIONS(5308), + [anon_sym_BSLASHACRfull] = ACTIONS(5308), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5308), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5308), + [anon_sym_BSLASHacs] = ACTIONS(5308), + [anon_sym_BSLASHAcs] = ACTIONS(5308), + [anon_sym_BSLASHacsp] = ACTIONS(5308), + [anon_sym_BSLASHAcsp] = ACTIONS(5308), + [anon_sym_BSLASHacl] = ACTIONS(5308), + [anon_sym_BSLASHAcl] = ACTIONS(5308), + [anon_sym_BSLASHaclp] = ACTIONS(5308), + [anon_sym_BSLASHAclp] = ACTIONS(5308), + [anon_sym_BSLASHacf] = ACTIONS(5308), + [anon_sym_BSLASHAcf] = ACTIONS(5308), + [anon_sym_BSLASHacfp] = ACTIONS(5308), + [anon_sym_BSLASHAcfp] = ACTIONS(5308), + [anon_sym_BSLASHac] = ACTIONS(5308), + [anon_sym_BSLASHAc] = ACTIONS(5308), + [anon_sym_BSLASHacp] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5308), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5308), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5308), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5308), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5308), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5306), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5308), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5308), + [anon_sym_BSLASHcolor] = ACTIONS(5308), + [anon_sym_BSLASHcolorbox] = ACTIONS(5308), + [anon_sym_BSLASHtextcolor] = ACTIONS(5308), + [anon_sym_BSLASHpagecolor] = ACTIONS(5308), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5308), + [anon_sym_BSLASHtext] = ACTIONS(5308), + [anon_sym_BSLASHintertext] = ACTIONS(5308), + [anon_sym_shortintertext] = ACTIONS(5308), }, [1391] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5225), - [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), + [sym_command_name] = ACTIONS(5304), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_COMMA] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5302), + [sym_word] = ACTIONS(5304), + [sym_placeholder] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_SLASH] = ACTIONS(5304), + [anon_sym_CARET] = ACTIONS(5304), + [anon_sym__] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_BANG] = ACTIONS(5304), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_SQUOTE] = ACTIONS(5304), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5302), + [anon_sym_BSLASHbegin] = ACTIONS(5304), + [anon_sym_BSLASHusepackage] = ACTIONS(5304), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5304), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5304), + [anon_sym_BSLASHinclude] = ACTIONS(5304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5304), + [anon_sym_BSLASHinput] = ACTIONS(5304), + [anon_sym_BSLASHsubfile] = ACTIONS(5304), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5304), + [anon_sym_BSLASHbibliography] = ACTIONS(5304), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5304), + [anon_sym_BSLASHincludesvg] = ACTIONS(5304), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5304), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5304), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5304), + [anon_sym_BSLASHimport] = ACTIONS(5304), + [anon_sym_BSLASHsubimport] = ACTIONS(5304), + [anon_sym_BSLASHinputfrom] = ACTIONS(5304), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5304), + [anon_sym_BSLASHincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5304), + [anon_sym_BSLASHcaption] = ACTIONS(5304), + [anon_sym_BSLASHcite] = ACTIONS(5304), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCite] = ACTIONS(5304), + [anon_sym_BSLASHnocite] = ACTIONS(5304), + [anon_sym_BSLASHcitet] = ACTIONS(5304), + [anon_sym_BSLASHcitep] = ACTIONS(5304), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteauthor] = ACTIONS(5304), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5304), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitetitle] = ACTIONS(5304), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteyear] = ACTIONS(5304), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5302), + [anon_sym_BSLASHcitedate] = ACTIONS(5304), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5302), + [anon_sym_BSLASHciteurl] = ACTIONS(5304), + [anon_sym_BSLASHfullcite] = ACTIONS(5304), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5304), + [anon_sym_BSLASHcitealt] = ACTIONS(5304), + [anon_sym_BSLASHcitealp] = ACTIONS(5304), + [anon_sym_BSLASHcitetext] = ACTIONS(5304), + [anon_sym_BSLASHparencite] = ACTIONS(5304), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHParencite] = ACTIONS(5304), + [anon_sym_BSLASHfootcite] = ACTIONS(5304), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5304), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5304), + [anon_sym_BSLASHtextcite] = ACTIONS(5304), + [anon_sym_BSLASHTextcite] = ACTIONS(5304), + [anon_sym_BSLASHsmartcite] = ACTIONS(5304), + [anon_sym_BSLASHSmartcite] = ACTIONS(5304), + [anon_sym_BSLASHsupercite] = ACTIONS(5304), + [anon_sym_BSLASHautocite] = ACTIONS(5304), + [anon_sym_BSLASHAutocite] = ACTIONS(5304), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5302), + [anon_sym_BSLASHvolcite] = ACTIONS(5304), + [anon_sym_BSLASHVolcite] = ACTIONS(5304), + [anon_sym_BSLASHpvolcite] = ACTIONS(5304), + [anon_sym_BSLASHPvolcite] = ACTIONS(5304), + [anon_sym_BSLASHfvolcite] = ACTIONS(5304), + [anon_sym_BSLASHftvolcite] = ACTIONS(5304), + [anon_sym_BSLASHsvolcite] = ACTIONS(5304), + [anon_sym_BSLASHSvolcite] = ACTIONS(5304), + [anon_sym_BSLASHtvolcite] = ACTIONS(5304), + [anon_sym_BSLASHTvolcite] = ACTIONS(5304), + [anon_sym_BSLASHavolcite] = ACTIONS(5304), + [anon_sym_BSLASHAvolcite] = ACTIONS(5304), + [anon_sym_BSLASHnotecite] = ACTIONS(5304), + [anon_sym_BSLASHNotecite] = ACTIONS(5304), + [anon_sym_BSLASHpnotecite] = ACTIONS(5304), + [anon_sym_BSLASHPnotecite] = ACTIONS(5304), + [anon_sym_BSLASHfnotecite] = ACTIONS(5304), + [anon_sym_BSLASHlabel] = ACTIONS(5304), + [anon_sym_BSLASHref] = ACTIONS(5304), + [anon_sym_BSLASHeqref] = ACTIONS(5304), + [anon_sym_BSLASHvref] = ACTIONS(5304), + [anon_sym_BSLASHVref] = ACTIONS(5304), + [anon_sym_BSLASHautoref] = ACTIONS(5304), + [anon_sym_BSLASHpageref] = ACTIONS(5304), + [anon_sym_BSLASHcref] = ACTIONS(5304), + [anon_sym_BSLASHCref] = ACTIONS(5304), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnameCref] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5304), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5304), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5304), + [anon_sym_BSLASHlabelcref] = ACTIONS(5304), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange] = ACTIONS(5304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHCrefrange] = ACTIONS(5304), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5302), + [anon_sym_BSLASHnewlabel] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand] = ACTIONS(5304), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5304), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5304), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5302), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5304), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdef] = ACTIONS(5304), + [anon_sym_BSLASHlet] = ACTIONS(5304), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5304), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5304), + [anon_sym_BSLASHgls] = ACTIONS(5304), + [anon_sym_BSLASHGls] = ACTIONS(5304), + [anon_sym_BSLASHGLS] = ACTIONS(5304), + [anon_sym_BSLASHglspl] = ACTIONS(5304), + [anon_sym_BSLASHGlspl] = ACTIONS(5304), + [anon_sym_BSLASHGLSpl] = ACTIONS(5304), + [anon_sym_BSLASHglsdisp] = ACTIONS(5304), + [anon_sym_BSLASHglslink] = ACTIONS(5304), + [anon_sym_BSLASHglstext] = ACTIONS(5304), + [anon_sym_BSLASHGlstext] = ACTIONS(5304), + [anon_sym_BSLASHGLStext] = ACTIONS(5304), + [anon_sym_BSLASHglsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5304), + [anon_sym_BSLASHglsplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSplural] = ACTIONS(5304), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5304), + [anon_sym_BSLASHglsname] = ACTIONS(5304), + [anon_sym_BSLASHGlsname] = ACTIONS(5304), + [anon_sym_BSLASHGLSname] = ACTIONS(5304), + [anon_sym_BSLASHglssymbol] = ACTIONS(5304), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5304), + [anon_sym_BSLASHglsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5304), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5304), + [anon_sym_BSLASHglsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5304), + [anon_sym_BSLASHglsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5304), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5304), + [anon_sym_BSLASHglsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5304), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5304), + [anon_sym_BSLASHglsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5304), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5304), + [anon_sym_BSLASHnewacronym] = ACTIONS(5304), + [anon_sym_BSLASHacrshort] = ACTIONS(5304), + [anon_sym_BSLASHAcrshort] = ACTIONS(5304), + [anon_sym_BSLASHACRshort] = ACTIONS(5304), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5304), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5304), + [anon_sym_BSLASHacrlong] = ACTIONS(5304), + [anon_sym_BSLASHAcrlong] = ACTIONS(5304), + [anon_sym_BSLASHACRlong] = ACTIONS(5304), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5304), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5304), + [anon_sym_BSLASHacrfull] = ACTIONS(5304), + [anon_sym_BSLASHAcrfull] = ACTIONS(5304), + [anon_sym_BSLASHACRfull] = ACTIONS(5304), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5304), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5304), + [anon_sym_BSLASHacs] = ACTIONS(5304), + [anon_sym_BSLASHAcs] = ACTIONS(5304), + [anon_sym_BSLASHacsp] = ACTIONS(5304), + [anon_sym_BSLASHAcsp] = ACTIONS(5304), + [anon_sym_BSLASHacl] = ACTIONS(5304), + [anon_sym_BSLASHAcl] = ACTIONS(5304), + [anon_sym_BSLASHaclp] = ACTIONS(5304), + [anon_sym_BSLASHAclp] = ACTIONS(5304), + [anon_sym_BSLASHacf] = ACTIONS(5304), + [anon_sym_BSLASHAcf] = ACTIONS(5304), + [anon_sym_BSLASHacfp] = ACTIONS(5304), + [anon_sym_BSLASHAcfp] = ACTIONS(5304), + [anon_sym_BSLASHac] = ACTIONS(5304), + [anon_sym_BSLASHAc] = ACTIONS(5304), + [anon_sym_BSLASHacp] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5304), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5304), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5304), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5304), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5304), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5302), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5304), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5304), + [anon_sym_BSLASHcolor] = ACTIONS(5304), + [anon_sym_BSLASHcolorbox] = ACTIONS(5304), + [anon_sym_BSLASHtextcolor] = ACTIONS(5304), + [anon_sym_BSLASHpagecolor] = ACTIONS(5304), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5304), + [anon_sym_BSLASHtext] = ACTIONS(5304), + [anon_sym_BSLASHintertext] = ACTIONS(5304), + [anon_sym_shortintertext] = ACTIONS(5304), }, [1392] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5217), - [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), + [sym_command_name] = ACTIONS(5296), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_RPAREN] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_COMMA] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5294), + [sym_word] = ACTIONS(5296), + [sym_placeholder] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_SLASH] = ACTIONS(5296), + [anon_sym_CARET] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5296), + [anon_sym_GT] = ACTIONS(5296), + [anon_sym_BANG] = ACTIONS(5296), + [anon_sym_PIPE] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_SQUOTE] = ACTIONS(5296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5294), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5294), + [anon_sym_BSLASHbegin] = ACTIONS(5296), + [anon_sym_BSLASHusepackage] = ACTIONS(5296), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5296), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5296), + [anon_sym_BSLASHinclude] = ACTIONS(5296), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5296), + [anon_sym_BSLASHinput] = ACTIONS(5296), + [anon_sym_BSLASHsubfile] = ACTIONS(5296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5296), + [anon_sym_BSLASHbibliography] = ACTIONS(5296), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5296), + [anon_sym_BSLASHincludesvg] = ACTIONS(5296), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5296), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5296), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5296), + [anon_sym_BSLASHimport] = ACTIONS(5296), + [anon_sym_BSLASHsubimport] = ACTIONS(5296), + [anon_sym_BSLASHinputfrom] = ACTIONS(5296), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5296), + [anon_sym_BSLASHincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5296), + [anon_sym_BSLASHcaption] = ACTIONS(5296), + [anon_sym_BSLASHcite] = ACTIONS(5296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCite] = ACTIONS(5296), + [anon_sym_BSLASHnocite] = ACTIONS(5296), + [anon_sym_BSLASHcitet] = ACTIONS(5296), + [anon_sym_BSLASHcitep] = ACTIONS(5296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteauthor] = ACTIONS(5296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitetitle] = ACTIONS(5296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteyear] = ACTIONS(5296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5294), + [anon_sym_BSLASHcitedate] = ACTIONS(5296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5294), + [anon_sym_BSLASHciteurl] = ACTIONS(5296), + [anon_sym_BSLASHfullcite] = ACTIONS(5296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5296), + [anon_sym_BSLASHcitealt] = ACTIONS(5296), + [anon_sym_BSLASHcitealp] = ACTIONS(5296), + [anon_sym_BSLASHcitetext] = ACTIONS(5296), + [anon_sym_BSLASHparencite] = ACTIONS(5296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHParencite] = ACTIONS(5296), + [anon_sym_BSLASHfootcite] = ACTIONS(5296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5296), + [anon_sym_BSLASHtextcite] = ACTIONS(5296), + [anon_sym_BSLASHTextcite] = ACTIONS(5296), + [anon_sym_BSLASHsmartcite] = ACTIONS(5296), + [anon_sym_BSLASHSmartcite] = ACTIONS(5296), + [anon_sym_BSLASHsupercite] = ACTIONS(5296), + [anon_sym_BSLASHautocite] = ACTIONS(5296), + [anon_sym_BSLASHAutocite] = ACTIONS(5296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5294), + [anon_sym_BSLASHvolcite] = ACTIONS(5296), + [anon_sym_BSLASHVolcite] = ACTIONS(5296), + [anon_sym_BSLASHpvolcite] = ACTIONS(5296), + [anon_sym_BSLASHPvolcite] = ACTIONS(5296), + [anon_sym_BSLASHfvolcite] = ACTIONS(5296), + [anon_sym_BSLASHftvolcite] = ACTIONS(5296), + [anon_sym_BSLASHsvolcite] = ACTIONS(5296), + [anon_sym_BSLASHSvolcite] = ACTIONS(5296), + [anon_sym_BSLASHtvolcite] = ACTIONS(5296), + [anon_sym_BSLASHTvolcite] = ACTIONS(5296), + [anon_sym_BSLASHavolcite] = ACTIONS(5296), + [anon_sym_BSLASHAvolcite] = ACTIONS(5296), + [anon_sym_BSLASHnotecite] = ACTIONS(5296), + [anon_sym_BSLASHNotecite] = ACTIONS(5296), + [anon_sym_BSLASHpnotecite] = ACTIONS(5296), + [anon_sym_BSLASHPnotecite] = ACTIONS(5296), + [anon_sym_BSLASHfnotecite] = ACTIONS(5296), + [anon_sym_BSLASHlabel] = ACTIONS(5296), + [anon_sym_BSLASHref] = ACTIONS(5296), + [anon_sym_BSLASHeqref] = ACTIONS(5296), + [anon_sym_BSLASHvref] = ACTIONS(5296), + [anon_sym_BSLASHVref] = ACTIONS(5296), + [anon_sym_BSLASHautoref] = ACTIONS(5296), + [anon_sym_BSLASHpageref] = ACTIONS(5296), + [anon_sym_BSLASHcref] = ACTIONS(5296), + [anon_sym_BSLASHCref] = ACTIONS(5296), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnameCref] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5296), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5296), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5296), + [anon_sym_BSLASHlabelcref] = ACTIONS(5296), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange] = ACTIONS(5296), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHCrefrange] = ACTIONS(5296), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5294), + [anon_sym_BSLASHnewlabel] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand] = ACTIONS(5296), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5296), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5296), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5294), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5296), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdef] = ACTIONS(5296), + [anon_sym_BSLASHlet] = ACTIONS(5296), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5296), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5296), + [anon_sym_BSLASHgls] = ACTIONS(5296), + [anon_sym_BSLASHGls] = ACTIONS(5296), + [anon_sym_BSLASHGLS] = ACTIONS(5296), + [anon_sym_BSLASHglspl] = ACTIONS(5296), + [anon_sym_BSLASHGlspl] = ACTIONS(5296), + [anon_sym_BSLASHGLSpl] = ACTIONS(5296), + [anon_sym_BSLASHglsdisp] = ACTIONS(5296), + [anon_sym_BSLASHglslink] = ACTIONS(5296), + [anon_sym_BSLASHglstext] = ACTIONS(5296), + [anon_sym_BSLASHGlstext] = ACTIONS(5296), + [anon_sym_BSLASHGLStext] = ACTIONS(5296), + [anon_sym_BSLASHglsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5296), + [anon_sym_BSLASHglsplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSplural] = ACTIONS(5296), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5296), + [anon_sym_BSLASHglsname] = ACTIONS(5296), + [anon_sym_BSLASHGlsname] = ACTIONS(5296), + [anon_sym_BSLASHGLSname] = ACTIONS(5296), + [anon_sym_BSLASHglssymbol] = ACTIONS(5296), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5296), + [anon_sym_BSLASHglsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5296), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5296), + [anon_sym_BSLASHglsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5296), + [anon_sym_BSLASHglsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5296), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5296), + [anon_sym_BSLASHglsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5296), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5296), + [anon_sym_BSLASHglsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5296), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5296), + [anon_sym_BSLASHnewacronym] = ACTIONS(5296), + [anon_sym_BSLASHacrshort] = ACTIONS(5296), + [anon_sym_BSLASHAcrshort] = ACTIONS(5296), + [anon_sym_BSLASHACRshort] = ACTIONS(5296), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5296), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5296), + [anon_sym_BSLASHacrlong] = ACTIONS(5296), + [anon_sym_BSLASHAcrlong] = ACTIONS(5296), + [anon_sym_BSLASHACRlong] = ACTIONS(5296), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5296), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5296), + [anon_sym_BSLASHacrfull] = ACTIONS(5296), + [anon_sym_BSLASHAcrfull] = ACTIONS(5296), + [anon_sym_BSLASHACRfull] = ACTIONS(5296), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5296), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5296), + [anon_sym_BSLASHacs] = ACTIONS(5296), + [anon_sym_BSLASHAcs] = ACTIONS(5296), + [anon_sym_BSLASHacsp] = ACTIONS(5296), + [anon_sym_BSLASHAcsp] = ACTIONS(5296), + [anon_sym_BSLASHacl] = ACTIONS(5296), + [anon_sym_BSLASHAcl] = ACTIONS(5296), + [anon_sym_BSLASHaclp] = ACTIONS(5296), + [anon_sym_BSLASHAclp] = ACTIONS(5296), + [anon_sym_BSLASHacf] = ACTIONS(5296), + [anon_sym_BSLASHAcf] = ACTIONS(5296), + [anon_sym_BSLASHacfp] = ACTIONS(5296), + [anon_sym_BSLASHAcfp] = ACTIONS(5296), + [anon_sym_BSLASHac] = ACTIONS(5296), + [anon_sym_BSLASHAc] = ACTIONS(5296), + [anon_sym_BSLASHacp] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5296), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5296), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5296), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5296), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5296), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5294), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5296), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5296), + [anon_sym_BSLASHcolor] = ACTIONS(5296), + [anon_sym_BSLASHcolorbox] = ACTIONS(5296), + [anon_sym_BSLASHtextcolor] = ACTIONS(5296), + [anon_sym_BSLASHpagecolor] = ACTIONS(5296), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5296), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5296), + [anon_sym_BSLASHtext] = ACTIONS(5296), + [anon_sym_BSLASHintertext] = ACTIONS(5296), + [anon_sym_shortintertext] = ACTIONS(5296), }, [1393] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5213), - [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), + [sym_command_name] = ACTIONS(5292), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5290), + [sym_word] = ACTIONS(5292), + [sym_placeholder] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_SLASH] = ACTIONS(5292), + [anon_sym_CARET] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_SQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5290), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5290), + [anon_sym_BSLASHbegin] = ACTIONS(5292), + [anon_sym_BSLASHusepackage] = ACTIONS(5292), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5292), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5292), + [anon_sym_BSLASHinclude] = ACTIONS(5292), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5292), + [anon_sym_BSLASHinput] = ACTIONS(5292), + [anon_sym_BSLASHsubfile] = ACTIONS(5292), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5292), + [anon_sym_BSLASHbibliography] = ACTIONS(5292), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5292), + [anon_sym_BSLASHincludesvg] = ACTIONS(5292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5292), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5292), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5292), + [anon_sym_BSLASHimport] = ACTIONS(5292), + [anon_sym_BSLASHsubimport] = ACTIONS(5292), + [anon_sym_BSLASHinputfrom] = ACTIONS(5292), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5292), + [anon_sym_BSLASHincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5292), + [anon_sym_BSLASHcaption] = ACTIONS(5292), + [anon_sym_BSLASHcite] = ACTIONS(5292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCite] = ACTIONS(5292), + [anon_sym_BSLASHnocite] = ACTIONS(5292), + [anon_sym_BSLASHcitet] = ACTIONS(5292), + [anon_sym_BSLASHcitep] = ACTIONS(5292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteauthor] = ACTIONS(5292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitetitle] = ACTIONS(5292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteyear] = ACTIONS(5292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5290), + [anon_sym_BSLASHcitedate] = ACTIONS(5292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5290), + [anon_sym_BSLASHciteurl] = ACTIONS(5292), + [anon_sym_BSLASHfullcite] = ACTIONS(5292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5292), + [anon_sym_BSLASHcitealt] = ACTIONS(5292), + [anon_sym_BSLASHcitealp] = ACTIONS(5292), + [anon_sym_BSLASHcitetext] = ACTIONS(5292), + [anon_sym_BSLASHparencite] = ACTIONS(5292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHParencite] = ACTIONS(5292), + [anon_sym_BSLASHfootcite] = ACTIONS(5292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5292), + [anon_sym_BSLASHtextcite] = ACTIONS(5292), + [anon_sym_BSLASHTextcite] = ACTIONS(5292), + [anon_sym_BSLASHsmartcite] = ACTIONS(5292), + [anon_sym_BSLASHSmartcite] = ACTIONS(5292), + [anon_sym_BSLASHsupercite] = ACTIONS(5292), + [anon_sym_BSLASHautocite] = ACTIONS(5292), + [anon_sym_BSLASHAutocite] = ACTIONS(5292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5290), + [anon_sym_BSLASHvolcite] = ACTIONS(5292), + [anon_sym_BSLASHVolcite] = ACTIONS(5292), + [anon_sym_BSLASHpvolcite] = ACTIONS(5292), + [anon_sym_BSLASHPvolcite] = ACTIONS(5292), + [anon_sym_BSLASHfvolcite] = ACTIONS(5292), + [anon_sym_BSLASHftvolcite] = ACTIONS(5292), + [anon_sym_BSLASHsvolcite] = ACTIONS(5292), + [anon_sym_BSLASHSvolcite] = ACTIONS(5292), + [anon_sym_BSLASHtvolcite] = ACTIONS(5292), + [anon_sym_BSLASHTvolcite] = ACTIONS(5292), + [anon_sym_BSLASHavolcite] = ACTIONS(5292), + [anon_sym_BSLASHAvolcite] = ACTIONS(5292), + [anon_sym_BSLASHnotecite] = ACTIONS(5292), + [anon_sym_BSLASHNotecite] = ACTIONS(5292), + [anon_sym_BSLASHpnotecite] = ACTIONS(5292), + [anon_sym_BSLASHPnotecite] = ACTIONS(5292), + [anon_sym_BSLASHfnotecite] = ACTIONS(5292), + [anon_sym_BSLASHlabel] = ACTIONS(5292), + [anon_sym_BSLASHref] = ACTIONS(5292), + [anon_sym_BSLASHeqref] = ACTIONS(5292), + [anon_sym_BSLASHvref] = ACTIONS(5292), + [anon_sym_BSLASHVref] = ACTIONS(5292), + [anon_sym_BSLASHautoref] = ACTIONS(5292), + [anon_sym_BSLASHpageref] = ACTIONS(5292), + [anon_sym_BSLASHcref] = ACTIONS(5292), + [anon_sym_BSLASHCref] = ACTIONS(5292), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnameCref] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5292), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5292), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5292), + [anon_sym_BSLASHlabelcref] = ACTIONS(5292), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange] = ACTIONS(5292), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHCrefrange] = ACTIONS(5292), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5290), + [anon_sym_BSLASHnewlabel] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand] = ACTIONS(5292), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5292), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5292), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5290), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5292), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdef] = ACTIONS(5292), + [anon_sym_BSLASHlet] = ACTIONS(5292), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5292), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5292), + [anon_sym_BSLASHgls] = ACTIONS(5292), + [anon_sym_BSLASHGls] = ACTIONS(5292), + [anon_sym_BSLASHGLS] = ACTIONS(5292), + [anon_sym_BSLASHglspl] = ACTIONS(5292), + [anon_sym_BSLASHGlspl] = ACTIONS(5292), + [anon_sym_BSLASHGLSpl] = ACTIONS(5292), + [anon_sym_BSLASHglsdisp] = ACTIONS(5292), + [anon_sym_BSLASHglslink] = ACTIONS(5292), + [anon_sym_BSLASHglstext] = ACTIONS(5292), + [anon_sym_BSLASHGlstext] = ACTIONS(5292), + [anon_sym_BSLASHGLStext] = ACTIONS(5292), + [anon_sym_BSLASHglsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5292), + [anon_sym_BSLASHglsplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSplural] = ACTIONS(5292), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5292), + [anon_sym_BSLASHglsname] = ACTIONS(5292), + [anon_sym_BSLASHGlsname] = ACTIONS(5292), + [anon_sym_BSLASHGLSname] = ACTIONS(5292), + [anon_sym_BSLASHglssymbol] = ACTIONS(5292), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5292), + [anon_sym_BSLASHglsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5292), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5292), + [anon_sym_BSLASHglsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5292), + [anon_sym_BSLASHglsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5292), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5292), + [anon_sym_BSLASHglsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5292), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5292), + [anon_sym_BSLASHglsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5292), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5292), + [anon_sym_BSLASHnewacronym] = ACTIONS(5292), + [anon_sym_BSLASHacrshort] = ACTIONS(5292), + [anon_sym_BSLASHAcrshort] = ACTIONS(5292), + [anon_sym_BSLASHACRshort] = ACTIONS(5292), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5292), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5292), + [anon_sym_BSLASHacrlong] = ACTIONS(5292), + [anon_sym_BSLASHAcrlong] = ACTIONS(5292), + [anon_sym_BSLASHACRlong] = ACTIONS(5292), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5292), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5292), + [anon_sym_BSLASHacrfull] = ACTIONS(5292), + [anon_sym_BSLASHAcrfull] = ACTIONS(5292), + [anon_sym_BSLASHACRfull] = ACTIONS(5292), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5292), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5292), + [anon_sym_BSLASHacs] = ACTIONS(5292), + [anon_sym_BSLASHAcs] = ACTIONS(5292), + [anon_sym_BSLASHacsp] = ACTIONS(5292), + [anon_sym_BSLASHAcsp] = ACTIONS(5292), + [anon_sym_BSLASHacl] = ACTIONS(5292), + [anon_sym_BSLASHAcl] = ACTIONS(5292), + [anon_sym_BSLASHaclp] = ACTIONS(5292), + [anon_sym_BSLASHAclp] = ACTIONS(5292), + [anon_sym_BSLASHacf] = ACTIONS(5292), + [anon_sym_BSLASHAcf] = ACTIONS(5292), + [anon_sym_BSLASHacfp] = ACTIONS(5292), + [anon_sym_BSLASHAcfp] = ACTIONS(5292), + [anon_sym_BSLASHac] = ACTIONS(5292), + [anon_sym_BSLASHAc] = ACTIONS(5292), + [anon_sym_BSLASHacp] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5292), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5292), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5292), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5290), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5292), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5292), + [anon_sym_BSLASHcolorbox] = ACTIONS(5292), + [anon_sym_BSLASHtextcolor] = ACTIONS(5292), + [anon_sym_BSLASHpagecolor] = ACTIONS(5292), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5292), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5292), + [anon_sym_BSLASHtext] = ACTIONS(5292), + [anon_sym_BSLASHintertext] = ACTIONS(5292), + [anon_sym_shortintertext] = ACTIONS(5292), }, [1394] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASHbegin] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASHbegin] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [1395] = { - [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(4971), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = 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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASHbegin] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [1396] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASHbegin] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [1397] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [anon_sym_BSLASHbegin] = 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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASHbegin] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [1398] = { [sym_brack_group_text] = STATE(1419), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(5503), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4855), - [anon_sym_RBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), - [anon_sym_BSLASHtext] = ACTIONS(4857), - [anon_sym_BSLASHintertext] = ACTIONS(4857), - [anon_sym_shortintertext] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(5585), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4936), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4934), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4934), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), + [anon_sym_BSLASHtext] = ACTIONS(4936), + [anon_sym_BSLASHintertext] = ACTIONS(4936), + [anon_sym_shortintertext] = ACTIONS(4936), }, [1399] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASHbegin] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASHbegin] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [1400] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASHbegin] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [1401] = { [sym_brack_group_text] = STATE(1429), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(5503), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_LBRACE] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), - [anon_sym_BSLASHtext] = ACTIONS(4879), - [anon_sym_BSLASHintertext] = ACTIONS(4879), - [anon_sym_shortintertext] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(5585), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4956), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4956), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), + [anon_sym_BSLASHtext] = ACTIONS(4958), + [anon_sym_BSLASHintertext] = ACTIONS(4958), + [anon_sym_shortintertext] = ACTIONS(4958), }, [1402] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASHbegin] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [1403] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASHbegin] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [1404] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASHbegin] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [1405] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASHbegin] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASHbegin] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [1406] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASHbegin] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [1407] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASHbegin] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASHbegin] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [1408] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASHbegin] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASHbegin] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [1409] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASHbegin] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [1410] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASHbegin] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASHbegin] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [1411] = { - [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_LBRACE] = ACTIONS(4997), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5076), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5076), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), + [anon_sym_BSLASHtext] = ACTIONS(5078), + [anon_sym_BSLASHintertext] = ACTIONS(5078), + [anon_sym_shortintertext] = ACTIONS(5078), }, [1412] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - [anon_sym_BSLASHtext] = ACTIONS(5029), - [anon_sym_BSLASHintertext] = ACTIONS(5029), - [anon_sym_shortintertext] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(5108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5106), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5106), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), + [anon_sym_BSLASHtext] = ACTIONS(5108), + [anon_sym_BSLASHintertext] = ACTIONS(5108), + [anon_sym_shortintertext] = ACTIONS(5108), }, [1413] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), - [anon_sym_BSLASHtext] = ACTIONS(5165), - [anon_sym_BSLASHintertext] = ACTIONS(5165), - [anon_sym_shortintertext] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5242), + [anon_sym_DOLLAR] = ACTIONS(5244), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5242), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5242), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), + [anon_sym_BSLASHtext] = ACTIONS(5244), + [anon_sym_BSLASHintertext] = ACTIONS(5244), + [anon_sym_shortintertext] = ACTIONS(5244), }, [1414] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), - [anon_sym_BSLASHtext] = ACTIONS(5169), - [anon_sym_BSLASHintertext] = ACTIONS(5169), - [anon_sym_shortintertext] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5246), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5246), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), + [anon_sym_BSLASHtext] = ACTIONS(5248), + [anon_sym_BSLASHintertext] = ACTIONS(5248), + [anon_sym_shortintertext] = ACTIONS(5248), }, [1415] = { - [sym_command_name] = ACTIONS(139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_RBRACE] = ACTIONS(137), - [sym_word] = ACTIONS(139), - [sym_placeholder] = ACTIONS(137), - [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(137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteauthor] = ACTIONS(139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitetitle] = ACTIONS(139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), - [anon_sym_BSLASHciteyear] = ACTIONS(139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), - [anon_sym_BSLASHcitedate] = ACTIONS(139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), - [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(137), - [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(137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(137), - [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(137), - [anon_sym_BSLASHCrefrange] = ACTIONS(139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), - [anon_sym_BSLASHnewlabel] = ACTIONS(139), - [anon_sym_BSLASHnewcommand] = ACTIONS(139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), - [anon_sym_BSLASHdef] = ACTIONS(139), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(139), - [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), + [sym_command_name] = ACTIONS(141), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(139), + [sym_word] = ACTIONS(141), + [sym_placeholder] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(141), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(141), + [anon_sym__] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LBRACK] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LPAREN] = ACTIONS(139), + [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(141), + [anon_sym_BSLASHRequirePackage] = ACTIONS(141), + [anon_sym_BSLASHdocumentclass] = ACTIONS(141), + [anon_sym_BSLASHinclude] = ACTIONS(141), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), + [anon_sym_BSLASHinput] = ACTIONS(141), + [anon_sym_BSLASHsubfile] = ACTIONS(141), + [anon_sym_BSLASHaddbibresource] = ACTIONS(141), + [anon_sym_BSLASHbibliography] = ACTIONS(141), + [anon_sym_BSLASHincludegraphics] = ACTIONS(141), + [anon_sym_BSLASHincludesvg] = ACTIONS(141), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), + [anon_sym_BSLASHverbatiminput] = ACTIONS(141), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), + [anon_sym_BSLASHimport] = ACTIONS(141), + [anon_sym_BSLASHsubimport] = ACTIONS(141), + [anon_sym_BSLASHinputfrom] = ACTIONS(141), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), + [anon_sym_BSLASHincludefrom] = ACTIONS(141), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), + [anon_sym_BSLASHcaption] = ACTIONS(141), + [anon_sym_BSLASHcite] = ACTIONS(141), + [anon_sym_BSLASHcite_STAR] = ACTIONS(139), + [anon_sym_BSLASHCite] = ACTIONS(141), + [anon_sym_BSLASHnocite] = ACTIONS(141), + [anon_sym_BSLASHcitet] = ACTIONS(141), + [anon_sym_BSLASHcitep] = ACTIONS(141), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteauthor] = ACTIONS(141), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitetitle] = ACTIONS(141), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteyear] = ACTIONS(141), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), + [anon_sym_BSLASHcitedate] = ACTIONS(141), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), + [anon_sym_BSLASHciteurl] = ACTIONS(141), + [anon_sym_BSLASHfullcite] = ACTIONS(141), + [anon_sym_BSLASHciteyearpar] = ACTIONS(141), + [anon_sym_BSLASHcitealt] = ACTIONS(141), + [anon_sym_BSLASHcitealp] = ACTIONS(141), + [anon_sym_BSLASHcitetext] = ACTIONS(141), + [anon_sym_BSLASHparencite] = ACTIONS(141), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), + [anon_sym_BSLASHParencite] = ACTIONS(141), + [anon_sym_BSLASHfootcite] = ACTIONS(141), + [anon_sym_BSLASHfootfullcite] = ACTIONS(141), + [anon_sym_BSLASHfootcitetext] = ACTIONS(141), + [anon_sym_BSLASHtextcite] = ACTIONS(141), + [anon_sym_BSLASHTextcite] = ACTIONS(141), + [anon_sym_BSLASHsmartcite] = ACTIONS(141), + [anon_sym_BSLASHSmartcite] = ACTIONS(141), + [anon_sym_BSLASHsupercite] = ACTIONS(141), + [anon_sym_BSLASHautocite] = ACTIONS(141), + [anon_sym_BSLASHAutocite] = ACTIONS(141), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), + [anon_sym_BSLASHvolcite] = ACTIONS(141), + [anon_sym_BSLASHVolcite] = ACTIONS(141), + [anon_sym_BSLASHpvolcite] = ACTIONS(141), + [anon_sym_BSLASHPvolcite] = ACTIONS(141), + [anon_sym_BSLASHfvolcite] = ACTIONS(141), + [anon_sym_BSLASHftvolcite] = ACTIONS(141), + [anon_sym_BSLASHsvolcite] = ACTIONS(141), + [anon_sym_BSLASHSvolcite] = ACTIONS(141), + [anon_sym_BSLASHtvolcite] = ACTIONS(141), + [anon_sym_BSLASHTvolcite] = ACTIONS(141), + [anon_sym_BSLASHavolcite] = ACTIONS(141), + [anon_sym_BSLASHAvolcite] = ACTIONS(141), + [anon_sym_BSLASHnotecite] = ACTIONS(141), + [anon_sym_BSLASHNotecite] = ACTIONS(141), + [anon_sym_BSLASHpnotecite] = ACTIONS(141), + [anon_sym_BSLASHPnotecite] = ACTIONS(141), + [anon_sym_BSLASHfnotecite] = ACTIONS(141), + [anon_sym_BSLASHlabel] = ACTIONS(141), + [anon_sym_BSLASHref] = ACTIONS(141), + [anon_sym_BSLASHeqref] = ACTIONS(141), + [anon_sym_BSLASHvref] = ACTIONS(141), + [anon_sym_BSLASHVref] = ACTIONS(141), + [anon_sym_BSLASHautoref] = ACTIONS(141), + [anon_sym_BSLASHpageref] = ACTIONS(141), + [anon_sym_BSLASHcref] = ACTIONS(141), + [anon_sym_BSLASHCref] = ACTIONS(141), + [anon_sym_BSLASHcref_STAR] = ACTIONS(139), + [anon_sym_BSLASHCref_STAR] = ACTIONS(139), + [anon_sym_BSLASHnamecref] = ACTIONS(141), + [anon_sym_BSLASHnameCref] = ACTIONS(141), + [anon_sym_BSLASHlcnamecref] = ACTIONS(141), + [anon_sym_BSLASHnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHnameCrefs] = ACTIONS(141), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), + [anon_sym_BSLASHlabelcref] = ACTIONS(141), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), + [anon_sym_BSLASHcrefrange] = ACTIONS(141), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHCrefrange] = ACTIONS(141), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), + [anon_sym_BSLASHnewlabel] = ACTIONS(141), + [anon_sym_BSLASHnewcommand] = ACTIONS(141), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), + [anon_sym_BSLASHdef] = ACTIONS(141), + [anon_sym_BSLASHlet] = ACTIONS(141), + [anon_sym_BSLASHnewenvironment] = ACTIONS(141), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), + [anon_sym_BSLASHgls] = ACTIONS(141), + [anon_sym_BSLASHGls] = ACTIONS(141), + [anon_sym_BSLASHGLS] = ACTIONS(141), + [anon_sym_BSLASHglspl] = ACTIONS(141), + [anon_sym_BSLASHGlspl] = ACTIONS(141), + [anon_sym_BSLASHGLSpl] = ACTIONS(141), + [anon_sym_BSLASHglsdisp] = ACTIONS(141), + [anon_sym_BSLASHglslink] = ACTIONS(141), + [anon_sym_BSLASHglstext] = ACTIONS(141), + [anon_sym_BSLASHGlstext] = ACTIONS(141), + [anon_sym_BSLASHGLStext] = ACTIONS(141), + [anon_sym_BSLASHglsfirst] = ACTIONS(141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(141), + [anon_sym_BSLASHglsplural] = ACTIONS(141), + [anon_sym_BSLASHGlsplural] = ACTIONS(141), + [anon_sym_BSLASHGLSplural] = ACTIONS(141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), + [anon_sym_BSLASHglsname] = ACTIONS(141), + [anon_sym_BSLASHGlsname] = ACTIONS(141), + [anon_sym_BSLASHGLSname] = ACTIONS(141), + [anon_sym_BSLASHglssymbol] = ACTIONS(141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(141), + [anon_sym_BSLASHglsdesc] = ACTIONS(141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(141), + [anon_sym_BSLASHglsuseri] = ACTIONS(141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(141), + [anon_sym_BSLASHglsuserii] = ACTIONS(141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), + [anon_sym_BSLASHglsuserv] = ACTIONS(141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(141), + [anon_sym_BSLASHglsuservi] = ACTIONS(141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(141), + [anon_sym_BSLASHnewacronym] = ACTIONS(141), + [anon_sym_BSLASHacrshort] = ACTIONS(141), + [anon_sym_BSLASHAcrshort] = ACTIONS(141), + [anon_sym_BSLASHACRshort] = ACTIONS(141), + [anon_sym_BSLASHacrshortpl] = ACTIONS(141), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), + [anon_sym_BSLASHACRshortpl] = ACTIONS(141), + [anon_sym_BSLASHacrlong] = ACTIONS(141), + [anon_sym_BSLASHAcrlong] = ACTIONS(141), + [anon_sym_BSLASHACRlong] = ACTIONS(141), + [anon_sym_BSLASHacrlongpl] = ACTIONS(141), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), + [anon_sym_BSLASHACRlongpl] = ACTIONS(141), + [anon_sym_BSLASHacrfull] = ACTIONS(141), + [anon_sym_BSLASHAcrfull] = ACTIONS(141), + [anon_sym_BSLASHACRfull] = ACTIONS(141), + [anon_sym_BSLASHacrfullpl] = ACTIONS(141), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), + [anon_sym_BSLASHACRfullpl] = ACTIONS(141), + [anon_sym_BSLASHacs] = ACTIONS(141), + [anon_sym_BSLASHAcs] = ACTIONS(141), + [anon_sym_BSLASHacsp] = ACTIONS(141), + [anon_sym_BSLASHAcsp] = ACTIONS(141), + [anon_sym_BSLASHacl] = ACTIONS(141), + [anon_sym_BSLASHAcl] = ACTIONS(141), + [anon_sym_BSLASHaclp] = ACTIONS(141), + [anon_sym_BSLASHAclp] = ACTIONS(141), + [anon_sym_BSLASHacf] = ACTIONS(141), + [anon_sym_BSLASHAcf] = ACTIONS(141), + [anon_sym_BSLASHacfp] = ACTIONS(141), + [anon_sym_BSLASHAcfp] = ACTIONS(141), + [anon_sym_BSLASHac] = ACTIONS(141), + [anon_sym_BSLASHAc] = ACTIONS(141), + [anon_sym_BSLASHacp] = ACTIONS(141), + [anon_sym_BSLASHglsentrylong] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryshort] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem] = ACTIONS(141), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(141), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), + [anon_sym_BSLASHcolor] = ACTIONS(141), + [anon_sym_BSLASHcolorbox] = ACTIONS(141), + [anon_sym_BSLASHtextcolor] = ACTIONS(141), + [anon_sym_BSLASHpagecolor] = ACTIONS(141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHtext] = ACTIONS(141), + [anon_sym_BSLASHintertext] = ACTIONS(141), + [anon_sym_shortintertext] = ACTIONS(141), }, [1416] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [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(5319), - [sym_placeholder] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [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(5321), - [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(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [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(5321), - [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(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [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(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5319), - [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), + [sym_command_name] = ACTIONS(5398), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [sym_word] = ACTIONS(5398), + [sym_placeholder] = ACTIONS(5400), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym__] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_SQUOTE] = ACTIONS(5398), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5400), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5400), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5400), + [anon_sym_BSLASHusepackage] = ACTIONS(5398), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5398), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5398), + [anon_sym_BSLASHinclude] = ACTIONS(5398), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5398), + [anon_sym_BSLASHinput] = ACTIONS(5398), + [anon_sym_BSLASHsubfile] = ACTIONS(5398), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5398), + [anon_sym_BSLASHbibliography] = ACTIONS(5398), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5398), + [anon_sym_BSLASHincludesvg] = ACTIONS(5398), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5398), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5398), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5398), + [anon_sym_BSLASHimport] = ACTIONS(5398), + [anon_sym_BSLASHsubimport] = ACTIONS(5398), + [anon_sym_BSLASHinputfrom] = ACTIONS(5398), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5398), + [anon_sym_BSLASHincludefrom] = ACTIONS(5398), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5398), + [anon_sym_BSLASHcaption] = ACTIONS(5398), + [anon_sym_BSLASHcite] = ACTIONS(5398), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCite] = ACTIONS(5398), + [anon_sym_BSLASHnocite] = ACTIONS(5398), + [anon_sym_BSLASHcitet] = ACTIONS(5398), + [anon_sym_BSLASHcitep] = ACTIONS(5398), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteauthor] = ACTIONS(5398), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5398), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitetitle] = ACTIONS(5398), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteyear] = ACTIONS(5398), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5400), + [anon_sym_BSLASHcitedate] = ACTIONS(5398), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5400), + [anon_sym_BSLASHciteurl] = ACTIONS(5398), + [anon_sym_BSLASHfullcite] = ACTIONS(5398), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5398), + [anon_sym_BSLASHcitealt] = ACTIONS(5398), + [anon_sym_BSLASHcitealp] = ACTIONS(5398), + [anon_sym_BSLASHcitetext] = ACTIONS(5398), + [anon_sym_BSLASHparencite] = ACTIONS(5398), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHParencite] = ACTIONS(5398), + [anon_sym_BSLASHfootcite] = ACTIONS(5398), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5398), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5398), + [anon_sym_BSLASHtextcite] = ACTIONS(5398), + [anon_sym_BSLASHTextcite] = ACTIONS(5398), + [anon_sym_BSLASHsmartcite] = ACTIONS(5398), + [anon_sym_BSLASHSmartcite] = ACTIONS(5398), + [anon_sym_BSLASHsupercite] = ACTIONS(5398), + [anon_sym_BSLASHautocite] = ACTIONS(5398), + [anon_sym_BSLASHAutocite] = ACTIONS(5398), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5400), + [anon_sym_BSLASHvolcite] = ACTIONS(5398), + [anon_sym_BSLASHVolcite] = ACTIONS(5398), + [anon_sym_BSLASHpvolcite] = ACTIONS(5398), + [anon_sym_BSLASHPvolcite] = ACTIONS(5398), + [anon_sym_BSLASHfvolcite] = ACTIONS(5398), + [anon_sym_BSLASHftvolcite] = ACTIONS(5398), + [anon_sym_BSLASHsvolcite] = ACTIONS(5398), + [anon_sym_BSLASHSvolcite] = ACTIONS(5398), + [anon_sym_BSLASHtvolcite] = ACTIONS(5398), + [anon_sym_BSLASHTvolcite] = ACTIONS(5398), + [anon_sym_BSLASHavolcite] = ACTIONS(5398), + [anon_sym_BSLASHAvolcite] = ACTIONS(5398), + [anon_sym_BSLASHnotecite] = ACTIONS(5398), + [anon_sym_BSLASHNotecite] = ACTIONS(5398), + [anon_sym_BSLASHpnotecite] = ACTIONS(5398), + [anon_sym_BSLASHPnotecite] = ACTIONS(5398), + [anon_sym_BSLASHfnotecite] = ACTIONS(5398), + [anon_sym_BSLASHlabel] = ACTIONS(5398), + [anon_sym_BSLASHref] = ACTIONS(5398), + [anon_sym_BSLASHeqref] = ACTIONS(5398), + [anon_sym_BSLASHvref] = ACTIONS(5398), + [anon_sym_BSLASHVref] = ACTIONS(5398), + [anon_sym_BSLASHautoref] = ACTIONS(5398), + [anon_sym_BSLASHpageref] = ACTIONS(5398), + [anon_sym_BSLASHcref] = ACTIONS(5398), + [anon_sym_BSLASHCref] = ACTIONS(5398), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5400), + [anon_sym_BSLASHnamecref] = ACTIONS(5398), + [anon_sym_BSLASHnameCref] = ACTIONS(5398), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5398), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5398), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5398), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5398), + [anon_sym_BSLASHlabelcref] = ACTIONS(5398), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5398), + [anon_sym_BSLASHcrefrange] = ACTIONS(5398), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5400), + [anon_sym_BSLASHCrefrange] = ACTIONS(5398), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5400), + [anon_sym_BSLASHnewlabel] = ACTIONS(5398), + [anon_sym_BSLASHnewcommand] = ACTIONS(5398), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5398), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5398), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5400), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5398), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdef] = ACTIONS(5398), + [anon_sym_BSLASHlet] = ACTIONS(5398), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5398), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5398), + [anon_sym_BSLASHgls] = ACTIONS(5398), + [anon_sym_BSLASHGls] = ACTIONS(5398), + [anon_sym_BSLASHGLS] = ACTIONS(5398), + [anon_sym_BSLASHglspl] = ACTIONS(5398), + [anon_sym_BSLASHGlspl] = ACTIONS(5398), + [anon_sym_BSLASHGLSpl] = ACTIONS(5398), + [anon_sym_BSLASHglsdisp] = ACTIONS(5398), + [anon_sym_BSLASHglslink] = ACTIONS(5398), + [anon_sym_BSLASHglstext] = ACTIONS(5398), + [anon_sym_BSLASHGlstext] = ACTIONS(5398), + [anon_sym_BSLASHGLStext] = ACTIONS(5398), + [anon_sym_BSLASHglsfirst] = ACTIONS(5398), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5398), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5398), + [anon_sym_BSLASHglsplural] = ACTIONS(5398), + [anon_sym_BSLASHGlsplural] = ACTIONS(5398), + [anon_sym_BSLASHGLSplural] = ACTIONS(5398), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5398), + [anon_sym_BSLASHglsname] = ACTIONS(5398), + [anon_sym_BSLASHGlsname] = ACTIONS(5398), + [anon_sym_BSLASHGLSname] = ACTIONS(5398), + [anon_sym_BSLASHglssymbol] = ACTIONS(5398), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5398), + [anon_sym_BSLASHglsdesc] = ACTIONS(5398), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5398), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5398), + [anon_sym_BSLASHglsuseri] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5398), + [anon_sym_BSLASHglsuserii] = ACTIONS(5398), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5398), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5398), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5398), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5398), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5398), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5398), + [anon_sym_BSLASHglsuserv] = ACTIONS(5398), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5398), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5398), + [anon_sym_BSLASHglsuservi] = ACTIONS(5398), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5398), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5398), + [anon_sym_BSLASHnewacronym] = ACTIONS(5398), + [anon_sym_BSLASHacrshort] = ACTIONS(5398), + [anon_sym_BSLASHAcrshort] = ACTIONS(5398), + [anon_sym_BSLASHACRshort] = ACTIONS(5398), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5398), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5398), + [anon_sym_BSLASHacrlong] = ACTIONS(5398), + [anon_sym_BSLASHAcrlong] = ACTIONS(5398), + [anon_sym_BSLASHACRlong] = ACTIONS(5398), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5398), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5398), + [anon_sym_BSLASHacrfull] = ACTIONS(5398), + [anon_sym_BSLASHAcrfull] = ACTIONS(5398), + [anon_sym_BSLASHACRfull] = ACTIONS(5398), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5398), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5398), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5398), + [anon_sym_BSLASHacs] = ACTIONS(5398), + [anon_sym_BSLASHAcs] = ACTIONS(5398), + [anon_sym_BSLASHacsp] = ACTIONS(5398), + [anon_sym_BSLASHAcsp] = ACTIONS(5398), + [anon_sym_BSLASHacl] = ACTIONS(5398), + [anon_sym_BSLASHAcl] = ACTIONS(5398), + [anon_sym_BSLASHaclp] = ACTIONS(5398), + [anon_sym_BSLASHAclp] = ACTIONS(5398), + [anon_sym_BSLASHacf] = ACTIONS(5398), + [anon_sym_BSLASHAcf] = ACTIONS(5398), + [anon_sym_BSLASHacfp] = ACTIONS(5398), + [anon_sym_BSLASHAcfp] = ACTIONS(5398), + [anon_sym_BSLASHac] = ACTIONS(5398), + [anon_sym_BSLASHAc] = ACTIONS(5398), + [anon_sym_BSLASHacp] = ACTIONS(5398), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5398), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5398), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5398), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5398), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5398), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5398), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5398), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5398), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5398), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5400), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5398), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5398), + [anon_sym_BSLASHcolor] = ACTIONS(5398), + [anon_sym_BSLASHcolorbox] = ACTIONS(5398), + [anon_sym_BSLASHtextcolor] = ACTIONS(5398), + [anon_sym_BSLASHpagecolor] = ACTIONS(5398), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5398), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5398), + [anon_sym_BSLASHtext] = ACTIONS(5398), + [anon_sym_BSLASHintertext] = ACTIONS(5398), + [anon_sym_shortintertext] = ACTIONS(5398), }, [1417] = { - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(143), - [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), + [sym_command_name] = ACTIONS(145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(143), + [sym_word] = ACTIONS(145), + [sym_placeholder] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym__] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(145), + [anon_sym_BSLASHinclude] = ACTIONS(145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), + [anon_sym_BSLASHinput] = ACTIONS(145), + [anon_sym_BSLASHsubfile] = ACTIONS(145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(145), + [anon_sym_BSLASHbibliography] = ACTIONS(145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(145), + [anon_sym_BSLASHincludesvg] = ACTIONS(145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), + [anon_sym_BSLASHimport] = ACTIONS(145), + [anon_sym_BSLASHsubimport] = ACTIONS(145), + [anon_sym_BSLASHinputfrom] = ACTIONS(145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), + [anon_sym_BSLASHincludefrom] = ACTIONS(145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(145), + [anon_sym_BSLASHcite] = ACTIONS(145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(143), + [anon_sym_BSLASHCite] = ACTIONS(145), + [anon_sym_BSLASHnocite] = ACTIONS(145), + [anon_sym_BSLASHcitet] = ACTIONS(145), + [anon_sym_BSLASHcitep] = ACTIONS(145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteauthor] = ACTIONS(145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitetitle] = ACTIONS(145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteyear] = ACTIONS(145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(143), + [anon_sym_BSLASHcitedate] = ACTIONS(145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(143), + [anon_sym_BSLASHciteurl] = ACTIONS(145), + [anon_sym_BSLASHfullcite] = ACTIONS(145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(145), + [anon_sym_BSLASHcitealt] = ACTIONS(145), + [anon_sym_BSLASHcitealp] = ACTIONS(145), + [anon_sym_BSLASHcitetext] = ACTIONS(145), + [anon_sym_BSLASHparencite] = ACTIONS(145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(143), + [anon_sym_BSLASHParencite] = ACTIONS(145), + [anon_sym_BSLASHfootcite] = ACTIONS(145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(145), + [anon_sym_BSLASHtextcite] = ACTIONS(145), + [anon_sym_BSLASHTextcite] = ACTIONS(145), + [anon_sym_BSLASHsmartcite] = ACTIONS(145), + [anon_sym_BSLASHSmartcite] = ACTIONS(145), + [anon_sym_BSLASHsupercite] = ACTIONS(145), + [anon_sym_BSLASHautocite] = ACTIONS(145), + [anon_sym_BSLASHAutocite] = ACTIONS(145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(143), + [anon_sym_BSLASHvolcite] = ACTIONS(145), + [anon_sym_BSLASHVolcite] = ACTIONS(145), + [anon_sym_BSLASHpvolcite] = ACTIONS(145), + [anon_sym_BSLASHPvolcite] = ACTIONS(145), + [anon_sym_BSLASHfvolcite] = ACTIONS(145), + [anon_sym_BSLASHftvolcite] = ACTIONS(145), + [anon_sym_BSLASHsvolcite] = ACTIONS(145), + [anon_sym_BSLASHSvolcite] = ACTIONS(145), + [anon_sym_BSLASHtvolcite] = ACTIONS(145), + [anon_sym_BSLASHTvolcite] = ACTIONS(145), + [anon_sym_BSLASHavolcite] = ACTIONS(145), + [anon_sym_BSLASHAvolcite] = ACTIONS(145), + [anon_sym_BSLASHnotecite] = ACTIONS(145), + [anon_sym_BSLASHNotecite] = ACTIONS(145), + [anon_sym_BSLASHpnotecite] = ACTIONS(145), + [anon_sym_BSLASHPnotecite] = ACTIONS(145), + [anon_sym_BSLASHfnotecite] = ACTIONS(145), + [anon_sym_BSLASHlabel] = ACTIONS(145), + [anon_sym_BSLASHref] = ACTIONS(145), + [anon_sym_BSLASHeqref] = ACTIONS(145), + [anon_sym_BSLASHvref] = ACTIONS(145), + [anon_sym_BSLASHVref] = ACTIONS(145), + [anon_sym_BSLASHautoref] = ACTIONS(145), + [anon_sym_BSLASHpageref] = ACTIONS(145), + [anon_sym_BSLASHcref] = ACTIONS(145), + [anon_sym_BSLASHCref] = ACTIONS(145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(143), + [anon_sym_BSLASHnamecref] = ACTIONS(145), + [anon_sym_BSLASHnameCref] = ACTIONS(145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), + [anon_sym_BSLASHlabelcref] = ACTIONS(145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), + [anon_sym_BSLASHcrefrange] = ACTIONS(145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHCrefrange] = ACTIONS(145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(143), + [anon_sym_BSLASHnewlabel] = ACTIONS(145), + [anon_sym_BSLASHnewcommand] = ACTIONS(145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(143), + [anon_sym_BSLASHdef] = ACTIONS(145), + [anon_sym_BSLASHlet] = ACTIONS(145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), + [anon_sym_BSLASHgls] = ACTIONS(145), + [anon_sym_BSLASHGls] = ACTIONS(145), + [anon_sym_BSLASHGLS] = ACTIONS(145), + [anon_sym_BSLASHglspl] = ACTIONS(145), + [anon_sym_BSLASHGlspl] = ACTIONS(145), + [anon_sym_BSLASHGLSpl] = ACTIONS(145), + [anon_sym_BSLASHglsdisp] = ACTIONS(145), + [anon_sym_BSLASHglslink] = ACTIONS(145), + [anon_sym_BSLASHglstext] = ACTIONS(145), + [anon_sym_BSLASHGlstext] = ACTIONS(145), + [anon_sym_BSLASHGLStext] = ACTIONS(145), + [anon_sym_BSLASHglsfirst] = ACTIONS(145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(145), + [anon_sym_BSLASHglsplural] = ACTIONS(145), + [anon_sym_BSLASHGlsplural] = ACTIONS(145), + [anon_sym_BSLASHGLSplural] = ACTIONS(145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), + [anon_sym_BSLASHglsname] = ACTIONS(145), + [anon_sym_BSLASHGlsname] = ACTIONS(145), + [anon_sym_BSLASHGLSname] = ACTIONS(145), + [anon_sym_BSLASHglssymbol] = ACTIONS(145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(145), + [anon_sym_BSLASHglsdesc] = ACTIONS(145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(145), + [anon_sym_BSLASHglsuseri] = ACTIONS(145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(145), + [anon_sym_BSLASHglsuserii] = ACTIONS(145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), + [anon_sym_BSLASHglsuserv] = ACTIONS(145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(145), + [anon_sym_BSLASHglsuservi] = ACTIONS(145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(145), + [anon_sym_BSLASHnewacronym] = ACTIONS(145), + [anon_sym_BSLASHacrshort] = ACTIONS(145), + [anon_sym_BSLASHAcrshort] = ACTIONS(145), + [anon_sym_BSLASHACRshort] = ACTIONS(145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(145), + [anon_sym_BSLASHacrlong] = ACTIONS(145), + [anon_sym_BSLASHAcrlong] = ACTIONS(145), + [anon_sym_BSLASHACRlong] = ACTIONS(145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(145), + [anon_sym_BSLASHacrfull] = ACTIONS(145), + [anon_sym_BSLASHAcrfull] = ACTIONS(145), + [anon_sym_BSLASHACRfull] = ACTIONS(145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(145), + [anon_sym_BSLASHacs] = ACTIONS(145), + [anon_sym_BSLASHAcs] = ACTIONS(145), + [anon_sym_BSLASHacsp] = ACTIONS(145), + [anon_sym_BSLASHAcsp] = ACTIONS(145), + [anon_sym_BSLASHacl] = ACTIONS(145), + [anon_sym_BSLASHAcl] = ACTIONS(145), + [anon_sym_BSLASHaclp] = ACTIONS(145), + [anon_sym_BSLASHAclp] = ACTIONS(145), + [anon_sym_BSLASHacf] = ACTIONS(145), + [anon_sym_BSLASHAcf] = ACTIONS(145), + [anon_sym_BSLASHacfp] = ACTIONS(145), + [anon_sym_BSLASHAcfp] = ACTIONS(145), + [anon_sym_BSLASHac] = ACTIONS(145), + [anon_sym_BSLASHAc] = ACTIONS(145), + [anon_sym_BSLASHacp] = ACTIONS(145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(145), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), + [anon_sym_BSLASHcolor] = ACTIONS(145), + [anon_sym_BSLASHcolorbox] = ACTIONS(145), + [anon_sym_BSLASHtextcolor] = ACTIONS(145), + [anon_sym_BSLASHpagecolor] = ACTIONS(145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), + [anon_sym_BSLASHtext] = ACTIONS(145), + [anon_sym_BSLASHintertext] = ACTIONS(145), + [anon_sym_shortintertext] = ACTIONS(145), }, [1418] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - [anon_sym_BSLASHtext] = ACTIONS(5007), - [anon_sym_BSLASHintertext] = ACTIONS(5007), - [anon_sym_shortintertext] = ACTIONS(5007), + [sym_command_name] = ACTIONS(5086), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [sym_word] = ACTIONS(5086), + [sym_placeholder] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym__] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5084), + [anon_sym_DOLLAR] = ACTIONS(5086), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5084), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5084), + [anon_sym_BSLASHusepackage] = ACTIONS(5086), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5086), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5086), + [anon_sym_BSLASHinclude] = ACTIONS(5086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5086), + [anon_sym_BSLASHinput] = ACTIONS(5086), + [anon_sym_BSLASHsubfile] = ACTIONS(5086), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5086), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5086), + [anon_sym_BSLASHincludesvg] = ACTIONS(5086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5086), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5086), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5086), + [anon_sym_BSLASHimport] = ACTIONS(5086), + [anon_sym_BSLASHsubimport] = ACTIONS(5086), + [anon_sym_BSLASHinputfrom] = ACTIONS(5086), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5086), + [anon_sym_BSLASHincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5086), + [anon_sym_BSLASHcaption] = ACTIONS(5086), + [anon_sym_BSLASHcite] = ACTIONS(5086), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCite] = ACTIONS(5086), + [anon_sym_BSLASHnocite] = ACTIONS(5086), + [anon_sym_BSLASHcitet] = ACTIONS(5086), + [anon_sym_BSLASHcitep] = ACTIONS(5086), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteauthor] = ACTIONS(5086), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5086), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitetitle] = ACTIONS(5086), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteyear] = ACTIONS(5086), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5084), + [anon_sym_BSLASHcitedate] = ACTIONS(5086), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5084), + [anon_sym_BSLASHciteurl] = ACTIONS(5086), + [anon_sym_BSLASHfullcite] = ACTIONS(5086), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5086), + [anon_sym_BSLASHcitealt] = ACTIONS(5086), + [anon_sym_BSLASHcitealp] = ACTIONS(5086), + [anon_sym_BSLASHcitetext] = ACTIONS(5086), + [anon_sym_BSLASHparencite] = ACTIONS(5086), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHParencite] = ACTIONS(5086), + [anon_sym_BSLASHfootcite] = ACTIONS(5086), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5086), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5086), + [anon_sym_BSLASHtextcite] = ACTIONS(5086), + [anon_sym_BSLASHTextcite] = ACTIONS(5086), + [anon_sym_BSLASHsmartcite] = ACTIONS(5086), + [anon_sym_BSLASHSmartcite] = ACTIONS(5086), + [anon_sym_BSLASHsupercite] = ACTIONS(5086), + [anon_sym_BSLASHautocite] = ACTIONS(5086), + [anon_sym_BSLASHAutocite] = ACTIONS(5086), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5084), + [anon_sym_BSLASHvolcite] = ACTIONS(5086), + [anon_sym_BSLASHVolcite] = ACTIONS(5086), + [anon_sym_BSLASHpvolcite] = ACTIONS(5086), + [anon_sym_BSLASHPvolcite] = ACTIONS(5086), + [anon_sym_BSLASHfvolcite] = ACTIONS(5086), + [anon_sym_BSLASHftvolcite] = ACTIONS(5086), + [anon_sym_BSLASHsvolcite] = ACTIONS(5086), + [anon_sym_BSLASHSvolcite] = ACTIONS(5086), + [anon_sym_BSLASHtvolcite] = ACTIONS(5086), + [anon_sym_BSLASHTvolcite] = ACTIONS(5086), + [anon_sym_BSLASHavolcite] = ACTIONS(5086), + [anon_sym_BSLASHAvolcite] = ACTIONS(5086), + [anon_sym_BSLASHnotecite] = ACTIONS(5086), + [anon_sym_BSLASHNotecite] = ACTIONS(5086), + [anon_sym_BSLASHpnotecite] = ACTIONS(5086), + [anon_sym_BSLASHPnotecite] = ACTIONS(5086), + [anon_sym_BSLASHfnotecite] = ACTIONS(5086), + [anon_sym_BSLASHlabel] = ACTIONS(5086), + [anon_sym_BSLASHref] = ACTIONS(5086), + [anon_sym_BSLASHeqref] = ACTIONS(5086), + [anon_sym_BSLASHvref] = ACTIONS(5086), + [anon_sym_BSLASHVref] = ACTIONS(5086), + [anon_sym_BSLASHautoref] = ACTIONS(5086), + [anon_sym_BSLASHpageref] = ACTIONS(5086), + [anon_sym_BSLASHcref] = ACTIONS(5086), + [anon_sym_BSLASHCref] = ACTIONS(5086), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnameCref] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5086), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5086), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5086), + [anon_sym_BSLASHlabelcref] = ACTIONS(5086), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange] = ACTIONS(5086), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHCrefrange] = ACTIONS(5086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5084), + [anon_sym_BSLASHnewlabel] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand] = ACTIONS(5086), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5086), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5086), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdef] = ACTIONS(5086), + [anon_sym_BSLASHlet] = ACTIONS(5086), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5086), + [anon_sym_BSLASHgls] = ACTIONS(5086), + [anon_sym_BSLASHGls] = ACTIONS(5086), + [anon_sym_BSLASHGLS] = ACTIONS(5086), + [anon_sym_BSLASHglspl] = ACTIONS(5086), + [anon_sym_BSLASHGlspl] = ACTIONS(5086), + [anon_sym_BSLASHGLSpl] = ACTIONS(5086), + [anon_sym_BSLASHglsdisp] = ACTIONS(5086), + [anon_sym_BSLASHglslink] = ACTIONS(5086), + [anon_sym_BSLASHglstext] = ACTIONS(5086), + [anon_sym_BSLASHGlstext] = ACTIONS(5086), + [anon_sym_BSLASHGLStext] = ACTIONS(5086), + [anon_sym_BSLASHglsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5086), + [anon_sym_BSLASHglsplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSplural] = ACTIONS(5086), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5086), + [anon_sym_BSLASHglsname] = ACTIONS(5086), + [anon_sym_BSLASHGlsname] = ACTIONS(5086), + [anon_sym_BSLASHGLSname] = ACTIONS(5086), + [anon_sym_BSLASHglssymbol] = ACTIONS(5086), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5086), + [anon_sym_BSLASHglsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5086), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5086), + [anon_sym_BSLASHglsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5086), + [anon_sym_BSLASHglsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5086), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5086), + [anon_sym_BSLASHglsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5086), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5086), + [anon_sym_BSLASHglsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5086), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5086), + [anon_sym_BSLASHnewacronym] = ACTIONS(5086), + [anon_sym_BSLASHacrshort] = ACTIONS(5086), + [anon_sym_BSLASHAcrshort] = ACTIONS(5086), + [anon_sym_BSLASHACRshort] = ACTIONS(5086), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5086), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5086), + [anon_sym_BSLASHacrlong] = ACTIONS(5086), + [anon_sym_BSLASHAcrlong] = ACTIONS(5086), + [anon_sym_BSLASHACRlong] = ACTIONS(5086), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5086), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5086), + [anon_sym_BSLASHacrfull] = ACTIONS(5086), + [anon_sym_BSLASHAcrfull] = ACTIONS(5086), + [anon_sym_BSLASHACRfull] = ACTIONS(5086), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5086), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5086), + [anon_sym_BSLASHacs] = ACTIONS(5086), + [anon_sym_BSLASHAcs] = ACTIONS(5086), + [anon_sym_BSLASHacsp] = ACTIONS(5086), + [anon_sym_BSLASHAcsp] = ACTIONS(5086), + [anon_sym_BSLASHacl] = ACTIONS(5086), + [anon_sym_BSLASHAcl] = ACTIONS(5086), + [anon_sym_BSLASHaclp] = ACTIONS(5086), + [anon_sym_BSLASHAclp] = ACTIONS(5086), + [anon_sym_BSLASHacf] = ACTIONS(5086), + [anon_sym_BSLASHAcf] = ACTIONS(5086), + [anon_sym_BSLASHacfp] = ACTIONS(5086), + [anon_sym_BSLASHAcfp] = ACTIONS(5086), + [anon_sym_BSLASHac] = ACTIONS(5086), + [anon_sym_BSLASHAc] = ACTIONS(5086), + [anon_sym_BSLASHacp] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5086), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5086), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5086), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5086), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5086), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5084), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5086), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5086), + [anon_sym_BSLASHcolor] = ACTIONS(5086), + [anon_sym_BSLASHcolorbox] = ACTIONS(5086), + [anon_sym_BSLASHtextcolor] = ACTIONS(5086), + [anon_sym_BSLASHpagecolor] = ACTIONS(5086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5086), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5086), + [anon_sym_BSLASHtext] = ACTIONS(5086), + [anon_sym_BSLASHintertext] = ACTIONS(5086), + [anon_sym_shortintertext] = ACTIONS(5086), }, [1419] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), - [anon_sym_BSLASHtext] = ACTIONS(5177), - [anon_sym_BSLASHintertext] = ACTIONS(5177), - [anon_sym_shortintertext] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5254), + [anon_sym_DOLLAR] = ACTIONS(5256), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5254), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5254), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), + [anon_sym_BSLASHtext] = ACTIONS(5256), + [anon_sym_BSLASHintertext] = ACTIONS(5256), + [anon_sym_shortintertext] = ACTIONS(5256), }, [1420] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), - [anon_sym_BSLASHtext] = ACTIONS(5181), - [anon_sym_BSLASHintertext] = ACTIONS(5181), - [anon_sym_shortintertext] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(5260), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5258), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5258), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), + [anon_sym_BSLASHtext] = ACTIONS(5260), + [anon_sym_BSLASHintertext] = ACTIONS(5260), + [anon_sym_shortintertext] = ACTIONS(5260), }, [1421] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5262), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5262), + [anon_sym_DOLLAR] = ACTIONS(5264), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5262), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5262), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), + [anon_sym_BSLASHtext] = ACTIONS(5264), + [anon_sym_BSLASHintertext] = ACTIONS(5264), + [anon_sym_shortintertext] = ACTIONS(5264), }, [1422] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5266), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(5268), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5266), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5266), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), + [anon_sym_BSLASHtext] = ACTIONS(5268), + [anon_sym_BSLASHintertext] = ACTIONS(5268), + [anon_sym_shortintertext] = ACTIONS(5268), }, [1423] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5270), + [anon_sym_DOLLAR] = ACTIONS(5272), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5270), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5270), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), + [anon_sym_BSLASHtext] = ACTIONS(5272), + [anon_sym_BSLASHintertext] = ACTIONS(5272), + [anon_sym_shortintertext] = ACTIONS(5272), }, [1424] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5274), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5274), + [anon_sym_DOLLAR] = ACTIONS(5276), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5274), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5274), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), + [anon_sym_BSLASHtext] = ACTIONS(5276), + [anon_sym_BSLASHintertext] = ACTIONS(5276), + [anon_sym_shortintertext] = ACTIONS(5276), }, [1425] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5278), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_LBRACK] = ACTIONS(5278), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(5280), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5278), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5278), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), + [anon_sym_BSLASHtext] = ACTIONS(5280), + [anon_sym_BSLASHintertext] = ACTIONS(5280), + [anon_sym_shortintertext] = ACTIONS(5280), }, [1426] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_LBRACK] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5286), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5286), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), + [anon_sym_BSLASHtext] = ACTIONS(5288), + [anon_sym_BSLASHintertext] = ACTIONS(5288), + [anon_sym_shortintertext] = ACTIONS(5288), }, [1427] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LBRACE] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5314), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5314), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), + [anon_sym_BSLASHtext] = ACTIONS(5316), + [anon_sym_BSLASHintertext] = ACTIONS(5316), + [anon_sym_shortintertext] = ACTIONS(5316), }, [1428] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_LBRACE] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5318), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5318), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), + [anon_sym_BSLASHtext] = ACTIONS(5320), + [anon_sym_BSLASHintertext] = ACTIONS(5320), + [anon_sym_shortintertext] = ACTIONS(5320), }, [1429] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_LBRACE] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5322), + [anon_sym_DOLLAR] = ACTIONS(5324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5322), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5322), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), + [anon_sym_BSLASHtext] = ACTIONS(5324), + [anon_sym_BSLASHintertext] = ACTIONS(5324), + [anon_sym_shortintertext] = ACTIONS(5324), }, [1430] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(5326), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(5328), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5326), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5326), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), + [anon_sym_BSLASHtext] = ACTIONS(5328), + [anon_sym_BSLASHintertext] = ACTIONS(5328), + [anon_sym_shortintertext] = ACTIONS(5328), }, [1431] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_LBRACE] = ACTIONS(5330), + [anon_sym_RBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5330), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5330), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), + [anon_sym_BSLASHtext] = ACTIONS(5332), + [anon_sym_BSLASHintertext] = ACTIONS(5332), + [anon_sym_shortintertext] = ACTIONS(5332), }, [1432] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_RPAREN] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(5334), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5334), + [anon_sym_RBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5334), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5334), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5334), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), + [anon_sym_BSLASHtext] = ACTIONS(5336), + [anon_sym_BSLASHintertext] = ACTIONS(5336), + [anon_sym_shortintertext] = ACTIONS(5336), }, [1433] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5338), + [anon_sym_RPAREN] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_RBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5338), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5338), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), + [anon_sym_BSLASHtext] = ACTIONS(5340), + [anon_sym_BSLASHintertext] = ACTIONS(5340), + [anon_sym_shortintertext] = ACTIONS(5340), }, [1434] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_RPAREN] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_LBRACE] = ACTIONS(5342), + [anon_sym_RBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5342), + [anon_sym_DOLLAR] = ACTIONS(5344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5342), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5342), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), + [anon_sym_BSLASHtext] = ACTIONS(5344), + [anon_sym_BSLASHintertext] = ACTIONS(5344), + [anon_sym_shortintertext] = ACTIONS(5344), }, [1435] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(5346), + [anon_sym_RBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5346), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5346), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), + [anon_sym_BSLASHtext] = ACTIONS(5348), + [anon_sym_BSLASHintertext] = ACTIONS(5348), + [anon_sym_shortintertext] = ACTIONS(5348), }, [1436] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5350), + [anon_sym_DOLLAR] = ACTIONS(5352), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5350), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5350), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), + [anon_sym_BSLASHtext] = ACTIONS(5352), + [anon_sym_BSLASHintertext] = ACTIONS(5352), + [anon_sym_shortintertext] = ACTIONS(5352), }, [1437] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5354), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5356), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5354), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5354), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), + [anon_sym_BSLASHtext] = ACTIONS(5356), + [anon_sym_BSLASHintertext] = ACTIONS(5356), + [anon_sym_shortintertext] = ACTIONS(5356), }, [1438] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_LPAREN] = ACTIONS(5279), - [anon_sym_RPAREN] = ACTIONS(5279), - [anon_sym_LBRACK] = ACTIONS(5279), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(5279), - [anon_sym_RBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), - [anon_sym_BSLASHtext] = ACTIONS(5281), - [anon_sym_BSLASHintertext] = ACTIONS(5281), - [anon_sym_shortintertext] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_RBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5358), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5358), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5358), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), + [anon_sym_BSLASHtext] = ACTIONS(5360), + [anon_sym_BSLASHintertext] = ACTIONS(5360), + [anon_sym_shortintertext] = ACTIONS(5360), }, [1439] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_LPAREN] = ACTIONS(5307), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(5307), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5307), - [anon_sym_RBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), - [anon_sym_BSLASHtext] = ACTIONS(5309), - [anon_sym_BSLASHintertext] = ACTIONS(5309), - [anon_sym_shortintertext] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_RPAREN] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_LBRACE] = ACTIONS(5386), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5386), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5386), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), + [anon_sym_BSLASHtext] = ACTIONS(5388), + [anon_sym_BSLASHintertext] = ACTIONS(5388), + [anon_sym_shortintertext] = ACTIONS(5388), }, [1440] = { - [sym_command_name] = ACTIONS(5285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5285), - [anon_sym_LPAREN] = ACTIONS(5283), - [anon_sym_RPAREN] = ACTIONS(5283), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_RBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5283), - [anon_sym_RBRACE] = ACTIONS(5283), - [sym_word] = ACTIONS(5285), - [sym_placeholder] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_STAR] = ACTIONS(5285), - [anon_sym_SLASH] = ACTIONS(5285), - [anon_sym_CARET] = ACTIONS(5285), - [anon_sym__] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(5285), - [anon_sym_GT] = ACTIONS(5285), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PIPE] = ACTIONS(5285), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_SQUOTE] = ACTIONS(5285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), - [anon_sym_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), - [anon_sym_BSLASHinclude] = ACTIONS(5285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), - [anon_sym_BSLASHinput] = ACTIONS(5285), - [anon_sym_BSLASHsubfile] = ACTIONS(5285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), - [anon_sym_BSLASHbibliography] = ACTIONS(5285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), - [anon_sym_BSLASHincludesvg] = ACTIONS(5285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), - [anon_sym_BSLASHimport] = ACTIONS(5285), - [anon_sym_BSLASHsubimport] = ACTIONS(5285), - [anon_sym_BSLASHinputfrom] = ACTIONS(5285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), - [anon_sym_BSLASHincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), - [anon_sym_BSLASHcaption] = ACTIONS(5285), - [anon_sym_BSLASHcite] = ACTIONS(5285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCite] = ACTIONS(5285), - [anon_sym_BSLASHnocite] = ACTIONS(5285), - [anon_sym_BSLASHcitet] = ACTIONS(5285), - [anon_sym_BSLASHcitep] = ACTIONS(5285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteyear] = ACTIONS(5285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), - [anon_sym_BSLASHcitedate] = ACTIONS(5285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), - [anon_sym_BSLASHciteurl] = ACTIONS(5285), - [anon_sym_BSLASHfullcite] = ACTIONS(5285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), - [anon_sym_BSLASHcitealt] = ACTIONS(5285), - [anon_sym_BSLASHcitealp] = ACTIONS(5285), - [anon_sym_BSLASHcitetext] = ACTIONS(5285), - [anon_sym_BSLASHparencite] = ACTIONS(5285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHParencite] = ACTIONS(5285), - [anon_sym_BSLASHfootcite] = ACTIONS(5285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), - [anon_sym_BSLASHtextcite] = ACTIONS(5285), - [anon_sym_BSLASHTextcite] = ACTIONS(5285), - [anon_sym_BSLASHsmartcite] = ACTIONS(5285), - [anon_sym_BSLASHSmartcite] = ACTIONS(5285), - [anon_sym_BSLASHsupercite] = ACTIONS(5285), - [anon_sym_BSLASHautocite] = ACTIONS(5285), - [anon_sym_BSLASHAutocite] = ACTIONS(5285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), - [anon_sym_BSLASHvolcite] = ACTIONS(5285), - [anon_sym_BSLASHVolcite] = ACTIONS(5285), - [anon_sym_BSLASHpvolcite] = ACTIONS(5285), - [anon_sym_BSLASHPvolcite] = ACTIONS(5285), - [anon_sym_BSLASHfvolcite] = ACTIONS(5285), - [anon_sym_BSLASHftvolcite] = ACTIONS(5285), - [anon_sym_BSLASHsvolcite] = ACTIONS(5285), - [anon_sym_BSLASHSvolcite] = ACTIONS(5285), - [anon_sym_BSLASHtvolcite] = ACTIONS(5285), - [anon_sym_BSLASHTvolcite] = ACTIONS(5285), - [anon_sym_BSLASHavolcite] = ACTIONS(5285), - [anon_sym_BSLASHAvolcite] = ACTIONS(5285), - [anon_sym_BSLASHnotecite] = ACTIONS(5285), - [anon_sym_BSLASHNotecite] = ACTIONS(5285), - [anon_sym_BSLASHpnotecite] = ACTIONS(5285), - [anon_sym_BSLASHPnotecite] = ACTIONS(5285), - [anon_sym_BSLASHfnotecite] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5285), - [anon_sym_BSLASHref] = ACTIONS(5285), - [anon_sym_BSLASHeqref] = ACTIONS(5285), - [anon_sym_BSLASHvref] = ACTIONS(5285), - [anon_sym_BSLASHVref] = ACTIONS(5285), - [anon_sym_BSLASHautoref] = ACTIONS(5285), - [anon_sym_BSLASHpageref] = ACTIONS(5285), - [anon_sym_BSLASHcref] = ACTIONS(5285), - [anon_sym_BSLASHCref] = ACTIONS(5285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnameCref] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), - [anon_sym_BSLASHlabelcref] = ACTIONS(5285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange] = ACTIONS(5285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), - [anon_sym_BSLASHnewlabel] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand] = ACTIONS(5285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), - [anon_sym_BSLASHdef] = ACTIONS(5285), - [anon_sym_BSLASHlet] = ACTIONS(5285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), - [anon_sym_BSLASHgls] = ACTIONS(5285), - [anon_sym_BSLASHGls] = ACTIONS(5285), - [anon_sym_BSLASHGLS] = ACTIONS(5285), - [anon_sym_BSLASHglspl] = ACTIONS(5285), - [anon_sym_BSLASHGlspl] = ACTIONS(5285), - [anon_sym_BSLASHGLSpl] = ACTIONS(5285), - [anon_sym_BSLASHglsdisp] = ACTIONS(5285), - [anon_sym_BSLASHglslink] = ACTIONS(5285), - [anon_sym_BSLASHglstext] = ACTIONS(5285), - [anon_sym_BSLASHGlstext] = ACTIONS(5285), - [anon_sym_BSLASHGLStext] = ACTIONS(5285), - [anon_sym_BSLASHglsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), - [anon_sym_BSLASHglsplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSplural] = ACTIONS(5285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), - [anon_sym_BSLASHglsname] = ACTIONS(5285), - [anon_sym_BSLASHGlsname] = ACTIONS(5285), - [anon_sym_BSLASHGLSname] = ACTIONS(5285), - [anon_sym_BSLASHglssymbol] = ACTIONS(5285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), - [anon_sym_BSLASHglsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), - [anon_sym_BSLASHglsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), - [anon_sym_BSLASHglsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), - [anon_sym_BSLASHglsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), - [anon_sym_BSLASHglsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), - [anon_sym_BSLASHnewacronym] = ACTIONS(5285), - [anon_sym_BSLASHacrshort] = ACTIONS(5285), - [anon_sym_BSLASHAcrshort] = ACTIONS(5285), - [anon_sym_BSLASHACRshort] = ACTIONS(5285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), - [anon_sym_BSLASHacrlong] = ACTIONS(5285), - [anon_sym_BSLASHAcrlong] = ACTIONS(5285), - [anon_sym_BSLASHACRlong] = ACTIONS(5285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), - [anon_sym_BSLASHacrfull] = ACTIONS(5285), - [anon_sym_BSLASHAcrfull] = ACTIONS(5285), - [anon_sym_BSLASHACRfull] = ACTIONS(5285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), - [anon_sym_BSLASHacs] = ACTIONS(5285), - [anon_sym_BSLASHAcs] = ACTIONS(5285), - [anon_sym_BSLASHacsp] = ACTIONS(5285), - [anon_sym_BSLASHAcsp] = ACTIONS(5285), - [anon_sym_BSLASHacl] = ACTIONS(5285), - [anon_sym_BSLASHAcl] = ACTIONS(5285), - [anon_sym_BSLASHaclp] = ACTIONS(5285), - [anon_sym_BSLASHAclp] = ACTIONS(5285), - [anon_sym_BSLASHacf] = ACTIONS(5285), - [anon_sym_BSLASHAcf] = ACTIONS(5285), - [anon_sym_BSLASHacfp] = ACTIONS(5285), - [anon_sym_BSLASHAcfp] = ACTIONS(5285), - [anon_sym_BSLASHac] = ACTIONS(5285), - [anon_sym_BSLASHAc] = ACTIONS(5285), - [anon_sym_BSLASHacp] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), - [anon_sym_BSLASHcolor] = ACTIONS(5285), - [anon_sym_BSLASHcolorbox] = ACTIONS(5285), - [anon_sym_BSLASHtextcolor] = ACTIONS(5285), - [anon_sym_BSLASHpagecolor] = ACTIONS(5285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), - [anon_sym_BSLASHtext] = ACTIONS(5285), - [anon_sym_BSLASHintertext] = ACTIONS(5285), - [anon_sym_shortintertext] = ACTIONS(5285), + [sym_command_name] = ACTIONS(5364), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_LBRACE] = ACTIONS(5362), + [anon_sym_RBRACE] = ACTIONS(5362), + [sym_word] = ACTIONS(5364), + [sym_placeholder] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym__] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_SQUOTE] = ACTIONS(5364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5362), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5362), + [anon_sym_BSLASHusepackage] = ACTIONS(5364), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5364), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5364), + [anon_sym_BSLASHinclude] = ACTIONS(5364), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5364), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5364), + [anon_sym_BSLASHbibliography] = ACTIONS(5364), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5364), + [anon_sym_BSLASHincludesvg] = ACTIONS(5364), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5364), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5364), + [anon_sym_BSLASHimport] = ACTIONS(5364), + [anon_sym_BSLASHsubimport] = ACTIONS(5364), + [anon_sym_BSLASHinputfrom] = ACTIONS(5364), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5364), + [anon_sym_BSLASHincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5364), + [anon_sym_BSLASHcaption] = ACTIONS(5364), + [anon_sym_BSLASHcite] = ACTIONS(5364), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCite] = ACTIONS(5364), + [anon_sym_BSLASHnocite] = ACTIONS(5364), + [anon_sym_BSLASHcitet] = ACTIONS(5364), + [anon_sym_BSLASHcitep] = ACTIONS(5364), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteauthor] = ACTIONS(5364), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5364), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitetitle] = ACTIONS(5364), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteyear] = ACTIONS(5364), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5362), + [anon_sym_BSLASHcitedate] = ACTIONS(5364), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5362), + [anon_sym_BSLASHciteurl] = ACTIONS(5364), + [anon_sym_BSLASHfullcite] = ACTIONS(5364), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5364), + [anon_sym_BSLASHcitealt] = ACTIONS(5364), + [anon_sym_BSLASHcitealp] = ACTIONS(5364), + [anon_sym_BSLASHcitetext] = ACTIONS(5364), + [anon_sym_BSLASHparencite] = ACTIONS(5364), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHParencite] = ACTIONS(5364), + [anon_sym_BSLASHfootcite] = ACTIONS(5364), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5364), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5364), + [anon_sym_BSLASHtextcite] = ACTIONS(5364), + [anon_sym_BSLASHTextcite] = ACTIONS(5364), + [anon_sym_BSLASHsmartcite] = ACTIONS(5364), + [anon_sym_BSLASHSmartcite] = ACTIONS(5364), + [anon_sym_BSLASHsupercite] = ACTIONS(5364), + [anon_sym_BSLASHautocite] = ACTIONS(5364), + [anon_sym_BSLASHAutocite] = ACTIONS(5364), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5362), + [anon_sym_BSLASHvolcite] = ACTIONS(5364), + [anon_sym_BSLASHVolcite] = ACTIONS(5364), + [anon_sym_BSLASHpvolcite] = ACTIONS(5364), + [anon_sym_BSLASHPvolcite] = ACTIONS(5364), + [anon_sym_BSLASHfvolcite] = ACTIONS(5364), + [anon_sym_BSLASHftvolcite] = ACTIONS(5364), + [anon_sym_BSLASHsvolcite] = ACTIONS(5364), + [anon_sym_BSLASHSvolcite] = ACTIONS(5364), + [anon_sym_BSLASHtvolcite] = ACTIONS(5364), + [anon_sym_BSLASHTvolcite] = ACTIONS(5364), + [anon_sym_BSLASHavolcite] = ACTIONS(5364), + [anon_sym_BSLASHAvolcite] = ACTIONS(5364), + [anon_sym_BSLASHnotecite] = ACTIONS(5364), + [anon_sym_BSLASHNotecite] = ACTIONS(5364), + [anon_sym_BSLASHpnotecite] = ACTIONS(5364), + [anon_sym_BSLASHPnotecite] = ACTIONS(5364), + [anon_sym_BSLASHfnotecite] = ACTIONS(5364), + [anon_sym_BSLASHlabel] = ACTIONS(5364), + [anon_sym_BSLASHref] = ACTIONS(5364), + [anon_sym_BSLASHeqref] = ACTIONS(5364), + [anon_sym_BSLASHvref] = ACTIONS(5364), + [anon_sym_BSLASHVref] = ACTIONS(5364), + [anon_sym_BSLASHautoref] = ACTIONS(5364), + [anon_sym_BSLASHpageref] = ACTIONS(5364), + [anon_sym_BSLASHcref] = ACTIONS(5364), + [anon_sym_BSLASHCref] = ACTIONS(5364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnameCref] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5364), + [anon_sym_BSLASHlabelcref] = ACTIONS(5364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange] = ACTIONS(5364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHCrefrange] = ACTIONS(5364), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5362), + [anon_sym_BSLASHnewlabel] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand] = ACTIONS(5364), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5364), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5364), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5362), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5364), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdef] = ACTIONS(5364), + [anon_sym_BSLASHlet] = ACTIONS(5364), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5364), + [anon_sym_BSLASHgls] = ACTIONS(5364), + [anon_sym_BSLASHGls] = ACTIONS(5364), + [anon_sym_BSLASHGLS] = ACTIONS(5364), + [anon_sym_BSLASHglspl] = ACTIONS(5364), + [anon_sym_BSLASHGlspl] = ACTIONS(5364), + [anon_sym_BSLASHGLSpl] = ACTIONS(5364), + [anon_sym_BSLASHglsdisp] = ACTIONS(5364), + [anon_sym_BSLASHglslink] = ACTIONS(5364), + [anon_sym_BSLASHglstext] = ACTIONS(5364), + [anon_sym_BSLASHGlstext] = ACTIONS(5364), + [anon_sym_BSLASHGLStext] = ACTIONS(5364), + [anon_sym_BSLASHglsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5364), + [anon_sym_BSLASHglsplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSplural] = ACTIONS(5364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5364), + [anon_sym_BSLASHglsname] = ACTIONS(5364), + [anon_sym_BSLASHGlsname] = ACTIONS(5364), + [anon_sym_BSLASHGLSname] = ACTIONS(5364), + [anon_sym_BSLASHglssymbol] = ACTIONS(5364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5364), + [anon_sym_BSLASHglsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5364), + [anon_sym_BSLASHglsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5364), + [anon_sym_BSLASHglsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5364), + [anon_sym_BSLASHglsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5364), + [anon_sym_BSLASHglsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5364), + [anon_sym_BSLASHnewacronym] = ACTIONS(5364), + [anon_sym_BSLASHacrshort] = ACTIONS(5364), + [anon_sym_BSLASHAcrshort] = ACTIONS(5364), + [anon_sym_BSLASHACRshort] = ACTIONS(5364), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5364), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5364), + [anon_sym_BSLASHacrlong] = ACTIONS(5364), + [anon_sym_BSLASHAcrlong] = ACTIONS(5364), + [anon_sym_BSLASHACRlong] = ACTIONS(5364), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5364), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5364), + [anon_sym_BSLASHacrfull] = ACTIONS(5364), + [anon_sym_BSLASHAcrfull] = ACTIONS(5364), + [anon_sym_BSLASHACRfull] = ACTIONS(5364), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5364), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5364), + [anon_sym_BSLASHacs] = ACTIONS(5364), + [anon_sym_BSLASHAcs] = ACTIONS(5364), + [anon_sym_BSLASHacsp] = ACTIONS(5364), + [anon_sym_BSLASHAcsp] = ACTIONS(5364), + [anon_sym_BSLASHacl] = ACTIONS(5364), + [anon_sym_BSLASHAcl] = ACTIONS(5364), + [anon_sym_BSLASHaclp] = ACTIONS(5364), + [anon_sym_BSLASHAclp] = ACTIONS(5364), + [anon_sym_BSLASHacf] = ACTIONS(5364), + [anon_sym_BSLASHAcf] = ACTIONS(5364), + [anon_sym_BSLASHacfp] = ACTIONS(5364), + [anon_sym_BSLASHAcfp] = ACTIONS(5364), + [anon_sym_BSLASHac] = ACTIONS(5364), + [anon_sym_BSLASHAc] = ACTIONS(5364), + [anon_sym_BSLASHacp] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5364), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5364), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5364), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5364), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5364), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5362), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5364), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5364), + [anon_sym_BSLASHcolor] = ACTIONS(5364), + [anon_sym_BSLASHcolorbox] = ACTIONS(5364), + [anon_sym_BSLASHtextcolor] = ACTIONS(5364), + [anon_sym_BSLASHpagecolor] = ACTIONS(5364), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5364), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5364), + [anon_sym_BSLASHtext] = ACTIONS(5364), + [anon_sym_BSLASHintertext] = ACTIONS(5364), + [anon_sym_shortintertext] = ACTIONS(5364), }, [1441] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_RBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), - [anon_sym_BSLASHtext] = ACTIONS(5157), - [anon_sym_BSLASHintertext] = ACTIONS(5157), - [anon_sym_shortintertext] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5234), + [anon_sym_DOLLAR] = ACTIONS(5236), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5234), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5234), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), + [anon_sym_BSLASHtext] = ACTIONS(5236), + [anon_sym_BSLASHintertext] = ACTIONS(5236), + [anon_sym_shortintertext] = ACTIONS(5236), }, [1442] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_RPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [anon_sym_RBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5212), + [anon_sym_DOLLAR] = ACTIONS(5214), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5212), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), + [anon_sym_BSLASHtext] = ACTIONS(5214), + [anon_sym_BSLASHintertext] = ACTIONS(5214), + [anon_sym_shortintertext] = ACTIONS(5214), }, [1443] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), - [anon_sym_BSLASHtext] = ACTIONS(4887), - [anon_sym_BSLASHintertext] = ACTIONS(4887), - [anon_sym_shortintertext] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4966), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4964), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4964), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), + [anon_sym_BSLASHtext] = ACTIONS(4966), + [anon_sym_BSLASHintertext] = ACTIONS(4966), + [anon_sym_shortintertext] = ACTIONS(4966), }, [1444] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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), + [sym_command_name] = ACTIONS(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5134), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5134), + [anon_sym_RBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5134), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5134), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), + [anon_sym_BSLASHtext] = ACTIONS(5136), + [anon_sym_BSLASHintertext] = ACTIONS(5136), + [anon_sym_shortintertext] = ACTIONS(5136), }, [1445] = { - [sym_command_name] = ACTIONS(133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_placeholder] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym__] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(131), - [anon_sym_BSLASH_LBRACE] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(133), - [anon_sym_BSLASHinclude] = ACTIONS(133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), - [anon_sym_BSLASHinput] = ACTIONS(133), - [anon_sym_BSLASHsubfile] = ACTIONS(133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(133), - [anon_sym_BSLASHbibliography] = ACTIONS(133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(133), - [anon_sym_BSLASHincludesvg] = ACTIONS(133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), - [anon_sym_BSLASHimport] = ACTIONS(133), - [anon_sym_BSLASHsubimport] = ACTIONS(133), - [anon_sym_BSLASHinputfrom] = ACTIONS(133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), - [anon_sym_BSLASHincludefrom] = ACTIONS(133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), - [anon_sym_BSLASHcaption] = ACTIONS(133), - [anon_sym_BSLASHcite] = ACTIONS(133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(131), - [anon_sym_BSLASHCite] = ACTIONS(133), - [anon_sym_BSLASHnocite] = ACTIONS(133), - [anon_sym_BSLASHcitet] = ACTIONS(133), - [anon_sym_BSLASHcitep] = ACTIONS(133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteauthor] = ACTIONS(133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitetitle] = ACTIONS(133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteyear] = ACTIONS(133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), - [anon_sym_BSLASHcitedate] = ACTIONS(133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), - [anon_sym_BSLASHciteurl] = ACTIONS(133), - [anon_sym_BSLASHfullcite] = ACTIONS(133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(133), - [anon_sym_BSLASHcitealt] = ACTIONS(133), - [anon_sym_BSLASHcitealp] = ACTIONS(133), - [anon_sym_BSLASHcitetext] = ACTIONS(133), - [anon_sym_BSLASHparencite] = ACTIONS(133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), - [anon_sym_BSLASHParencite] = ACTIONS(133), - [anon_sym_BSLASHfootcite] = ACTIONS(133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(133), - [anon_sym_BSLASHtextcite] = ACTIONS(133), - [anon_sym_BSLASHTextcite] = ACTIONS(133), - [anon_sym_BSLASHsmartcite] = ACTIONS(133), - [anon_sym_BSLASHSmartcite] = ACTIONS(133), - [anon_sym_BSLASHsupercite] = ACTIONS(133), - [anon_sym_BSLASHautocite] = ACTIONS(133), - [anon_sym_BSLASHAutocite] = ACTIONS(133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), - [anon_sym_BSLASHvolcite] = ACTIONS(133), - [anon_sym_BSLASHVolcite] = ACTIONS(133), - [anon_sym_BSLASHpvolcite] = ACTIONS(133), - [anon_sym_BSLASHPvolcite] = ACTIONS(133), - [anon_sym_BSLASHfvolcite] = ACTIONS(133), - [anon_sym_BSLASHftvolcite] = ACTIONS(133), - [anon_sym_BSLASHsvolcite] = ACTIONS(133), - [anon_sym_BSLASHSvolcite] = ACTIONS(133), - [anon_sym_BSLASHtvolcite] = ACTIONS(133), - [anon_sym_BSLASHTvolcite] = ACTIONS(133), - [anon_sym_BSLASHavolcite] = ACTIONS(133), - [anon_sym_BSLASHAvolcite] = ACTIONS(133), - [anon_sym_BSLASHnotecite] = ACTIONS(133), - [anon_sym_BSLASHNotecite] = ACTIONS(133), - [anon_sym_BSLASHpnotecite] = ACTIONS(133), - [anon_sym_BSLASHPnotecite] = ACTIONS(133), - [anon_sym_BSLASHfnotecite] = ACTIONS(133), - [anon_sym_BSLASHlabel] = ACTIONS(133), - [anon_sym_BSLASHref] = ACTIONS(133), - [anon_sym_BSLASHeqref] = ACTIONS(133), - [anon_sym_BSLASHvref] = ACTIONS(133), - [anon_sym_BSLASHVref] = ACTIONS(133), - [anon_sym_BSLASHautoref] = ACTIONS(133), - [anon_sym_BSLASHpageref] = ACTIONS(133), - [anon_sym_BSLASHcref] = ACTIONS(133), - [anon_sym_BSLASHCref] = ACTIONS(133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(131), - [anon_sym_BSLASHnamecref] = ACTIONS(133), - [anon_sym_BSLASHnameCref] = ACTIONS(133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), - [anon_sym_BSLASHlabelcref] = ACTIONS(133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), - [anon_sym_BSLASHcrefrange] = ACTIONS(133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHCrefrange] = ACTIONS(133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), - [anon_sym_BSLASHnewlabel] = ACTIONS(133), - [anon_sym_BSLASHnewcommand] = ACTIONS(133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), - [anon_sym_BSLASHdef] = ACTIONS(133), - [anon_sym_BSLASHlet] = ACTIONS(133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), - [anon_sym_BSLASHgls] = ACTIONS(133), - [anon_sym_BSLASHGls] = ACTIONS(133), - [anon_sym_BSLASHGLS] = ACTIONS(133), - [anon_sym_BSLASHglspl] = ACTIONS(133), - [anon_sym_BSLASHGlspl] = ACTIONS(133), - [anon_sym_BSLASHGLSpl] = ACTIONS(133), - [anon_sym_BSLASHglsdisp] = ACTIONS(133), - [anon_sym_BSLASHglslink] = ACTIONS(133), - [anon_sym_BSLASHglstext] = ACTIONS(133), - [anon_sym_BSLASHGlstext] = ACTIONS(133), - [anon_sym_BSLASHGLStext] = ACTIONS(133), - [anon_sym_BSLASHglsfirst] = ACTIONS(133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(133), - [anon_sym_BSLASHglsplural] = ACTIONS(133), - [anon_sym_BSLASHGlsplural] = ACTIONS(133), - [anon_sym_BSLASHGLSplural] = ACTIONS(133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), - [anon_sym_BSLASHglsname] = ACTIONS(133), - [anon_sym_BSLASHGlsname] = ACTIONS(133), - [anon_sym_BSLASHGLSname] = ACTIONS(133), - [anon_sym_BSLASHglssymbol] = ACTIONS(133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(133), - [anon_sym_BSLASHglsdesc] = ACTIONS(133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(133), - [anon_sym_BSLASHglsuseri] = ACTIONS(133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(133), - [anon_sym_BSLASHglsuserii] = ACTIONS(133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), - [anon_sym_BSLASHglsuserv] = ACTIONS(133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(133), - [anon_sym_BSLASHglsuservi] = ACTIONS(133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(133), - [anon_sym_BSLASHnewacronym] = ACTIONS(133), - [anon_sym_BSLASHacrshort] = ACTIONS(133), - [anon_sym_BSLASHAcrshort] = ACTIONS(133), - [anon_sym_BSLASHACRshort] = ACTIONS(133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(133), - [anon_sym_BSLASHacrlong] = ACTIONS(133), - [anon_sym_BSLASHAcrlong] = ACTIONS(133), - [anon_sym_BSLASHACRlong] = ACTIONS(133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(133), - [anon_sym_BSLASHacrfull] = ACTIONS(133), - [anon_sym_BSLASHAcrfull] = ACTIONS(133), - [anon_sym_BSLASHACRfull] = ACTIONS(133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(133), - [anon_sym_BSLASHacs] = ACTIONS(133), - [anon_sym_BSLASHAcs] = ACTIONS(133), - [anon_sym_BSLASHacsp] = ACTIONS(133), - [anon_sym_BSLASHAcsp] = ACTIONS(133), - [anon_sym_BSLASHacl] = ACTIONS(133), - [anon_sym_BSLASHAcl] = ACTIONS(133), - [anon_sym_BSLASHaclp] = ACTIONS(133), - [anon_sym_BSLASHAclp] = ACTIONS(133), - [anon_sym_BSLASHacf] = ACTIONS(133), - [anon_sym_BSLASHAcf] = ACTIONS(133), - [anon_sym_BSLASHacfp] = ACTIONS(133), - [anon_sym_BSLASHAcfp] = ACTIONS(133), - [anon_sym_BSLASHac] = ACTIONS(133), - [anon_sym_BSLASHAc] = ACTIONS(133), - [anon_sym_BSLASHacp] = ACTIONS(133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), - [anon_sym_BSLASHcolor] = ACTIONS(133), - [anon_sym_BSLASHcolorbox] = ACTIONS(133), - [anon_sym_BSLASHtextcolor] = ACTIONS(133), - [anon_sym_BSLASHpagecolor] = ACTIONS(133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [sym_command_name] = ACTIONS(135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_placeholder] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym__] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(135), + [anon_sym_BSLASHinclude] = ACTIONS(135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(135), + [anon_sym_BSLASHinput] = ACTIONS(135), + [anon_sym_BSLASHsubfile] = ACTIONS(135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(135), + [anon_sym_BSLASHbibliography] = ACTIONS(135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(135), + [anon_sym_BSLASHincludesvg] = ACTIONS(135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(135), + [anon_sym_BSLASHimport] = ACTIONS(135), + [anon_sym_BSLASHsubimport] = ACTIONS(135), + [anon_sym_BSLASHinputfrom] = ACTIONS(135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(135), + [anon_sym_BSLASHincludefrom] = ACTIONS(135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(135), + [anon_sym_BSLASHcaption] = ACTIONS(135), + [anon_sym_BSLASHcite] = ACTIONS(135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(133), + [anon_sym_BSLASHCite] = ACTIONS(135), + [anon_sym_BSLASHnocite] = ACTIONS(135), + [anon_sym_BSLASHcitet] = ACTIONS(135), + [anon_sym_BSLASHcitep] = ACTIONS(135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteauthor] = ACTIONS(135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitetitle] = ACTIONS(135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteyear] = ACTIONS(135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(133), + [anon_sym_BSLASHcitedate] = ACTIONS(135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(133), + [anon_sym_BSLASHciteurl] = ACTIONS(135), + [anon_sym_BSLASHfullcite] = ACTIONS(135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(135), + [anon_sym_BSLASHcitealt] = ACTIONS(135), + [anon_sym_BSLASHcitealp] = ACTIONS(135), + [anon_sym_BSLASHcitetext] = ACTIONS(135), + [anon_sym_BSLASHparencite] = ACTIONS(135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(133), + [anon_sym_BSLASHParencite] = ACTIONS(135), + [anon_sym_BSLASHfootcite] = ACTIONS(135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(135), + [anon_sym_BSLASHtextcite] = ACTIONS(135), + [anon_sym_BSLASHTextcite] = ACTIONS(135), + [anon_sym_BSLASHsmartcite] = ACTIONS(135), + [anon_sym_BSLASHSmartcite] = ACTIONS(135), + [anon_sym_BSLASHsupercite] = ACTIONS(135), + [anon_sym_BSLASHautocite] = ACTIONS(135), + [anon_sym_BSLASHAutocite] = ACTIONS(135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(133), + [anon_sym_BSLASHvolcite] = ACTIONS(135), + [anon_sym_BSLASHVolcite] = ACTIONS(135), + [anon_sym_BSLASHpvolcite] = ACTIONS(135), + [anon_sym_BSLASHPvolcite] = ACTIONS(135), + [anon_sym_BSLASHfvolcite] = ACTIONS(135), + [anon_sym_BSLASHftvolcite] = ACTIONS(135), + [anon_sym_BSLASHsvolcite] = ACTIONS(135), + [anon_sym_BSLASHSvolcite] = ACTIONS(135), + [anon_sym_BSLASHtvolcite] = ACTIONS(135), + [anon_sym_BSLASHTvolcite] = ACTIONS(135), + [anon_sym_BSLASHavolcite] = ACTIONS(135), + [anon_sym_BSLASHAvolcite] = ACTIONS(135), + [anon_sym_BSLASHnotecite] = ACTIONS(135), + [anon_sym_BSLASHNotecite] = ACTIONS(135), + [anon_sym_BSLASHpnotecite] = ACTIONS(135), + [anon_sym_BSLASHPnotecite] = ACTIONS(135), + [anon_sym_BSLASHfnotecite] = ACTIONS(135), + [anon_sym_BSLASHlabel] = ACTIONS(135), + [anon_sym_BSLASHref] = ACTIONS(135), + [anon_sym_BSLASHeqref] = ACTIONS(135), + [anon_sym_BSLASHvref] = ACTIONS(135), + [anon_sym_BSLASHVref] = ACTIONS(135), + [anon_sym_BSLASHautoref] = ACTIONS(135), + [anon_sym_BSLASHpageref] = ACTIONS(135), + [anon_sym_BSLASHcref] = ACTIONS(135), + [anon_sym_BSLASHCref] = ACTIONS(135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(133), + [anon_sym_BSLASHnamecref] = ACTIONS(135), + [anon_sym_BSLASHnameCref] = ACTIONS(135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(135), + [anon_sym_BSLASHlabelcref] = ACTIONS(135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(135), + [anon_sym_BSLASHcrefrange] = ACTIONS(135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHCrefrange] = ACTIONS(135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(133), + [anon_sym_BSLASHnewlabel] = ACTIONS(135), + [anon_sym_BSLASHnewcommand] = ACTIONS(135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(133), + [anon_sym_BSLASHdef] = ACTIONS(135), + [anon_sym_BSLASHlet] = ACTIONS(135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(135), + [anon_sym_BSLASHgls] = ACTIONS(135), + [anon_sym_BSLASHGls] = ACTIONS(135), + [anon_sym_BSLASHGLS] = ACTIONS(135), + [anon_sym_BSLASHglspl] = ACTIONS(135), + [anon_sym_BSLASHGlspl] = ACTIONS(135), + [anon_sym_BSLASHGLSpl] = ACTIONS(135), + [anon_sym_BSLASHglsdisp] = ACTIONS(135), + [anon_sym_BSLASHglslink] = ACTIONS(135), + [anon_sym_BSLASHglstext] = ACTIONS(135), + [anon_sym_BSLASHGlstext] = ACTIONS(135), + [anon_sym_BSLASHGLStext] = ACTIONS(135), + [anon_sym_BSLASHglsfirst] = ACTIONS(135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(135), + [anon_sym_BSLASHglsplural] = ACTIONS(135), + [anon_sym_BSLASHGlsplural] = ACTIONS(135), + [anon_sym_BSLASHGLSplural] = ACTIONS(135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(135), + [anon_sym_BSLASHglsname] = ACTIONS(135), + [anon_sym_BSLASHGlsname] = ACTIONS(135), + [anon_sym_BSLASHGLSname] = ACTIONS(135), + [anon_sym_BSLASHglssymbol] = ACTIONS(135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(135), + [anon_sym_BSLASHglsdesc] = ACTIONS(135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(135), + [anon_sym_BSLASHglsuseri] = ACTIONS(135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(135), + [anon_sym_BSLASHglsuserii] = ACTIONS(135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(135), + [anon_sym_BSLASHglsuserv] = ACTIONS(135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(135), + [anon_sym_BSLASHglsuservi] = ACTIONS(135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(135), + [anon_sym_BSLASHnewacronym] = ACTIONS(135), + [anon_sym_BSLASHacrshort] = ACTIONS(135), + [anon_sym_BSLASHAcrshort] = ACTIONS(135), + [anon_sym_BSLASHACRshort] = ACTIONS(135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(135), + [anon_sym_BSLASHacrlong] = ACTIONS(135), + [anon_sym_BSLASHAcrlong] = ACTIONS(135), + [anon_sym_BSLASHACRlong] = ACTIONS(135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(135), + [anon_sym_BSLASHacrfull] = ACTIONS(135), + [anon_sym_BSLASHAcrfull] = ACTIONS(135), + [anon_sym_BSLASHACRfull] = ACTIONS(135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(135), + [anon_sym_BSLASHacs] = ACTIONS(135), + [anon_sym_BSLASHAcs] = ACTIONS(135), + [anon_sym_BSLASHacsp] = ACTIONS(135), + [anon_sym_BSLASHAcsp] = ACTIONS(135), + [anon_sym_BSLASHacl] = ACTIONS(135), + [anon_sym_BSLASHAcl] = ACTIONS(135), + [anon_sym_BSLASHaclp] = ACTIONS(135), + [anon_sym_BSLASHAclp] = ACTIONS(135), + [anon_sym_BSLASHacf] = ACTIONS(135), + [anon_sym_BSLASHAcf] = ACTIONS(135), + [anon_sym_BSLASHacfp] = ACTIONS(135), + [anon_sym_BSLASHAcfp] = ACTIONS(135), + [anon_sym_BSLASHac] = ACTIONS(135), + [anon_sym_BSLASHAc] = ACTIONS(135), + [anon_sym_BSLASHacp] = ACTIONS(135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(135), + [anon_sym_BSLASHcolor] = ACTIONS(135), + [anon_sym_BSLASHcolorbox] = ACTIONS(135), + [anon_sym_BSLASHtextcolor] = ACTIONS(135), + [anon_sym_BSLASHpagecolor] = ACTIONS(135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(135), + [anon_sym_BSLASHintertext] = ACTIONS(135), + [anon_sym_shortintertext] = ACTIONS(135), }, [1446] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5130), + [anon_sym_RBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5130), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5130), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), + [anon_sym_BSLASHtext] = ACTIONS(5132), + [anon_sym_BSLASHintertext] = ACTIONS(5132), + [anon_sym_shortintertext] = ACTIONS(5132), }, [1447] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(149), - [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_command_name] = ACTIONS(151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_RBRACK] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(149), + [sym_word] = ACTIONS(151), + [sym_placeholder] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym__] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(151), + [anon_sym_BSLASHinclude] = ACTIONS(151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(151), + [anon_sym_BSLASHinput] = ACTIONS(151), + [anon_sym_BSLASHsubfile] = ACTIONS(151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(151), + [anon_sym_BSLASHbibliography] = ACTIONS(151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(151), + [anon_sym_BSLASHincludesvg] = ACTIONS(151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(151), + [anon_sym_BSLASHimport] = ACTIONS(151), + [anon_sym_BSLASHsubimport] = ACTIONS(151), + [anon_sym_BSLASHinputfrom] = ACTIONS(151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(151), + [anon_sym_BSLASHincludefrom] = ACTIONS(151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(151), + [anon_sym_BSLASHcaption] = ACTIONS(151), + [anon_sym_BSLASHcite] = ACTIONS(151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(149), + [anon_sym_BSLASHCite] = ACTIONS(151), + [anon_sym_BSLASHnocite] = ACTIONS(151), + [anon_sym_BSLASHcitet] = ACTIONS(151), + [anon_sym_BSLASHcitep] = ACTIONS(151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteauthor] = ACTIONS(151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitetitle] = ACTIONS(151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteyear] = ACTIONS(151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), + [anon_sym_BSLASHcitedate] = ACTIONS(151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), + [anon_sym_BSLASHciteurl] = ACTIONS(151), + [anon_sym_BSLASHfullcite] = ACTIONS(151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(151), + [anon_sym_BSLASHcitealt] = ACTIONS(151), + [anon_sym_BSLASHcitealp] = ACTIONS(151), + [anon_sym_BSLASHcitetext] = ACTIONS(151), + [anon_sym_BSLASHparencite] = ACTIONS(151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), + [anon_sym_BSLASHParencite] = ACTIONS(151), + [anon_sym_BSLASHfootcite] = ACTIONS(151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(151), + [anon_sym_BSLASHtextcite] = ACTIONS(151), + [anon_sym_BSLASHTextcite] = ACTIONS(151), + [anon_sym_BSLASHsmartcite] = ACTIONS(151), + [anon_sym_BSLASHSmartcite] = ACTIONS(151), + [anon_sym_BSLASHsupercite] = ACTIONS(151), + [anon_sym_BSLASHautocite] = ACTIONS(151), + [anon_sym_BSLASHAutocite] = ACTIONS(151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), + [anon_sym_BSLASHvolcite] = ACTIONS(151), + [anon_sym_BSLASHVolcite] = ACTIONS(151), + [anon_sym_BSLASHpvolcite] = ACTIONS(151), + [anon_sym_BSLASHPvolcite] = ACTIONS(151), + [anon_sym_BSLASHfvolcite] = ACTIONS(151), + [anon_sym_BSLASHftvolcite] = ACTIONS(151), + [anon_sym_BSLASHsvolcite] = ACTIONS(151), + [anon_sym_BSLASHSvolcite] = ACTIONS(151), + [anon_sym_BSLASHtvolcite] = ACTIONS(151), + [anon_sym_BSLASHTvolcite] = ACTIONS(151), + [anon_sym_BSLASHavolcite] = ACTIONS(151), + [anon_sym_BSLASHAvolcite] = ACTIONS(151), + [anon_sym_BSLASHnotecite] = ACTIONS(151), + [anon_sym_BSLASHNotecite] = ACTIONS(151), + [anon_sym_BSLASHpnotecite] = ACTIONS(151), + [anon_sym_BSLASHPnotecite] = ACTIONS(151), + [anon_sym_BSLASHfnotecite] = ACTIONS(151), + [anon_sym_BSLASHlabel] = ACTIONS(151), + [anon_sym_BSLASHref] = ACTIONS(151), + [anon_sym_BSLASHeqref] = ACTIONS(151), + [anon_sym_BSLASHvref] = ACTIONS(151), + [anon_sym_BSLASHVref] = ACTIONS(151), + [anon_sym_BSLASHautoref] = ACTIONS(151), + [anon_sym_BSLASHpageref] = ACTIONS(151), + [anon_sym_BSLASHcref] = ACTIONS(151), + [anon_sym_BSLASHCref] = ACTIONS(151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(149), + [anon_sym_BSLASHnamecref] = ACTIONS(151), + [anon_sym_BSLASHnameCref] = ACTIONS(151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(151), + [anon_sym_BSLASHlabelcref] = ACTIONS(151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(151), + [anon_sym_BSLASHcrefrange] = ACTIONS(151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHCrefrange] = ACTIONS(151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), + [anon_sym_BSLASHnewlabel] = ACTIONS(151), + [anon_sym_BSLASHnewcommand] = ACTIONS(151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), + [anon_sym_BSLASHdef] = ACTIONS(151), + [anon_sym_BSLASHlet] = ACTIONS(151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(151), + [anon_sym_BSLASHgls] = ACTIONS(151), + [anon_sym_BSLASHGls] = ACTIONS(151), + [anon_sym_BSLASHGLS] = ACTIONS(151), + [anon_sym_BSLASHglspl] = ACTIONS(151), + [anon_sym_BSLASHGlspl] = ACTIONS(151), + [anon_sym_BSLASHGLSpl] = ACTIONS(151), + [anon_sym_BSLASHglsdisp] = ACTIONS(151), + [anon_sym_BSLASHglslink] = ACTIONS(151), + [anon_sym_BSLASHglstext] = ACTIONS(151), + [anon_sym_BSLASHGlstext] = ACTIONS(151), + [anon_sym_BSLASHGLStext] = ACTIONS(151), + [anon_sym_BSLASHglsfirst] = ACTIONS(151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(151), + [anon_sym_BSLASHglsplural] = ACTIONS(151), + [anon_sym_BSLASHGlsplural] = ACTIONS(151), + [anon_sym_BSLASHGLSplural] = ACTIONS(151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(151), + [anon_sym_BSLASHglsname] = ACTIONS(151), + [anon_sym_BSLASHGlsname] = ACTIONS(151), + [anon_sym_BSLASHGLSname] = ACTIONS(151), + [anon_sym_BSLASHglssymbol] = ACTIONS(151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(151), + [anon_sym_BSLASHglsdesc] = ACTIONS(151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(151), + [anon_sym_BSLASHglsuseri] = ACTIONS(151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(151), + [anon_sym_BSLASHglsuserii] = ACTIONS(151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(151), + [anon_sym_BSLASHglsuserv] = ACTIONS(151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(151), + [anon_sym_BSLASHglsuservi] = ACTIONS(151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(151), + [anon_sym_BSLASHnewacronym] = ACTIONS(151), + [anon_sym_BSLASHacrshort] = ACTIONS(151), + [anon_sym_BSLASHAcrshort] = ACTIONS(151), + [anon_sym_BSLASHACRshort] = ACTIONS(151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(151), + [anon_sym_BSLASHacrlong] = ACTIONS(151), + [anon_sym_BSLASHAcrlong] = ACTIONS(151), + [anon_sym_BSLASHACRlong] = ACTIONS(151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(151), + [anon_sym_BSLASHacrfull] = ACTIONS(151), + [anon_sym_BSLASHAcrfull] = ACTIONS(151), + [anon_sym_BSLASHACRfull] = ACTIONS(151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(151), + [anon_sym_BSLASHacs] = ACTIONS(151), + [anon_sym_BSLASHAcs] = ACTIONS(151), + [anon_sym_BSLASHacsp] = ACTIONS(151), + [anon_sym_BSLASHAcsp] = ACTIONS(151), + [anon_sym_BSLASHacl] = ACTIONS(151), + [anon_sym_BSLASHAcl] = ACTIONS(151), + [anon_sym_BSLASHaclp] = ACTIONS(151), + [anon_sym_BSLASHAclp] = ACTIONS(151), + [anon_sym_BSLASHacf] = ACTIONS(151), + [anon_sym_BSLASHAcf] = ACTIONS(151), + [anon_sym_BSLASHacfp] = ACTIONS(151), + [anon_sym_BSLASHAcfp] = ACTIONS(151), + [anon_sym_BSLASHac] = ACTIONS(151), + [anon_sym_BSLASHAc] = ACTIONS(151), + [anon_sym_BSLASHacp] = ACTIONS(151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(151), + [anon_sym_BSLASHcolor] = ACTIONS(151), + [anon_sym_BSLASHcolorbox] = ACTIONS(151), + [anon_sym_BSLASHtextcolor] = ACTIONS(151), + [anon_sym_BSLASHpagecolor] = ACTIONS(151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(151), + [anon_sym_BSLASHtext] = ACTIONS(151), + [anon_sym_BSLASHintertext] = ACTIONS(151), + [anon_sym_shortintertext] = ACTIONS(151), }, [1448] = { - [sym_command_name] = ACTIONS(4969), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4967), - [sym_word] = ACTIONS(4969), - [sym_placeholder] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym__] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4969), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), - [anon_sym_BSLASHinclude] = ACTIONS(4969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), - [anon_sym_BSLASHinput] = ACTIONS(4969), - [anon_sym_BSLASHsubfile] = ACTIONS(4969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), - [anon_sym_BSLASHbibliography] = ACTIONS(4969), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), - [anon_sym_BSLASHincludesvg] = ACTIONS(4969), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), - [anon_sym_BSLASHimport] = ACTIONS(4969), - [anon_sym_BSLASHsubimport] = ACTIONS(4969), - [anon_sym_BSLASHinputfrom] = ACTIONS(4969), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), - [anon_sym_BSLASHincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), - [anon_sym_BSLASHcaption] = ACTIONS(4969), - [anon_sym_BSLASHcite] = ACTIONS(4969), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCite] = ACTIONS(4969), - [anon_sym_BSLASHnocite] = ACTIONS(4969), - [anon_sym_BSLASHcitet] = ACTIONS(4969), - [anon_sym_BSLASHcitep] = ACTIONS(4969), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteyear] = ACTIONS(4969), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), - [anon_sym_BSLASHcitedate] = ACTIONS(4969), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), - [anon_sym_BSLASHciteurl] = ACTIONS(4969), - [anon_sym_BSLASHfullcite] = ACTIONS(4969), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), - [anon_sym_BSLASHcitealt] = ACTIONS(4969), - [anon_sym_BSLASHcitealp] = ACTIONS(4969), - [anon_sym_BSLASHcitetext] = ACTIONS(4969), - [anon_sym_BSLASHparencite] = ACTIONS(4969), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHParencite] = ACTIONS(4969), - [anon_sym_BSLASHfootcite] = ACTIONS(4969), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), - [anon_sym_BSLASHtextcite] = ACTIONS(4969), - [anon_sym_BSLASHTextcite] = ACTIONS(4969), - [anon_sym_BSLASHsmartcite] = ACTIONS(4969), - [anon_sym_BSLASHSmartcite] = ACTIONS(4969), - [anon_sym_BSLASHsupercite] = ACTIONS(4969), - [anon_sym_BSLASHautocite] = ACTIONS(4969), - [anon_sym_BSLASHAutocite] = ACTIONS(4969), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), - [anon_sym_BSLASHvolcite] = ACTIONS(4969), - [anon_sym_BSLASHVolcite] = ACTIONS(4969), - [anon_sym_BSLASHpvolcite] = ACTIONS(4969), - [anon_sym_BSLASHPvolcite] = ACTIONS(4969), - [anon_sym_BSLASHfvolcite] = ACTIONS(4969), - [anon_sym_BSLASHftvolcite] = ACTIONS(4969), - [anon_sym_BSLASHsvolcite] = ACTIONS(4969), - [anon_sym_BSLASHSvolcite] = ACTIONS(4969), - [anon_sym_BSLASHtvolcite] = ACTIONS(4969), - [anon_sym_BSLASHTvolcite] = ACTIONS(4969), - [anon_sym_BSLASHavolcite] = ACTIONS(4969), - [anon_sym_BSLASHAvolcite] = ACTIONS(4969), - [anon_sym_BSLASHnotecite] = ACTIONS(4969), - [anon_sym_BSLASHNotecite] = ACTIONS(4969), - [anon_sym_BSLASHpnotecite] = ACTIONS(4969), - [anon_sym_BSLASHPnotecite] = ACTIONS(4969), - [anon_sym_BSLASHfnotecite] = ACTIONS(4969), - [anon_sym_BSLASHlabel] = ACTIONS(4969), - [anon_sym_BSLASHref] = ACTIONS(4969), - [anon_sym_BSLASHeqref] = ACTIONS(4969), - [anon_sym_BSLASHvref] = ACTIONS(4969), - [anon_sym_BSLASHVref] = ACTIONS(4969), - [anon_sym_BSLASHautoref] = ACTIONS(4969), - [anon_sym_BSLASHpageref] = ACTIONS(4969), - [anon_sym_BSLASHcref] = ACTIONS(4969), - [anon_sym_BSLASHCref] = ACTIONS(4969), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnameCref] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), - [anon_sym_BSLASHlabelcref] = ACTIONS(4969), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange] = ACTIONS(4969), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), - [anon_sym_BSLASHnewlabel] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand] = ACTIONS(4969), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), - [anon_sym_BSLASHdef] = ACTIONS(4969), - [anon_sym_BSLASHlet] = ACTIONS(4969), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), - [anon_sym_BSLASHgls] = ACTIONS(4969), - [anon_sym_BSLASHGls] = ACTIONS(4969), - [anon_sym_BSLASHGLS] = ACTIONS(4969), - [anon_sym_BSLASHglspl] = ACTIONS(4969), - [anon_sym_BSLASHGlspl] = ACTIONS(4969), - [anon_sym_BSLASHGLSpl] = ACTIONS(4969), - [anon_sym_BSLASHglsdisp] = ACTIONS(4969), - [anon_sym_BSLASHglslink] = ACTIONS(4969), - [anon_sym_BSLASHglstext] = ACTIONS(4969), - [anon_sym_BSLASHGlstext] = ACTIONS(4969), - [anon_sym_BSLASHGLStext] = ACTIONS(4969), - [anon_sym_BSLASHglsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), - [anon_sym_BSLASHglsplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSplural] = ACTIONS(4969), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), - [anon_sym_BSLASHglsname] = ACTIONS(4969), - [anon_sym_BSLASHGlsname] = ACTIONS(4969), - [anon_sym_BSLASHGLSname] = ACTIONS(4969), - [anon_sym_BSLASHglssymbol] = ACTIONS(4969), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), - [anon_sym_BSLASHglsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), - [anon_sym_BSLASHglsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), - [anon_sym_BSLASHglsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), - [anon_sym_BSLASHglsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), - [anon_sym_BSLASHglsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), - [anon_sym_BSLASHnewacronym] = ACTIONS(4969), - [anon_sym_BSLASHacrshort] = ACTIONS(4969), - [anon_sym_BSLASHAcrshort] = ACTIONS(4969), - [anon_sym_BSLASHACRshort] = ACTIONS(4969), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), - [anon_sym_BSLASHacrlong] = ACTIONS(4969), - [anon_sym_BSLASHAcrlong] = ACTIONS(4969), - [anon_sym_BSLASHACRlong] = ACTIONS(4969), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), - [anon_sym_BSLASHacrfull] = ACTIONS(4969), - [anon_sym_BSLASHAcrfull] = ACTIONS(4969), - [anon_sym_BSLASHACRfull] = ACTIONS(4969), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), - [anon_sym_BSLASHacs] = ACTIONS(4969), - [anon_sym_BSLASHAcs] = ACTIONS(4969), - [anon_sym_BSLASHacsp] = ACTIONS(4969), - [anon_sym_BSLASHAcsp] = ACTIONS(4969), - [anon_sym_BSLASHacl] = ACTIONS(4969), - [anon_sym_BSLASHAcl] = ACTIONS(4969), - [anon_sym_BSLASHaclp] = ACTIONS(4969), - [anon_sym_BSLASHAclp] = ACTIONS(4969), - [anon_sym_BSLASHacf] = ACTIONS(4969), - [anon_sym_BSLASHAcf] = ACTIONS(4969), - [anon_sym_BSLASHacfp] = ACTIONS(4969), - [anon_sym_BSLASHAcfp] = ACTIONS(4969), - [anon_sym_BSLASHac] = ACTIONS(4969), - [anon_sym_BSLASHAc] = ACTIONS(4969), - [anon_sym_BSLASHacp] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), - [anon_sym_BSLASHcolor] = ACTIONS(4969), - [anon_sym_BSLASHcolorbox] = ACTIONS(4969), - [anon_sym_BSLASHtextcolor] = ACTIONS(4969), - [anon_sym_BSLASHpagecolor] = ACTIONS(4969), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), - [anon_sym_BSLASHtext] = ACTIONS(4969), - [anon_sym_BSLASHintertext] = ACTIONS(4969), - [anon_sym_shortintertext] = ACTIONS(4969), + [sym_command_name] = ACTIONS(5048), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [sym_word] = ACTIONS(5048), + [sym_placeholder] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym__] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_SQUOTE] = ACTIONS(5048), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(5048), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5046), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5046), + [anon_sym_BSLASHusepackage] = ACTIONS(5048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5048), + [anon_sym_BSLASHinclude] = ACTIONS(5048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5048), + [anon_sym_BSLASHinput] = ACTIONS(5048), + [anon_sym_BSLASHsubfile] = ACTIONS(5048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5048), + [anon_sym_BSLASHbibliography] = ACTIONS(5048), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5048), + [anon_sym_BSLASHincludesvg] = ACTIONS(5048), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5048), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5048), + [anon_sym_BSLASHimport] = ACTIONS(5048), + [anon_sym_BSLASHsubimport] = ACTIONS(5048), + [anon_sym_BSLASHinputfrom] = ACTIONS(5048), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5048), + [anon_sym_BSLASHincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5048), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5048), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCite] = ACTIONS(5048), + [anon_sym_BSLASHnocite] = ACTIONS(5048), + [anon_sym_BSLASHcitet] = ACTIONS(5048), + [anon_sym_BSLASHcitep] = ACTIONS(5048), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteauthor] = ACTIONS(5048), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5048), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitetitle] = ACTIONS(5048), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteyear] = ACTIONS(5048), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5046), + [anon_sym_BSLASHcitedate] = ACTIONS(5048), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5046), + [anon_sym_BSLASHciteurl] = ACTIONS(5048), + [anon_sym_BSLASHfullcite] = ACTIONS(5048), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5048), + [anon_sym_BSLASHcitealt] = ACTIONS(5048), + [anon_sym_BSLASHcitealp] = ACTIONS(5048), + [anon_sym_BSLASHcitetext] = ACTIONS(5048), + [anon_sym_BSLASHparencite] = ACTIONS(5048), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHParencite] = ACTIONS(5048), + [anon_sym_BSLASHfootcite] = ACTIONS(5048), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5048), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5048), + [anon_sym_BSLASHtextcite] = ACTIONS(5048), + [anon_sym_BSLASHTextcite] = ACTIONS(5048), + [anon_sym_BSLASHsmartcite] = ACTIONS(5048), + [anon_sym_BSLASHSmartcite] = ACTIONS(5048), + [anon_sym_BSLASHsupercite] = ACTIONS(5048), + [anon_sym_BSLASHautocite] = ACTIONS(5048), + [anon_sym_BSLASHAutocite] = ACTIONS(5048), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5046), + [anon_sym_BSLASHvolcite] = ACTIONS(5048), + [anon_sym_BSLASHVolcite] = ACTIONS(5048), + [anon_sym_BSLASHpvolcite] = ACTIONS(5048), + [anon_sym_BSLASHPvolcite] = ACTIONS(5048), + [anon_sym_BSLASHfvolcite] = ACTIONS(5048), + [anon_sym_BSLASHftvolcite] = ACTIONS(5048), + [anon_sym_BSLASHsvolcite] = ACTIONS(5048), + [anon_sym_BSLASHSvolcite] = ACTIONS(5048), + [anon_sym_BSLASHtvolcite] = ACTIONS(5048), + [anon_sym_BSLASHTvolcite] = ACTIONS(5048), + [anon_sym_BSLASHavolcite] = ACTIONS(5048), + [anon_sym_BSLASHAvolcite] = ACTIONS(5048), + [anon_sym_BSLASHnotecite] = ACTIONS(5048), + [anon_sym_BSLASHNotecite] = ACTIONS(5048), + [anon_sym_BSLASHpnotecite] = ACTIONS(5048), + [anon_sym_BSLASHPnotecite] = ACTIONS(5048), + [anon_sym_BSLASHfnotecite] = ACTIONS(5048), + [anon_sym_BSLASHlabel] = ACTIONS(5048), + [anon_sym_BSLASHref] = ACTIONS(5048), + [anon_sym_BSLASHeqref] = ACTIONS(5048), + [anon_sym_BSLASHvref] = ACTIONS(5048), + [anon_sym_BSLASHVref] = ACTIONS(5048), + [anon_sym_BSLASHautoref] = ACTIONS(5048), + [anon_sym_BSLASHpageref] = ACTIONS(5048), + [anon_sym_BSLASHcref] = ACTIONS(5048), + [anon_sym_BSLASHCref] = ACTIONS(5048), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnameCref] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5048), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5048), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5048), + [anon_sym_BSLASHlabelcref] = ACTIONS(5048), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange] = ACTIONS(5048), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHCrefrange] = ACTIONS(5048), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5046), + [anon_sym_BSLASHnewlabel] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand] = ACTIONS(5048), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5048), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5048), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5048), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdef] = ACTIONS(5048), + [anon_sym_BSLASHlet] = ACTIONS(5048), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5048), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5048), + [anon_sym_BSLASHgls] = ACTIONS(5048), + [anon_sym_BSLASHGls] = ACTIONS(5048), + [anon_sym_BSLASHGLS] = ACTIONS(5048), + [anon_sym_BSLASHglspl] = ACTIONS(5048), + [anon_sym_BSLASHGlspl] = ACTIONS(5048), + [anon_sym_BSLASHGLSpl] = ACTIONS(5048), + [anon_sym_BSLASHglsdisp] = ACTIONS(5048), + [anon_sym_BSLASHglslink] = ACTIONS(5048), + [anon_sym_BSLASHglstext] = ACTIONS(5048), + [anon_sym_BSLASHGlstext] = ACTIONS(5048), + [anon_sym_BSLASHGLStext] = ACTIONS(5048), + [anon_sym_BSLASHglsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5048), + [anon_sym_BSLASHglsplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSplural] = ACTIONS(5048), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5048), + [anon_sym_BSLASHglsname] = ACTIONS(5048), + [anon_sym_BSLASHGlsname] = ACTIONS(5048), + [anon_sym_BSLASHGLSname] = ACTIONS(5048), + [anon_sym_BSLASHglssymbol] = ACTIONS(5048), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5048), + [anon_sym_BSLASHglsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5048), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5048), + [anon_sym_BSLASHglsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5048), + [anon_sym_BSLASHglsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5048), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5048), + [anon_sym_BSLASHglsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5048), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5048), + [anon_sym_BSLASHglsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5048), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5048), + [anon_sym_BSLASHnewacronym] = ACTIONS(5048), + [anon_sym_BSLASHacrshort] = ACTIONS(5048), + [anon_sym_BSLASHAcrshort] = ACTIONS(5048), + [anon_sym_BSLASHACRshort] = ACTIONS(5048), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5048), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5048), + [anon_sym_BSLASHacrlong] = ACTIONS(5048), + [anon_sym_BSLASHAcrlong] = ACTIONS(5048), + [anon_sym_BSLASHACRlong] = ACTIONS(5048), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5048), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5048), + [anon_sym_BSLASHacrfull] = ACTIONS(5048), + [anon_sym_BSLASHAcrfull] = ACTIONS(5048), + [anon_sym_BSLASHACRfull] = ACTIONS(5048), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5048), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5048), + [anon_sym_BSLASHacs] = ACTIONS(5048), + [anon_sym_BSLASHAcs] = ACTIONS(5048), + [anon_sym_BSLASHacsp] = ACTIONS(5048), + [anon_sym_BSLASHAcsp] = ACTIONS(5048), + [anon_sym_BSLASHacl] = ACTIONS(5048), + [anon_sym_BSLASHAcl] = ACTIONS(5048), + [anon_sym_BSLASHaclp] = ACTIONS(5048), + [anon_sym_BSLASHAclp] = ACTIONS(5048), + [anon_sym_BSLASHacf] = ACTIONS(5048), + [anon_sym_BSLASHAcf] = ACTIONS(5048), + [anon_sym_BSLASHacfp] = ACTIONS(5048), + [anon_sym_BSLASHAcfp] = ACTIONS(5048), + [anon_sym_BSLASHac] = ACTIONS(5048), + [anon_sym_BSLASHAc] = ACTIONS(5048), + [anon_sym_BSLASHacp] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5048), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5048), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5048), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5048), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5048), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5046), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5048), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5048), + [anon_sym_BSLASHcolor] = ACTIONS(5048), + [anon_sym_BSLASHcolorbox] = ACTIONS(5048), + [anon_sym_BSLASHtextcolor] = ACTIONS(5048), + [anon_sym_BSLASHpagecolor] = ACTIONS(5048), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5048), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5048), + [anon_sym_BSLASHtext] = ACTIONS(5048), + [anon_sym_BSLASHintertext] = ACTIONS(5048), + [anon_sym_shortintertext] = ACTIONS(5048), }, [1449] = { - [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(5043), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5122), + [anon_sym_RBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5122), + [anon_sym_DOLLAR] = ACTIONS(5124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5122), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5122), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), + [anon_sym_BSLASHtext] = ACTIONS(5124), + [anon_sym_BSLASHintertext] = ACTIONS(5124), + [anon_sym_shortintertext] = ACTIONS(5124), }, [1450] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - [anon_sym_BSLASHtext] = ACTIONS(5041), - [anon_sym_BSLASHintertext] = ACTIONS(5041), - [anon_sym_shortintertext] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5118), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5118), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(5120), + [anon_sym_BSLASHintertext] = ACTIONS(5120), + [anon_sym_shortintertext] = ACTIONS(5120), }, [1451] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - [anon_sym_BSLASHtext] = ACTIONS(5037), - [anon_sym_BSLASHintertext] = ACTIONS(5037), - [anon_sym_shortintertext] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(5116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5114), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5114), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), + [anon_sym_BSLASHtext] = ACTIONS(5116), + [anon_sym_BSLASHintertext] = ACTIONS(5116), + [anon_sym_shortintertext] = ACTIONS(5116), }, [1452] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - [anon_sym_BSLASHtext] = ACTIONS(5033), - [anon_sym_BSLASHintertext] = ACTIONS(5033), - [anon_sym_shortintertext] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5110), + [anon_sym_RBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5110), + [anon_sym_DOLLAR] = ACTIONS(5112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5110), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5110), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), + [anon_sym_BSLASHtext] = ACTIONS(5112), + [anon_sym_BSLASHintertext] = ACTIONS(5112), + [anon_sym_shortintertext] = ACTIONS(5112), }, [1453] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_RPAREN] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), - [anon_sym_BSLASHtext] = ACTIONS(5119), - [anon_sym_BSLASHintertext] = ACTIONS(5119), - [anon_sym_shortintertext] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_RBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(5198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5196), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5196), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), + [anon_sym_BSLASHtext] = ACTIONS(5198), + [anon_sym_BSLASHintertext] = ACTIONS(5198), + [anon_sym_shortintertext] = ACTIONS(5198), }, [1454] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), - [anon_sym_BSLASHtext] = ACTIONS(5161), - [anon_sym_BSLASHintertext] = ACTIONS(5161), - [anon_sym_shortintertext] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5238), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5238), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), + [anon_sym_BSLASHtext] = ACTIONS(5240), + [anon_sym_BSLASHintertext] = ACTIONS(5240), + [anon_sym_shortintertext] = ACTIONS(5240), }, [1455] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - [anon_sym_BSLASHtext] = ACTIONS(5025), - [anon_sym_BSLASHintertext] = ACTIONS(5025), - [anon_sym_shortintertext] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_RBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5102), + [anon_sym_DOLLAR] = ACTIONS(5104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5102), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5102), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), + [anon_sym_BSLASHtext] = ACTIONS(5104), + [anon_sym_BSLASHintertext] = ACTIONS(5104), + [anon_sym_shortintertext] = ACTIONS(5104), }, [1456] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - [anon_sym_BSLASHtext] = ACTIONS(5021), - [anon_sym_BSLASHintertext] = ACTIONS(5021), - [anon_sym_shortintertext] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5098), + [anon_sym_DOLLAR] = ACTIONS(5100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5098), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5098), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), + [anon_sym_BSLASHtext] = ACTIONS(5100), + [anon_sym_BSLASHintertext] = ACTIONS(5100), + [anon_sym_shortintertext] = ACTIONS(5100), }, [1457] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), - [anon_sym_BSLASHtext] = ACTIONS(5017), - [anon_sym_BSLASHintertext] = ACTIONS(5017), - [anon_sym_shortintertext] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5094), + [anon_sym_DOLLAR] = ACTIONS(5096), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5094), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5094), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), + [anon_sym_BSLASHtext] = ACTIONS(5096), + [anon_sym_BSLASHintertext] = ACTIONS(5096), + [anon_sym_shortintertext] = ACTIONS(5096), }, [1458] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), - [anon_sym_BSLASHtext] = ACTIONS(5013), - [anon_sym_BSLASHintertext] = ACTIONS(5013), - [anon_sym_shortintertext] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5090), + [anon_sym_DOLLAR] = ACTIONS(5092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5090), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5090), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), + [anon_sym_BSLASHtext] = ACTIONS(5092), + [anon_sym_BSLASHintertext] = ACTIONS(5092), + [anon_sym_shortintertext] = ACTIONS(5092), }, [1459] = { - [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_LBRACE] = ACTIONS(5001), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(5082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5080), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5080), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), + [anon_sym_BSLASHtext] = ACTIONS(5082), + [anon_sym_BSLASHintertext] = ACTIONS(5082), + [anon_sym_shortintertext] = ACTIONS(5082), }, [1460] = { - [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_LBRACE] = ACTIONS(4993), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5072), + [anon_sym_DOLLAR] = ACTIONS(5074), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5072), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5072), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), + [anon_sym_BSLASHtext] = ACTIONS(5074), + [anon_sym_BSLASHintertext] = ACTIONS(5074), + [anon_sym_shortintertext] = ACTIONS(5074), }, [1461] = { - [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_LBRACE] = ACTIONS(4989), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5068), + [anon_sym_DOLLAR] = ACTIONS(5070), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5068), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5068), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), + [anon_sym_BSLASHtext] = ACTIONS(5070), + [anon_sym_BSLASHintertext] = ACTIONS(5070), + [anon_sym_shortintertext] = ACTIONS(5070), }, [1462] = { - [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_LBRACE] = ACTIONS(4985), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5064), + [anon_sym_DOLLAR] = ACTIONS(5066), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5064), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5064), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), + [anon_sym_BSLASHtext] = ACTIONS(5066), + [anon_sym_BSLASHintertext] = ACTIONS(5066), + [anon_sym_shortintertext] = ACTIONS(5066), }, [1463] = { - [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_LBRACE] = ACTIONS(4981), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5060), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5060), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), + [anon_sym_BSLASHtext] = ACTIONS(5062), + [anon_sym_BSLASHintertext] = ACTIONS(5062), + [anon_sym_shortintertext] = ACTIONS(5062), }, [1464] = { - [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(4971), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [anon_sym_RBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5050), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5050), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), + [anon_sym_BSLASHtext] = ACTIONS(5052), + [anon_sym_BSLASHintertext] = ACTIONS(5052), + [anon_sym_shortintertext] = ACTIONS(5052), }, [1465] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), - [anon_sym_BSLASHtext] = ACTIONS(5149), - [anon_sym_BSLASHintertext] = ACTIONS(5149), - [anon_sym_shortintertext] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(5228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5226), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5226), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), + [anon_sym_BSLASHtext] = ACTIONS(5228), + [anon_sym_BSLASHintertext] = ACTIONS(5228), + [anon_sym_shortintertext] = ACTIONS(5228), }, [1466] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), - [anon_sym_BSLASHtext] = ACTIONS(4925), - [anon_sym_BSLASHintertext] = ACTIONS(4925), - [anon_sym_shortintertext] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5002), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5002), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), + [anon_sym_BSLASHtext] = ACTIONS(5004), + [anon_sym_BSLASHintertext] = ACTIONS(5004), + [anon_sym_shortintertext] = ACTIONS(5004), }, [1467] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [anon_sym_RBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), - [anon_sym_BSLASHtext] = ACTIONS(4921), - [anon_sym_BSLASHintertext] = ACTIONS(4921), - [anon_sym_shortintertext] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4998), + [anon_sym_DOLLAR] = ACTIONS(5000), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4998), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), + [anon_sym_BSLASHtext] = ACTIONS(5000), + [anon_sym_BSLASHintertext] = ACTIONS(5000), + [anon_sym_shortintertext] = ACTIONS(5000), }, [1468] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_LPAREN] = ACTIONS(5287), - [anon_sym_RPAREN] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(5287), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5287), - [anon_sym_RBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), - [anon_sym_BSLASHtext] = ACTIONS(5289), - [anon_sym_BSLASHintertext] = ACTIONS(5289), - [anon_sym_shortintertext] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5366), + [anon_sym_RBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5366), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5366), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), + [anon_sym_BSLASHtext] = ACTIONS(5368), + [anon_sym_BSLASHintertext] = ACTIONS(5368), + [anon_sym_shortintertext] = ACTIONS(5368), }, [1469] = { - [sym_command_name] = ACTIONS(5323), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [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(5323), - [sym_placeholder] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [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(5325), - [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(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [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(5325), - [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(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [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(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5323), - [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), + [sym_command_name] = ACTIONS(5402), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [sym_word] = ACTIONS(5402), + [sym_placeholder] = ACTIONS(5404), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym__] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_SQUOTE] = ACTIONS(5402), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5404), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5402), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5404), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5404), + [anon_sym_BSLASHusepackage] = ACTIONS(5402), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5402), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5402), + [anon_sym_BSLASHinclude] = ACTIONS(5402), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5402), + [anon_sym_BSLASHinput] = ACTIONS(5402), + [anon_sym_BSLASHsubfile] = ACTIONS(5402), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5402), + [anon_sym_BSLASHbibliography] = ACTIONS(5402), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5402), + [anon_sym_BSLASHincludesvg] = ACTIONS(5402), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5402), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5402), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5402), + [anon_sym_BSLASHimport] = ACTIONS(5402), + [anon_sym_BSLASHsubimport] = ACTIONS(5402), + [anon_sym_BSLASHinputfrom] = ACTIONS(5402), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5402), + [anon_sym_BSLASHincludefrom] = ACTIONS(5402), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5402), + [anon_sym_BSLASHcaption] = ACTIONS(5402), + [anon_sym_BSLASHcite] = ACTIONS(5402), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCite] = ACTIONS(5402), + [anon_sym_BSLASHnocite] = ACTIONS(5402), + [anon_sym_BSLASHcitet] = ACTIONS(5402), + [anon_sym_BSLASHcitep] = ACTIONS(5402), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteauthor] = ACTIONS(5402), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5402), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitetitle] = ACTIONS(5402), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteyear] = ACTIONS(5402), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5404), + [anon_sym_BSLASHcitedate] = ACTIONS(5402), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5404), + [anon_sym_BSLASHciteurl] = ACTIONS(5402), + [anon_sym_BSLASHfullcite] = ACTIONS(5402), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5402), + [anon_sym_BSLASHcitealt] = ACTIONS(5402), + [anon_sym_BSLASHcitealp] = ACTIONS(5402), + [anon_sym_BSLASHcitetext] = ACTIONS(5402), + [anon_sym_BSLASHparencite] = ACTIONS(5402), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHParencite] = ACTIONS(5402), + [anon_sym_BSLASHfootcite] = ACTIONS(5402), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5402), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5402), + [anon_sym_BSLASHtextcite] = ACTIONS(5402), + [anon_sym_BSLASHTextcite] = ACTIONS(5402), + [anon_sym_BSLASHsmartcite] = ACTIONS(5402), + [anon_sym_BSLASHSmartcite] = ACTIONS(5402), + [anon_sym_BSLASHsupercite] = ACTIONS(5402), + [anon_sym_BSLASHautocite] = ACTIONS(5402), + [anon_sym_BSLASHAutocite] = ACTIONS(5402), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5404), + [anon_sym_BSLASHvolcite] = ACTIONS(5402), + [anon_sym_BSLASHVolcite] = ACTIONS(5402), + [anon_sym_BSLASHpvolcite] = ACTIONS(5402), + [anon_sym_BSLASHPvolcite] = ACTIONS(5402), + [anon_sym_BSLASHfvolcite] = ACTIONS(5402), + [anon_sym_BSLASHftvolcite] = ACTIONS(5402), + [anon_sym_BSLASHsvolcite] = ACTIONS(5402), + [anon_sym_BSLASHSvolcite] = ACTIONS(5402), + [anon_sym_BSLASHtvolcite] = ACTIONS(5402), + [anon_sym_BSLASHTvolcite] = ACTIONS(5402), + [anon_sym_BSLASHavolcite] = ACTIONS(5402), + [anon_sym_BSLASHAvolcite] = ACTIONS(5402), + [anon_sym_BSLASHnotecite] = ACTIONS(5402), + [anon_sym_BSLASHNotecite] = ACTIONS(5402), + [anon_sym_BSLASHpnotecite] = ACTIONS(5402), + [anon_sym_BSLASHPnotecite] = ACTIONS(5402), + [anon_sym_BSLASHfnotecite] = ACTIONS(5402), + [anon_sym_BSLASHlabel] = ACTIONS(5402), + [anon_sym_BSLASHref] = ACTIONS(5402), + [anon_sym_BSLASHeqref] = ACTIONS(5402), + [anon_sym_BSLASHvref] = ACTIONS(5402), + [anon_sym_BSLASHVref] = ACTIONS(5402), + [anon_sym_BSLASHautoref] = ACTIONS(5402), + [anon_sym_BSLASHpageref] = ACTIONS(5402), + [anon_sym_BSLASHcref] = ACTIONS(5402), + [anon_sym_BSLASHCref] = ACTIONS(5402), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5404), + [anon_sym_BSLASHnamecref] = ACTIONS(5402), + [anon_sym_BSLASHnameCref] = ACTIONS(5402), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5402), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5402), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5402), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5402), + [anon_sym_BSLASHlabelcref] = ACTIONS(5402), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5402), + [anon_sym_BSLASHcrefrange] = ACTIONS(5402), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5404), + [anon_sym_BSLASHCrefrange] = ACTIONS(5402), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5404), + [anon_sym_BSLASHnewlabel] = ACTIONS(5402), + [anon_sym_BSLASHnewcommand] = ACTIONS(5402), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5402), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5402), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5404), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5402), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdef] = ACTIONS(5402), + [anon_sym_BSLASHlet] = ACTIONS(5402), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5402), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5402), + [anon_sym_BSLASHgls] = ACTIONS(5402), + [anon_sym_BSLASHGls] = ACTIONS(5402), + [anon_sym_BSLASHGLS] = ACTIONS(5402), + [anon_sym_BSLASHglspl] = ACTIONS(5402), + [anon_sym_BSLASHGlspl] = ACTIONS(5402), + [anon_sym_BSLASHGLSpl] = ACTIONS(5402), + [anon_sym_BSLASHglsdisp] = ACTIONS(5402), + [anon_sym_BSLASHglslink] = ACTIONS(5402), + [anon_sym_BSLASHglstext] = ACTIONS(5402), + [anon_sym_BSLASHGlstext] = ACTIONS(5402), + [anon_sym_BSLASHGLStext] = ACTIONS(5402), + [anon_sym_BSLASHglsfirst] = ACTIONS(5402), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5402), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5402), + [anon_sym_BSLASHglsplural] = ACTIONS(5402), + [anon_sym_BSLASHGlsplural] = ACTIONS(5402), + [anon_sym_BSLASHGLSplural] = ACTIONS(5402), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5402), + [anon_sym_BSLASHglsname] = ACTIONS(5402), + [anon_sym_BSLASHGlsname] = ACTIONS(5402), + [anon_sym_BSLASHGLSname] = ACTIONS(5402), + [anon_sym_BSLASHglssymbol] = ACTIONS(5402), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5402), + [anon_sym_BSLASHglsdesc] = ACTIONS(5402), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5402), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5402), + [anon_sym_BSLASHglsuseri] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5402), + [anon_sym_BSLASHglsuserii] = ACTIONS(5402), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5402), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5402), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5402), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5402), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5402), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5402), + [anon_sym_BSLASHglsuserv] = ACTIONS(5402), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5402), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5402), + [anon_sym_BSLASHglsuservi] = ACTIONS(5402), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5402), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5402), + [anon_sym_BSLASHnewacronym] = ACTIONS(5402), + [anon_sym_BSLASHacrshort] = ACTIONS(5402), + [anon_sym_BSLASHAcrshort] = ACTIONS(5402), + [anon_sym_BSLASHACRshort] = ACTIONS(5402), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5402), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5402), + [anon_sym_BSLASHacrlong] = ACTIONS(5402), + [anon_sym_BSLASHAcrlong] = ACTIONS(5402), + [anon_sym_BSLASHACRlong] = ACTIONS(5402), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5402), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5402), + [anon_sym_BSLASHacrfull] = ACTIONS(5402), + [anon_sym_BSLASHAcrfull] = ACTIONS(5402), + [anon_sym_BSLASHACRfull] = ACTIONS(5402), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5402), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5402), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5402), + [anon_sym_BSLASHacs] = ACTIONS(5402), + [anon_sym_BSLASHAcs] = ACTIONS(5402), + [anon_sym_BSLASHacsp] = ACTIONS(5402), + [anon_sym_BSLASHAcsp] = ACTIONS(5402), + [anon_sym_BSLASHacl] = ACTIONS(5402), + [anon_sym_BSLASHAcl] = ACTIONS(5402), + [anon_sym_BSLASHaclp] = ACTIONS(5402), + [anon_sym_BSLASHAclp] = ACTIONS(5402), + [anon_sym_BSLASHacf] = ACTIONS(5402), + [anon_sym_BSLASHAcf] = ACTIONS(5402), + [anon_sym_BSLASHacfp] = ACTIONS(5402), + [anon_sym_BSLASHAcfp] = ACTIONS(5402), + [anon_sym_BSLASHac] = ACTIONS(5402), + [anon_sym_BSLASHAc] = ACTIONS(5402), + [anon_sym_BSLASHacp] = ACTIONS(5402), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5402), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5402), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5402), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5402), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5402), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5402), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5402), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5402), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5402), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5404), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5402), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5402), + [anon_sym_BSLASHcolor] = ACTIONS(5402), + [anon_sym_BSLASHcolorbox] = ACTIONS(5402), + [anon_sym_BSLASHtextcolor] = ACTIONS(5402), + [anon_sym_BSLASHpagecolor] = ACTIONS(5402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5402), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5402), + [anon_sym_BSLASHtext] = ACTIONS(5402), + [anon_sym_BSLASHintertext] = ACTIONS(5402), + [anon_sym_shortintertext] = ACTIONS(5402), }, [1470] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_LBRACE] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5370), + [anon_sym_DOLLAR] = ACTIONS(5372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5370), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5370), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), + [anon_sym_BSLASHtext] = ACTIONS(5372), + [anon_sym_BSLASHintertext] = ACTIONS(5372), + [anon_sym_shortintertext] = ACTIONS(5372), }, [1471] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), - [anon_sym_BSLASHtext] = ACTIONS(4955), - [anon_sym_BSLASHintertext] = ACTIONS(4955), - [anon_sym_shortintertext] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5032), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5032), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), + [anon_sym_BSLASHtext] = ACTIONS(5034), + [anon_sym_BSLASHintertext] = ACTIONS(5034), + [anon_sym_shortintertext] = ACTIONS(5034), }, [1472] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_LPAREN] = ACTIONS(5295), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_LBRACK] = ACTIONS(5295), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(5295), - [anon_sym_RBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), - [anon_sym_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), - [anon_sym_BSLASHtext] = ACTIONS(5297), - [anon_sym_BSLASHintertext] = ACTIONS(5297), - [anon_sym_shortintertext] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5374), + [anon_sym_RBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5374), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5374), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), + [anon_sym_BSLASHtext] = ACTIONS(5376), + [anon_sym_BSLASHintertext] = ACTIONS(5376), + [anon_sym_shortintertext] = ACTIONS(5376), }, [1473] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(5299), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_LBRACE] = ACTIONS(5299), - [anon_sym_RBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), - [anon_sym_BSLASHtext] = ACTIONS(5301), - [anon_sym_BSLASHintertext] = ACTIONS(5301), - [anon_sym_shortintertext] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_LPAREN] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5378), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5378), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), + [anon_sym_BSLASHtext] = ACTIONS(5380), + [anon_sym_BSLASHintertext] = ACTIONS(5380), + [anon_sym_shortintertext] = ACTIONS(5380), }, [1474] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5142), + [anon_sym_DOLLAR] = ACTIONS(5144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5142), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5142), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), + [anon_sym_BSLASHtext] = ACTIONS(5144), + [anon_sym_BSLASHintertext] = ACTIONS(5144), + [anon_sym_shortintertext] = ACTIONS(5144), }, [1475] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - [anon_sym_BSLASHtext] = ACTIONS(5073), - [anon_sym_BSLASHintertext] = ACTIONS(5073), - [anon_sym_shortintertext] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5150), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5150), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5150), + [anon_sym_RBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5150), + [anon_sym_DOLLAR] = ACTIONS(5152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5150), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5150), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), + [anon_sym_BSLASHtext] = ACTIONS(5152), + [anon_sym_BSLASHintertext] = ACTIONS(5152), + [anon_sym_shortintertext] = ACTIONS(5152), }, [1476] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), - [anon_sym_BSLASHtext] = ACTIONS(4963), - [anon_sym_BSLASHintertext] = ACTIONS(4963), - [anon_sym_shortintertext] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5040), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5040), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), + [anon_sym_BSLASHtext] = ACTIONS(5042), + [anon_sym_BSLASHintertext] = ACTIONS(5042), + [anon_sym_shortintertext] = ACTIONS(5042), }, [1477] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - [anon_sym_BSLASHtext] = ACTIONS(5305), - [anon_sym_BSLASHintertext] = ACTIONS(5305), - [anon_sym_shortintertext] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_LBRACE] = ACTIONS(5382), + [anon_sym_RBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(5384), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5382), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5382), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), + [anon_sym_BSLASHtext] = ACTIONS(5384), + [anon_sym_BSLASHintertext] = ACTIONS(5384), + [anon_sym_shortintertext] = ACTIONS(5384), }, [1478] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5298), + [anon_sym_RPAREN] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5298), + [anon_sym_DOLLAR] = ACTIONS(5300), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5298), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5298), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), + [anon_sym_BSLASHtext] = ACTIONS(5300), + [anon_sym_BSLASHintertext] = ACTIONS(5300), + [anon_sym_shortintertext] = ACTIONS(5300), }, [1479] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), - [anon_sym_BSLASHtext] = ACTIONS(5153), - [anon_sym_BSLASHintertext] = ACTIONS(5153), - [anon_sym_shortintertext] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5230), + [anon_sym_DOLLAR] = ACTIONS(5232), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5230), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5230), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), + [anon_sym_BSLASHtext] = ACTIONS(5232), + [anon_sym_BSLASHintertext] = ACTIONS(5232), + [anon_sym_shortintertext] = ACTIONS(5232), }, [1480] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5282), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5282), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), + [anon_sym_BSLASHtext] = ACTIONS(5284), + [anon_sym_BSLASHintertext] = ACTIONS(5284), + [anon_sym_shortintertext] = ACTIONS(5284), }, [1481] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5222), + [anon_sym_DOLLAR] = ACTIONS(5224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5222), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5222), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), + [anon_sym_BSLASHtext] = ACTIONS(5224), + [anon_sym_BSLASHintertext] = ACTIONS(5224), + [anon_sym_shortintertext] = ACTIONS(5224), }, [1482] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5216), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5216), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5216), + [anon_sym_RBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5216), + [anon_sym_DOLLAR] = ACTIONS(5218), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5216), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5216), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), + [anon_sym_BSLASHtext] = ACTIONS(5218), + [anon_sym_BSLASHintertext] = ACTIONS(5218), + [anon_sym_shortintertext] = ACTIONS(5218), }, [1483] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(4897), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), - [anon_sym_BSLASHtext] = ACTIONS(4897), - [anon_sym_BSLASHintertext] = ACTIONS(4897), - [anon_sym_shortintertext] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4974), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4974), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), + [anon_sym_BSLASHtext] = ACTIONS(4976), + [anon_sym_BSLASHintertext] = ACTIONS(4976), + [anon_sym_shortintertext] = ACTIONS(4976), }, [1484] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), - [anon_sym_BSLASHtext] = ACTIONS(4901), - [anon_sym_BSLASHintertext] = ACTIONS(4901), - [anon_sym_shortintertext] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(4980), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4978), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4978), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), + [anon_sym_BSLASHtext] = ACTIONS(4980), + [anon_sym_BSLASHintertext] = ACTIONS(4980), + [anon_sym_shortintertext] = ACTIONS(4980), }, [1485] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), - [anon_sym_BSLASHtext] = ACTIONS(4905), - [anon_sym_BSLASHintertext] = ACTIONS(4905), - [anon_sym_shortintertext] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4982), + [anon_sym_DOLLAR] = ACTIONS(4984), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4982), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4982), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), + [anon_sym_BSLASHtext] = ACTIONS(4984), + [anon_sym_BSLASHintertext] = ACTIONS(4984), + [anon_sym_shortintertext] = ACTIONS(4984), }, [1486] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4986), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4986), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), + [anon_sym_BSLASHtext] = ACTIONS(4988), + [anon_sym_BSLASHintertext] = ACTIONS(4988), + [anon_sym_shortintertext] = ACTIONS(4988), }, [1487] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_LBRACE] = ACTIONS(4911), - [anon_sym_RBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), - [anon_sym_BSLASHtext] = ACTIONS(4913), - [anon_sym_BSLASHintertext] = ACTIONS(4913), - [anon_sym_shortintertext] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4990), + [anon_sym_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4990), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4990), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), + [anon_sym_BSLASHtext] = ACTIONS(4992), + [anon_sym_BSLASHintertext] = ACTIONS(4992), + [anon_sym_shortintertext] = ACTIONS(4992), }, [1488] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_RBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(4917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), - [anon_sym_BSLASHtext] = ACTIONS(4917), - [anon_sym_BSLASHintertext] = ACTIONS(4917), - [anon_sym_shortintertext] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4996), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4994), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4994), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), + [anon_sym_BSLASHtext] = ACTIONS(4996), + [anon_sym_BSLASHintertext] = ACTIONS(4996), + [anon_sym_shortintertext] = ACTIONS(4996), }, [1489] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - [anon_sym_BSLASHtext] = ACTIONS(4929), - [anon_sym_BSLASHintertext] = ACTIONS(4929), - [anon_sym_shortintertext] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5008), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5006), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5006), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), + [anon_sym_BSLASHtext] = ACTIONS(5008), + [anon_sym_BSLASHintertext] = ACTIONS(5008), + [anon_sym_shortintertext] = ACTIONS(5008), }, [1490] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4939), - [anon_sym_BSLASHintertext] = ACTIONS(4939), - [anon_sym_shortintertext] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5016), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5016), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), + [anon_sym_BSLASHtext] = ACTIONS(5018), + [anon_sym_BSLASHintertext] = ACTIONS(5018), + [anon_sym_shortintertext] = ACTIONS(5018), }, [1491] = { - [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_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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_LPAREN] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5390), + [anon_sym_RBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(5392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5390), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5390), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), + [anon_sym_BSLASHtext] = ACTIONS(5392), + [anon_sym_BSLASHintertext] = ACTIONS(5392), + [anon_sym_shortintertext] = ACTIONS(5392), }, [1492] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - [anon_sym_BSLASHtext] = ACTIONS(4959), - [anon_sym_BSLASHintertext] = ACTIONS(4959), - [anon_sym_shortintertext] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5038), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5036), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5036), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), + [anon_sym_BSLASHtext] = ACTIONS(5038), + [anon_sym_BSLASHintertext] = ACTIONS(5038), + [anon_sym_shortintertext] = ACTIONS(5038), }, [1493] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - [anon_sym_BSLASHtext] = ACTIONS(5049), - [anon_sym_BSLASHintertext] = ACTIONS(5049), - [anon_sym_shortintertext] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5126), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5126), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5126), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), + [anon_sym_BSLASHtext] = ACTIONS(5128), + [anon_sym_BSLASHintertext] = ACTIONS(5128), + [anon_sym_shortintertext] = ACTIONS(5128), }, [1494] = { [sym_curly_group] = STATE(1499), [sym_mixed_group] = STATE(1499), [aux_sym_generic_command_repeat1] = STATE(1494), - [sym_command_name] = ACTIONS(4461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(5505), - [anon_sym_LBRACK] = ACTIONS(5505), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_COMMA] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4459), - [sym_word] = ACTIONS(4461), - [sym_placeholder] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym__] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(4461), - [anon_sym_GT] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_PIPE] = ACTIONS(4461), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_BSLASHusepackage] = ACTIONS(4461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), - [anon_sym_BSLASHinclude] = ACTIONS(4461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), - [anon_sym_BSLASHinput] = ACTIONS(4461), - [anon_sym_BSLASHsubfile] = ACTIONS(4461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), - [anon_sym_BSLASHbibliography] = ACTIONS(4461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), - [anon_sym_BSLASHincludesvg] = ACTIONS(4461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), - [anon_sym_BSLASHimport] = ACTIONS(4461), - [anon_sym_BSLASHsubimport] = ACTIONS(4461), - [anon_sym_BSLASHinputfrom] = ACTIONS(4461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), - [anon_sym_BSLASHincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), - [anon_sym_BSLASHcaption] = ACTIONS(4461), - [anon_sym_BSLASHcite] = ACTIONS(4461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCite] = ACTIONS(4461), - [anon_sym_BSLASHnocite] = ACTIONS(4461), - [anon_sym_BSLASHcitet] = ACTIONS(4461), - [anon_sym_BSLASHcitep] = ACTIONS(4461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteauthor] = ACTIONS(4461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitetitle] = ACTIONS(4461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteyear] = ACTIONS(4461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), - [anon_sym_BSLASHcitedate] = ACTIONS(4461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), - [anon_sym_BSLASHciteurl] = ACTIONS(4461), - [anon_sym_BSLASHfullcite] = ACTIONS(4461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), - [anon_sym_BSLASHcitealt] = ACTIONS(4461), - [anon_sym_BSLASHcitealp] = ACTIONS(4461), - [anon_sym_BSLASHcitetext] = ACTIONS(4461), - [anon_sym_BSLASHparencite] = ACTIONS(4461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHParencite] = ACTIONS(4461), - [anon_sym_BSLASHfootcite] = ACTIONS(4461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), - [anon_sym_BSLASHtextcite] = ACTIONS(4461), - [anon_sym_BSLASHTextcite] = ACTIONS(4461), - [anon_sym_BSLASHsmartcite] = ACTIONS(4461), - [anon_sym_BSLASHSmartcite] = ACTIONS(4461), - [anon_sym_BSLASHsupercite] = ACTIONS(4461), - [anon_sym_BSLASHautocite] = ACTIONS(4461), - [anon_sym_BSLASHAutocite] = ACTIONS(4461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), - [anon_sym_BSLASHvolcite] = ACTIONS(4461), - [anon_sym_BSLASHVolcite] = ACTIONS(4461), - [anon_sym_BSLASHpvolcite] = ACTIONS(4461), - [anon_sym_BSLASHPvolcite] = ACTIONS(4461), - [anon_sym_BSLASHfvolcite] = ACTIONS(4461), - [anon_sym_BSLASHftvolcite] = ACTIONS(4461), - [anon_sym_BSLASHsvolcite] = ACTIONS(4461), - [anon_sym_BSLASHSvolcite] = ACTIONS(4461), - [anon_sym_BSLASHtvolcite] = ACTIONS(4461), - [anon_sym_BSLASHTvolcite] = ACTIONS(4461), - [anon_sym_BSLASHavolcite] = ACTIONS(4461), - [anon_sym_BSLASHAvolcite] = ACTIONS(4461), - [anon_sym_BSLASHnotecite] = ACTIONS(4461), - [anon_sym_BSLASHNotecite] = ACTIONS(4461), - [anon_sym_BSLASHpnotecite] = ACTIONS(4461), - [anon_sym_BSLASHPnotecite] = ACTIONS(4461), - [anon_sym_BSLASHfnotecite] = ACTIONS(4461), - [anon_sym_BSLASHlabel] = ACTIONS(4461), - [anon_sym_BSLASHref] = ACTIONS(4461), - [anon_sym_BSLASHeqref] = ACTIONS(4461), - [anon_sym_BSLASHvref] = ACTIONS(4461), - [anon_sym_BSLASHVref] = ACTIONS(4461), - [anon_sym_BSLASHautoref] = ACTIONS(4461), - [anon_sym_BSLASHpageref] = ACTIONS(4461), - [anon_sym_BSLASHcref] = ACTIONS(4461), - [anon_sym_BSLASHCref] = ACTIONS(4461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnameCref] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), - [anon_sym_BSLASHlabelcref] = ACTIONS(4461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange] = ACTIONS(4461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHCrefrange] = ACTIONS(4461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), - [anon_sym_BSLASHnewlabel] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand] = ACTIONS(4461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), - [anon_sym_BSLASHdef] = ACTIONS(4461), - [anon_sym_BSLASHlet] = ACTIONS(4461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), - [anon_sym_BSLASHgls] = ACTIONS(4461), - [anon_sym_BSLASHGls] = ACTIONS(4461), - [anon_sym_BSLASHGLS] = ACTIONS(4461), - [anon_sym_BSLASHglspl] = ACTIONS(4461), - [anon_sym_BSLASHGlspl] = ACTIONS(4461), - [anon_sym_BSLASHGLSpl] = ACTIONS(4461), - [anon_sym_BSLASHglsdisp] = ACTIONS(4461), - [anon_sym_BSLASHglslink] = ACTIONS(4461), - [anon_sym_BSLASHglstext] = ACTIONS(4461), - [anon_sym_BSLASHGlstext] = ACTIONS(4461), - [anon_sym_BSLASHGLStext] = ACTIONS(4461), - [anon_sym_BSLASHglsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), - [anon_sym_BSLASHglsplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSplural] = ACTIONS(4461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), - [anon_sym_BSLASHglsname] = ACTIONS(4461), - [anon_sym_BSLASHGlsname] = ACTIONS(4461), - [anon_sym_BSLASHGLSname] = ACTIONS(4461), - [anon_sym_BSLASHglssymbol] = ACTIONS(4461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), - [anon_sym_BSLASHglsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), - [anon_sym_BSLASHglsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), - [anon_sym_BSLASHglsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), - [anon_sym_BSLASHglsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), - [anon_sym_BSLASHglsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), - [anon_sym_BSLASHnewacronym] = ACTIONS(4461), - [anon_sym_BSLASHacrshort] = ACTIONS(4461), - [anon_sym_BSLASHAcrshort] = ACTIONS(4461), - [anon_sym_BSLASHACRshort] = ACTIONS(4461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), - [anon_sym_BSLASHacrlong] = ACTIONS(4461), - [anon_sym_BSLASHAcrlong] = ACTIONS(4461), - [anon_sym_BSLASHACRlong] = ACTIONS(4461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), - [anon_sym_BSLASHacrfull] = ACTIONS(4461), - [anon_sym_BSLASHAcrfull] = ACTIONS(4461), - [anon_sym_BSLASHACRfull] = ACTIONS(4461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), - [anon_sym_BSLASHacs] = ACTIONS(4461), - [anon_sym_BSLASHAcs] = ACTIONS(4461), - [anon_sym_BSLASHacsp] = ACTIONS(4461), - [anon_sym_BSLASHAcsp] = ACTIONS(4461), - [anon_sym_BSLASHacl] = ACTIONS(4461), - [anon_sym_BSLASHAcl] = ACTIONS(4461), - [anon_sym_BSLASHaclp] = ACTIONS(4461), - [anon_sym_BSLASHAclp] = ACTIONS(4461), - [anon_sym_BSLASHacf] = ACTIONS(4461), - [anon_sym_BSLASHAcf] = ACTIONS(4461), - [anon_sym_BSLASHacfp] = ACTIONS(4461), - [anon_sym_BSLASHAcfp] = ACTIONS(4461), - [anon_sym_BSLASHac] = ACTIONS(4461), - [anon_sym_BSLASHAc] = ACTIONS(4461), - [anon_sym_BSLASHacp] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), - [anon_sym_BSLASHcolor] = ACTIONS(4461), - [anon_sym_BSLASHcolorbox] = ACTIONS(4461), - [anon_sym_BSLASHtextcolor] = ACTIONS(4461), - [anon_sym_BSLASHpagecolor] = ACTIONS(4461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [sym_command_name] = ACTIONS(4540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(5587), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(5590), + [anon_sym_RBRACE] = ACTIONS(4538), + [sym_word] = ACTIONS(4540), + [sym_placeholder] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_SLASH] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [anon_sym__] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_BSLASHusepackage] = ACTIONS(4540), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4540), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4540), + [anon_sym_BSLASHinclude] = ACTIONS(4540), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4540), + [anon_sym_BSLASHinput] = ACTIONS(4540), + [anon_sym_BSLASHsubfile] = ACTIONS(4540), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4540), + [anon_sym_BSLASHbibliography] = ACTIONS(4540), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4540), + [anon_sym_BSLASHincludesvg] = ACTIONS(4540), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4540), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4540), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4540), + [anon_sym_BSLASHimport] = ACTIONS(4540), + [anon_sym_BSLASHsubimport] = ACTIONS(4540), + [anon_sym_BSLASHinputfrom] = ACTIONS(4540), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4540), + [anon_sym_BSLASHincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4540), + [anon_sym_BSLASHcaption] = ACTIONS(4540), + [anon_sym_BSLASHcite] = ACTIONS(4540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCite] = ACTIONS(4540), + [anon_sym_BSLASHnocite] = ACTIONS(4540), + [anon_sym_BSLASHcitet] = ACTIONS(4540), + [anon_sym_BSLASHcitep] = ACTIONS(4540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteauthor] = ACTIONS(4540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitetitle] = ACTIONS(4540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteyear] = ACTIONS(4540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4538), + [anon_sym_BSLASHcitedate] = ACTIONS(4540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4538), + [anon_sym_BSLASHciteurl] = ACTIONS(4540), + [anon_sym_BSLASHfullcite] = ACTIONS(4540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4540), + [anon_sym_BSLASHcitealt] = ACTIONS(4540), + [anon_sym_BSLASHcitealp] = ACTIONS(4540), + [anon_sym_BSLASHcitetext] = ACTIONS(4540), + [anon_sym_BSLASHparencite] = ACTIONS(4540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHParencite] = ACTIONS(4540), + [anon_sym_BSLASHfootcite] = ACTIONS(4540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4540), + [anon_sym_BSLASHtextcite] = ACTIONS(4540), + [anon_sym_BSLASHTextcite] = ACTIONS(4540), + [anon_sym_BSLASHsmartcite] = ACTIONS(4540), + [anon_sym_BSLASHSmartcite] = ACTIONS(4540), + [anon_sym_BSLASHsupercite] = ACTIONS(4540), + [anon_sym_BSLASHautocite] = ACTIONS(4540), + [anon_sym_BSLASHAutocite] = ACTIONS(4540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4538), + [anon_sym_BSLASHvolcite] = ACTIONS(4540), + [anon_sym_BSLASHVolcite] = ACTIONS(4540), + [anon_sym_BSLASHpvolcite] = ACTIONS(4540), + [anon_sym_BSLASHPvolcite] = ACTIONS(4540), + [anon_sym_BSLASHfvolcite] = ACTIONS(4540), + [anon_sym_BSLASHftvolcite] = ACTIONS(4540), + [anon_sym_BSLASHsvolcite] = ACTIONS(4540), + [anon_sym_BSLASHSvolcite] = ACTIONS(4540), + [anon_sym_BSLASHtvolcite] = ACTIONS(4540), + [anon_sym_BSLASHTvolcite] = ACTIONS(4540), + [anon_sym_BSLASHavolcite] = ACTIONS(4540), + [anon_sym_BSLASHAvolcite] = ACTIONS(4540), + [anon_sym_BSLASHnotecite] = ACTIONS(4540), + [anon_sym_BSLASHNotecite] = ACTIONS(4540), + [anon_sym_BSLASHpnotecite] = ACTIONS(4540), + [anon_sym_BSLASHPnotecite] = ACTIONS(4540), + [anon_sym_BSLASHfnotecite] = ACTIONS(4540), + [anon_sym_BSLASHlabel] = ACTIONS(4540), + [anon_sym_BSLASHref] = ACTIONS(4540), + [anon_sym_BSLASHeqref] = ACTIONS(4540), + [anon_sym_BSLASHvref] = ACTIONS(4540), + [anon_sym_BSLASHVref] = ACTIONS(4540), + [anon_sym_BSLASHautoref] = ACTIONS(4540), + [anon_sym_BSLASHpageref] = ACTIONS(4540), + [anon_sym_BSLASHcref] = ACTIONS(4540), + [anon_sym_BSLASHCref] = ACTIONS(4540), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnameCref] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4540), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4540), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4540), + [anon_sym_BSLASHlabelcref] = ACTIONS(4540), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange] = ACTIONS(4540), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHCrefrange] = ACTIONS(4540), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4538), + [anon_sym_BSLASHnewlabel] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand] = ACTIONS(4540), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4540), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4540), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4538), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4540), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdef] = ACTIONS(4540), + [anon_sym_BSLASHlet] = ACTIONS(4540), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4540), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4540), + [anon_sym_BSLASHgls] = ACTIONS(4540), + [anon_sym_BSLASHGls] = ACTIONS(4540), + [anon_sym_BSLASHGLS] = ACTIONS(4540), + [anon_sym_BSLASHglspl] = ACTIONS(4540), + [anon_sym_BSLASHGlspl] = ACTIONS(4540), + [anon_sym_BSLASHGLSpl] = ACTIONS(4540), + [anon_sym_BSLASHglsdisp] = ACTIONS(4540), + [anon_sym_BSLASHglslink] = ACTIONS(4540), + [anon_sym_BSLASHglstext] = ACTIONS(4540), + [anon_sym_BSLASHGlstext] = ACTIONS(4540), + [anon_sym_BSLASHGLStext] = ACTIONS(4540), + [anon_sym_BSLASHglsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4540), + [anon_sym_BSLASHglsplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSplural] = ACTIONS(4540), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4540), + [anon_sym_BSLASHglsname] = ACTIONS(4540), + [anon_sym_BSLASHGlsname] = ACTIONS(4540), + [anon_sym_BSLASHGLSname] = ACTIONS(4540), + [anon_sym_BSLASHglssymbol] = ACTIONS(4540), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4540), + [anon_sym_BSLASHglsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4540), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4540), + [anon_sym_BSLASHglsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4540), + [anon_sym_BSLASHglsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4540), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4540), + [anon_sym_BSLASHglsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4540), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4540), + [anon_sym_BSLASHglsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4540), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4540), + [anon_sym_BSLASHnewacronym] = ACTIONS(4540), + [anon_sym_BSLASHacrshort] = ACTIONS(4540), + [anon_sym_BSLASHAcrshort] = ACTIONS(4540), + [anon_sym_BSLASHACRshort] = ACTIONS(4540), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4540), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4540), + [anon_sym_BSLASHacrlong] = ACTIONS(4540), + [anon_sym_BSLASHAcrlong] = ACTIONS(4540), + [anon_sym_BSLASHACRlong] = ACTIONS(4540), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4540), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4540), + [anon_sym_BSLASHacrfull] = ACTIONS(4540), + [anon_sym_BSLASHAcrfull] = ACTIONS(4540), + [anon_sym_BSLASHACRfull] = ACTIONS(4540), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4540), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4540), + [anon_sym_BSLASHacs] = ACTIONS(4540), + [anon_sym_BSLASHAcs] = ACTIONS(4540), + [anon_sym_BSLASHacsp] = ACTIONS(4540), + [anon_sym_BSLASHAcsp] = ACTIONS(4540), + [anon_sym_BSLASHacl] = ACTIONS(4540), + [anon_sym_BSLASHAcl] = ACTIONS(4540), + [anon_sym_BSLASHaclp] = ACTIONS(4540), + [anon_sym_BSLASHAclp] = ACTIONS(4540), + [anon_sym_BSLASHacf] = ACTIONS(4540), + [anon_sym_BSLASHAcf] = ACTIONS(4540), + [anon_sym_BSLASHacfp] = ACTIONS(4540), + [anon_sym_BSLASHAcfp] = ACTIONS(4540), + [anon_sym_BSLASHac] = ACTIONS(4540), + [anon_sym_BSLASHAc] = ACTIONS(4540), + [anon_sym_BSLASHacp] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4540), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4540), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4540), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4540), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4540), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4538), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4540), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4540), + [anon_sym_BSLASHcolor] = ACTIONS(4540), + [anon_sym_BSLASHcolorbox] = ACTIONS(4540), + [anon_sym_BSLASHtextcolor] = ACTIONS(4540), + [anon_sym_BSLASHpagecolor] = ACTIONS(4540), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4540), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4540), }, [1495] = { [sym_curly_group] = STATE(1499), [sym_mixed_group] = STATE(1499), [aux_sym_generic_command_repeat1] = STATE(1496), - [sym_command_name] = ACTIONS(4565), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(5511), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(4563), - [sym_word] = ACTIONS(4565), - [sym_placeholder] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym__] = ACTIONS(4565), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_PIPE] = ACTIONS(4565), - [anon_sym_COLON] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_BSLASHusepackage] = ACTIONS(4565), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), - [anon_sym_BSLASHinclude] = ACTIONS(4565), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), - [anon_sym_BSLASHinput] = ACTIONS(4565), - [anon_sym_BSLASHsubfile] = ACTIONS(4565), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), - [anon_sym_BSLASHbibliography] = ACTIONS(4565), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), - [anon_sym_BSLASHincludesvg] = ACTIONS(4565), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), - [anon_sym_BSLASHimport] = ACTIONS(4565), - [anon_sym_BSLASHsubimport] = ACTIONS(4565), - [anon_sym_BSLASHinputfrom] = ACTIONS(4565), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), - [anon_sym_BSLASHincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), - [anon_sym_BSLASHcaption] = ACTIONS(4565), - [anon_sym_BSLASHcite] = ACTIONS(4565), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCite] = ACTIONS(4565), - [anon_sym_BSLASHnocite] = ACTIONS(4565), - [anon_sym_BSLASHcitet] = ACTIONS(4565), - [anon_sym_BSLASHcitep] = ACTIONS(4565), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteauthor] = ACTIONS(4565), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitetitle] = ACTIONS(4565), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteyear] = ACTIONS(4565), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), - [anon_sym_BSLASHcitedate] = ACTIONS(4565), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), - [anon_sym_BSLASHciteurl] = ACTIONS(4565), - [anon_sym_BSLASHfullcite] = ACTIONS(4565), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), - [anon_sym_BSLASHcitealt] = ACTIONS(4565), - [anon_sym_BSLASHcitealp] = ACTIONS(4565), - [anon_sym_BSLASHcitetext] = ACTIONS(4565), - [anon_sym_BSLASHparencite] = ACTIONS(4565), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHParencite] = ACTIONS(4565), - [anon_sym_BSLASHfootcite] = ACTIONS(4565), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), - [anon_sym_BSLASHtextcite] = ACTIONS(4565), - [anon_sym_BSLASHTextcite] = ACTIONS(4565), - [anon_sym_BSLASHsmartcite] = ACTIONS(4565), - [anon_sym_BSLASHSmartcite] = ACTIONS(4565), - [anon_sym_BSLASHsupercite] = ACTIONS(4565), - [anon_sym_BSLASHautocite] = ACTIONS(4565), - [anon_sym_BSLASHAutocite] = ACTIONS(4565), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), - [anon_sym_BSLASHvolcite] = ACTIONS(4565), - [anon_sym_BSLASHVolcite] = ACTIONS(4565), - [anon_sym_BSLASHpvolcite] = ACTIONS(4565), - [anon_sym_BSLASHPvolcite] = ACTIONS(4565), - [anon_sym_BSLASHfvolcite] = ACTIONS(4565), - [anon_sym_BSLASHftvolcite] = ACTIONS(4565), - [anon_sym_BSLASHsvolcite] = ACTIONS(4565), - [anon_sym_BSLASHSvolcite] = ACTIONS(4565), - [anon_sym_BSLASHtvolcite] = ACTIONS(4565), - [anon_sym_BSLASHTvolcite] = ACTIONS(4565), - [anon_sym_BSLASHavolcite] = ACTIONS(4565), - [anon_sym_BSLASHAvolcite] = ACTIONS(4565), - [anon_sym_BSLASHnotecite] = ACTIONS(4565), - [anon_sym_BSLASHNotecite] = ACTIONS(4565), - [anon_sym_BSLASHpnotecite] = ACTIONS(4565), - [anon_sym_BSLASHPnotecite] = ACTIONS(4565), - [anon_sym_BSLASHfnotecite] = ACTIONS(4565), - [anon_sym_BSLASHlabel] = ACTIONS(4565), - [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(4563), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), - [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(4565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHCrefrange] = ACTIONS(4565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), - [anon_sym_BSLASHnewlabel] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand] = ACTIONS(4565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), - [anon_sym_BSLASHdef] = ACTIONS(4565), - [anon_sym_BSLASHlet] = ACTIONS(4565), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), - [anon_sym_BSLASHgls] = ACTIONS(4565), - [anon_sym_BSLASHGls] = ACTIONS(4565), - [anon_sym_BSLASHGLS] = ACTIONS(4565), - [anon_sym_BSLASHglspl] = ACTIONS(4565), - [anon_sym_BSLASHGlspl] = ACTIONS(4565), - [anon_sym_BSLASHGLSpl] = ACTIONS(4565), - [anon_sym_BSLASHglsdisp] = ACTIONS(4565), - [anon_sym_BSLASHglslink] = ACTIONS(4565), - [anon_sym_BSLASHglstext] = ACTIONS(4565), - [anon_sym_BSLASHGlstext] = ACTIONS(4565), - [anon_sym_BSLASHGLStext] = ACTIONS(4565), - [anon_sym_BSLASHglsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), - [anon_sym_BSLASHglsplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSplural] = ACTIONS(4565), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), - [anon_sym_BSLASHglsname] = ACTIONS(4565), - [anon_sym_BSLASHGlsname] = ACTIONS(4565), - [anon_sym_BSLASHGLSname] = ACTIONS(4565), - [anon_sym_BSLASHglssymbol] = ACTIONS(4565), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), - [anon_sym_BSLASHglsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), - [anon_sym_BSLASHglsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), - [anon_sym_BSLASHglsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), - [anon_sym_BSLASHglsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), - [anon_sym_BSLASHglsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), - [anon_sym_BSLASHnewacronym] = ACTIONS(4565), - [anon_sym_BSLASHacrshort] = ACTIONS(4565), - [anon_sym_BSLASHAcrshort] = ACTIONS(4565), - [anon_sym_BSLASHACRshort] = ACTIONS(4565), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), - [anon_sym_BSLASHacrlong] = ACTIONS(4565), - [anon_sym_BSLASHAcrlong] = ACTIONS(4565), - [anon_sym_BSLASHACRlong] = ACTIONS(4565), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), - [anon_sym_BSLASHacrfull] = ACTIONS(4565), - [anon_sym_BSLASHAcrfull] = ACTIONS(4565), - [anon_sym_BSLASHACRfull] = ACTIONS(4565), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), - [anon_sym_BSLASHacs] = ACTIONS(4565), - [anon_sym_BSLASHAcs] = ACTIONS(4565), - [anon_sym_BSLASHacsp] = ACTIONS(4565), - [anon_sym_BSLASHAcsp] = ACTIONS(4565), - [anon_sym_BSLASHacl] = ACTIONS(4565), - [anon_sym_BSLASHAcl] = ACTIONS(4565), - [anon_sym_BSLASHaclp] = ACTIONS(4565), - [anon_sym_BSLASHAclp] = ACTIONS(4565), - [anon_sym_BSLASHacf] = ACTIONS(4565), - [anon_sym_BSLASHAcf] = ACTIONS(4565), - [anon_sym_BSLASHacfp] = ACTIONS(4565), - [anon_sym_BSLASHAcfp] = ACTIONS(4565), - [anon_sym_BSLASHac] = ACTIONS(4565), - [anon_sym_BSLASHAc] = ACTIONS(4565), - [anon_sym_BSLASHacp] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), - [anon_sym_BSLASHcolor] = ACTIONS(4565), - [anon_sym_BSLASHcolorbox] = ACTIONS(4565), - [anon_sym_BSLASHtextcolor] = ACTIONS(4565), - [anon_sym_BSLASHpagecolor] = ACTIONS(4565), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [sym_command_name] = ACTIONS(4644), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_RBRACE] = ACTIONS(4642), + [sym_word] = ACTIONS(4644), + [sym_placeholder] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_SLASH] = ACTIONS(4644), + [anon_sym_CARET] = ACTIONS(4644), + [anon_sym__] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4644), + [anon_sym_BSLASHinclude] = ACTIONS(4644), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4644), + [anon_sym_BSLASHinput] = ACTIONS(4644), + [anon_sym_BSLASHsubfile] = ACTIONS(4644), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4644), + [anon_sym_BSLASHbibliography] = ACTIONS(4644), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4644), + [anon_sym_BSLASHincludesvg] = ACTIONS(4644), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4644), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4644), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4644), + [anon_sym_BSLASHimport] = ACTIONS(4644), + [anon_sym_BSLASHsubimport] = ACTIONS(4644), + [anon_sym_BSLASHinputfrom] = ACTIONS(4644), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4644), + [anon_sym_BSLASHincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4644), + [anon_sym_BSLASHcaption] = ACTIONS(4644), + [anon_sym_BSLASHcite] = ACTIONS(4644), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCite] = ACTIONS(4644), + [anon_sym_BSLASHnocite] = ACTIONS(4644), + [anon_sym_BSLASHcitet] = ACTIONS(4644), + [anon_sym_BSLASHcitep] = ACTIONS(4644), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteauthor] = ACTIONS(4644), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4644), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitetitle] = ACTIONS(4644), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteyear] = ACTIONS(4644), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4642), + [anon_sym_BSLASHcitedate] = ACTIONS(4644), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4642), + [anon_sym_BSLASHciteurl] = ACTIONS(4644), + [anon_sym_BSLASHfullcite] = ACTIONS(4644), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4644), + [anon_sym_BSLASHcitealt] = ACTIONS(4644), + [anon_sym_BSLASHcitealp] = ACTIONS(4644), + [anon_sym_BSLASHcitetext] = ACTIONS(4644), + [anon_sym_BSLASHparencite] = ACTIONS(4644), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHParencite] = ACTIONS(4644), + [anon_sym_BSLASHfootcite] = ACTIONS(4644), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4644), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4644), + [anon_sym_BSLASHtextcite] = ACTIONS(4644), + [anon_sym_BSLASHTextcite] = ACTIONS(4644), + [anon_sym_BSLASHsmartcite] = ACTIONS(4644), + [anon_sym_BSLASHSmartcite] = ACTIONS(4644), + [anon_sym_BSLASHsupercite] = ACTIONS(4644), + [anon_sym_BSLASHautocite] = ACTIONS(4644), + [anon_sym_BSLASHAutocite] = ACTIONS(4644), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4642), + [anon_sym_BSLASHvolcite] = ACTIONS(4644), + [anon_sym_BSLASHVolcite] = ACTIONS(4644), + [anon_sym_BSLASHpvolcite] = ACTIONS(4644), + [anon_sym_BSLASHPvolcite] = ACTIONS(4644), + [anon_sym_BSLASHfvolcite] = ACTIONS(4644), + [anon_sym_BSLASHftvolcite] = ACTIONS(4644), + [anon_sym_BSLASHsvolcite] = ACTIONS(4644), + [anon_sym_BSLASHSvolcite] = ACTIONS(4644), + [anon_sym_BSLASHtvolcite] = ACTIONS(4644), + [anon_sym_BSLASHTvolcite] = ACTIONS(4644), + [anon_sym_BSLASHavolcite] = ACTIONS(4644), + [anon_sym_BSLASHAvolcite] = ACTIONS(4644), + [anon_sym_BSLASHnotecite] = ACTIONS(4644), + [anon_sym_BSLASHNotecite] = ACTIONS(4644), + [anon_sym_BSLASHpnotecite] = ACTIONS(4644), + [anon_sym_BSLASHPnotecite] = ACTIONS(4644), + [anon_sym_BSLASHfnotecite] = ACTIONS(4644), + [anon_sym_BSLASHlabel] = ACTIONS(4644), + [anon_sym_BSLASHref] = ACTIONS(4644), + [anon_sym_BSLASHeqref] = ACTIONS(4644), + [anon_sym_BSLASHvref] = ACTIONS(4644), + [anon_sym_BSLASHVref] = ACTIONS(4644), + [anon_sym_BSLASHautoref] = ACTIONS(4644), + [anon_sym_BSLASHpageref] = ACTIONS(4644), + [anon_sym_BSLASHcref] = ACTIONS(4644), + [anon_sym_BSLASHCref] = ACTIONS(4644), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnameCref] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4644), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4644), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4644), + [anon_sym_BSLASHlabelcref] = ACTIONS(4644), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange] = ACTIONS(4644), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHCrefrange] = ACTIONS(4644), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4642), + [anon_sym_BSLASHnewlabel] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand] = ACTIONS(4644), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4644), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4644), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4644), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdef] = ACTIONS(4644), + [anon_sym_BSLASHlet] = ACTIONS(4644), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4644), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4644), + [anon_sym_BSLASHgls] = ACTIONS(4644), + [anon_sym_BSLASHGls] = ACTIONS(4644), + [anon_sym_BSLASHGLS] = ACTIONS(4644), + [anon_sym_BSLASHglspl] = ACTIONS(4644), + [anon_sym_BSLASHGlspl] = ACTIONS(4644), + [anon_sym_BSLASHGLSpl] = ACTIONS(4644), + [anon_sym_BSLASHglsdisp] = ACTIONS(4644), + [anon_sym_BSLASHglslink] = ACTIONS(4644), + [anon_sym_BSLASHglstext] = ACTIONS(4644), + [anon_sym_BSLASHGlstext] = ACTIONS(4644), + [anon_sym_BSLASHGLStext] = ACTIONS(4644), + [anon_sym_BSLASHglsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4644), + [anon_sym_BSLASHglsplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSplural] = ACTIONS(4644), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4644), + [anon_sym_BSLASHglsname] = ACTIONS(4644), + [anon_sym_BSLASHGlsname] = ACTIONS(4644), + [anon_sym_BSLASHGLSname] = ACTIONS(4644), + [anon_sym_BSLASHglssymbol] = ACTIONS(4644), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4644), + [anon_sym_BSLASHglsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4644), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4644), + [anon_sym_BSLASHglsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4644), + [anon_sym_BSLASHglsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4644), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4644), + [anon_sym_BSLASHglsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4644), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4644), + [anon_sym_BSLASHglsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4644), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4644), + [anon_sym_BSLASHnewacronym] = ACTIONS(4644), + [anon_sym_BSLASHacrshort] = ACTIONS(4644), + [anon_sym_BSLASHAcrshort] = ACTIONS(4644), + [anon_sym_BSLASHACRshort] = ACTIONS(4644), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4644), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4644), + [anon_sym_BSLASHacrlong] = ACTIONS(4644), + [anon_sym_BSLASHAcrlong] = ACTIONS(4644), + [anon_sym_BSLASHACRlong] = ACTIONS(4644), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4644), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4644), + [anon_sym_BSLASHacrfull] = ACTIONS(4644), + [anon_sym_BSLASHAcrfull] = ACTIONS(4644), + [anon_sym_BSLASHACRfull] = ACTIONS(4644), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4644), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4644), + [anon_sym_BSLASHacs] = ACTIONS(4644), + [anon_sym_BSLASHAcs] = ACTIONS(4644), + [anon_sym_BSLASHacsp] = ACTIONS(4644), + [anon_sym_BSLASHAcsp] = ACTIONS(4644), + [anon_sym_BSLASHacl] = ACTIONS(4644), + [anon_sym_BSLASHAcl] = ACTIONS(4644), + [anon_sym_BSLASHaclp] = ACTIONS(4644), + [anon_sym_BSLASHAclp] = ACTIONS(4644), + [anon_sym_BSLASHacf] = ACTIONS(4644), + [anon_sym_BSLASHAcf] = ACTIONS(4644), + [anon_sym_BSLASHacfp] = ACTIONS(4644), + [anon_sym_BSLASHAcfp] = ACTIONS(4644), + [anon_sym_BSLASHac] = ACTIONS(4644), + [anon_sym_BSLASHAc] = ACTIONS(4644), + [anon_sym_BSLASHacp] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4644), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4644), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4644), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4644), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4644), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4642), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4644), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4644), + [anon_sym_BSLASHcolor] = ACTIONS(4644), + [anon_sym_BSLASHcolorbox] = ACTIONS(4644), + [anon_sym_BSLASHtextcolor] = ACTIONS(4644), + [anon_sym_BSLASHpagecolor] = ACTIONS(4644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4644), }, [1496] = { [sym_curly_group] = STATE(1499), [sym_mixed_group] = STATE(1499), [aux_sym_generic_command_repeat1] = STATE(1494), - [sym_command_name] = ACTIONS(4451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(5511), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_RBRACK] = ACTIONS(4449), - [anon_sym_COMMA] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(4449), - [sym_word] = ACTIONS(4451), - [sym_placeholder] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_SLASH] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym__] = ACTIONS(4451), - [anon_sym_LT] = ACTIONS(4451), - [anon_sym_GT] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_PIPE] = ACTIONS(4451), - [anon_sym_COLON] = ACTIONS(4451), - [anon_sym_SQUOTE] = ACTIONS(4451), - [anon_sym_BSLASHusepackage] = ACTIONS(4451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), - [anon_sym_BSLASHinclude] = ACTIONS(4451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), - [anon_sym_BSLASHinput] = ACTIONS(4451), - [anon_sym_BSLASHsubfile] = ACTIONS(4451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), - [anon_sym_BSLASHbibliography] = ACTIONS(4451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), - [anon_sym_BSLASHincludesvg] = ACTIONS(4451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), - [anon_sym_BSLASHimport] = ACTIONS(4451), - [anon_sym_BSLASHsubimport] = ACTIONS(4451), - [anon_sym_BSLASHinputfrom] = ACTIONS(4451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), - [anon_sym_BSLASHincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [anon_sym_BSLASHcite] = ACTIONS(4451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCite] = ACTIONS(4451), - [anon_sym_BSLASHnocite] = ACTIONS(4451), - [anon_sym_BSLASHcitet] = ACTIONS(4451), - [anon_sym_BSLASHcitep] = ACTIONS(4451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor] = ACTIONS(4451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle] = ACTIONS(4451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteyear] = ACTIONS(4451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), - [anon_sym_BSLASHcitedate] = ACTIONS(4451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), - [anon_sym_BSLASHciteurl] = ACTIONS(4451), - [anon_sym_BSLASHfullcite] = ACTIONS(4451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), - [anon_sym_BSLASHcitealt] = ACTIONS(4451), - [anon_sym_BSLASHcitealp] = ACTIONS(4451), - [anon_sym_BSLASHcitetext] = ACTIONS(4451), - [anon_sym_BSLASHparencite] = ACTIONS(4451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHParencite] = ACTIONS(4451), - [anon_sym_BSLASHfootcite] = ACTIONS(4451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), - [anon_sym_BSLASHtextcite] = ACTIONS(4451), - [anon_sym_BSLASHTextcite] = ACTIONS(4451), - [anon_sym_BSLASHsmartcite] = ACTIONS(4451), - [anon_sym_BSLASHSmartcite] = ACTIONS(4451), - [anon_sym_BSLASHsupercite] = ACTIONS(4451), - [anon_sym_BSLASHautocite] = ACTIONS(4451), - [anon_sym_BSLASHAutocite] = ACTIONS(4451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), - [anon_sym_BSLASHvolcite] = ACTIONS(4451), - [anon_sym_BSLASHVolcite] = ACTIONS(4451), - [anon_sym_BSLASHpvolcite] = ACTIONS(4451), - [anon_sym_BSLASHPvolcite] = ACTIONS(4451), - [anon_sym_BSLASHfvolcite] = ACTIONS(4451), - [anon_sym_BSLASHftvolcite] = ACTIONS(4451), - [anon_sym_BSLASHsvolcite] = ACTIONS(4451), - [anon_sym_BSLASHSvolcite] = ACTIONS(4451), - [anon_sym_BSLASHtvolcite] = ACTIONS(4451), - [anon_sym_BSLASHTvolcite] = ACTIONS(4451), - [anon_sym_BSLASHavolcite] = ACTIONS(4451), - [anon_sym_BSLASHAvolcite] = ACTIONS(4451), - [anon_sym_BSLASHnotecite] = ACTIONS(4451), - [anon_sym_BSLASHNotecite] = ACTIONS(4451), - [anon_sym_BSLASHpnotecite] = ACTIONS(4451), - [anon_sym_BSLASHPnotecite] = ACTIONS(4451), - [anon_sym_BSLASHfnotecite] = ACTIONS(4451), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4451), - [anon_sym_BSLASHeqref] = ACTIONS(4451), - [anon_sym_BSLASHvref] = ACTIONS(4451), - [anon_sym_BSLASHVref] = ACTIONS(4451), - [anon_sym_BSLASHautoref] = ACTIONS(4451), - [anon_sym_BSLASHpageref] = ACTIONS(4451), - [anon_sym_BSLASHcref] = ACTIONS(4451), - [anon_sym_BSLASHCref] = ACTIONS(4451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnameCref] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), - [anon_sym_BSLASHlabelcref] = ACTIONS(4451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange] = ACTIONS(4451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange] = ACTIONS(4451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), - [anon_sym_BSLASHnewlabel] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand] = ACTIONS(4451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), - [anon_sym_BSLASHdef] = ACTIONS(4451), - [anon_sym_BSLASHlet] = ACTIONS(4451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), - [anon_sym_BSLASHgls] = ACTIONS(4451), - [anon_sym_BSLASHGls] = ACTIONS(4451), - [anon_sym_BSLASHGLS] = ACTIONS(4451), - [anon_sym_BSLASHglspl] = ACTIONS(4451), - [anon_sym_BSLASHGlspl] = ACTIONS(4451), - [anon_sym_BSLASHGLSpl] = ACTIONS(4451), - [anon_sym_BSLASHglsdisp] = ACTIONS(4451), - [anon_sym_BSLASHglslink] = ACTIONS(4451), - [anon_sym_BSLASHglstext] = ACTIONS(4451), - [anon_sym_BSLASHGlstext] = ACTIONS(4451), - [anon_sym_BSLASHGLStext] = ACTIONS(4451), - [anon_sym_BSLASHglsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), - [anon_sym_BSLASHglsplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSplural] = ACTIONS(4451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), - [anon_sym_BSLASHglsname] = ACTIONS(4451), - [anon_sym_BSLASHGlsname] = ACTIONS(4451), - [anon_sym_BSLASHGLSname] = ACTIONS(4451), - [anon_sym_BSLASHglssymbol] = ACTIONS(4451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), - [anon_sym_BSLASHglsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), - [anon_sym_BSLASHglsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), - [anon_sym_BSLASHglsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), - [anon_sym_BSLASHglsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), - [anon_sym_BSLASHglsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), - [anon_sym_BSLASHnewacronym] = ACTIONS(4451), - [anon_sym_BSLASHacrshort] = ACTIONS(4451), - [anon_sym_BSLASHAcrshort] = ACTIONS(4451), - [anon_sym_BSLASHACRshort] = ACTIONS(4451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), - [anon_sym_BSLASHacrlong] = ACTIONS(4451), - [anon_sym_BSLASHAcrlong] = ACTIONS(4451), - [anon_sym_BSLASHACRlong] = ACTIONS(4451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), - [anon_sym_BSLASHacrfull] = ACTIONS(4451), - [anon_sym_BSLASHAcrfull] = ACTIONS(4451), - [anon_sym_BSLASHACRfull] = ACTIONS(4451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), - [anon_sym_BSLASHacs] = ACTIONS(4451), - [anon_sym_BSLASHAcs] = ACTIONS(4451), - [anon_sym_BSLASHacsp] = ACTIONS(4451), - [anon_sym_BSLASHAcsp] = ACTIONS(4451), - [anon_sym_BSLASHacl] = ACTIONS(4451), - [anon_sym_BSLASHAcl] = ACTIONS(4451), - [anon_sym_BSLASHaclp] = ACTIONS(4451), - [anon_sym_BSLASHAclp] = ACTIONS(4451), - [anon_sym_BSLASHacf] = ACTIONS(4451), - [anon_sym_BSLASHAcf] = ACTIONS(4451), - [anon_sym_BSLASHacfp] = ACTIONS(4451), - [anon_sym_BSLASHAcfp] = ACTIONS(4451), - [anon_sym_BSLASHac] = ACTIONS(4451), - [anon_sym_BSLASHAc] = ACTIONS(4451), - [anon_sym_BSLASHacp] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), - [anon_sym_BSLASHcolor] = ACTIONS(4451), - [anon_sym_BSLASHcolorbox] = ACTIONS(4451), - [anon_sym_BSLASHtextcolor] = ACTIONS(4451), - [anon_sym_BSLASHpagecolor] = ACTIONS(4451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [sym_command_name] = ACTIONS(4530), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_RBRACE] = ACTIONS(4528), + [sym_word] = ACTIONS(4530), + [sym_placeholder] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_SLASH] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym__] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_BSLASHusepackage] = ACTIONS(4530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4530), + [anon_sym_BSLASHinclude] = ACTIONS(4530), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4530), + [anon_sym_BSLASHinput] = ACTIONS(4530), + [anon_sym_BSLASHsubfile] = ACTIONS(4530), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4530), + [anon_sym_BSLASHbibliography] = ACTIONS(4530), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4530), + [anon_sym_BSLASHincludesvg] = ACTIONS(4530), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4530), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4530), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4530), + [anon_sym_BSLASHimport] = ACTIONS(4530), + [anon_sym_BSLASHsubimport] = ACTIONS(4530), + [anon_sym_BSLASHinputfrom] = ACTIONS(4530), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4530), + [anon_sym_BSLASHincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4530), + [anon_sym_BSLASHcaption] = ACTIONS(4530), + [anon_sym_BSLASHcite] = ACTIONS(4530), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCite] = ACTIONS(4530), + [anon_sym_BSLASHnocite] = ACTIONS(4530), + [anon_sym_BSLASHcitet] = ACTIONS(4530), + [anon_sym_BSLASHcitep] = ACTIONS(4530), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteauthor] = ACTIONS(4530), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4530), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitetitle] = ACTIONS(4530), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteyear] = ACTIONS(4530), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4528), + [anon_sym_BSLASHcitedate] = ACTIONS(4530), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4528), + [anon_sym_BSLASHciteurl] = ACTIONS(4530), + [anon_sym_BSLASHfullcite] = ACTIONS(4530), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4530), + [anon_sym_BSLASHcitealt] = ACTIONS(4530), + [anon_sym_BSLASHcitealp] = ACTIONS(4530), + [anon_sym_BSLASHcitetext] = ACTIONS(4530), + [anon_sym_BSLASHparencite] = ACTIONS(4530), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHParencite] = ACTIONS(4530), + [anon_sym_BSLASHfootcite] = ACTIONS(4530), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4530), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4530), + [anon_sym_BSLASHtextcite] = ACTIONS(4530), + [anon_sym_BSLASHTextcite] = ACTIONS(4530), + [anon_sym_BSLASHsmartcite] = ACTIONS(4530), + [anon_sym_BSLASHSmartcite] = ACTIONS(4530), + [anon_sym_BSLASHsupercite] = ACTIONS(4530), + [anon_sym_BSLASHautocite] = ACTIONS(4530), + [anon_sym_BSLASHAutocite] = ACTIONS(4530), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4528), + [anon_sym_BSLASHvolcite] = ACTIONS(4530), + [anon_sym_BSLASHVolcite] = ACTIONS(4530), + [anon_sym_BSLASHpvolcite] = ACTIONS(4530), + [anon_sym_BSLASHPvolcite] = ACTIONS(4530), + [anon_sym_BSLASHfvolcite] = ACTIONS(4530), + [anon_sym_BSLASHftvolcite] = ACTIONS(4530), + [anon_sym_BSLASHsvolcite] = ACTIONS(4530), + [anon_sym_BSLASHSvolcite] = ACTIONS(4530), + [anon_sym_BSLASHtvolcite] = ACTIONS(4530), + [anon_sym_BSLASHTvolcite] = ACTIONS(4530), + [anon_sym_BSLASHavolcite] = ACTIONS(4530), + [anon_sym_BSLASHAvolcite] = ACTIONS(4530), + [anon_sym_BSLASHnotecite] = ACTIONS(4530), + [anon_sym_BSLASHNotecite] = ACTIONS(4530), + [anon_sym_BSLASHpnotecite] = ACTIONS(4530), + [anon_sym_BSLASHPnotecite] = ACTIONS(4530), + [anon_sym_BSLASHfnotecite] = ACTIONS(4530), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4530), + [anon_sym_BSLASHeqref] = ACTIONS(4530), + [anon_sym_BSLASHvref] = ACTIONS(4530), + [anon_sym_BSLASHVref] = ACTIONS(4530), + [anon_sym_BSLASHautoref] = ACTIONS(4530), + [anon_sym_BSLASHpageref] = ACTIONS(4530), + [anon_sym_BSLASHcref] = ACTIONS(4530), + [anon_sym_BSLASHCref] = ACTIONS(4530), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnameCref] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4530), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4530), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4530), + [anon_sym_BSLASHlabelcref] = ACTIONS(4530), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange] = ACTIONS(4530), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHCrefrange] = ACTIONS(4530), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4528), + [anon_sym_BSLASHnewlabel] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand] = ACTIONS(4530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4528), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdef] = ACTIONS(4530), + [anon_sym_BSLASHlet] = ACTIONS(4530), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4530), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4530), + [anon_sym_BSLASHgls] = ACTIONS(4530), + [anon_sym_BSLASHGls] = ACTIONS(4530), + [anon_sym_BSLASHGLS] = ACTIONS(4530), + [anon_sym_BSLASHglspl] = ACTIONS(4530), + [anon_sym_BSLASHGlspl] = ACTIONS(4530), + [anon_sym_BSLASHGLSpl] = ACTIONS(4530), + [anon_sym_BSLASHglsdisp] = ACTIONS(4530), + [anon_sym_BSLASHglslink] = ACTIONS(4530), + [anon_sym_BSLASHglstext] = ACTIONS(4530), + [anon_sym_BSLASHGlstext] = ACTIONS(4530), + [anon_sym_BSLASHGLStext] = ACTIONS(4530), + [anon_sym_BSLASHglsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4530), + [anon_sym_BSLASHglsplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSplural] = ACTIONS(4530), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4530), + [anon_sym_BSLASHglsname] = ACTIONS(4530), + [anon_sym_BSLASHGlsname] = ACTIONS(4530), + [anon_sym_BSLASHGLSname] = ACTIONS(4530), + [anon_sym_BSLASHglssymbol] = ACTIONS(4530), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4530), + [anon_sym_BSLASHglsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4530), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4530), + [anon_sym_BSLASHglsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4530), + [anon_sym_BSLASHglsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4530), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4530), + [anon_sym_BSLASHglsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4530), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4530), + [anon_sym_BSLASHglsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4530), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4530), + [anon_sym_BSLASHnewacronym] = ACTIONS(4530), + [anon_sym_BSLASHacrshort] = ACTIONS(4530), + [anon_sym_BSLASHAcrshort] = ACTIONS(4530), + [anon_sym_BSLASHACRshort] = ACTIONS(4530), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4530), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4530), + [anon_sym_BSLASHacrlong] = ACTIONS(4530), + [anon_sym_BSLASHAcrlong] = ACTIONS(4530), + [anon_sym_BSLASHACRlong] = ACTIONS(4530), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4530), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4530), + [anon_sym_BSLASHacrfull] = ACTIONS(4530), + [anon_sym_BSLASHAcrfull] = ACTIONS(4530), + [anon_sym_BSLASHACRfull] = ACTIONS(4530), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4530), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4530), + [anon_sym_BSLASHacs] = ACTIONS(4530), + [anon_sym_BSLASHAcs] = ACTIONS(4530), + [anon_sym_BSLASHacsp] = ACTIONS(4530), + [anon_sym_BSLASHAcsp] = ACTIONS(4530), + [anon_sym_BSLASHacl] = ACTIONS(4530), + [anon_sym_BSLASHAcl] = ACTIONS(4530), + [anon_sym_BSLASHaclp] = ACTIONS(4530), + [anon_sym_BSLASHAclp] = ACTIONS(4530), + [anon_sym_BSLASHacf] = ACTIONS(4530), + [anon_sym_BSLASHAcf] = ACTIONS(4530), + [anon_sym_BSLASHacfp] = ACTIONS(4530), + [anon_sym_BSLASHAcfp] = ACTIONS(4530), + [anon_sym_BSLASHac] = ACTIONS(4530), + [anon_sym_BSLASHAc] = ACTIONS(4530), + [anon_sym_BSLASHacp] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4530), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4530), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4530), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4530), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4530), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4530), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4530), + [anon_sym_BSLASHcolor] = ACTIONS(4530), + [anon_sym_BSLASHcolorbox] = ACTIONS(4530), + [anon_sym_BSLASHtextcolor] = ACTIONS(4530), + [anon_sym_BSLASHpagecolor] = ACTIONS(4530), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4530), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4530), }, [1497] = { [sym_curly_group] = STATE(1506), [sym_brack_group_text] = STATE(2060), - [sym_command_name] = ACTIONS(4817), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4817), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(4815), - [sym_word] = ACTIONS(4817), - [sym_placeholder] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym__] = ACTIONS(4817), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_COLON] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_BSLASHusepackage] = ACTIONS(4817), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), - [anon_sym_BSLASHinclude] = ACTIONS(4817), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), - [anon_sym_BSLASHinput] = ACTIONS(4817), - [anon_sym_BSLASHsubfile] = ACTIONS(4817), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), - [anon_sym_BSLASHbibliography] = ACTIONS(4817), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), - [anon_sym_BSLASHincludesvg] = ACTIONS(4817), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), - [anon_sym_BSLASHimport] = ACTIONS(4817), - [anon_sym_BSLASHsubimport] = ACTIONS(4817), - [anon_sym_BSLASHinputfrom] = ACTIONS(4817), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), - [anon_sym_BSLASHincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), - [anon_sym_BSLASHcaption] = ACTIONS(4817), - [anon_sym_BSLASHcite] = ACTIONS(4817), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCite] = ACTIONS(4817), - [anon_sym_BSLASHnocite] = ACTIONS(4817), - [anon_sym_BSLASHcitet] = ACTIONS(4817), - [anon_sym_BSLASHcitep] = ACTIONS(4817), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteauthor] = ACTIONS(4817), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitetitle] = ACTIONS(4817), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteyear] = ACTIONS(4817), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), - [anon_sym_BSLASHcitedate] = ACTIONS(4817), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), - [anon_sym_BSLASHciteurl] = ACTIONS(4817), - [anon_sym_BSLASHfullcite] = ACTIONS(4817), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), - [anon_sym_BSLASHcitealt] = ACTIONS(4817), - [anon_sym_BSLASHcitealp] = ACTIONS(4817), - [anon_sym_BSLASHcitetext] = ACTIONS(4817), - [anon_sym_BSLASHparencite] = ACTIONS(4817), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHParencite] = ACTIONS(4817), - [anon_sym_BSLASHfootcite] = ACTIONS(4817), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), - [anon_sym_BSLASHtextcite] = ACTIONS(4817), - [anon_sym_BSLASHTextcite] = ACTIONS(4817), - [anon_sym_BSLASHsmartcite] = ACTIONS(4817), - [anon_sym_BSLASHSmartcite] = ACTIONS(4817), - [anon_sym_BSLASHsupercite] = ACTIONS(4817), - [anon_sym_BSLASHautocite] = ACTIONS(4817), - [anon_sym_BSLASHAutocite] = ACTIONS(4817), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), - [anon_sym_BSLASHvolcite] = ACTIONS(4817), - [anon_sym_BSLASHVolcite] = ACTIONS(4817), - [anon_sym_BSLASHpvolcite] = ACTIONS(4817), - [anon_sym_BSLASHPvolcite] = ACTIONS(4817), - [anon_sym_BSLASHfvolcite] = ACTIONS(4817), - [anon_sym_BSLASHftvolcite] = ACTIONS(4817), - [anon_sym_BSLASHsvolcite] = ACTIONS(4817), - [anon_sym_BSLASHSvolcite] = ACTIONS(4817), - [anon_sym_BSLASHtvolcite] = ACTIONS(4817), - [anon_sym_BSLASHTvolcite] = ACTIONS(4817), - [anon_sym_BSLASHavolcite] = ACTIONS(4817), - [anon_sym_BSLASHAvolcite] = ACTIONS(4817), - [anon_sym_BSLASHnotecite] = ACTIONS(4817), - [anon_sym_BSLASHNotecite] = ACTIONS(4817), - [anon_sym_BSLASHpnotecite] = ACTIONS(4817), - [anon_sym_BSLASHPnotecite] = ACTIONS(4817), - [anon_sym_BSLASHfnotecite] = ACTIONS(4817), - [anon_sym_BSLASHlabel] = ACTIONS(4817), - [anon_sym_BSLASHref] = ACTIONS(4817), - [anon_sym_BSLASHeqref] = ACTIONS(4817), - [anon_sym_BSLASHvref] = ACTIONS(4817), - [anon_sym_BSLASHVref] = ACTIONS(4817), - [anon_sym_BSLASHautoref] = ACTIONS(4817), - [anon_sym_BSLASHpageref] = ACTIONS(4817), - [anon_sym_BSLASHcref] = ACTIONS(4817), - [anon_sym_BSLASHCref] = ACTIONS(4817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnameCref] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), - [anon_sym_BSLASHlabelcref] = ACTIONS(4817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange] = ACTIONS(4817), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHCrefrange] = ACTIONS(4817), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), - [anon_sym_BSLASHnewlabel] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand] = ACTIONS(4817), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), - [anon_sym_BSLASHdef] = ACTIONS(4817), - [anon_sym_BSLASHlet] = ACTIONS(4817), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), - [anon_sym_BSLASHgls] = ACTIONS(4817), - [anon_sym_BSLASHGls] = ACTIONS(4817), - [anon_sym_BSLASHGLS] = ACTIONS(4817), - [anon_sym_BSLASHglspl] = ACTIONS(4817), - [anon_sym_BSLASHGlspl] = ACTIONS(4817), - [anon_sym_BSLASHGLSpl] = ACTIONS(4817), - [anon_sym_BSLASHglsdisp] = ACTIONS(4817), - [anon_sym_BSLASHglslink] = ACTIONS(4817), - [anon_sym_BSLASHglstext] = ACTIONS(4817), - [anon_sym_BSLASHGlstext] = ACTIONS(4817), - [anon_sym_BSLASHGLStext] = ACTIONS(4817), - [anon_sym_BSLASHglsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), - [anon_sym_BSLASHglsplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSplural] = ACTIONS(4817), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), - [anon_sym_BSLASHglsname] = ACTIONS(4817), - [anon_sym_BSLASHGlsname] = ACTIONS(4817), - [anon_sym_BSLASHGLSname] = ACTIONS(4817), - [anon_sym_BSLASHglssymbol] = ACTIONS(4817), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), - [anon_sym_BSLASHglsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), - [anon_sym_BSLASHglsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), - [anon_sym_BSLASHglsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), - [anon_sym_BSLASHglsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), - [anon_sym_BSLASHglsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), - [anon_sym_BSLASHnewacronym] = ACTIONS(4817), - [anon_sym_BSLASHacrshort] = ACTIONS(4817), - [anon_sym_BSLASHAcrshort] = ACTIONS(4817), - [anon_sym_BSLASHACRshort] = ACTIONS(4817), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), - [anon_sym_BSLASHacrlong] = ACTIONS(4817), - [anon_sym_BSLASHAcrlong] = ACTIONS(4817), - [anon_sym_BSLASHACRlong] = ACTIONS(4817), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), - [anon_sym_BSLASHacrfull] = ACTIONS(4817), - [anon_sym_BSLASHAcrfull] = ACTIONS(4817), - [anon_sym_BSLASHACRfull] = ACTIONS(4817), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), - [anon_sym_BSLASHacs] = ACTIONS(4817), - [anon_sym_BSLASHAcs] = ACTIONS(4817), - [anon_sym_BSLASHacsp] = ACTIONS(4817), - [anon_sym_BSLASHAcsp] = ACTIONS(4817), - [anon_sym_BSLASHacl] = ACTIONS(4817), - [anon_sym_BSLASHAcl] = ACTIONS(4817), - [anon_sym_BSLASHaclp] = ACTIONS(4817), - [anon_sym_BSLASHAclp] = ACTIONS(4817), - [anon_sym_BSLASHacf] = ACTIONS(4817), - [anon_sym_BSLASHAcf] = ACTIONS(4817), - [anon_sym_BSLASHacfp] = ACTIONS(4817), - [anon_sym_BSLASHAcfp] = ACTIONS(4817), - [anon_sym_BSLASHac] = ACTIONS(4817), - [anon_sym_BSLASHAc] = ACTIONS(4817), - [anon_sym_BSLASHacp] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), - [anon_sym_BSLASHcolor] = ACTIONS(4817), - [anon_sym_BSLASHcolorbox] = ACTIONS(4817), - [anon_sym_BSLASHtextcolor] = ACTIONS(4817), - [anon_sym_BSLASHpagecolor] = ACTIONS(4817), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [sym_command_name] = ACTIONS(4896), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_RBRACE] = ACTIONS(4894), + [sym_word] = ACTIONS(4896), + [sym_placeholder] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym__] = ACTIONS(4896), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [anon_sym_BSLASHusepackage] = ACTIONS(4896), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4896), + [anon_sym_BSLASHinclude] = ACTIONS(4896), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4896), + [anon_sym_BSLASHinput] = ACTIONS(4896), + [anon_sym_BSLASHsubfile] = ACTIONS(4896), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4896), + [anon_sym_BSLASHbibliography] = ACTIONS(4896), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4896), + [anon_sym_BSLASHincludesvg] = ACTIONS(4896), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4896), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4896), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4896), + [anon_sym_BSLASHimport] = ACTIONS(4896), + [anon_sym_BSLASHsubimport] = ACTIONS(4896), + [anon_sym_BSLASHinputfrom] = ACTIONS(4896), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4896), + [anon_sym_BSLASHincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4896), + [anon_sym_BSLASHcaption] = ACTIONS(4896), + [anon_sym_BSLASHcite] = ACTIONS(4896), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCite] = ACTIONS(4896), + [anon_sym_BSLASHnocite] = ACTIONS(4896), + [anon_sym_BSLASHcitet] = ACTIONS(4896), + [anon_sym_BSLASHcitep] = ACTIONS(4896), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteauthor] = ACTIONS(4896), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4896), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitetitle] = ACTIONS(4896), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteyear] = ACTIONS(4896), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4894), + [anon_sym_BSLASHcitedate] = ACTIONS(4896), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4894), + [anon_sym_BSLASHciteurl] = ACTIONS(4896), + [anon_sym_BSLASHfullcite] = ACTIONS(4896), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4896), + [anon_sym_BSLASHcitealt] = ACTIONS(4896), + [anon_sym_BSLASHcitealp] = ACTIONS(4896), + [anon_sym_BSLASHcitetext] = ACTIONS(4896), + [anon_sym_BSLASHparencite] = ACTIONS(4896), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHParencite] = ACTIONS(4896), + [anon_sym_BSLASHfootcite] = ACTIONS(4896), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4896), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4896), + [anon_sym_BSLASHtextcite] = ACTIONS(4896), + [anon_sym_BSLASHTextcite] = ACTIONS(4896), + [anon_sym_BSLASHsmartcite] = ACTIONS(4896), + [anon_sym_BSLASHSmartcite] = ACTIONS(4896), + [anon_sym_BSLASHsupercite] = ACTIONS(4896), + [anon_sym_BSLASHautocite] = ACTIONS(4896), + [anon_sym_BSLASHAutocite] = ACTIONS(4896), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4894), + [anon_sym_BSLASHvolcite] = ACTIONS(4896), + [anon_sym_BSLASHVolcite] = ACTIONS(4896), + [anon_sym_BSLASHpvolcite] = ACTIONS(4896), + [anon_sym_BSLASHPvolcite] = ACTIONS(4896), + [anon_sym_BSLASHfvolcite] = ACTIONS(4896), + [anon_sym_BSLASHftvolcite] = ACTIONS(4896), + [anon_sym_BSLASHsvolcite] = ACTIONS(4896), + [anon_sym_BSLASHSvolcite] = ACTIONS(4896), + [anon_sym_BSLASHtvolcite] = ACTIONS(4896), + [anon_sym_BSLASHTvolcite] = ACTIONS(4896), + [anon_sym_BSLASHavolcite] = ACTIONS(4896), + [anon_sym_BSLASHAvolcite] = ACTIONS(4896), + [anon_sym_BSLASHnotecite] = ACTIONS(4896), + [anon_sym_BSLASHNotecite] = ACTIONS(4896), + [anon_sym_BSLASHpnotecite] = ACTIONS(4896), + [anon_sym_BSLASHPnotecite] = ACTIONS(4896), + [anon_sym_BSLASHfnotecite] = ACTIONS(4896), + [anon_sym_BSLASHlabel] = ACTIONS(4896), + [anon_sym_BSLASHref] = ACTIONS(4896), + [anon_sym_BSLASHeqref] = ACTIONS(4896), + [anon_sym_BSLASHvref] = ACTIONS(4896), + [anon_sym_BSLASHVref] = ACTIONS(4896), + [anon_sym_BSLASHautoref] = ACTIONS(4896), + [anon_sym_BSLASHpageref] = ACTIONS(4896), + [anon_sym_BSLASHcref] = ACTIONS(4896), + [anon_sym_BSLASHCref] = ACTIONS(4896), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnameCref] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4896), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4896), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4896), + [anon_sym_BSLASHlabelcref] = ACTIONS(4896), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange] = ACTIONS(4896), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHCrefrange] = ACTIONS(4896), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4894), + [anon_sym_BSLASHnewlabel] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand] = ACTIONS(4896), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4896), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4896), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4896), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdef] = ACTIONS(4896), + [anon_sym_BSLASHlet] = ACTIONS(4896), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4896), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4896), + [anon_sym_BSLASHgls] = ACTIONS(4896), + [anon_sym_BSLASHGls] = ACTIONS(4896), + [anon_sym_BSLASHGLS] = ACTIONS(4896), + [anon_sym_BSLASHglspl] = ACTIONS(4896), + [anon_sym_BSLASHGlspl] = ACTIONS(4896), + [anon_sym_BSLASHGLSpl] = ACTIONS(4896), + [anon_sym_BSLASHglsdisp] = ACTIONS(4896), + [anon_sym_BSLASHglslink] = ACTIONS(4896), + [anon_sym_BSLASHglstext] = ACTIONS(4896), + [anon_sym_BSLASHGlstext] = ACTIONS(4896), + [anon_sym_BSLASHGLStext] = ACTIONS(4896), + [anon_sym_BSLASHglsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4896), + [anon_sym_BSLASHglsplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSplural] = ACTIONS(4896), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4896), + [anon_sym_BSLASHglsname] = ACTIONS(4896), + [anon_sym_BSLASHGlsname] = ACTIONS(4896), + [anon_sym_BSLASHGLSname] = ACTIONS(4896), + [anon_sym_BSLASHglssymbol] = ACTIONS(4896), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4896), + [anon_sym_BSLASHglsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4896), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4896), + [anon_sym_BSLASHglsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4896), + [anon_sym_BSLASHglsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4896), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4896), + [anon_sym_BSLASHglsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4896), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4896), + [anon_sym_BSLASHglsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4896), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4896), + [anon_sym_BSLASHnewacronym] = ACTIONS(4896), + [anon_sym_BSLASHacrshort] = ACTIONS(4896), + [anon_sym_BSLASHAcrshort] = ACTIONS(4896), + [anon_sym_BSLASHACRshort] = ACTIONS(4896), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4896), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4896), + [anon_sym_BSLASHacrlong] = ACTIONS(4896), + [anon_sym_BSLASHAcrlong] = ACTIONS(4896), + [anon_sym_BSLASHACRlong] = ACTIONS(4896), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4896), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4896), + [anon_sym_BSLASHacrfull] = ACTIONS(4896), + [anon_sym_BSLASHAcrfull] = ACTIONS(4896), + [anon_sym_BSLASHACRfull] = ACTIONS(4896), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4896), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4896), + [anon_sym_BSLASHacs] = ACTIONS(4896), + [anon_sym_BSLASHAcs] = ACTIONS(4896), + [anon_sym_BSLASHacsp] = ACTIONS(4896), + [anon_sym_BSLASHAcsp] = ACTIONS(4896), + [anon_sym_BSLASHacl] = ACTIONS(4896), + [anon_sym_BSLASHAcl] = ACTIONS(4896), + [anon_sym_BSLASHaclp] = ACTIONS(4896), + [anon_sym_BSLASHAclp] = ACTIONS(4896), + [anon_sym_BSLASHacf] = ACTIONS(4896), + [anon_sym_BSLASHAcf] = ACTIONS(4896), + [anon_sym_BSLASHacfp] = ACTIONS(4896), + [anon_sym_BSLASHAcfp] = ACTIONS(4896), + [anon_sym_BSLASHac] = ACTIONS(4896), + [anon_sym_BSLASHAc] = ACTIONS(4896), + [anon_sym_BSLASHacp] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4896), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4896), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4896), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4896), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4896), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4894), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4896), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4896), + [anon_sym_BSLASHcolor] = ACTIONS(4896), + [anon_sym_BSLASHcolorbox] = ACTIONS(4896), + [anon_sym_BSLASHtextcolor] = ACTIONS(4896), + [anon_sym_BSLASHpagecolor] = ACTIONS(4896), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4896), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4896), }, [1498] = { [sym_curly_group] = STATE(1505), [sym_brack_group_text] = STATE(2074), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(5513), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4691), - [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), + [sym_command_name] = ACTIONS(4770), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_RBRACE] = ACTIONS(4768), + [sym_word] = ACTIONS(4770), + [sym_placeholder] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_CARET] = ACTIONS(4770), + [anon_sym__] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4770), + [anon_sym_BSLASHusepackage] = ACTIONS(4770), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4770), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4770), + [anon_sym_BSLASHinclude] = ACTIONS(4770), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4770), + [anon_sym_BSLASHinput] = ACTIONS(4770), + [anon_sym_BSLASHsubfile] = ACTIONS(4770), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4770), + [anon_sym_BSLASHbibliography] = ACTIONS(4770), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4770), + [anon_sym_BSLASHincludesvg] = ACTIONS(4770), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4770), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4770), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4770), + [anon_sym_BSLASHimport] = ACTIONS(4770), + [anon_sym_BSLASHsubimport] = ACTIONS(4770), + [anon_sym_BSLASHinputfrom] = ACTIONS(4770), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4770), + [anon_sym_BSLASHincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4770), + [anon_sym_BSLASHcaption] = ACTIONS(4770), + [anon_sym_BSLASHcite] = ACTIONS(4770), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCite] = ACTIONS(4770), + [anon_sym_BSLASHnocite] = ACTIONS(4770), + [anon_sym_BSLASHcitet] = ACTIONS(4770), + [anon_sym_BSLASHcitep] = ACTIONS(4770), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteauthor] = ACTIONS(4770), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4770), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitetitle] = ACTIONS(4770), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteyear] = ACTIONS(4770), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4768), + [anon_sym_BSLASHcitedate] = ACTIONS(4770), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4768), + [anon_sym_BSLASHciteurl] = ACTIONS(4770), + [anon_sym_BSLASHfullcite] = ACTIONS(4770), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4770), + [anon_sym_BSLASHcitealt] = ACTIONS(4770), + [anon_sym_BSLASHcitealp] = ACTIONS(4770), + [anon_sym_BSLASHcitetext] = ACTIONS(4770), + [anon_sym_BSLASHparencite] = ACTIONS(4770), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHParencite] = ACTIONS(4770), + [anon_sym_BSLASHfootcite] = ACTIONS(4770), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4770), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4770), + [anon_sym_BSLASHtextcite] = ACTIONS(4770), + [anon_sym_BSLASHTextcite] = ACTIONS(4770), + [anon_sym_BSLASHsmartcite] = ACTIONS(4770), + [anon_sym_BSLASHSmartcite] = ACTIONS(4770), + [anon_sym_BSLASHsupercite] = ACTIONS(4770), + [anon_sym_BSLASHautocite] = ACTIONS(4770), + [anon_sym_BSLASHAutocite] = ACTIONS(4770), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4768), + [anon_sym_BSLASHvolcite] = ACTIONS(4770), + [anon_sym_BSLASHVolcite] = ACTIONS(4770), + [anon_sym_BSLASHpvolcite] = ACTIONS(4770), + [anon_sym_BSLASHPvolcite] = ACTIONS(4770), + [anon_sym_BSLASHfvolcite] = ACTIONS(4770), + [anon_sym_BSLASHftvolcite] = ACTIONS(4770), + [anon_sym_BSLASHsvolcite] = ACTIONS(4770), + [anon_sym_BSLASHSvolcite] = ACTIONS(4770), + [anon_sym_BSLASHtvolcite] = ACTIONS(4770), + [anon_sym_BSLASHTvolcite] = ACTIONS(4770), + [anon_sym_BSLASHavolcite] = ACTIONS(4770), + [anon_sym_BSLASHAvolcite] = ACTIONS(4770), + [anon_sym_BSLASHnotecite] = ACTIONS(4770), + [anon_sym_BSLASHNotecite] = ACTIONS(4770), + [anon_sym_BSLASHpnotecite] = ACTIONS(4770), + [anon_sym_BSLASHPnotecite] = ACTIONS(4770), + [anon_sym_BSLASHfnotecite] = ACTIONS(4770), + [anon_sym_BSLASHlabel] = ACTIONS(4770), + [anon_sym_BSLASHref] = ACTIONS(4770), + [anon_sym_BSLASHeqref] = ACTIONS(4770), + [anon_sym_BSLASHvref] = ACTIONS(4770), + [anon_sym_BSLASHVref] = ACTIONS(4770), + [anon_sym_BSLASHautoref] = ACTIONS(4770), + [anon_sym_BSLASHpageref] = ACTIONS(4770), + [anon_sym_BSLASHcref] = ACTIONS(4770), + [anon_sym_BSLASHCref] = ACTIONS(4770), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnameCref] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4770), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4770), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4770), + [anon_sym_BSLASHlabelcref] = ACTIONS(4770), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange] = ACTIONS(4770), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHCrefrange] = ACTIONS(4770), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4768), + [anon_sym_BSLASHnewlabel] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand] = ACTIONS(4770), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4770), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4770), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4768), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4770), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdef] = ACTIONS(4770), + [anon_sym_BSLASHlet] = ACTIONS(4770), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4770), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4770), + [anon_sym_BSLASHgls] = ACTIONS(4770), + [anon_sym_BSLASHGls] = ACTIONS(4770), + [anon_sym_BSLASHGLS] = ACTIONS(4770), + [anon_sym_BSLASHglspl] = ACTIONS(4770), + [anon_sym_BSLASHGlspl] = ACTIONS(4770), + [anon_sym_BSLASHGLSpl] = ACTIONS(4770), + [anon_sym_BSLASHglsdisp] = ACTIONS(4770), + [anon_sym_BSLASHglslink] = ACTIONS(4770), + [anon_sym_BSLASHglstext] = ACTIONS(4770), + [anon_sym_BSLASHGlstext] = ACTIONS(4770), + [anon_sym_BSLASHGLStext] = ACTIONS(4770), + [anon_sym_BSLASHglsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4770), + [anon_sym_BSLASHglsplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSplural] = ACTIONS(4770), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4770), + [anon_sym_BSLASHglsname] = ACTIONS(4770), + [anon_sym_BSLASHGlsname] = ACTIONS(4770), + [anon_sym_BSLASHGLSname] = ACTIONS(4770), + [anon_sym_BSLASHglssymbol] = ACTIONS(4770), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4770), + [anon_sym_BSLASHglsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4770), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4770), + [anon_sym_BSLASHglsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4770), + [anon_sym_BSLASHglsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4770), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4770), + [anon_sym_BSLASHglsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4770), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4770), + [anon_sym_BSLASHglsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4770), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4770), + [anon_sym_BSLASHnewacronym] = ACTIONS(4770), + [anon_sym_BSLASHacrshort] = ACTIONS(4770), + [anon_sym_BSLASHAcrshort] = ACTIONS(4770), + [anon_sym_BSLASHACRshort] = ACTIONS(4770), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4770), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4770), + [anon_sym_BSLASHacrlong] = ACTIONS(4770), + [anon_sym_BSLASHAcrlong] = ACTIONS(4770), + [anon_sym_BSLASHACRlong] = ACTIONS(4770), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4770), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4770), + [anon_sym_BSLASHacrfull] = ACTIONS(4770), + [anon_sym_BSLASHAcrfull] = ACTIONS(4770), + [anon_sym_BSLASHACRfull] = ACTIONS(4770), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4770), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4770), + [anon_sym_BSLASHacs] = ACTIONS(4770), + [anon_sym_BSLASHAcs] = ACTIONS(4770), + [anon_sym_BSLASHacsp] = ACTIONS(4770), + [anon_sym_BSLASHAcsp] = ACTIONS(4770), + [anon_sym_BSLASHacl] = ACTIONS(4770), + [anon_sym_BSLASHAcl] = ACTIONS(4770), + [anon_sym_BSLASHaclp] = ACTIONS(4770), + [anon_sym_BSLASHAclp] = ACTIONS(4770), + [anon_sym_BSLASHacf] = ACTIONS(4770), + [anon_sym_BSLASHAcf] = ACTIONS(4770), + [anon_sym_BSLASHacfp] = ACTIONS(4770), + [anon_sym_BSLASHAcfp] = ACTIONS(4770), + [anon_sym_BSLASHac] = ACTIONS(4770), + [anon_sym_BSLASHAc] = ACTIONS(4770), + [anon_sym_BSLASHacp] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4770), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4770), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4770), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4770), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4770), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4768), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4770), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4770), + [anon_sym_BSLASHcolor] = ACTIONS(4770), + [anon_sym_BSLASHcolorbox] = ACTIONS(4770), + [anon_sym_BSLASHtextcolor] = ACTIONS(4770), + [anon_sym_BSLASHpagecolor] = ACTIONS(4770), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4770), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4770), }, [1499] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [sym_command_name] = ACTIONS(5038), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [sym_word] = ACTIONS(5038), + [sym_placeholder] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym__] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5038), + [anon_sym_SQUOTE] = ACTIONS(5038), + [anon_sym_BSLASHusepackage] = ACTIONS(5038), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5038), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5038), + [anon_sym_BSLASHinclude] = ACTIONS(5038), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5038), + [anon_sym_BSLASHinput] = ACTIONS(5038), + [anon_sym_BSLASHsubfile] = ACTIONS(5038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5038), + [anon_sym_BSLASHbibliography] = ACTIONS(5038), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5038), + [anon_sym_BSLASHincludesvg] = ACTIONS(5038), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5038), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5038), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5038), + [anon_sym_BSLASHimport] = ACTIONS(5038), + [anon_sym_BSLASHsubimport] = ACTIONS(5038), + [anon_sym_BSLASHinputfrom] = ACTIONS(5038), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5038), + [anon_sym_BSLASHincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5038), + [anon_sym_BSLASHcaption] = ACTIONS(5038), + [anon_sym_BSLASHcite] = ACTIONS(5038), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCite] = ACTIONS(5038), + [anon_sym_BSLASHnocite] = ACTIONS(5038), + [anon_sym_BSLASHcitet] = ACTIONS(5038), + [anon_sym_BSLASHcitep] = ACTIONS(5038), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteauthor] = ACTIONS(5038), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5038), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitetitle] = ACTIONS(5038), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteyear] = ACTIONS(5038), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5036), + [anon_sym_BSLASHcitedate] = ACTIONS(5038), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5036), + [anon_sym_BSLASHciteurl] = ACTIONS(5038), + [anon_sym_BSLASHfullcite] = ACTIONS(5038), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5038), + [anon_sym_BSLASHcitealt] = ACTIONS(5038), + [anon_sym_BSLASHcitealp] = ACTIONS(5038), + [anon_sym_BSLASHcitetext] = ACTIONS(5038), + [anon_sym_BSLASHparencite] = ACTIONS(5038), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHParencite] = ACTIONS(5038), + [anon_sym_BSLASHfootcite] = ACTIONS(5038), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5038), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5038), + [anon_sym_BSLASHtextcite] = ACTIONS(5038), + [anon_sym_BSLASHTextcite] = ACTIONS(5038), + [anon_sym_BSLASHsmartcite] = ACTIONS(5038), + [anon_sym_BSLASHSmartcite] = ACTIONS(5038), + [anon_sym_BSLASHsupercite] = ACTIONS(5038), + [anon_sym_BSLASHautocite] = ACTIONS(5038), + [anon_sym_BSLASHAutocite] = ACTIONS(5038), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5036), + [anon_sym_BSLASHvolcite] = ACTIONS(5038), + [anon_sym_BSLASHVolcite] = ACTIONS(5038), + [anon_sym_BSLASHpvolcite] = ACTIONS(5038), + [anon_sym_BSLASHPvolcite] = ACTIONS(5038), + [anon_sym_BSLASHfvolcite] = ACTIONS(5038), + [anon_sym_BSLASHftvolcite] = ACTIONS(5038), + [anon_sym_BSLASHsvolcite] = ACTIONS(5038), + [anon_sym_BSLASHSvolcite] = ACTIONS(5038), + [anon_sym_BSLASHtvolcite] = ACTIONS(5038), + [anon_sym_BSLASHTvolcite] = ACTIONS(5038), + [anon_sym_BSLASHavolcite] = ACTIONS(5038), + [anon_sym_BSLASHAvolcite] = ACTIONS(5038), + [anon_sym_BSLASHnotecite] = ACTIONS(5038), + [anon_sym_BSLASHNotecite] = ACTIONS(5038), + [anon_sym_BSLASHpnotecite] = ACTIONS(5038), + [anon_sym_BSLASHPnotecite] = ACTIONS(5038), + [anon_sym_BSLASHfnotecite] = ACTIONS(5038), + [anon_sym_BSLASHlabel] = ACTIONS(5038), + [anon_sym_BSLASHref] = ACTIONS(5038), + [anon_sym_BSLASHeqref] = ACTIONS(5038), + [anon_sym_BSLASHvref] = ACTIONS(5038), + [anon_sym_BSLASHVref] = ACTIONS(5038), + [anon_sym_BSLASHautoref] = ACTIONS(5038), + [anon_sym_BSLASHpageref] = ACTIONS(5038), + [anon_sym_BSLASHcref] = ACTIONS(5038), + [anon_sym_BSLASHCref] = ACTIONS(5038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnameCref] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5038), + [anon_sym_BSLASHlabelcref] = ACTIONS(5038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange] = ACTIONS(5038), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHCrefrange] = ACTIONS(5038), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5036), + [anon_sym_BSLASHnewlabel] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand] = ACTIONS(5038), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5038), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5038), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5036), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5038), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdef] = ACTIONS(5038), + [anon_sym_BSLASHlet] = ACTIONS(5038), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5038), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5038), + [anon_sym_BSLASHgls] = ACTIONS(5038), + [anon_sym_BSLASHGls] = ACTIONS(5038), + [anon_sym_BSLASHGLS] = ACTIONS(5038), + [anon_sym_BSLASHglspl] = ACTIONS(5038), + [anon_sym_BSLASHGlspl] = ACTIONS(5038), + [anon_sym_BSLASHGLSpl] = ACTIONS(5038), + [anon_sym_BSLASHglsdisp] = ACTIONS(5038), + [anon_sym_BSLASHglslink] = ACTIONS(5038), + [anon_sym_BSLASHglstext] = ACTIONS(5038), + [anon_sym_BSLASHGlstext] = ACTIONS(5038), + [anon_sym_BSLASHGLStext] = ACTIONS(5038), + [anon_sym_BSLASHglsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5038), + [anon_sym_BSLASHglsplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSplural] = ACTIONS(5038), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5038), + [anon_sym_BSLASHglsname] = ACTIONS(5038), + [anon_sym_BSLASHGlsname] = ACTIONS(5038), + [anon_sym_BSLASHGLSname] = ACTIONS(5038), + [anon_sym_BSLASHglssymbol] = ACTIONS(5038), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5038), + [anon_sym_BSLASHglsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5038), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5038), + [anon_sym_BSLASHglsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5038), + [anon_sym_BSLASHglsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5038), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5038), + [anon_sym_BSLASHglsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5038), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5038), + [anon_sym_BSLASHglsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5038), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5038), + [anon_sym_BSLASHnewacronym] = ACTIONS(5038), + [anon_sym_BSLASHacrshort] = ACTIONS(5038), + [anon_sym_BSLASHAcrshort] = ACTIONS(5038), + [anon_sym_BSLASHACRshort] = ACTIONS(5038), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5038), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5038), + [anon_sym_BSLASHacrlong] = ACTIONS(5038), + [anon_sym_BSLASHAcrlong] = ACTIONS(5038), + [anon_sym_BSLASHACRlong] = ACTIONS(5038), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5038), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5038), + [anon_sym_BSLASHacrfull] = ACTIONS(5038), + [anon_sym_BSLASHAcrfull] = ACTIONS(5038), + [anon_sym_BSLASHACRfull] = ACTIONS(5038), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5038), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5038), + [anon_sym_BSLASHacs] = ACTIONS(5038), + [anon_sym_BSLASHAcs] = ACTIONS(5038), + [anon_sym_BSLASHacsp] = ACTIONS(5038), + [anon_sym_BSLASHAcsp] = ACTIONS(5038), + [anon_sym_BSLASHacl] = ACTIONS(5038), + [anon_sym_BSLASHAcl] = ACTIONS(5038), + [anon_sym_BSLASHaclp] = ACTIONS(5038), + [anon_sym_BSLASHAclp] = ACTIONS(5038), + [anon_sym_BSLASHacf] = ACTIONS(5038), + [anon_sym_BSLASHAcf] = ACTIONS(5038), + [anon_sym_BSLASHacfp] = ACTIONS(5038), + [anon_sym_BSLASHAcfp] = ACTIONS(5038), + [anon_sym_BSLASHac] = ACTIONS(5038), + [anon_sym_BSLASHAc] = ACTIONS(5038), + [anon_sym_BSLASHacp] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5038), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5038), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5038), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5038), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5038), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5036), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5038), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5038), + [anon_sym_BSLASHcolor] = ACTIONS(5038), + [anon_sym_BSLASHcolorbox] = ACTIONS(5038), + [anon_sym_BSLASHtextcolor] = ACTIONS(5038), + [anon_sym_BSLASHpagecolor] = ACTIONS(5038), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5038), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5038), }, [1500] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [sym_command_name] = ACTIONS(5128), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5126), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym_word] = ACTIONS(5128), + [sym_placeholder] = ACTIONS(5126), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym__] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_SQUOTE] = ACTIONS(5128), + [anon_sym_BSLASHusepackage] = ACTIONS(5128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5128), + [anon_sym_BSLASHinclude] = ACTIONS(5128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5128), + [anon_sym_BSLASHinput] = ACTIONS(5128), + [anon_sym_BSLASHsubfile] = ACTIONS(5128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5128), + [anon_sym_BSLASHbibliography] = ACTIONS(5128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5128), + [anon_sym_BSLASHincludesvg] = ACTIONS(5128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5128), + [anon_sym_BSLASHimport] = ACTIONS(5128), + [anon_sym_BSLASHsubimport] = ACTIONS(5128), + [anon_sym_BSLASHinputfrom] = ACTIONS(5128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5128), + [anon_sym_BSLASHincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5128), + [anon_sym_BSLASHcaption] = ACTIONS(5128), + [anon_sym_BSLASHcite] = ACTIONS(5128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCite] = ACTIONS(5128), + [anon_sym_BSLASHnocite] = ACTIONS(5128), + [anon_sym_BSLASHcitet] = ACTIONS(5128), + [anon_sym_BSLASHcitep] = ACTIONS(5128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteauthor] = ACTIONS(5128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitetitle] = ACTIONS(5128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteyear] = ACTIONS(5128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5126), + [anon_sym_BSLASHcitedate] = ACTIONS(5128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5126), + [anon_sym_BSLASHciteurl] = ACTIONS(5128), + [anon_sym_BSLASHfullcite] = ACTIONS(5128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5128), + [anon_sym_BSLASHcitealt] = ACTIONS(5128), + [anon_sym_BSLASHcitealp] = ACTIONS(5128), + [anon_sym_BSLASHcitetext] = ACTIONS(5128), + [anon_sym_BSLASHparencite] = ACTIONS(5128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHParencite] = ACTIONS(5128), + [anon_sym_BSLASHfootcite] = ACTIONS(5128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5128), + [anon_sym_BSLASHtextcite] = ACTIONS(5128), + [anon_sym_BSLASHTextcite] = ACTIONS(5128), + [anon_sym_BSLASHsmartcite] = ACTIONS(5128), + [anon_sym_BSLASHSmartcite] = ACTIONS(5128), + [anon_sym_BSLASHsupercite] = ACTIONS(5128), + [anon_sym_BSLASHautocite] = ACTIONS(5128), + [anon_sym_BSLASHAutocite] = ACTIONS(5128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5126), + [anon_sym_BSLASHvolcite] = ACTIONS(5128), + [anon_sym_BSLASHVolcite] = ACTIONS(5128), + [anon_sym_BSLASHpvolcite] = ACTIONS(5128), + [anon_sym_BSLASHPvolcite] = ACTIONS(5128), + [anon_sym_BSLASHfvolcite] = ACTIONS(5128), + [anon_sym_BSLASHftvolcite] = ACTIONS(5128), + [anon_sym_BSLASHsvolcite] = ACTIONS(5128), + [anon_sym_BSLASHSvolcite] = ACTIONS(5128), + [anon_sym_BSLASHtvolcite] = ACTIONS(5128), + [anon_sym_BSLASHTvolcite] = ACTIONS(5128), + [anon_sym_BSLASHavolcite] = ACTIONS(5128), + [anon_sym_BSLASHAvolcite] = ACTIONS(5128), + [anon_sym_BSLASHnotecite] = ACTIONS(5128), + [anon_sym_BSLASHNotecite] = ACTIONS(5128), + [anon_sym_BSLASHpnotecite] = ACTIONS(5128), + [anon_sym_BSLASHPnotecite] = ACTIONS(5128), + [anon_sym_BSLASHfnotecite] = ACTIONS(5128), + [anon_sym_BSLASHlabel] = ACTIONS(5128), + [anon_sym_BSLASHref] = ACTIONS(5128), + [anon_sym_BSLASHeqref] = ACTIONS(5128), + [anon_sym_BSLASHvref] = ACTIONS(5128), + [anon_sym_BSLASHVref] = ACTIONS(5128), + [anon_sym_BSLASHautoref] = ACTIONS(5128), + [anon_sym_BSLASHpageref] = ACTIONS(5128), + [anon_sym_BSLASHcref] = ACTIONS(5128), + [anon_sym_BSLASHCref] = ACTIONS(5128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnameCref] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5128), + [anon_sym_BSLASHlabelcref] = ACTIONS(5128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange] = ACTIONS(5128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHCrefrange] = ACTIONS(5128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5126), + [anon_sym_BSLASHnewlabel] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand] = ACTIONS(5128), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5128), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5128), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5126), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdef] = ACTIONS(5128), + [anon_sym_BSLASHlet] = ACTIONS(5128), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5128), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5128), + [anon_sym_BSLASHgls] = ACTIONS(5128), + [anon_sym_BSLASHGls] = ACTIONS(5128), + [anon_sym_BSLASHGLS] = ACTIONS(5128), + [anon_sym_BSLASHglspl] = ACTIONS(5128), + [anon_sym_BSLASHGlspl] = ACTIONS(5128), + [anon_sym_BSLASHGLSpl] = ACTIONS(5128), + [anon_sym_BSLASHglsdisp] = ACTIONS(5128), + [anon_sym_BSLASHglslink] = ACTIONS(5128), + [anon_sym_BSLASHglstext] = ACTIONS(5128), + [anon_sym_BSLASHGlstext] = ACTIONS(5128), + [anon_sym_BSLASHGLStext] = ACTIONS(5128), + [anon_sym_BSLASHglsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5128), + [anon_sym_BSLASHglsplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSplural] = ACTIONS(5128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5128), + [anon_sym_BSLASHglsname] = ACTIONS(5128), + [anon_sym_BSLASHGlsname] = ACTIONS(5128), + [anon_sym_BSLASHGLSname] = ACTIONS(5128), + [anon_sym_BSLASHglssymbol] = ACTIONS(5128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5128), + [anon_sym_BSLASHglsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5128), + [anon_sym_BSLASHglsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5128), + [anon_sym_BSLASHglsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5128), + [anon_sym_BSLASHglsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5128), + [anon_sym_BSLASHglsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5128), + [anon_sym_BSLASHnewacronym] = ACTIONS(5128), + [anon_sym_BSLASHacrshort] = ACTIONS(5128), + [anon_sym_BSLASHAcrshort] = ACTIONS(5128), + [anon_sym_BSLASHACRshort] = ACTIONS(5128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5128), + [anon_sym_BSLASHacrlong] = ACTIONS(5128), + [anon_sym_BSLASHAcrlong] = ACTIONS(5128), + [anon_sym_BSLASHACRlong] = ACTIONS(5128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5128), + [anon_sym_BSLASHacrfull] = ACTIONS(5128), + [anon_sym_BSLASHAcrfull] = ACTIONS(5128), + [anon_sym_BSLASHACRfull] = ACTIONS(5128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5128), + [anon_sym_BSLASHacs] = ACTIONS(5128), + [anon_sym_BSLASHAcs] = ACTIONS(5128), + [anon_sym_BSLASHacsp] = ACTIONS(5128), + [anon_sym_BSLASHAcsp] = ACTIONS(5128), + [anon_sym_BSLASHacl] = ACTIONS(5128), + [anon_sym_BSLASHAcl] = ACTIONS(5128), + [anon_sym_BSLASHaclp] = ACTIONS(5128), + [anon_sym_BSLASHAclp] = ACTIONS(5128), + [anon_sym_BSLASHacf] = ACTIONS(5128), + [anon_sym_BSLASHAcf] = ACTIONS(5128), + [anon_sym_BSLASHacfp] = ACTIONS(5128), + [anon_sym_BSLASHAcfp] = ACTIONS(5128), + [anon_sym_BSLASHac] = ACTIONS(5128), + [anon_sym_BSLASHAc] = ACTIONS(5128), + [anon_sym_BSLASHacp] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5128), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5128), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5126), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5128), + [anon_sym_BSLASHcolor] = ACTIONS(5128), + [anon_sym_BSLASHcolorbox] = ACTIONS(5128), + [anon_sym_BSLASHtextcolor] = ACTIONS(5128), + [anon_sym_BSLASHpagecolor] = ACTIONS(5128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5128), }, [1501] = { - [sym_command_name] = ACTIONS(4925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(4923), - [sym_word] = ACTIONS(4925), - [sym_placeholder] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_CARET] = ACTIONS(4925), - [anon_sym__] = ACTIONS(4925), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4925), - [anon_sym_BSLASHusepackage] = ACTIONS(4925), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), - [anon_sym_BSLASHinclude] = ACTIONS(4925), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), - [anon_sym_BSLASHinput] = ACTIONS(4925), - [anon_sym_BSLASHsubfile] = ACTIONS(4925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), - [anon_sym_BSLASHbibliography] = ACTIONS(4925), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), - [anon_sym_BSLASHincludesvg] = ACTIONS(4925), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), - [anon_sym_BSLASHimport] = ACTIONS(4925), - [anon_sym_BSLASHsubimport] = ACTIONS(4925), - [anon_sym_BSLASHinputfrom] = ACTIONS(4925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), - [anon_sym_BSLASHincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), - [anon_sym_BSLASHcaption] = ACTIONS(4925), - [anon_sym_BSLASHcite] = ACTIONS(4925), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), - [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(4923), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor] = ACTIONS(4925), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle] = ACTIONS(4925), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), - [anon_sym_BSLASHciteyear] = ACTIONS(4925), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), - [anon_sym_BSLASHcitedate] = ACTIONS(4925), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), - [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(4923), - [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(4923), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), - [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(4925), - [anon_sym_BSLASHref] = ACTIONS(4925), - [anon_sym_BSLASHeqref] = ACTIONS(4925), - [anon_sym_BSLASHvref] = ACTIONS(4925), - [anon_sym_BSLASHVref] = ACTIONS(4925), - [anon_sym_BSLASHautoref] = ACTIONS(4925), - [anon_sym_BSLASHpageref] = ACTIONS(4925), - [anon_sym_BSLASHcref] = ACTIONS(4925), - [anon_sym_BSLASHCref] = ACTIONS(4925), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnameCref] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), - [anon_sym_BSLASHlabelcref] = ACTIONS(4925), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange] = ACTIONS(4925), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange] = ACTIONS(4925), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), - [anon_sym_BSLASHnewlabel] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand] = ACTIONS(4925), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), - [anon_sym_BSLASHdef] = ACTIONS(4925), - [anon_sym_BSLASHlet] = ACTIONS(4925), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), - [anon_sym_BSLASHgls] = ACTIONS(4925), - [anon_sym_BSLASHGls] = ACTIONS(4925), - [anon_sym_BSLASHGLS] = ACTIONS(4925), - [anon_sym_BSLASHglspl] = ACTIONS(4925), - [anon_sym_BSLASHGlspl] = ACTIONS(4925), - [anon_sym_BSLASHGLSpl] = ACTIONS(4925), - [anon_sym_BSLASHglsdisp] = ACTIONS(4925), - [anon_sym_BSLASHglslink] = ACTIONS(4925), - [anon_sym_BSLASHglstext] = ACTIONS(4925), - [anon_sym_BSLASHGlstext] = ACTIONS(4925), - [anon_sym_BSLASHGLStext] = ACTIONS(4925), - [anon_sym_BSLASHglsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), - [anon_sym_BSLASHglsplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSplural] = ACTIONS(4925), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), - [anon_sym_BSLASHglsname] = ACTIONS(4925), - [anon_sym_BSLASHGlsname] = ACTIONS(4925), - [anon_sym_BSLASHGLSname] = ACTIONS(4925), - [anon_sym_BSLASHglssymbol] = ACTIONS(4925), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), - [anon_sym_BSLASHglsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), - [anon_sym_BSLASHglsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), - [anon_sym_BSLASHglsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), - [anon_sym_BSLASHglsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), - [anon_sym_BSLASHglsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), - [anon_sym_BSLASHnewacronym] = ACTIONS(4925), - [anon_sym_BSLASHacrshort] = ACTIONS(4925), - [anon_sym_BSLASHAcrshort] = ACTIONS(4925), - [anon_sym_BSLASHACRshort] = ACTIONS(4925), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), - [anon_sym_BSLASHacrlong] = ACTIONS(4925), - [anon_sym_BSLASHAcrlong] = ACTIONS(4925), - [anon_sym_BSLASHACRlong] = ACTIONS(4925), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), - [anon_sym_BSLASHacrfull] = ACTIONS(4925), - [anon_sym_BSLASHAcrfull] = ACTIONS(4925), - [anon_sym_BSLASHACRfull] = ACTIONS(4925), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), - [anon_sym_BSLASHacs] = ACTIONS(4925), - [anon_sym_BSLASHAcs] = ACTIONS(4925), - [anon_sym_BSLASHacsp] = ACTIONS(4925), - [anon_sym_BSLASHAcsp] = ACTIONS(4925), - [anon_sym_BSLASHacl] = ACTIONS(4925), - [anon_sym_BSLASHAcl] = ACTIONS(4925), - [anon_sym_BSLASHaclp] = ACTIONS(4925), - [anon_sym_BSLASHAclp] = ACTIONS(4925), - [anon_sym_BSLASHacf] = ACTIONS(4925), - [anon_sym_BSLASHAcf] = ACTIONS(4925), - [anon_sym_BSLASHacfp] = ACTIONS(4925), - [anon_sym_BSLASHAcfp] = ACTIONS(4925), - [anon_sym_BSLASHac] = ACTIONS(4925), - [anon_sym_BSLASHAc] = ACTIONS(4925), - [anon_sym_BSLASHacp] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), - [anon_sym_BSLASHcolor] = ACTIONS(4925), - [anon_sym_BSLASHcolorbox] = ACTIONS(4925), - [anon_sym_BSLASHtextcolor] = ACTIONS(4925), - [anon_sym_BSLASHpagecolor] = ACTIONS(4925), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [sym_command_name] = ACTIONS(5004), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [sym_word] = ACTIONS(5004), + [sym_placeholder] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym__] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5004), + [anon_sym_BANG] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_SQUOTE] = ACTIONS(5004), + [anon_sym_BSLASHusepackage] = ACTIONS(5004), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5004), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5004), + [anon_sym_BSLASHinclude] = ACTIONS(5004), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5004), + [anon_sym_BSLASHinput] = ACTIONS(5004), + [anon_sym_BSLASHsubfile] = ACTIONS(5004), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5004), + [anon_sym_BSLASHbibliography] = ACTIONS(5004), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5004), + [anon_sym_BSLASHincludesvg] = ACTIONS(5004), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5004), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5004), + [anon_sym_BSLASHimport] = ACTIONS(5004), + [anon_sym_BSLASHsubimport] = ACTIONS(5004), + [anon_sym_BSLASHinputfrom] = ACTIONS(5004), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5004), + [anon_sym_BSLASHincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5004), + [anon_sym_BSLASHcaption] = ACTIONS(5004), + [anon_sym_BSLASHcite] = ACTIONS(5004), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCite] = ACTIONS(5004), + [anon_sym_BSLASHnocite] = ACTIONS(5004), + [anon_sym_BSLASHcitet] = ACTIONS(5004), + [anon_sym_BSLASHcitep] = ACTIONS(5004), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteauthor] = ACTIONS(5004), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5004), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitetitle] = ACTIONS(5004), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteyear] = ACTIONS(5004), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5002), + [anon_sym_BSLASHcitedate] = ACTIONS(5004), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5002), + [anon_sym_BSLASHciteurl] = ACTIONS(5004), + [anon_sym_BSLASHfullcite] = ACTIONS(5004), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5004), + [anon_sym_BSLASHcitealt] = ACTIONS(5004), + [anon_sym_BSLASHcitealp] = ACTIONS(5004), + [anon_sym_BSLASHcitetext] = ACTIONS(5004), + [anon_sym_BSLASHparencite] = ACTIONS(5004), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHParencite] = ACTIONS(5004), + [anon_sym_BSLASHfootcite] = ACTIONS(5004), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5004), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5004), + [anon_sym_BSLASHtextcite] = ACTIONS(5004), + [anon_sym_BSLASHTextcite] = ACTIONS(5004), + [anon_sym_BSLASHsmartcite] = ACTIONS(5004), + [anon_sym_BSLASHSmartcite] = ACTIONS(5004), + [anon_sym_BSLASHsupercite] = ACTIONS(5004), + [anon_sym_BSLASHautocite] = ACTIONS(5004), + [anon_sym_BSLASHAutocite] = ACTIONS(5004), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5002), + [anon_sym_BSLASHvolcite] = ACTIONS(5004), + [anon_sym_BSLASHVolcite] = ACTIONS(5004), + [anon_sym_BSLASHpvolcite] = ACTIONS(5004), + [anon_sym_BSLASHPvolcite] = ACTIONS(5004), + [anon_sym_BSLASHfvolcite] = ACTIONS(5004), + [anon_sym_BSLASHftvolcite] = ACTIONS(5004), + [anon_sym_BSLASHsvolcite] = ACTIONS(5004), + [anon_sym_BSLASHSvolcite] = ACTIONS(5004), + [anon_sym_BSLASHtvolcite] = ACTIONS(5004), + [anon_sym_BSLASHTvolcite] = ACTIONS(5004), + [anon_sym_BSLASHavolcite] = ACTIONS(5004), + [anon_sym_BSLASHAvolcite] = ACTIONS(5004), + [anon_sym_BSLASHnotecite] = ACTIONS(5004), + [anon_sym_BSLASHNotecite] = ACTIONS(5004), + [anon_sym_BSLASHpnotecite] = ACTIONS(5004), + [anon_sym_BSLASHPnotecite] = ACTIONS(5004), + [anon_sym_BSLASHfnotecite] = ACTIONS(5004), + [anon_sym_BSLASHlabel] = ACTIONS(5004), + [anon_sym_BSLASHref] = ACTIONS(5004), + [anon_sym_BSLASHeqref] = ACTIONS(5004), + [anon_sym_BSLASHvref] = ACTIONS(5004), + [anon_sym_BSLASHVref] = ACTIONS(5004), + [anon_sym_BSLASHautoref] = ACTIONS(5004), + [anon_sym_BSLASHpageref] = ACTIONS(5004), + [anon_sym_BSLASHcref] = ACTIONS(5004), + [anon_sym_BSLASHCref] = ACTIONS(5004), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnameCref] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5004), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5004), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5004), + [anon_sym_BSLASHlabelcref] = ACTIONS(5004), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange] = ACTIONS(5004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHCrefrange] = ACTIONS(5004), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5002), + [anon_sym_BSLASHnewlabel] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand] = ACTIONS(5004), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5004), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5004), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5004), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdef] = ACTIONS(5004), + [anon_sym_BSLASHlet] = ACTIONS(5004), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5004), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5004), + [anon_sym_BSLASHgls] = ACTIONS(5004), + [anon_sym_BSLASHGls] = ACTIONS(5004), + [anon_sym_BSLASHGLS] = ACTIONS(5004), + [anon_sym_BSLASHglspl] = ACTIONS(5004), + [anon_sym_BSLASHGlspl] = ACTIONS(5004), + [anon_sym_BSLASHGLSpl] = ACTIONS(5004), + [anon_sym_BSLASHglsdisp] = ACTIONS(5004), + [anon_sym_BSLASHglslink] = ACTIONS(5004), + [anon_sym_BSLASHglstext] = ACTIONS(5004), + [anon_sym_BSLASHGlstext] = ACTIONS(5004), + [anon_sym_BSLASHGLStext] = ACTIONS(5004), + [anon_sym_BSLASHglsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5004), + [anon_sym_BSLASHglsplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSplural] = ACTIONS(5004), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5004), + [anon_sym_BSLASHglsname] = ACTIONS(5004), + [anon_sym_BSLASHGlsname] = ACTIONS(5004), + [anon_sym_BSLASHGLSname] = ACTIONS(5004), + [anon_sym_BSLASHglssymbol] = ACTIONS(5004), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5004), + [anon_sym_BSLASHglsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5004), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5004), + [anon_sym_BSLASHglsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5004), + [anon_sym_BSLASHglsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5004), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5004), + [anon_sym_BSLASHglsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5004), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5004), + [anon_sym_BSLASHglsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5004), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5004), + [anon_sym_BSLASHnewacronym] = ACTIONS(5004), + [anon_sym_BSLASHacrshort] = ACTIONS(5004), + [anon_sym_BSLASHAcrshort] = ACTIONS(5004), + [anon_sym_BSLASHACRshort] = ACTIONS(5004), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5004), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5004), + [anon_sym_BSLASHacrlong] = ACTIONS(5004), + [anon_sym_BSLASHAcrlong] = ACTIONS(5004), + [anon_sym_BSLASHACRlong] = ACTIONS(5004), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5004), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5004), + [anon_sym_BSLASHacrfull] = ACTIONS(5004), + [anon_sym_BSLASHAcrfull] = ACTIONS(5004), + [anon_sym_BSLASHACRfull] = ACTIONS(5004), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5004), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5004), + [anon_sym_BSLASHacs] = ACTIONS(5004), + [anon_sym_BSLASHAcs] = ACTIONS(5004), + [anon_sym_BSLASHacsp] = ACTIONS(5004), + [anon_sym_BSLASHAcsp] = ACTIONS(5004), + [anon_sym_BSLASHacl] = ACTIONS(5004), + [anon_sym_BSLASHAcl] = ACTIONS(5004), + [anon_sym_BSLASHaclp] = ACTIONS(5004), + [anon_sym_BSLASHAclp] = ACTIONS(5004), + [anon_sym_BSLASHacf] = ACTIONS(5004), + [anon_sym_BSLASHAcf] = ACTIONS(5004), + [anon_sym_BSLASHacfp] = ACTIONS(5004), + [anon_sym_BSLASHAcfp] = ACTIONS(5004), + [anon_sym_BSLASHac] = ACTIONS(5004), + [anon_sym_BSLASHAc] = ACTIONS(5004), + [anon_sym_BSLASHacp] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5004), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5004), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5004), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5004), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5004), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5004), + [anon_sym_BSLASHcolor] = ACTIONS(5004), + [anon_sym_BSLASHcolorbox] = ACTIONS(5004), + [anon_sym_BSLASHtextcolor] = ACTIONS(5004), + [anon_sym_BSLASHpagecolor] = ACTIONS(5004), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5004), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5004), }, [1502] = { - [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_LBRACK] = ACTIONS(4971), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4973), - [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), + [sym_command_name] = ACTIONS(5052), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_RBRACK] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5050), + [anon_sym_RBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5052), + [sym_placeholder] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym__] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_SQUOTE] = ACTIONS(5052), + [anon_sym_BSLASHusepackage] = ACTIONS(5052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5052), + [anon_sym_BSLASHinclude] = ACTIONS(5052), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5052), + [anon_sym_BSLASHinput] = ACTIONS(5052), + [anon_sym_BSLASHsubfile] = ACTIONS(5052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5052), + [anon_sym_BSLASHbibliography] = ACTIONS(5052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5052), + [anon_sym_BSLASHincludesvg] = ACTIONS(5052), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5052), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5052), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5052), + [anon_sym_BSLASHimport] = ACTIONS(5052), + [anon_sym_BSLASHsubimport] = ACTIONS(5052), + [anon_sym_BSLASHinputfrom] = ACTIONS(5052), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5052), + [anon_sym_BSLASHincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5052), + [anon_sym_BSLASHcaption] = ACTIONS(5052), + [anon_sym_BSLASHcite] = ACTIONS(5052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCite] = ACTIONS(5052), + [anon_sym_BSLASHnocite] = ACTIONS(5052), + [anon_sym_BSLASHcitet] = ACTIONS(5052), + [anon_sym_BSLASHcitep] = ACTIONS(5052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteauthor] = ACTIONS(5052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitetitle] = ACTIONS(5052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteyear] = ACTIONS(5052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5050), + [anon_sym_BSLASHcitedate] = ACTIONS(5052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5050), + [anon_sym_BSLASHciteurl] = ACTIONS(5052), + [anon_sym_BSLASHfullcite] = ACTIONS(5052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5052), + [anon_sym_BSLASHcitealt] = ACTIONS(5052), + [anon_sym_BSLASHcitealp] = ACTIONS(5052), + [anon_sym_BSLASHcitetext] = ACTIONS(5052), + [anon_sym_BSLASHparencite] = ACTIONS(5052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHParencite] = ACTIONS(5052), + [anon_sym_BSLASHfootcite] = ACTIONS(5052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5052), + [anon_sym_BSLASHtextcite] = ACTIONS(5052), + [anon_sym_BSLASHTextcite] = ACTIONS(5052), + [anon_sym_BSLASHsmartcite] = ACTIONS(5052), + [anon_sym_BSLASHSmartcite] = ACTIONS(5052), + [anon_sym_BSLASHsupercite] = ACTIONS(5052), + [anon_sym_BSLASHautocite] = ACTIONS(5052), + [anon_sym_BSLASHAutocite] = ACTIONS(5052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5050), + [anon_sym_BSLASHvolcite] = ACTIONS(5052), + [anon_sym_BSLASHVolcite] = ACTIONS(5052), + [anon_sym_BSLASHpvolcite] = ACTIONS(5052), + [anon_sym_BSLASHPvolcite] = ACTIONS(5052), + [anon_sym_BSLASHfvolcite] = ACTIONS(5052), + [anon_sym_BSLASHftvolcite] = ACTIONS(5052), + [anon_sym_BSLASHsvolcite] = ACTIONS(5052), + [anon_sym_BSLASHSvolcite] = ACTIONS(5052), + [anon_sym_BSLASHtvolcite] = ACTIONS(5052), + [anon_sym_BSLASHTvolcite] = ACTIONS(5052), + [anon_sym_BSLASHavolcite] = ACTIONS(5052), + [anon_sym_BSLASHAvolcite] = ACTIONS(5052), + [anon_sym_BSLASHnotecite] = ACTIONS(5052), + [anon_sym_BSLASHNotecite] = ACTIONS(5052), + [anon_sym_BSLASHpnotecite] = ACTIONS(5052), + [anon_sym_BSLASHPnotecite] = ACTIONS(5052), + [anon_sym_BSLASHfnotecite] = ACTIONS(5052), + [anon_sym_BSLASHlabel] = ACTIONS(5052), + [anon_sym_BSLASHref] = ACTIONS(5052), + [anon_sym_BSLASHeqref] = ACTIONS(5052), + [anon_sym_BSLASHvref] = ACTIONS(5052), + [anon_sym_BSLASHVref] = ACTIONS(5052), + [anon_sym_BSLASHautoref] = ACTIONS(5052), + [anon_sym_BSLASHpageref] = ACTIONS(5052), + [anon_sym_BSLASHcref] = ACTIONS(5052), + [anon_sym_BSLASHCref] = ACTIONS(5052), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnameCref] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5052), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5052), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5052), + [anon_sym_BSLASHlabelcref] = ACTIONS(5052), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange] = ACTIONS(5052), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHCrefrange] = ACTIONS(5052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5050), + [anon_sym_BSLASHnewlabel] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand] = ACTIONS(5052), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5052), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5052), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5050), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5052), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdef] = ACTIONS(5052), + [anon_sym_BSLASHlet] = ACTIONS(5052), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5052), + [anon_sym_BSLASHgls] = ACTIONS(5052), + [anon_sym_BSLASHGls] = ACTIONS(5052), + [anon_sym_BSLASHGLS] = ACTIONS(5052), + [anon_sym_BSLASHglspl] = ACTIONS(5052), + [anon_sym_BSLASHGlspl] = ACTIONS(5052), + [anon_sym_BSLASHGLSpl] = ACTIONS(5052), + [anon_sym_BSLASHglsdisp] = ACTIONS(5052), + [anon_sym_BSLASHglslink] = ACTIONS(5052), + [anon_sym_BSLASHglstext] = ACTIONS(5052), + [anon_sym_BSLASHGlstext] = ACTIONS(5052), + [anon_sym_BSLASHGLStext] = ACTIONS(5052), + [anon_sym_BSLASHglsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5052), + [anon_sym_BSLASHglsplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSplural] = ACTIONS(5052), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5052), + [anon_sym_BSLASHglsname] = ACTIONS(5052), + [anon_sym_BSLASHGlsname] = ACTIONS(5052), + [anon_sym_BSLASHGLSname] = ACTIONS(5052), + [anon_sym_BSLASHglssymbol] = ACTIONS(5052), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5052), + [anon_sym_BSLASHglsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5052), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5052), + [anon_sym_BSLASHglsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5052), + [anon_sym_BSLASHglsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5052), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5052), + [anon_sym_BSLASHglsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5052), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5052), + [anon_sym_BSLASHglsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5052), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5052), + [anon_sym_BSLASHnewacronym] = ACTIONS(5052), + [anon_sym_BSLASHacrshort] = ACTIONS(5052), + [anon_sym_BSLASHAcrshort] = ACTIONS(5052), + [anon_sym_BSLASHACRshort] = ACTIONS(5052), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5052), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5052), + [anon_sym_BSLASHacrlong] = ACTIONS(5052), + [anon_sym_BSLASHAcrlong] = ACTIONS(5052), + [anon_sym_BSLASHACRlong] = ACTIONS(5052), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5052), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5052), + [anon_sym_BSLASHacrfull] = ACTIONS(5052), + [anon_sym_BSLASHAcrfull] = ACTIONS(5052), + [anon_sym_BSLASHACRfull] = ACTIONS(5052), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5052), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5052), + [anon_sym_BSLASHacs] = ACTIONS(5052), + [anon_sym_BSLASHAcs] = ACTIONS(5052), + [anon_sym_BSLASHacsp] = ACTIONS(5052), + [anon_sym_BSLASHAcsp] = ACTIONS(5052), + [anon_sym_BSLASHacl] = ACTIONS(5052), + [anon_sym_BSLASHAcl] = ACTIONS(5052), + [anon_sym_BSLASHaclp] = ACTIONS(5052), + [anon_sym_BSLASHAclp] = ACTIONS(5052), + [anon_sym_BSLASHacf] = ACTIONS(5052), + [anon_sym_BSLASHAcf] = ACTIONS(5052), + [anon_sym_BSLASHacfp] = ACTIONS(5052), + [anon_sym_BSLASHAcfp] = ACTIONS(5052), + [anon_sym_BSLASHac] = ACTIONS(5052), + [anon_sym_BSLASHAc] = ACTIONS(5052), + [anon_sym_BSLASHacp] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5052), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5052), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5052), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5052), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5052), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5050), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5052), + [anon_sym_BSLASHcolor] = ACTIONS(5052), + [anon_sym_BSLASHcolorbox] = ACTIONS(5052), + [anon_sym_BSLASHtextcolor] = ACTIONS(5052), + [anon_sym_BSLASHpagecolor] = ACTIONS(5052), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5052), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5052), }, [1503] = { - [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_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5135), - [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), + [sym_command_name] = ACTIONS(5214), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5212), + [anon_sym_COMMA] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5212), + [anon_sym_RBRACE] = ACTIONS(5212), + [sym_word] = ACTIONS(5214), + [sym_placeholder] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(5214), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_SLASH] = ACTIONS(5214), + [anon_sym_CARET] = ACTIONS(5214), + [anon_sym__] = ACTIONS(5214), + [anon_sym_LT] = ACTIONS(5214), + [anon_sym_GT] = ACTIONS(5214), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_SQUOTE] = ACTIONS(5214), + [anon_sym_BSLASHusepackage] = ACTIONS(5214), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5214), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5214), + [anon_sym_BSLASHinclude] = ACTIONS(5214), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5214), + [anon_sym_BSLASHinput] = ACTIONS(5214), + [anon_sym_BSLASHsubfile] = ACTIONS(5214), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5214), + [anon_sym_BSLASHbibliography] = ACTIONS(5214), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5214), + [anon_sym_BSLASHincludesvg] = ACTIONS(5214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5214), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5214), + [anon_sym_BSLASHimport] = ACTIONS(5214), + [anon_sym_BSLASHsubimport] = ACTIONS(5214), + [anon_sym_BSLASHinputfrom] = ACTIONS(5214), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5214), + [anon_sym_BSLASHincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5214), + [anon_sym_BSLASHcaption] = ACTIONS(5214), + [anon_sym_BSLASHcite] = ACTIONS(5214), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCite] = ACTIONS(5214), + [anon_sym_BSLASHnocite] = ACTIONS(5214), + [anon_sym_BSLASHcitet] = ACTIONS(5214), + [anon_sym_BSLASHcitep] = ACTIONS(5214), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteauthor] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitetitle] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteyear] = ACTIONS(5214), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5212), + [anon_sym_BSLASHcitedate] = ACTIONS(5214), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5212), + [anon_sym_BSLASHciteurl] = ACTIONS(5214), + [anon_sym_BSLASHfullcite] = ACTIONS(5214), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5214), + [anon_sym_BSLASHcitealt] = ACTIONS(5214), + [anon_sym_BSLASHcitealp] = ACTIONS(5214), + [anon_sym_BSLASHcitetext] = ACTIONS(5214), + [anon_sym_BSLASHparencite] = ACTIONS(5214), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHParencite] = ACTIONS(5214), + [anon_sym_BSLASHfootcite] = ACTIONS(5214), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5214), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5214), + [anon_sym_BSLASHtextcite] = ACTIONS(5214), + [anon_sym_BSLASHTextcite] = ACTIONS(5214), + [anon_sym_BSLASHsmartcite] = ACTIONS(5214), + [anon_sym_BSLASHSmartcite] = ACTIONS(5214), + [anon_sym_BSLASHsupercite] = ACTIONS(5214), + [anon_sym_BSLASHautocite] = ACTIONS(5214), + [anon_sym_BSLASHAutocite] = ACTIONS(5214), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5212), + [anon_sym_BSLASHvolcite] = ACTIONS(5214), + [anon_sym_BSLASHVolcite] = ACTIONS(5214), + [anon_sym_BSLASHpvolcite] = ACTIONS(5214), + [anon_sym_BSLASHPvolcite] = ACTIONS(5214), + [anon_sym_BSLASHfvolcite] = ACTIONS(5214), + [anon_sym_BSLASHftvolcite] = ACTIONS(5214), + [anon_sym_BSLASHsvolcite] = ACTIONS(5214), + [anon_sym_BSLASHSvolcite] = ACTIONS(5214), + [anon_sym_BSLASHtvolcite] = ACTIONS(5214), + [anon_sym_BSLASHTvolcite] = ACTIONS(5214), + [anon_sym_BSLASHavolcite] = ACTIONS(5214), + [anon_sym_BSLASHAvolcite] = ACTIONS(5214), + [anon_sym_BSLASHnotecite] = ACTIONS(5214), + [anon_sym_BSLASHNotecite] = ACTIONS(5214), + [anon_sym_BSLASHpnotecite] = ACTIONS(5214), + [anon_sym_BSLASHPnotecite] = ACTIONS(5214), + [anon_sym_BSLASHfnotecite] = ACTIONS(5214), + [anon_sym_BSLASHlabel] = ACTIONS(5214), + [anon_sym_BSLASHref] = ACTIONS(5214), + [anon_sym_BSLASHeqref] = ACTIONS(5214), + [anon_sym_BSLASHvref] = ACTIONS(5214), + [anon_sym_BSLASHVref] = ACTIONS(5214), + [anon_sym_BSLASHautoref] = ACTIONS(5214), + [anon_sym_BSLASHpageref] = ACTIONS(5214), + [anon_sym_BSLASHcref] = ACTIONS(5214), + [anon_sym_BSLASHCref] = ACTIONS(5214), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnameCref] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5214), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5214), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5214), + [anon_sym_BSLASHlabelcref] = ACTIONS(5214), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange] = ACTIONS(5214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHCrefrange] = ACTIONS(5214), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5212), + [anon_sym_BSLASHnewlabel] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand] = ACTIONS(5214), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5214), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5214), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5212), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5214), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdef] = ACTIONS(5214), + [anon_sym_BSLASHlet] = ACTIONS(5214), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5214), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5214), + [anon_sym_BSLASHgls] = ACTIONS(5214), + [anon_sym_BSLASHGls] = ACTIONS(5214), + [anon_sym_BSLASHGLS] = ACTIONS(5214), + [anon_sym_BSLASHglspl] = ACTIONS(5214), + [anon_sym_BSLASHGlspl] = ACTIONS(5214), + [anon_sym_BSLASHGLSpl] = ACTIONS(5214), + [anon_sym_BSLASHglsdisp] = ACTIONS(5214), + [anon_sym_BSLASHglslink] = ACTIONS(5214), + [anon_sym_BSLASHglstext] = ACTIONS(5214), + [anon_sym_BSLASHGlstext] = ACTIONS(5214), + [anon_sym_BSLASHGLStext] = ACTIONS(5214), + [anon_sym_BSLASHglsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5214), + [anon_sym_BSLASHglsplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSplural] = ACTIONS(5214), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5214), + [anon_sym_BSLASHglsname] = ACTIONS(5214), + [anon_sym_BSLASHGlsname] = ACTIONS(5214), + [anon_sym_BSLASHGLSname] = ACTIONS(5214), + [anon_sym_BSLASHglssymbol] = ACTIONS(5214), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5214), + [anon_sym_BSLASHglsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5214), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5214), + [anon_sym_BSLASHglsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5214), + [anon_sym_BSLASHglsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5214), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5214), + [anon_sym_BSLASHglsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5214), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5214), + [anon_sym_BSLASHglsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5214), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5214), + [anon_sym_BSLASHnewacronym] = ACTIONS(5214), + [anon_sym_BSLASHacrshort] = ACTIONS(5214), + [anon_sym_BSLASHAcrshort] = ACTIONS(5214), + [anon_sym_BSLASHACRshort] = ACTIONS(5214), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5214), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5214), + [anon_sym_BSLASHacrlong] = ACTIONS(5214), + [anon_sym_BSLASHAcrlong] = ACTIONS(5214), + [anon_sym_BSLASHACRlong] = ACTIONS(5214), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5214), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5214), + [anon_sym_BSLASHacrfull] = ACTIONS(5214), + [anon_sym_BSLASHAcrfull] = ACTIONS(5214), + [anon_sym_BSLASHACRfull] = ACTIONS(5214), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5214), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5214), + [anon_sym_BSLASHacs] = ACTIONS(5214), + [anon_sym_BSLASHAcs] = ACTIONS(5214), + [anon_sym_BSLASHacsp] = ACTIONS(5214), + [anon_sym_BSLASHAcsp] = ACTIONS(5214), + [anon_sym_BSLASHacl] = ACTIONS(5214), + [anon_sym_BSLASHAcl] = ACTIONS(5214), + [anon_sym_BSLASHaclp] = ACTIONS(5214), + [anon_sym_BSLASHAclp] = ACTIONS(5214), + [anon_sym_BSLASHacf] = ACTIONS(5214), + [anon_sym_BSLASHAcf] = ACTIONS(5214), + [anon_sym_BSLASHacfp] = ACTIONS(5214), + [anon_sym_BSLASHAcfp] = ACTIONS(5214), + [anon_sym_BSLASHac] = ACTIONS(5214), + [anon_sym_BSLASHAc] = ACTIONS(5214), + [anon_sym_BSLASHacp] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5214), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5214), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5214), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5214), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5214), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5212), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5214), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5214), + [anon_sym_BSLASHcolor] = ACTIONS(5214), + [anon_sym_BSLASHcolorbox] = ACTIONS(5214), + [anon_sym_BSLASHtextcolor] = ACTIONS(5214), + [anon_sym_BSLASHpagecolor] = ACTIONS(5214), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5214), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5214), }, [1504] = { - [sym_command_name] = ACTIONS(4955), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [sym_word] = ACTIONS(4955), - [sym_placeholder] = ACTIONS(4953), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym__] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_BSLASHusepackage] = ACTIONS(4955), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), - [anon_sym_BSLASHinclude] = ACTIONS(4955), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), - [anon_sym_BSLASHinput] = ACTIONS(4955), - [anon_sym_BSLASHsubfile] = ACTIONS(4955), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), - [anon_sym_BSLASHbibliography] = ACTIONS(4955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), - [anon_sym_BSLASHincludesvg] = ACTIONS(4955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), - [anon_sym_BSLASHimport] = ACTIONS(4955), - [anon_sym_BSLASHsubimport] = ACTIONS(4955), - [anon_sym_BSLASHinputfrom] = ACTIONS(4955), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), - [anon_sym_BSLASHincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), - [anon_sym_BSLASHcaption] = ACTIONS(4955), - [anon_sym_BSLASHcite] = ACTIONS(4955), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCite] = ACTIONS(4955), - [anon_sym_BSLASHnocite] = ACTIONS(4955), - [anon_sym_BSLASHcitet] = ACTIONS(4955), - [anon_sym_BSLASHcitep] = ACTIONS(4955), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor] = ACTIONS(4955), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle] = ACTIONS(4955), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteyear] = ACTIONS(4955), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), - [anon_sym_BSLASHcitedate] = ACTIONS(4955), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), - [anon_sym_BSLASHciteurl] = ACTIONS(4955), - [anon_sym_BSLASHfullcite] = ACTIONS(4955), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), - [anon_sym_BSLASHcitealt] = ACTIONS(4955), - [anon_sym_BSLASHcitealp] = ACTIONS(4955), - [anon_sym_BSLASHcitetext] = ACTIONS(4955), - [anon_sym_BSLASHparencite] = ACTIONS(4955), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHParencite] = ACTIONS(4955), - [anon_sym_BSLASHfootcite] = ACTIONS(4955), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), - [anon_sym_BSLASHtextcite] = ACTIONS(4955), - [anon_sym_BSLASHTextcite] = ACTIONS(4955), - [anon_sym_BSLASHsmartcite] = ACTIONS(4955), - [anon_sym_BSLASHSmartcite] = ACTIONS(4955), - [anon_sym_BSLASHsupercite] = ACTIONS(4955), - [anon_sym_BSLASHautocite] = ACTIONS(4955), - [anon_sym_BSLASHAutocite] = ACTIONS(4955), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), - [anon_sym_BSLASHvolcite] = ACTIONS(4955), - [anon_sym_BSLASHVolcite] = ACTIONS(4955), - [anon_sym_BSLASHpvolcite] = ACTIONS(4955), - [anon_sym_BSLASHPvolcite] = ACTIONS(4955), - [anon_sym_BSLASHfvolcite] = ACTIONS(4955), - [anon_sym_BSLASHftvolcite] = ACTIONS(4955), - [anon_sym_BSLASHsvolcite] = ACTIONS(4955), - [anon_sym_BSLASHSvolcite] = ACTIONS(4955), - [anon_sym_BSLASHtvolcite] = ACTIONS(4955), - [anon_sym_BSLASHTvolcite] = ACTIONS(4955), - [anon_sym_BSLASHavolcite] = ACTIONS(4955), - [anon_sym_BSLASHAvolcite] = ACTIONS(4955), - [anon_sym_BSLASHnotecite] = ACTIONS(4955), - [anon_sym_BSLASHNotecite] = ACTIONS(4955), - [anon_sym_BSLASHpnotecite] = ACTIONS(4955), - [anon_sym_BSLASHPnotecite] = ACTIONS(4955), - [anon_sym_BSLASHfnotecite] = ACTIONS(4955), - [anon_sym_BSLASHlabel] = ACTIONS(4955), - [anon_sym_BSLASHref] = ACTIONS(4955), - [anon_sym_BSLASHeqref] = ACTIONS(4955), - [anon_sym_BSLASHvref] = ACTIONS(4955), - [anon_sym_BSLASHVref] = ACTIONS(4955), - [anon_sym_BSLASHautoref] = ACTIONS(4955), - [anon_sym_BSLASHpageref] = ACTIONS(4955), - [anon_sym_BSLASHcref] = ACTIONS(4955), - [anon_sym_BSLASHCref] = ACTIONS(4955), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnameCref] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), - [anon_sym_BSLASHlabelcref] = ACTIONS(4955), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange] = ACTIONS(4955), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange] = ACTIONS(4955), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), - [anon_sym_BSLASHnewlabel] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand] = ACTIONS(4955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), - [anon_sym_BSLASHdef] = ACTIONS(4955), - [anon_sym_BSLASHlet] = ACTIONS(4955), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), - [anon_sym_BSLASHgls] = ACTIONS(4955), - [anon_sym_BSLASHGls] = ACTIONS(4955), - [anon_sym_BSLASHGLS] = ACTIONS(4955), - [anon_sym_BSLASHglspl] = ACTIONS(4955), - [anon_sym_BSLASHGlspl] = ACTIONS(4955), - [anon_sym_BSLASHGLSpl] = ACTIONS(4955), - [anon_sym_BSLASHglsdisp] = ACTIONS(4955), - [anon_sym_BSLASHglslink] = ACTIONS(4955), - [anon_sym_BSLASHglstext] = ACTIONS(4955), - [anon_sym_BSLASHGlstext] = ACTIONS(4955), - [anon_sym_BSLASHGLStext] = ACTIONS(4955), - [anon_sym_BSLASHglsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), - [anon_sym_BSLASHglsplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSplural] = ACTIONS(4955), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), - [anon_sym_BSLASHglsname] = ACTIONS(4955), - [anon_sym_BSLASHGlsname] = ACTIONS(4955), - [anon_sym_BSLASHGLSname] = ACTIONS(4955), - [anon_sym_BSLASHglssymbol] = ACTIONS(4955), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), - [anon_sym_BSLASHglsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), - [anon_sym_BSLASHglsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), - [anon_sym_BSLASHglsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), - [anon_sym_BSLASHglsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), - [anon_sym_BSLASHglsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), - [anon_sym_BSLASHnewacronym] = ACTIONS(4955), - [anon_sym_BSLASHacrshort] = ACTIONS(4955), - [anon_sym_BSLASHAcrshort] = ACTIONS(4955), - [anon_sym_BSLASHACRshort] = ACTIONS(4955), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), - [anon_sym_BSLASHacrlong] = ACTIONS(4955), - [anon_sym_BSLASHAcrlong] = ACTIONS(4955), - [anon_sym_BSLASHACRlong] = ACTIONS(4955), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), - [anon_sym_BSLASHacrfull] = ACTIONS(4955), - [anon_sym_BSLASHAcrfull] = ACTIONS(4955), - [anon_sym_BSLASHACRfull] = ACTIONS(4955), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), - [anon_sym_BSLASHacs] = ACTIONS(4955), - [anon_sym_BSLASHAcs] = ACTIONS(4955), - [anon_sym_BSLASHacsp] = ACTIONS(4955), - [anon_sym_BSLASHAcsp] = ACTIONS(4955), - [anon_sym_BSLASHacl] = ACTIONS(4955), - [anon_sym_BSLASHAcl] = ACTIONS(4955), - [anon_sym_BSLASHaclp] = ACTIONS(4955), - [anon_sym_BSLASHAclp] = ACTIONS(4955), - [anon_sym_BSLASHacf] = ACTIONS(4955), - [anon_sym_BSLASHAcf] = ACTIONS(4955), - [anon_sym_BSLASHacfp] = ACTIONS(4955), - [anon_sym_BSLASHAcfp] = ACTIONS(4955), - [anon_sym_BSLASHac] = ACTIONS(4955), - [anon_sym_BSLASHAc] = ACTIONS(4955), - [anon_sym_BSLASHacp] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), - [anon_sym_BSLASHcolor] = ACTIONS(4955), - [anon_sym_BSLASHcolorbox] = ACTIONS(4955), - [anon_sym_BSLASHtextcolor] = ACTIONS(4955), - [anon_sym_BSLASHpagecolor] = ACTIONS(4955), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [sym_command_name] = ACTIONS(5034), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [sym_word] = ACTIONS(5034), + [sym_placeholder] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym__] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_SQUOTE] = ACTIONS(5034), + [anon_sym_BSLASHusepackage] = ACTIONS(5034), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5034), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5034), + [anon_sym_BSLASHinclude] = ACTIONS(5034), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5034), + [anon_sym_BSLASHinput] = ACTIONS(5034), + [anon_sym_BSLASHsubfile] = ACTIONS(5034), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5034), + [anon_sym_BSLASHbibliography] = ACTIONS(5034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5034), + [anon_sym_BSLASHincludesvg] = ACTIONS(5034), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5034), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5034), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5034), + [anon_sym_BSLASHimport] = ACTIONS(5034), + [anon_sym_BSLASHsubimport] = ACTIONS(5034), + [anon_sym_BSLASHinputfrom] = ACTIONS(5034), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5034), + [anon_sym_BSLASHincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5034), + [anon_sym_BSLASHcaption] = ACTIONS(5034), + [anon_sym_BSLASHcite] = ACTIONS(5034), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCite] = ACTIONS(5034), + [anon_sym_BSLASHnocite] = ACTIONS(5034), + [anon_sym_BSLASHcitet] = ACTIONS(5034), + [anon_sym_BSLASHcitep] = ACTIONS(5034), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteauthor] = ACTIONS(5034), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5034), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitetitle] = ACTIONS(5034), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteyear] = ACTIONS(5034), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5032), + [anon_sym_BSLASHcitedate] = ACTIONS(5034), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5032), + [anon_sym_BSLASHciteurl] = ACTIONS(5034), + [anon_sym_BSLASHfullcite] = ACTIONS(5034), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5034), + [anon_sym_BSLASHcitealt] = ACTIONS(5034), + [anon_sym_BSLASHcitealp] = ACTIONS(5034), + [anon_sym_BSLASHcitetext] = ACTIONS(5034), + [anon_sym_BSLASHparencite] = ACTIONS(5034), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHParencite] = ACTIONS(5034), + [anon_sym_BSLASHfootcite] = ACTIONS(5034), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5034), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5034), + [anon_sym_BSLASHtextcite] = ACTIONS(5034), + [anon_sym_BSLASHTextcite] = ACTIONS(5034), + [anon_sym_BSLASHsmartcite] = ACTIONS(5034), + [anon_sym_BSLASHSmartcite] = ACTIONS(5034), + [anon_sym_BSLASHsupercite] = ACTIONS(5034), + [anon_sym_BSLASHautocite] = ACTIONS(5034), + [anon_sym_BSLASHAutocite] = ACTIONS(5034), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5032), + [anon_sym_BSLASHvolcite] = ACTIONS(5034), + [anon_sym_BSLASHVolcite] = ACTIONS(5034), + [anon_sym_BSLASHpvolcite] = ACTIONS(5034), + [anon_sym_BSLASHPvolcite] = ACTIONS(5034), + [anon_sym_BSLASHfvolcite] = ACTIONS(5034), + [anon_sym_BSLASHftvolcite] = ACTIONS(5034), + [anon_sym_BSLASHsvolcite] = ACTIONS(5034), + [anon_sym_BSLASHSvolcite] = ACTIONS(5034), + [anon_sym_BSLASHtvolcite] = ACTIONS(5034), + [anon_sym_BSLASHTvolcite] = ACTIONS(5034), + [anon_sym_BSLASHavolcite] = ACTIONS(5034), + [anon_sym_BSLASHAvolcite] = ACTIONS(5034), + [anon_sym_BSLASHnotecite] = ACTIONS(5034), + [anon_sym_BSLASHNotecite] = ACTIONS(5034), + [anon_sym_BSLASHpnotecite] = ACTIONS(5034), + [anon_sym_BSLASHPnotecite] = ACTIONS(5034), + [anon_sym_BSLASHfnotecite] = ACTIONS(5034), + [anon_sym_BSLASHlabel] = ACTIONS(5034), + [anon_sym_BSLASHref] = ACTIONS(5034), + [anon_sym_BSLASHeqref] = ACTIONS(5034), + [anon_sym_BSLASHvref] = ACTIONS(5034), + [anon_sym_BSLASHVref] = ACTIONS(5034), + [anon_sym_BSLASHautoref] = ACTIONS(5034), + [anon_sym_BSLASHpageref] = ACTIONS(5034), + [anon_sym_BSLASHcref] = ACTIONS(5034), + [anon_sym_BSLASHCref] = ACTIONS(5034), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnameCref] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), + [anon_sym_BSLASHlabelcref] = ACTIONS(5034), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange] = ACTIONS(5034), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHCrefrange] = ACTIONS(5034), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5032), + [anon_sym_BSLASHnewlabel] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand] = ACTIONS(5034), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5034), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5034), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5032), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5034), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdef] = ACTIONS(5034), + [anon_sym_BSLASHlet] = ACTIONS(5034), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5034), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), + [anon_sym_BSLASHgls] = ACTIONS(5034), + [anon_sym_BSLASHGls] = ACTIONS(5034), + [anon_sym_BSLASHGLS] = ACTIONS(5034), + [anon_sym_BSLASHglspl] = ACTIONS(5034), + [anon_sym_BSLASHGlspl] = ACTIONS(5034), + [anon_sym_BSLASHGLSpl] = ACTIONS(5034), + [anon_sym_BSLASHglsdisp] = ACTIONS(5034), + [anon_sym_BSLASHglslink] = ACTIONS(5034), + [anon_sym_BSLASHglstext] = ACTIONS(5034), + [anon_sym_BSLASHGlstext] = ACTIONS(5034), + [anon_sym_BSLASHGLStext] = ACTIONS(5034), + [anon_sym_BSLASHglsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5034), + [anon_sym_BSLASHglsplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSplural] = ACTIONS(5034), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5034), + [anon_sym_BSLASHglsname] = ACTIONS(5034), + [anon_sym_BSLASHGlsname] = ACTIONS(5034), + [anon_sym_BSLASHGLSname] = ACTIONS(5034), + [anon_sym_BSLASHglssymbol] = ACTIONS(5034), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5034), + [anon_sym_BSLASHglsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5034), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5034), + [anon_sym_BSLASHglsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5034), + [anon_sym_BSLASHglsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5034), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5034), + [anon_sym_BSLASHglsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5034), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5034), + [anon_sym_BSLASHglsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5034), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5034), + [anon_sym_BSLASHnewacronym] = ACTIONS(5034), + [anon_sym_BSLASHacrshort] = ACTIONS(5034), + [anon_sym_BSLASHAcrshort] = ACTIONS(5034), + [anon_sym_BSLASHACRshort] = ACTIONS(5034), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5034), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5034), + [anon_sym_BSLASHacrlong] = ACTIONS(5034), + [anon_sym_BSLASHAcrlong] = ACTIONS(5034), + [anon_sym_BSLASHACRlong] = ACTIONS(5034), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5034), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5034), + [anon_sym_BSLASHacrfull] = ACTIONS(5034), + [anon_sym_BSLASHAcrfull] = ACTIONS(5034), + [anon_sym_BSLASHACRfull] = ACTIONS(5034), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5034), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5034), + [anon_sym_BSLASHacs] = ACTIONS(5034), + [anon_sym_BSLASHAcs] = ACTIONS(5034), + [anon_sym_BSLASHacsp] = ACTIONS(5034), + [anon_sym_BSLASHAcsp] = ACTIONS(5034), + [anon_sym_BSLASHacl] = ACTIONS(5034), + [anon_sym_BSLASHAcl] = ACTIONS(5034), + [anon_sym_BSLASHaclp] = ACTIONS(5034), + [anon_sym_BSLASHAclp] = ACTIONS(5034), + [anon_sym_BSLASHacf] = ACTIONS(5034), + [anon_sym_BSLASHAcf] = ACTIONS(5034), + [anon_sym_BSLASHacfp] = ACTIONS(5034), + [anon_sym_BSLASHAcfp] = ACTIONS(5034), + [anon_sym_BSLASHac] = ACTIONS(5034), + [anon_sym_BSLASHAc] = ACTIONS(5034), + [anon_sym_BSLASHacp] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5034), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5034), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5034), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5034), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5034), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5032), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5034), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5034), + [anon_sym_BSLASHcolor] = ACTIONS(5034), + [anon_sym_BSLASHcolorbox] = ACTIONS(5034), + [anon_sym_BSLASHtextcolor] = ACTIONS(5034), + [anon_sym_BSLASHpagecolor] = ACTIONS(5034), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5034), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5034), }, [1505] = { [sym_brack_group_text] = STATE(1513), - [sym_command_name] = ACTIONS(4857), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4857), - [anon_sym_LBRACK] = ACTIONS(5515), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_COMMA] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_RBRACE] = ACTIONS(4855), - [sym_word] = ACTIONS(4857), - [sym_placeholder] = ACTIONS(4855), - [anon_sym_PLUS] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_SLASH] = ACTIONS(4857), - [anon_sym_CARET] = ACTIONS(4857), - [anon_sym__] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4857), - [anon_sym_GT] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_PIPE] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_SQUOTE] = ACTIONS(4857), - [anon_sym_BSLASHusepackage] = ACTIONS(4857), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [anon_sym_BSLASHinclude] = ACTIONS(4857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), - [anon_sym_BSLASHinput] = ACTIONS(4857), - [anon_sym_BSLASHsubfile] = ACTIONS(4857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), - [anon_sym_BSLASHbibliography] = ACTIONS(4857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), - [anon_sym_BSLASHincludesvg] = ACTIONS(4857), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), - [anon_sym_BSLASHimport] = ACTIONS(4857), - [anon_sym_BSLASHsubimport] = ACTIONS(4857), - [anon_sym_BSLASHinputfrom] = ACTIONS(4857), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), - [anon_sym_BSLASHincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), - [anon_sym_BSLASHcaption] = ACTIONS(4857), - [anon_sym_BSLASHcite] = ACTIONS(4857), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCite] = ACTIONS(4857), - [anon_sym_BSLASHnocite] = ACTIONS(4857), - [anon_sym_BSLASHcitet] = ACTIONS(4857), - [anon_sym_BSLASHcitep] = ACTIONS(4857), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor] = ACTIONS(4857), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle] = ACTIONS(4857), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteyear] = ACTIONS(4857), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), - [anon_sym_BSLASHcitedate] = ACTIONS(4857), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), - [anon_sym_BSLASHciteurl] = ACTIONS(4857), - [anon_sym_BSLASHfullcite] = ACTIONS(4857), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), - [anon_sym_BSLASHcitealt] = ACTIONS(4857), - [anon_sym_BSLASHcitealp] = ACTIONS(4857), - [anon_sym_BSLASHcitetext] = ACTIONS(4857), - [anon_sym_BSLASHparencite] = ACTIONS(4857), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHParencite] = ACTIONS(4857), - [anon_sym_BSLASHfootcite] = ACTIONS(4857), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), - [anon_sym_BSLASHtextcite] = ACTIONS(4857), - [anon_sym_BSLASHTextcite] = ACTIONS(4857), - [anon_sym_BSLASHsmartcite] = ACTIONS(4857), - [anon_sym_BSLASHSmartcite] = ACTIONS(4857), - [anon_sym_BSLASHsupercite] = ACTIONS(4857), - [anon_sym_BSLASHautocite] = ACTIONS(4857), - [anon_sym_BSLASHAutocite] = ACTIONS(4857), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), - [anon_sym_BSLASHvolcite] = ACTIONS(4857), - [anon_sym_BSLASHVolcite] = ACTIONS(4857), - [anon_sym_BSLASHpvolcite] = ACTIONS(4857), - [anon_sym_BSLASHPvolcite] = ACTIONS(4857), - [anon_sym_BSLASHfvolcite] = ACTIONS(4857), - [anon_sym_BSLASHftvolcite] = ACTIONS(4857), - [anon_sym_BSLASHsvolcite] = ACTIONS(4857), - [anon_sym_BSLASHSvolcite] = ACTIONS(4857), - [anon_sym_BSLASHtvolcite] = ACTIONS(4857), - [anon_sym_BSLASHTvolcite] = ACTIONS(4857), - [anon_sym_BSLASHavolcite] = ACTIONS(4857), - [anon_sym_BSLASHAvolcite] = ACTIONS(4857), - [anon_sym_BSLASHnotecite] = ACTIONS(4857), - [anon_sym_BSLASHNotecite] = ACTIONS(4857), - [anon_sym_BSLASHpnotecite] = ACTIONS(4857), - [anon_sym_BSLASHPnotecite] = ACTIONS(4857), - [anon_sym_BSLASHfnotecite] = ACTIONS(4857), - [anon_sym_BSLASHlabel] = ACTIONS(4857), - [anon_sym_BSLASHref] = ACTIONS(4857), - [anon_sym_BSLASHeqref] = ACTIONS(4857), - [anon_sym_BSLASHvref] = ACTIONS(4857), - [anon_sym_BSLASHVref] = ACTIONS(4857), - [anon_sym_BSLASHautoref] = ACTIONS(4857), - [anon_sym_BSLASHpageref] = ACTIONS(4857), - [anon_sym_BSLASHcref] = ACTIONS(4857), - [anon_sym_BSLASHCref] = ACTIONS(4857), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnameCref] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), - [anon_sym_BSLASHlabelcref] = ACTIONS(4857), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange] = ACTIONS(4857), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHCrefrange] = ACTIONS(4857), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), - [anon_sym_BSLASHnewlabel] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand] = ACTIONS(4857), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), - [anon_sym_BSLASHdef] = ACTIONS(4857), - [anon_sym_BSLASHlet] = ACTIONS(4857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), - [anon_sym_BSLASHgls] = ACTIONS(4857), - [anon_sym_BSLASHGls] = ACTIONS(4857), - [anon_sym_BSLASHGLS] = ACTIONS(4857), - [anon_sym_BSLASHglspl] = ACTIONS(4857), - [anon_sym_BSLASHGlspl] = ACTIONS(4857), - [anon_sym_BSLASHGLSpl] = ACTIONS(4857), - [anon_sym_BSLASHglsdisp] = ACTIONS(4857), - [anon_sym_BSLASHglslink] = ACTIONS(4857), - [anon_sym_BSLASHglstext] = ACTIONS(4857), - [anon_sym_BSLASHGlstext] = ACTIONS(4857), - [anon_sym_BSLASHGLStext] = ACTIONS(4857), - [anon_sym_BSLASHglsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), - [anon_sym_BSLASHglsplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSplural] = ACTIONS(4857), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), - [anon_sym_BSLASHglsname] = ACTIONS(4857), - [anon_sym_BSLASHGlsname] = ACTIONS(4857), - [anon_sym_BSLASHGLSname] = ACTIONS(4857), - [anon_sym_BSLASHglssymbol] = ACTIONS(4857), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), - [anon_sym_BSLASHglsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), - [anon_sym_BSLASHglsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), - [anon_sym_BSLASHglsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), - [anon_sym_BSLASHglsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), - [anon_sym_BSLASHglsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), - [anon_sym_BSLASHnewacronym] = ACTIONS(4857), - [anon_sym_BSLASHacrshort] = ACTIONS(4857), - [anon_sym_BSLASHAcrshort] = ACTIONS(4857), - [anon_sym_BSLASHACRshort] = ACTIONS(4857), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), - [anon_sym_BSLASHacrlong] = ACTIONS(4857), - [anon_sym_BSLASHAcrlong] = ACTIONS(4857), - [anon_sym_BSLASHACRlong] = ACTIONS(4857), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), - [anon_sym_BSLASHacrfull] = ACTIONS(4857), - [anon_sym_BSLASHAcrfull] = ACTIONS(4857), - [anon_sym_BSLASHACRfull] = ACTIONS(4857), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), - [anon_sym_BSLASHacs] = ACTIONS(4857), - [anon_sym_BSLASHAcs] = ACTIONS(4857), - [anon_sym_BSLASHacsp] = ACTIONS(4857), - [anon_sym_BSLASHAcsp] = ACTIONS(4857), - [anon_sym_BSLASHacl] = ACTIONS(4857), - [anon_sym_BSLASHAcl] = ACTIONS(4857), - [anon_sym_BSLASHaclp] = ACTIONS(4857), - [anon_sym_BSLASHAclp] = ACTIONS(4857), - [anon_sym_BSLASHacf] = ACTIONS(4857), - [anon_sym_BSLASHAcf] = ACTIONS(4857), - [anon_sym_BSLASHacfp] = ACTIONS(4857), - [anon_sym_BSLASHAcfp] = ACTIONS(4857), - [anon_sym_BSLASHac] = ACTIONS(4857), - [anon_sym_BSLASHAc] = ACTIONS(4857), - [anon_sym_BSLASHacp] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), - [anon_sym_BSLASHcolor] = ACTIONS(4857), - [anon_sym_BSLASHcolorbox] = ACTIONS(4857), - [anon_sym_BSLASHtextcolor] = ACTIONS(4857), - [anon_sym_BSLASHpagecolor] = ACTIONS(4857), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [sym_command_name] = ACTIONS(4936), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [sym_word] = ACTIONS(4936), + [sym_placeholder] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym__] = ACTIONS(4936), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [anon_sym_BSLASHusepackage] = ACTIONS(4936), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4936), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4936), + [anon_sym_BSLASHinclude] = ACTIONS(4936), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4936), + [anon_sym_BSLASHinput] = ACTIONS(4936), + [anon_sym_BSLASHsubfile] = ACTIONS(4936), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4936), + [anon_sym_BSLASHbibliography] = ACTIONS(4936), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4936), + [anon_sym_BSLASHincludesvg] = ACTIONS(4936), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4936), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4936), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4936), + [anon_sym_BSLASHimport] = ACTIONS(4936), + [anon_sym_BSLASHsubimport] = ACTIONS(4936), + [anon_sym_BSLASHinputfrom] = ACTIONS(4936), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4936), + [anon_sym_BSLASHincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4936), + [anon_sym_BSLASHcaption] = ACTIONS(4936), + [anon_sym_BSLASHcite] = ACTIONS(4936), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCite] = ACTIONS(4936), + [anon_sym_BSLASHnocite] = ACTIONS(4936), + [anon_sym_BSLASHcitet] = ACTIONS(4936), + [anon_sym_BSLASHcitep] = ACTIONS(4936), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteauthor] = ACTIONS(4936), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4936), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitetitle] = ACTIONS(4936), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteyear] = ACTIONS(4936), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4934), + [anon_sym_BSLASHcitedate] = ACTIONS(4936), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4934), + [anon_sym_BSLASHciteurl] = ACTIONS(4936), + [anon_sym_BSLASHfullcite] = ACTIONS(4936), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4936), + [anon_sym_BSLASHcitealt] = ACTIONS(4936), + [anon_sym_BSLASHcitealp] = ACTIONS(4936), + [anon_sym_BSLASHcitetext] = ACTIONS(4936), + [anon_sym_BSLASHparencite] = ACTIONS(4936), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHParencite] = ACTIONS(4936), + [anon_sym_BSLASHfootcite] = ACTIONS(4936), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4936), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4936), + [anon_sym_BSLASHtextcite] = ACTIONS(4936), + [anon_sym_BSLASHTextcite] = ACTIONS(4936), + [anon_sym_BSLASHsmartcite] = ACTIONS(4936), + [anon_sym_BSLASHSmartcite] = ACTIONS(4936), + [anon_sym_BSLASHsupercite] = ACTIONS(4936), + [anon_sym_BSLASHautocite] = ACTIONS(4936), + [anon_sym_BSLASHAutocite] = ACTIONS(4936), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4934), + [anon_sym_BSLASHvolcite] = ACTIONS(4936), + [anon_sym_BSLASHVolcite] = ACTIONS(4936), + [anon_sym_BSLASHpvolcite] = ACTIONS(4936), + [anon_sym_BSLASHPvolcite] = ACTIONS(4936), + [anon_sym_BSLASHfvolcite] = ACTIONS(4936), + [anon_sym_BSLASHftvolcite] = ACTIONS(4936), + [anon_sym_BSLASHsvolcite] = ACTIONS(4936), + [anon_sym_BSLASHSvolcite] = ACTIONS(4936), + [anon_sym_BSLASHtvolcite] = ACTIONS(4936), + [anon_sym_BSLASHTvolcite] = ACTIONS(4936), + [anon_sym_BSLASHavolcite] = ACTIONS(4936), + [anon_sym_BSLASHAvolcite] = ACTIONS(4936), + [anon_sym_BSLASHnotecite] = ACTIONS(4936), + [anon_sym_BSLASHNotecite] = ACTIONS(4936), + [anon_sym_BSLASHpnotecite] = ACTIONS(4936), + [anon_sym_BSLASHPnotecite] = ACTIONS(4936), + [anon_sym_BSLASHfnotecite] = ACTIONS(4936), + [anon_sym_BSLASHlabel] = ACTIONS(4936), + [anon_sym_BSLASHref] = ACTIONS(4936), + [anon_sym_BSLASHeqref] = ACTIONS(4936), + [anon_sym_BSLASHvref] = ACTIONS(4936), + [anon_sym_BSLASHVref] = ACTIONS(4936), + [anon_sym_BSLASHautoref] = ACTIONS(4936), + [anon_sym_BSLASHpageref] = ACTIONS(4936), + [anon_sym_BSLASHcref] = ACTIONS(4936), + [anon_sym_BSLASHCref] = ACTIONS(4936), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnameCref] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4936), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4936), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4936), + [anon_sym_BSLASHlabelcref] = ACTIONS(4936), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange] = ACTIONS(4936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHCrefrange] = ACTIONS(4936), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4934), + [anon_sym_BSLASHnewlabel] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand] = ACTIONS(4936), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4936), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4936), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4934), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4936), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdef] = ACTIONS(4936), + [anon_sym_BSLASHlet] = ACTIONS(4936), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4936), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4936), + [anon_sym_BSLASHgls] = ACTIONS(4936), + [anon_sym_BSLASHGls] = ACTIONS(4936), + [anon_sym_BSLASHGLS] = ACTIONS(4936), + [anon_sym_BSLASHglspl] = ACTIONS(4936), + [anon_sym_BSLASHGlspl] = ACTIONS(4936), + [anon_sym_BSLASHGLSpl] = ACTIONS(4936), + [anon_sym_BSLASHglsdisp] = ACTIONS(4936), + [anon_sym_BSLASHglslink] = ACTIONS(4936), + [anon_sym_BSLASHglstext] = ACTIONS(4936), + [anon_sym_BSLASHGlstext] = ACTIONS(4936), + [anon_sym_BSLASHGLStext] = ACTIONS(4936), + [anon_sym_BSLASHglsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4936), + [anon_sym_BSLASHglsplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSplural] = ACTIONS(4936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4936), + [anon_sym_BSLASHglsname] = ACTIONS(4936), + [anon_sym_BSLASHGlsname] = ACTIONS(4936), + [anon_sym_BSLASHGLSname] = ACTIONS(4936), + [anon_sym_BSLASHglssymbol] = ACTIONS(4936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4936), + [anon_sym_BSLASHglsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4936), + [anon_sym_BSLASHglsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4936), + [anon_sym_BSLASHglsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4936), + [anon_sym_BSLASHglsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4936), + [anon_sym_BSLASHglsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4936), + [anon_sym_BSLASHnewacronym] = ACTIONS(4936), + [anon_sym_BSLASHacrshort] = ACTIONS(4936), + [anon_sym_BSLASHAcrshort] = ACTIONS(4936), + [anon_sym_BSLASHACRshort] = ACTIONS(4936), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4936), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4936), + [anon_sym_BSLASHacrlong] = ACTIONS(4936), + [anon_sym_BSLASHAcrlong] = ACTIONS(4936), + [anon_sym_BSLASHACRlong] = ACTIONS(4936), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4936), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4936), + [anon_sym_BSLASHacrfull] = ACTIONS(4936), + [anon_sym_BSLASHAcrfull] = ACTIONS(4936), + [anon_sym_BSLASHACRfull] = ACTIONS(4936), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4936), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4936), + [anon_sym_BSLASHacs] = ACTIONS(4936), + [anon_sym_BSLASHAcs] = ACTIONS(4936), + [anon_sym_BSLASHacsp] = ACTIONS(4936), + [anon_sym_BSLASHAcsp] = ACTIONS(4936), + [anon_sym_BSLASHacl] = ACTIONS(4936), + [anon_sym_BSLASHAcl] = ACTIONS(4936), + [anon_sym_BSLASHaclp] = ACTIONS(4936), + [anon_sym_BSLASHAclp] = ACTIONS(4936), + [anon_sym_BSLASHacf] = ACTIONS(4936), + [anon_sym_BSLASHAcf] = ACTIONS(4936), + [anon_sym_BSLASHacfp] = ACTIONS(4936), + [anon_sym_BSLASHAcfp] = ACTIONS(4936), + [anon_sym_BSLASHac] = ACTIONS(4936), + [anon_sym_BSLASHAc] = ACTIONS(4936), + [anon_sym_BSLASHacp] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4936), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4936), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4936), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4936), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4936), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4934), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4936), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4936), + [anon_sym_BSLASHcolor] = ACTIONS(4936), + [anon_sym_BSLASHcolorbox] = ACTIONS(4936), + [anon_sym_BSLASHtextcolor] = ACTIONS(4936), + [anon_sym_BSLASHpagecolor] = ACTIONS(4936), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4936), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4936), }, [1506] = { [sym_brack_group_text] = STATE(1572), - [sym_command_name] = ACTIONS(4879), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(5515), - [anon_sym_RBRACK] = ACTIONS(4877), - [anon_sym_COMMA] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4877), - [sym_word] = ACTIONS(4879), - [sym_placeholder] = ACTIONS(4877), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_BSLASHusepackage] = ACTIONS(4879), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), - [anon_sym_BSLASHinclude] = ACTIONS(4879), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), - [anon_sym_BSLASHinput] = ACTIONS(4879), - [anon_sym_BSLASHsubfile] = ACTIONS(4879), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), - [anon_sym_BSLASHbibliography] = ACTIONS(4879), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), - [anon_sym_BSLASHincludesvg] = ACTIONS(4879), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), - [anon_sym_BSLASHimport] = ACTIONS(4879), - [anon_sym_BSLASHsubimport] = ACTIONS(4879), - [anon_sym_BSLASHinputfrom] = ACTIONS(4879), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), - [anon_sym_BSLASHincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), - [anon_sym_BSLASHcaption] = ACTIONS(4879), - [anon_sym_BSLASHcite] = ACTIONS(4879), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCite] = ACTIONS(4879), - [anon_sym_BSLASHnocite] = ACTIONS(4879), - [anon_sym_BSLASHcitet] = ACTIONS(4879), - [anon_sym_BSLASHcitep] = ACTIONS(4879), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteauthor] = ACTIONS(4879), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitetitle] = ACTIONS(4879), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteyear] = ACTIONS(4879), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), - [anon_sym_BSLASHcitedate] = ACTIONS(4879), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), - [anon_sym_BSLASHciteurl] = ACTIONS(4879), - [anon_sym_BSLASHfullcite] = ACTIONS(4879), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), - [anon_sym_BSLASHcitealt] = ACTIONS(4879), - [anon_sym_BSLASHcitealp] = ACTIONS(4879), - [anon_sym_BSLASHcitetext] = ACTIONS(4879), - [anon_sym_BSLASHparencite] = ACTIONS(4879), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHParencite] = ACTIONS(4879), - [anon_sym_BSLASHfootcite] = ACTIONS(4879), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), - [anon_sym_BSLASHtextcite] = ACTIONS(4879), - [anon_sym_BSLASHTextcite] = ACTIONS(4879), - [anon_sym_BSLASHsmartcite] = ACTIONS(4879), - [anon_sym_BSLASHSmartcite] = ACTIONS(4879), - [anon_sym_BSLASHsupercite] = ACTIONS(4879), - [anon_sym_BSLASHautocite] = ACTIONS(4879), - [anon_sym_BSLASHAutocite] = ACTIONS(4879), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), - [anon_sym_BSLASHvolcite] = ACTIONS(4879), - [anon_sym_BSLASHVolcite] = ACTIONS(4879), - [anon_sym_BSLASHpvolcite] = ACTIONS(4879), - [anon_sym_BSLASHPvolcite] = ACTIONS(4879), - [anon_sym_BSLASHfvolcite] = ACTIONS(4879), - [anon_sym_BSLASHftvolcite] = ACTIONS(4879), - [anon_sym_BSLASHsvolcite] = ACTIONS(4879), - [anon_sym_BSLASHSvolcite] = ACTIONS(4879), - [anon_sym_BSLASHtvolcite] = ACTIONS(4879), - [anon_sym_BSLASHTvolcite] = ACTIONS(4879), - [anon_sym_BSLASHavolcite] = ACTIONS(4879), - [anon_sym_BSLASHAvolcite] = ACTIONS(4879), - [anon_sym_BSLASHnotecite] = ACTIONS(4879), - [anon_sym_BSLASHNotecite] = ACTIONS(4879), - [anon_sym_BSLASHpnotecite] = ACTIONS(4879), - [anon_sym_BSLASHPnotecite] = ACTIONS(4879), - [anon_sym_BSLASHfnotecite] = ACTIONS(4879), - [anon_sym_BSLASHlabel] = ACTIONS(4879), - [anon_sym_BSLASHref] = ACTIONS(4879), - [anon_sym_BSLASHeqref] = ACTIONS(4879), - [anon_sym_BSLASHvref] = ACTIONS(4879), - [anon_sym_BSLASHVref] = ACTIONS(4879), - [anon_sym_BSLASHautoref] = ACTIONS(4879), - [anon_sym_BSLASHpageref] = ACTIONS(4879), - [anon_sym_BSLASHcref] = ACTIONS(4879), - [anon_sym_BSLASHCref] = ACTIONS(4879), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnameCref] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), - [anon_sym_BSLASHlabelcref] = ACTIONS(4879), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange] = ACTIONS(4879), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHCrefrange] = ACTIONS(4879), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), - [anon_sym_BSLASHnewlabel] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), - [anon_sym_BSLASHdef] = ACTIONS(4879), - [anon_sym_BSLASHlet] = ACTIONS(4879), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), - [anon_sym_BSLASHgls] = ACTIONS(4879), - [anon_sym_BSLASHGls] = ACTIONS(4879), - [anon_sym_BSLASHGLS] = ACTIONS(4879), - [anon_sym_BSLASHglspl] = ACTIONS(4879), - [anon_sym_BSLASHGlspl] = ACTIONS(4879), - [anon_sym_BSLASHGLSpl] = ACTIONS(4879), - [anon_sym_BSLASHglsdisp] = ACTIONS(4879), - [anon_sym_BSLASHglslink] = ACTIONS(4879), - [anon_sym_BSLASHglstext] = ACTIONS(4879), - [anon_sym_BSLASHGlstext] = ACTIONS(4879), - [anon_sym_BSLASHGLStext] = ACTIONS(4879), - [anon_sym_BSLASHglsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), - [anon_sym_BSLASHglsplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSplural] = ACTIONS(4879), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), - [anon_sym_BSLASHglsname] = ACTIONS(4879), - [anon_sym_BSLASHGlsname] = ACTIONS(4879), - [anon_sym_BSLASHGLSname] = ACTIONS(4879), - [anon_sym_BSLASHglssymbol] = ACTIONS(4879), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), - [anon_sym_BSLASHglsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), - [anon_sym_BSLASHglsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), - [anon_sym_BSLASHglsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), - [anon_sym_BSLASHglsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), - [anon_sym_BSLASHglsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), - [anon_sym_BSLASHnewacronym] = ACTIONS(4879), - [anon_sym_BSLASHacrshort] = ACTIONS(4879), - [anon_sym_BSLASHAcrshort] = ACTIONS(4879), - [anon_sym_BSLASHACRshort] = ACTIONS(4879), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), - [anon_sym_BSLASHacrlong] = ACTIONS(4879), - [anon_sym_BSLASHAcrlong] = ACTIONS(4879), - [anon_sym_BSLASHACRlong] = ACTIONS(4879), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), - [anon_sym_BSLASHacrfull] = ACTIONS(4879), - [anon_sym_BSLASHAcrfull] = ACTIONS(4879), - [anon_sym_BSLASHACRfull] = ACTIONS(4879), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), - [anon_sym_BSLASHacs] = ACTIONS(4879), - [anon_sym_BSLASHAcs] = ACTIONS(4879), - [anon_sym_BSLASHacsp] = ACTIONS(4879), - [anon_sym_BSLASHAcsp] = ACTIONS(4879), - [anon_sym_BSLASHacl] = ACTIONS(4879), - [anon_sym_BSLASHAcl] = ACTIONS(4879), - [anon_sym_BSLASHaclp] = ACTIONS(4879), - [anon_sym_BSLASHAclp] = ACTIONS(4879), - [anon_sym_BSLASHacf] = ACTIONS(4879), - [anon_sym_BSLASHAcf] = ACTIONS(4879), - [anon_sym_BSLASHacfp] = ACTIONS(4879), - [anon_sym_BSLASHAcfp] = ACTIONS(4879), - [anon_sym_BSLASHac] = ACTIONS(4879), - [anon_sym_BSLASHAc] = ACTIONS(4879), - [anon_sym_BSLASHacp] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), - [anon_sym_BSLASHcolor] = ACTIONS(4879), - [anon_sym_BSLASHcolorbox] = ACTIONS(4879), - [anon_sym_BSLASHtextcolor] = ACTIONS(4879), - [anon_sym_BSLASHpagecolor] = ACTIONS(4879), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [sym_command_name] = ACTIONS(4958), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [sym_word] = ACTIONS(4958), + [sym_placeholder] = ACTIONS(4956), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym__] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_SQUOTE] = ACTIONS(4958), + [anon_sym_BSLASHusepackage] = ACTIONS(4958), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4958), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4958), + [anon_sym_BSLASHinclude] = ACTIONS(4958), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4958), + [anon_sym_BSLASHinput] = ACTIONS(4958), + [anon_sym_BSLASHsubfile] = ACTIONS(4958), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4958), + [anon_sym_BSLASHbibliography] = ACTIONS(4958), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4958), + [anon_sym_BSLASHincludesvg] = ACTIONS(4958), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4958), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4958), + [anon_sym_BSLASHsubimport] = ACTIONS(4958), + [anon_sym_BSLASHinputfrom] = ACTIONS(4958), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4958), + [anon_sym_BSLASHincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4958), + [anon_sym_BSLASHcaption] = ACTIONS(4958), + [anon_sym_BSLASHcite] = ACTIONS(4958), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCite] = ACTIONS(4958), + [anon_sym_BSLASHnocite] = ACTIONS(4958), + [anon_sym_BSLASHcitet] = ACTIONS(4958), + [anon_sym_BSLASHcitep] = ACTIONS(4958), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteauthor] = ACTIONS(4958), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4958), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitetitle] = ACTIONS(4958), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteyear] = ACTIONS(4958), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4956), + [anon_sym_BSLASHcitedate] = ACTIONS(4958), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4956), + [anon_sym_BSLASHciteurl] = ACTIONS(4958), + [anon_sym_BSLASHfullcite] = ACTIONS(4958), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4958), + [anon_sym_BSLASHcitealt] = ACTIONS(4958), + [anon_sym_BSLASHcitealp] = ACTIONS(4958), + [anon_sym_BSLASHcitetext] = ACTIONS(4958), + [anon_sym_BSLASHparencite] = ACTIONS(4958), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHParencite] = ACTIONS(4958), + [anon_sym_BSLASHfootcite] = ACTIONS(4958), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4958), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4958), + [anon_sym_BSLASHtextcite] = ACTIONS(4958), + [anon_sym_BSLASHTextcite] = ACTIONS(4958), + [anon_sym_BSLASHsmartcite] = ACTIONS(4958), + [anon_sym_BSLASHSmartcite] = ACTIONS(4958), + [anon_sym_BSLASHsupercite] = ACTIONS(4958), + [anon_sym_BSLASHautocite] = ACTIONS(4958), + [anon_sym_BSLASHAutocite] = ACTIONS(4958), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4956), + [anon_sym_BSLASHvolcite] = ACTIONS(4958), + [anon_sym_BSLASHVolcite] = ACTIONS(4958), + [anon_sym_BSLASHpvolcite] = ACTIONS(4958), + [anon_sym_BSLASHPvolcite] = ACTIONS(4958), + [anon_sym_BSLASHfvolcite] = ACTIONS(4958), + [anon_sym_BSLASHftvolcite] = ACTIONS(4958), + [anon_sym_BSLASHsvolcite] = ACTIONS(4958), + [anon_sym_BSLASHSvolcite] = ACTIONS(4958), + [anon_sym_BSLASHtvolcite] = ACTIONS(4958), + [anon_sym_BSLASHTvolcite] = ACTIONS(4958), + [anon_sym_BSLASHavolcite] = ACTIONS(4958), + [anon_sym_BSLASHAvolcite] = ACTIONS(4958), + [anon_sym_BSLASHnotecite] = ACTIONS(4958), + [anon_sym_BSLASHNotecite] = ACTIONS(4958), + [anon_sym_BSLASHpnotecite] = ACTIONS(4958), + [anon_sym_BSLASHPnotecite] = ACTIONS(4958), + [anon_sym_BSLASHfnotecite] = ACTIONS(4958), + [anon_sym_BSLASHlabel] = ACTIONS(4958), + [anon_sym_BSLASHref] = ACTIONS(4958), + [anon_sym_BSLASHeqref] = ACTIONS(4958), + [anon_sym_BSLASHvref] = ACTIONS(4958), + [anon_sym_BSLASHVref] = ACTIONS(4958), + [anon_sym_BSLASHautoref] = ACTIONS(4958), + [anon_sym_BSLASHpageref] = ACTIONS(4958), + [anon_sym_BSLASHcref] = ACTIONS(4958), + [anon_sym_BSLASHCref] = ACTIONS(4958), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnameCref] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4958), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4958), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4958), + [anon_sym_BSLASHlabelcref] = ACTIONS(4958), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange] = ACTIONS(4958), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHCrefrange] = ACTIONS(4958), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4956), + [anon_sym_BSLASHnewlabel] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand] = ACTIONS(4958), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4958), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4958), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4956), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4958), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdef] = ACTIONS(4958), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4958), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4958), + [anon_sym_BSLASHgls] = ACTIONS(4958), + [anon_sym_BSLASHGls] = ACTIONS(4958), + [anon_sym_BSLASHGLS] = ACTIONS(4958), + [anon_sym_BSLASHglspl] = ACTIONS(4958), + [anon_sym_BSLASHGlspl] = ACTIONS(4958), + [anon_sym_BSLASHGLSpl] = ACTIONS(4958), + [anon_sym_BSLASHglsdisp] = ACTIONS(4958), + [anon_sym_BSLASHglslink] = ACTIONS(4958), + [anon_sym_BSLASHglstext] = ACTIONS(4958), + [anon_sym_BSLASHGlstext] = ACTIONS(4958), + [anon_sym_BSLASHGLStext] = ACTIONS(4958), + [anon_sym_BSLASHglsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4958), + [anon_sym_BSLASHglsplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSplural] = ACTIONS(4958), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4958), + [anon_sym_BSLASHglsname] = ACTIONS(4958), + [anon_sym_BSLASHGlsname] = ACTIONS(4958), + [anon_sym_BSLASHGLSname] = ACTIONS(4958), + [anon_sym_BSLASHglssymbol] = ACTIONS(4958), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4958), + [anon_sym_BSLASHglsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4958), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4958), + [anon_sym_BSLASHglsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4958), + [anon_sym_BSLASHglsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4958), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4958), + [anon_sym_BSLASHglsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4958), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4958), + [anon_sym_BSLASHglsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4958), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4958), + [anon_sym_BSLASHnewacronym] = ACTIONS(4958), + [anon_sym_BSLASHacrshort] = ACTIONS(4958), + [anon_sym_BSLASHAcrshort] = ACTIONS(4958), + [anon_sym_BSLASHACRshort] = ACTIONS(4958), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4958), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4958), + [anon_sym_BSLASHacrlong] = ACTIONS(4958), + [anon_sym_BSLASHAcrlong] = ACTIONS(4958), + [anon_sym_BSLASHACRlong] = ACTIONS(4958), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4958), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4958), + [anon_sym_BSLASHacrfull] = ACTIONS(4958), + [anon_sym_BSLASHAcrfull] = ACTIONS(4958), + [anon_sym_BSLASHACRfull] = ACTIONS(4958), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4958), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4958), + [anon_sym_BSLASHacs] = ACTIONS(4958), + [anon_sym_BSLASHAcs] = ACTIONS(4958), + [anon_sym_BSLASHacsp] = ACTIONS(4958), + [anon_sym_BSLASHAcsp] = ACTIONS(4958), + [anon_sym_BSLASHacl] = ACTIONS(4958), + [anon_sym_BSLASHAcl] = ACTIONS(4958), + [anon_sym_BSLASHaclp] = ACTIONS(4958), + [anon_sym_BSLASHAclp] = ACTIONS(4958), + [anon_sym_BSLASHacf] = ACTIONS(4958), + [anon_sym_BSLASHAcf] = ACTIONS(4958), + [anon_sym_BSLASHacfp] = ACTIONS(4958), + [anon_sym_BSLASHAcfp] = ACTIONS(4958), + [anon_sym_BSLASHac] = ACTIONS(4958), + [anon_sym_BSLASHAc] = ACTIONS(4958), + [anon_sym_BSLASHacp] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4958), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4958), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4958), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4958), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4958), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4956), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4958), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4958), + [anon_sym_BSLASHcolor] = ACTIONS(4958), + [anon_sym_BSLASHcolorbox] = ACTIONS(4958), + [anon_sym_BSLASHtextcolor] = ACTIONS(4958), + [anon_sym_BSLASHpagecolor] = ACTIONS(4958), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4958), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4958), }, [1507] = { - [sym_command_name] = ACTIONS(4753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4753), - [anon_sym_BSLASHfi] = ACTIONS(5517), - [anon_sym_RBRACK] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_RBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(4753), - [sym_placeholder] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym__] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_BSLASHusepackage] = ACTIONS(4753), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), - [anon_sym_BSLASHinclude] = ACTIONS(4753), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), - [anon_sym_BSLASHinput] = ACTIONS(4753), - [anon_sym_BSLASHsubfile] = ACTIONS(4753), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), - [anon_sym_BSLASHbibliography] = ACTIONS(4753), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), - [anon_sym_BSLASHincludesvg] = ACTIONS(4753), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), - [anon_sym_BSLASHimport] = ACTIONS(4753), - [anon_sym_BSLASHsubimport] = ACTIONS(4753), - [anon_sym_BSLASHinputfrom] = ACTIONS(4753), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), - [anon_sym_BSLASHincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), - [anon_sym_BSLASHcaption] = ACTIONS(4753), - [anon_sym_BSLASHcite] = ACTIONS(4753), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCite] = ACTIONS(4753), - [anon_sym_BSLASHnocite] = ACTIONS(4753), - [anon_sym_BSLASHcitet] = ACTIONS(4753), - [anon_sym_BSLASHcitep] = ACTIONS(4753), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteauthor] = ACTIONS(4753), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitetitle] = ACTIONS(4753), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteyear] = ACTIONS(4753), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), - [anon_sym_BSLASHcitedate] = ACTIONS(4753), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), - [anon_sym_BSLASHciteurl] = ACTIONS(4753), - [anon_sym_BSLASHfullcite] = ACTIONS(4753), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), - [anon_sym_BSLASHcitealt] = ACTIONS(4753), - [anon_sym_BSLASHcitealp] = ACTIONS(4753), - [anon_sym_BSLASHcitetext] = ACTIONS(4753), - [anon_sym_BSLASHparencite] = ACTIONS(4753), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHParencite] = ACTIONS(4753), - [anon_sym_BSLASHfootcite] = ACTIONS(4753), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), - [anon_sym_BSLASHtextcite] = ACTIONS(4753), - [anon_sym_BSLASHTextcite] = ACTIONS(4753), - [anon_sym_BSLASHsmartcite] = ACTIONS(4753), - [anon_sym_BSLASHSmartcite] = ACTIONS(4753), - [anon_sym_BSLASHsupercite] = ACTIONS(4753), - [anon_sym_BSLASHautocite] = ACTIONS(4753), - [anon_sym_BSLASHAutocite] = ACTIONS(4753), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), - [anon_sym_BSLASHvolcite] = ACTIONS(4753), - [anon_sym_BSLASHVolcite] = ACTIONS(4753), - [anon_sym_BSLASHpvolcite] = ACTIONS(4753), - [anon_sym_BSLASHPvolcite] = ACTIONS(4753), - [anon_sym_BSLASHfvolcite] = ACTIONS(4753), - [anon_sym_BSLASHftvolcite] = ACTIONS(4753), - [anon_sym_BSLASHsvolcite] = ACTIONS(4753), - [anon_sym_BSLASHSvolcite] = ACTIONS(4753), - [anon_sym_BSLASHtvolcite] = ACTIONS(4753), - [anon_sym_BSLASHTvolcite] = ACTIONS(4753), - [anon_sym_BSLASHavolcite] = ACTIONS(4753), - [anon_sym_BSLASHAvolcite] = ACTIONS(4753), - [anon_sym_BSLASHnotecite] = ACTIONS(4753), - [anon_sym_BSLASHNotecite] = ACTIONS(4753), - [anon_sym_BSLASHpnotecite] = ACTIONS(4753), - [anon_sym_BSLASHPnotecite] = ACTIONS(4753), - [anon_sym_BSLASHfnotecite] = ACTIONS(4753), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [anon_sym_BSLASHref] = ACTIONS(4753), - [anon_sym_BSLASHeqref] = ACTIONS(4753), - [anon_sym_BSLASHvref] = ACTIONS(4753), - [anon_sym_BSLASHVref] = ACTIONS(4753), - [anon_sym_BSLASHautoref] = ACTIONS(4753), - [anon_sym_BSLASHpageref] = ACTIONS(4753), - [anon_sym_BSLASHcref] = ACTIONS(4753), - [anon_sym_BSLASHCref] = ACTIONS(4753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnameCref] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), - [anon_sym_BSLASHlabelcref] = ACTIONS(4753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange] = ACTIONS(4753), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHCrefrange] = ACTIONS(4753), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), - [anon_sym_BSLASHnewlabel] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand] = ACTIONS(4753), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), - [anon_sym_BSLASHdef] = ACTIONS(4753), - [anon_sym_BSLASHlet] = ACTIONS(4753), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), - [anon_sym_BSLASHgls] = ACTIONS(4753), - [anon_sym_BSLASHGls] = ACTIONS(4753), - [anon_sym_BSLASHGLS] = ACTIONS(4753), - [anon_sym_BSLASHglspl] = ACTIONS(4753), - [anon_sym_BSLASHGlspl] = ACTIONS(4753), - [anon_sym_BSLASHGLSpl] = ACTIONS(4753), - [anon_sym_BSLASHglsdisp] = ACTIONS(4753), - [anon_sym_BSLASHglslink] = ACTIONS(4753), - [anon_sym_BSLASHglstext] = ACTIONS(4753), - [anon_sym_BSLASHGlstext] = ACTIONS(4753), - [anon_sym_BSLASHGLStext] = ACTIONS(4753), - [anon_sym_BSLASHglsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), - [anon_sym_BSLASHglsplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSplural] = ACTIONS(4753), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), - [anon_sym_BSLASHglsname] = ACTIONS(4753), - [anon_sym_BSLASHGlsname] = ACTIONS(4753), - [anon_sym_BSLASHGLSname] = ACTIONS(4753), - [anon_sym_BSLASHglssymbol] = ACTIONS(4753), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), - [anon_sym_BSLASHglsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), - [anon_sym_BSLASHglsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), - [anon_sym_BSLASHglsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), - [anon_sym_BSLASHglsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), - [anon_sym_BSLASHglsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), - [anon_sym_BSLASHnewacronym] = ACTIONS(4753), - [anon_sym_BSLASHacrshort] = ACTIONS(4753), - [anon_sym_BSLASHAcrshort] = ACTIONS(4753), - [anon_sym_BSLASHACRshort] = ACTIONS(4753), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), - [anon_sym_BSLASHacrlong] = ACTIONS(4753), - [anon_sym_BSLASHAcrlong] = ACTIONS(4753), - [anon_sym_BSLASHACRlong] = ACTIONS(4753), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), - [anon_sym_BSLASHacrfull] = ACTIONS(4753), - [anon_sym_BSLASHAcrfull] = ACTIONS(4753), - [anon_sym_BSLASHACRfull] = ACTIONS(4753), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), - [anon_sym_BSLASHacs] = ACTIONS(4753), - [anon_sym_BSLASHAcs] = ACTIONS(4753), - [anon_sym_BSLASHacsp] = ACTIONS(4753), - [anon_sym_BSLASHAcsp] = ACTIONS(4753), - [anon_sym_BSLASHacl] = ACTIONS(4753), - [anon_sym_BSLASHAcl] = ACTIONS(4753), - [anon_sym_BSLASHaclp] = ACTIONS(4753), - [anon_sym_BSLASHAclp] = ACTIONS(4753), - [anon_sym_BSLASHacf] = ACTIONS(4753), - [anon_sym_BSLASHAcf] = ACTIONS(4753), - [anon_sym_BSLASHacfp] = ACTIONS(4753), - [anon_sym_BSLASHAcfp] = ACTIONS(4753), - [anon_sym_BSLASHac] = ACTIONS(4753), - [anon_sym_BSLASHAc] = ACTIONS(4753), - [anon_sym_BSLASHacp] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), - [anon_sym_BSLASHcolor] = ACTIONS(4753), - [anon_sym_BSLASHcolorbox] = ACTIONS(4753), - [anon_sym_BSLASHtextcolor] = ACTIONS(4753), - [anon_sym_BSLASHpagecolor] = ACTIONS(4753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), - [sym__trivia_raw_fi] = ACTIONS(5519), + [sym_command_name] = ACTIONS(4832), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4832), + [anon_sym_BSLASHfi] = ACTIONS(5599), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [sym_word] = ACTIONS(4832), + [sym_placeholder] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_CARET] = ACTIONS(4832), + [anon_sym__] = ACTIONS(4832), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4832), + [anon_sym_BSLASHusepackage] = ACTIONS(4832), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4832), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4832), + [anon_sym_BSLASHinclude] = ACTIONS(4832), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4832), + [anon_sym_BSLASHinput] = ACTIONS(4832), + [anon_sym_BSLASHsubfile] = ACTIONS(4832), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4832), + [anon_sym_BSLASHbibliography] = ACTIONS(4832), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4832), + [anon_sym_BSLASHincludesvg] = ACTIONS(4832), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4832), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4832), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4832), + [anon_sym_BSLASHimport] = ACTIONS(4832), + [anon_sym_BSLASHsubimport] = ACTIONS(4832), + [anon_sym_BSLASHinputfrom] = ACTIONS(4832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4832), + [anon_sym_BSLASHincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4832), + [anon_sym_BSLASHcaption] = ACTIONS(4832), + [anon_sym_BSLASHcite] = ACTIONS(4832), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCite] = ACTIONS(4832), + [anon_sym_BSLASHnocite] = ACTIONS(4832), + [anon_sym_BSLASHcitet] = ACTIONS(4832), + [anon_sym_BSLASHcitep] = ACTIONS(4832), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteauthor] = ACTIONS(4832), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4832), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitetitle] = ACTIONS(4832), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteyear] = ACTIONS(4832), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4830), + [anon_sym_BSLASHcitedate] = ACTIONS(4832), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4830), + [anon_sym_BSLASHciteurl] = ACTIONS(4832), + [anon_sym_BSLASHfullcite] = ACTIONS(4832), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4832), + [anon_sym_BSLASHcitealt] = ACTIONS(4832), + [anon_sym_BSLASHcitealp] = ACTIONS(4832), + [anon_sym_BSLASHcitetext] = ACTIONS(4832), + [anon_sym_BSLASHparencite] = ACTIONS(4832), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHParencite] = ACTIONS(4832), + [anon_sym_BSLASHfootcite] = ACTIONS(4832), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4832), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4832), + [anon_sym_BSLASHtextcite] = ACTIONS(4832), + [anon_sym_BSLASHTextcite] = ACTIONS(4832), + [anon_sym_BSLASHsmartcite] = ACTIONS(4832), + [anon_sym_BSLASHSmartcite] = ACTIONS(4832), + [anon_sym_BSLASHsupercite] = ACTIONS(4832), + [anon_sym_BSLASHautocite] = ACTIONS(4832), + [anon_sym_BSLASHAutocite] = ACTIONS(4832), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4830), + [anon_sym_BSLASHvolcite] = ACTIONS(4832), + [anon_sym_BSLASHVolcite] = ACTIONS(4832), + [anon_sym_BSLASHpvolcite] = ACTIONS(4832), + [anon_sym_BSLASHPvolcite] = ACTIONS(4832), + [anon_sym_BSLASHfvolcite] = ACTIONS(4832), + [anon_sym_BSLASHftvolcite] = ACTIONS(4832), + [anon_sym_BSLASHsvolcite] = ACTIONS(4832), + [anon_sym_BSLASHSvolcite] = ACTIONS(4832), + [anon_sym_BSLASHtvolcite] = ACTIONS(4832), + [anon_sym_BSLASHTvolcite] = ACTIONS(4832), + [anon_sym_BSLASHavolcite] = ACTIONS(4832), + [anon_sym_BSLASHAvolcite] = ACTIONS(4832), + [anon_sym_BSLASHnotecite] = ACTIONS(4832), + [anon_sym_BSLASHNotecite] = ACTIONS(4832), + [anon_sym_BSLASHpnotecite] = ACTIONS(4832), + [anon_sym_BSLASHPnotecite] = ACTIONS(4832), + [anon_sym_BSLASHfnotecite] = ACTIONS(4832), + [anon_sym_BSLASHlabel] = ACTIONS(4832), + [anon_sym_BSLASHref] = ACTIONS(4832), + [anon_sym_BSLASHeqref] = ACTIONS(4832), + [anon_sym_BSLASHvref] = ACTIONS(4832), + [anon_sym_BSLASHVref] = ACTIONS(4832), + [anon_sym_BSLASHautoref] = ACTIONS(4832), + [anon_sym_BSLASHpageref] = ACTIONS(4832), + [anon_sym_BSLASHcref] = ACTIONS(4832), + [anon_sym_BSLASHCref] = ACTIONS(4832), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnameCref] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4832), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4832), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4832), + [anon_sym_BSLASHlabelcref] = ACTIONS(4832), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange] = ACTIONS(4832), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHCrefrange] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4830), + [anon_sym_BSLASHnewlabel] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand] = ACTIONS(4832), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4832), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4832), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdef] = ACTIONS(4832), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4832), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4832), + [anon_sym_BSLASHgls] = ACTIONS(4832), + [anon_sym_BSLASHGls] = ACTIONS(4832), + [anon_sym_BSLASHGLS] = ACTIONS(4832), + [anon_sym_BSLASHglspl] = ACTIONS(4832), + [anon_sym_BSLASHGlspl] = ACTIONS(4832), + [anon_sym_BSLASHGLSpl] = ACTIONS(4832), + [anon_sym_BSLASHglsdisp] = ACTIONS(4832), + [anon_sym_BSLASHglslink] = ACTIONS(4832), + [anon_sym_BSLASHglstext] = ACTIONS(4832), + [anon_sym_BSLASHGlstext] = ACTIONS(4832), + [anon_sym_BSLASHGLStext] = ACTIONS(4832), + [anon_sym_BSLASHglsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4832), + [anon_sym_BSLASHglsplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSplural] = ACTIONS(4832), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4832), + [anon_sym_BSLASHglsname] = ACTIONS(4832), + [anon_sym_BSLASHGlsname] = ACTIONS(4832), + [anon_sym_BSLASHGLSname] = ACTIONS(4832), + [anon_sym_BSLASHglssymbol] = ACTIONS(4832), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4832), + [anon_sym_BSLASHglsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4832), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4832), + [anon_sym_BSLASHglsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4832), + [anon_sym_BSLASHglsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4832), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4832), + [anon_sym_BSLASHglsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4832), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4832), + [anon_sym_BSLASHglsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4832), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4832), + [anon_sym_BSLASHnewacronym] = ACTIONS(4832), + [anon_sym_BSLASHacrshort] = ACTIONS(4832), + [anon_sym_BSLASHAcrshort] = ACTIONS(4832), + [anon_sym_BSLASHACRshort] = ACTIONS(4832), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4832), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4832), + [anon_sym_BSLASHacrlong] = ACTIONS(4832), + [anon_sym_BSLASHAcrlong] = ACTIONS(4832), + [anon_sym_BSLASHACRlong] = ACTIONS(4832), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4832), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4832), + [anon_sym_BSLASHacrfull] = ACTIONS(4832), + [anon_sym_BSLASHAcrfull] = ACTIONS(4832), + [anon_sym_BSLASHACRfull] = ACTIONS(4832), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4832), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4832), + [anon_sym_BSLASHacs] = ACTIONS(4832), + [anon_sym_BSLASHAcs] = ACTIONS(4832), + [anon_sym_BSLASHacsp] = ACTIONS(4832), + [anon_sym_BSLASHAcsp] = ACTIONS(4832), + [anon_sym_BSLASHacl] = ACTIONS(4832), + [anon_sym_BSLASHAcl] = ACTIONS(4832), + [anon_sym_BSLASHaclp] = ACTIONS(4832), + [anon_sym_BSLASHAclp] = ACTIONS(4832), + [anon_sym_BSLASHacf] = ACTIONS(4832), + [anon_sym_BSLASHAcf] = ACTIONS(4832), + [anon_sym_BSLASHacfp] = ACTIONS(4832), + [anon_sym_BSLASHAcfp] = ACTIONS(4832), + [anon_sym_BSLASHac] = ACTIONS(4832), + [anon_sym_BSLASHAc] = ACTIONS(4832), + [anon_sym_BSLASHacp] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4832), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4832), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4832), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4832), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4832), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4830), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4832), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4832), + [anon_sym_BSLASHcolor] = ACTIONS(4832), + [anon_sym_BSLASHcolorbox] = ACTIONS(4832), + [anon_sym_BSLASHtextcolor] = ACTIONS(4832), + [anon_sym_BSLASHpagecolor] = ACTIONS(4832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4832), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4832), + [sym__trivia_raw_fi] = ACTIONS(5601), }, [1508] = { - [sym_command_name] = ACTIONS(4865), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4865), - [anon_sym_BSLASHfi] = ACTIONS(5521), - [anon_sym_RBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4863), - [sym_word] = ACTIONS(4865), - [sym_placeholder] = ACTIONS(4863), - [anon_sym_PLUS] = ACTIONS(4865), - [anon_sym_DASH] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_CARET] = ACTIONS(4865), - [anon_sym__] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4865), - [anon_sym_GT] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_PIPE] = ACTIONS(4865), - [anon_sym_COLON] = ACTIONS(4865), - [anon_sym_SQUOTE] = ACTIONS(4865), - [anon_sym_BSLASHusepackage] = ACTIONS(4865), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), - [anon_sym_BSLASHinclude] = ACTIONS(4865), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), - [anon_sym_BSLASHinput] = ACTIONS(4865), - [anon_sym_BSLASHsubfile] = ACTIONS(4865), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), - [anon_sym_BSLASHbibliography] = ACTIONS(4865), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), - [anon_sym_BSLASHincludesvg] = ACTIONS(4865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), - [anon_sym_BSLASHimport] = ACTIONS(4865), - [anon_sym_BSLASHsubimport] = ACTIONS(4865), - [anon_sym_BSLASHinputfrom] = ACTIONS(4865), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), - [anon_sym_BSLASHincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), - [anon_sym_BSLASHcaption] = ACTIONS(4865), - [anon_sym_BSLASHcite] = ACTIONS(4865), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCite] = ACTIONS(4865), - [anon_sym_BSLASHnocite] = ACTIONS(4865), - [anon_sym_BSLASHcitet] = ACTIONS(4865), - [anon_sym_BSLASHcitep] = ACTIONS(4865), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteauthor] = ACTIONS(4865), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitetitle] = ACTIONS(4865), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteyear] = ACTIONS(4865), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), - [anon_sym_BSLASHcitedate] = ACTIONS(4865), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), - [anon_sym_BSLASHciteurl] = ACTIONS(4865), - [anon_sym_BSLASHfullcite] = ACTIONS(4865), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), - [anon_sym_BSLASHcitealt] = ACTIONS(4865), - [anon_sym_BSLASHcitealp] = ACTIONS(4865), - [anon_sym_BSLASHcitetext] = ACTIONS(4865), - [anon_sym_BSLASHparencite] = ACTIONS(4865), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHParencite] = ACTIONS(4865), - [anon_sym_BSLASHfootcite] = ACTIONS(4865), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), - [anon_sym_BSLASHtextcite] = ACTIONS(4865), - [anon_sym_BSLASHTextcite] = ACTIONS(4865), - [anon_sym_BSLASHsmartcite] = ACTIONS(4865), - [anon_sym_BSLASHSmartcite] = ACTIONS(4865), - [anon_sym_BSLASHsupercite] = ACTIONS(4865), - [anon_sym_BSLASHautocite] = ACTIONS(4865), - [anon_sym_BSLASHAutocite] = ACTIONS(4865), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), - [anon_sym_BSLASHvolcite] = ACTIONS(4865), - [anon_sym_BSLASHVolcite] = ACTIONS(4865), - [anon_sym_BSLASHpvolcite] = ACTIONS(4865), - [anon_sym_BSLASHPvolcite] = ACTIONS(4865), - [anon_sym_BSLASHfvolcite] = ACTIONS(4865), - [anon_sym_BSLASHftvolcite] = ACTIONS(4865), - [anon_sym_BSLASHsvolcite] = ACTIONS(4865), - [anon_sym_BSLASHSvolcite] = ACTIONS(4865), - [anon_sym_BSLASHtvolcite] = ACTIONS(4865), - [anon_sym_BSLASHTvolcite] = ACTIONS(4865), - [anon_sym_BSLASHavolcite] = ACTIONS(4865), - [anon_sym_BSLASHAvolcite] = ACTIONS(4865), - [anon_sym_BSLASHnotecite] = ACTIONS(4865), - [anon_sym_BSLASHNotecite] = ACTIONS(4865), - [anon_sym_BSLASHpnotecite] = ACTIONS(4865), - [anon_sym_BSLASHPnotecite] = ACTIONS(4865), - [anon_sym_BSLASHfnotecite] = ACTIONS(4865), - [anon_sym_BSLASHlabel] = ACTIONS(4865), - [anon_sym_BSLASHref] = ACTIONS(4865), - [anon_sym_BSLASHeqref] = ACTIONS(4865), - [anon_sym_BSLASHvref] = ACTIONS(4865), - [anon_sym_BSLASHVref] = ACTIONS(4865), - [anon_sym_BSLASHautoref] = ACTIONS(4865), - [anon_sym_BSLASHpageref] = ACTIONS(4865), - [anon_sym_BSLASHcref] = ACTIONS(4865), - [anon_sym_BSLASHCref] = ACTIONS(4865), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnameCref] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), - [anon_sym_BSLASHlabelcref] = ACTIONS(4865), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange] = ACTIONS(4865), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHCrefrange] = ACTIONS(4865), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), - [anon_sym_BSLASHnewlabel] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand] = ACTIONS(4865), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), - [anon_sym_BSLASHdef] = ACTIONS(4865), - [anon_sym_BSLASHlet] = ACTIONS(4865), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), - [anon_sym_BSLASHgls] = ACTIONS(4865), - [anon_sym_BSLASHGls] = ACTIONS(4865), - [anon_sym_BSLASHGLS] = ACTIONS(4865), - [anon_sym_BSLASHglspl] = ACTIONS(4865), - [anon_sym_BSLASHGlspl] = ACTIONS(4865), - [anon_sym_BSLASHGLSpl] = ACTIONS(4865), - [anon_sym_BSLASHglsdisp] = ACTIONS(4865), - [anon_sym_BSLASHglslink] = ACTIONS(4865), - [anon_sym_BSLASHglstext] = ACTIONS(4865), - [anon_sym_BSLASHGlstext] = ACTIONS(4865), - [anon_sym_BSLASHGLStext] = ACTIONS(4865), - [anon_sym_BSLASHglsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), - [anon_sym_BSLASHglsplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSplural] = ACTIONS(4865), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), - [anon_sym_BSLASHglsname] = ACTIONS(4865), - [anon_sym_BSLASHGlsname] = ACTIONS(4865), - [anon_sym_BSLASHGLSname] = ACTIONS(4865), - [anon_sym_BSLASHglssymbol] = ACTIONS(4865), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), - [anon_sym_BSLASHglsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), - [anon_sym_BSLASHglsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), - [anon_sym_BSLASHglsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), - [anon_sym_BSLASHglsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), - [anon_sym_BSLASHglsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), - [anon_sym_BSLASHnewacronym] = ACTIONS(4865), - [anon_sym_BSLASHacrshort] = ACTIONS(4865), - [anon_sym_BSLASHAcrshort] = ACTIONS(4865), - [anon_sym_BSLASHACRshort] = ACTIONS(4865), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), - [anon_sym_BSLASHacrlong] = ACTIONS(4865), - [anon_sym_BSLASHAcrlong] = ACTIONS(4865), - [anon_sym_BSLASHACRlong] = ACTIONS(4865), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), - [anon_sym_BSLASHacrfull] = ACTIONS(4865), - [anon_sym_BSLASHAcrfull] = ACTIONS(4865), - [anon_sym_BSLASHACRfull] = ACTIONS(4865), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), - [anon_sym_BSLASHacs] = ACTIONS(4865), - [anon_sym_BSLASHAcs] = ACTIONS(4865), - [anon_sym_BSLASHacsp] = ACTIONS(4865), - [anon_sym_BSLASHAcsp] = ACTIONS(4865), - [anon_sym_BSLASHacl] = ACTIONS(4865), - [anon_sym_BSLASHAcl] = ACTIONS(4865), - [anon_sym_BSLASHaclp] = ACTIONS(4865), - [anon_sym_BSLASHAclp] = ACTIONS(4865), - [anon_sym_BSLASHacf] = ACTIONS(4865), - [anon_sym_BSLASHAcf] = ACTIONS(4865), - [anon_sym_BSLASHacfp] = ACTIONS(4865), - [anon_sym_BSLASHAcfp] = ACTIONS(4865), - [anon_sym_BSLASHac] = ACTIONS(4865), - [anon_sym_BSLASHAc] = ACTIONS(4865), - [anon_sym_BSLASHacp] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), - [anon_sym_BSLASHcolor] = ACTIONS(4865), - [anon_sym_BSLASHcolorbox] = ACTIONS(4865), - [anon_sym_BSLASHtextcolor] = ACTIONS(4865), - [anon_sym_BSLASHpagecolor] = ACTIONS(4865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [sym_command_name] = ACTIONS(4944), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4944), + [anon_sym_BSLASHfi] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [sym_word] = ACTIONS(4944), + [sym_placeholder] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym__] = ACTIONS(4944), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [anon_sym_BSLASHusepackage] = ACTIONS(4944), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4944), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4944), + [anon_sym_BSLASHinclude] = ACTIONS(4944), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4944), + [anon_sym_BSLASHinput] = ACTIONS(4944), + [anon_sym_BSLASHsubfile] = ACTIONS(4944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4944), + [anon_sym_BSLASHbibliography] = ACTIONS(4944), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4944), + [anon_sym_BSLASHincludesvg] = ACTIONS(4944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4944), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4944), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4944), + [anon_sym_BSLASHimport] = ACTIONS(4944), + [anon_sym_BSLASHsubimport] = ACTIONS(4944), + [anon_sym_BSLASHinputfrom] = ACTIONS(4944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4944), + [anon_sym_BSLASHincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4944), + [anon_sym_BSLASHcaption] = ACTIONS(4944), + [anon_sym_BSLASHcite] = ACTIONS(4944), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCite] = ACTIONS(4944), + [anon_sym_BSLASHnocite] = ACTIONS(4944), + [anon_sym_BSLASHcitet] = ACTIONS(4944), + [anon_sym_BSLASHcitep] = ACTIONS(4944), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteauthor] = ACTIONS(4944), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4944), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitetitle] = ACTIONS(4944), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteyear] = ACTIONS(4944), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4942), + [anon_sym_BSLASHcitedate] = ACTIONS(4944), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4942), + [anon_sym_BSLASHciteurl] = ACTIONS(4944), + [anon_sym_BSLASHfullcite] = ACTIONS(4944), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4944), + [anon_sym_BSLASHcitealt] = ACTIONS(4944), + [anon_sym_BSLASHcitealp] = ACTIONS(4944), + [anon_sym_BSLASHcitetext] = ACTIONS(4944), + [anon_sym_BSLASHparencite] = ACTIONS(4944), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHParencite] = ACTIONS(4944), + [anon_sym_BSLASHfootcite] = ACTIONS(4944), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4944), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4944), + [anon_sym_BSLASHtextcite] = ACTIONS(4944), + [anon_sym_BSLASHTextcite] = ACTIONS(4944), + [anon_sym_BSLASHsmartcite] = ACTIONS(4944), + [anon_sym_BSLASHSmartcite] = ACTIONS(4944), + [anon_sym_BSLASHsupercite] = ACTIONS(4944), + [anon_sym_BSLASHautocite] = ACTIONS(4944), + [anon_sym_BSLASHAutocite] = ACTIONS(4944), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4942), + [anon_sym_BSLASHvolcite] = ACTIONS(4944), + [anon_sym_BSLASHVolcite] = ACTIONS(4944), + [anon_sym_BSLASHpvolcite] = ACTIONS(4944), + [anon_sym_BSLASHPvolcite] = ACTIONS(4944), + [anon_sym_BSLASHfvolcite] = ACTIONS(4944), + [anon_sym_BSLASHftvolcite] = ACTIONS(4944), + [anon_sym_BSLASHsvolcite] = ACTIONS(4944), + [anon_sym_BSLASHSvolcite] = ACTIONS(4944), + [anon_sym_BSLASHtvolcite] = ACTIONS(4944), + [anon_sym_BSLASHTvolcite] = ACTIONS(4944), + [anon_sym_BSLASHavolcite] = ACTIONS(4944), + [anon_sym_BSLASHAvolcite] = ACTIONS(4944), + [anon_sym_BSLASHnotecite] = ACTIONS(4944), + [anon_sym_BSLASHNotecite] = ACTIONS(4944), + [anon_sym_BSLASHpnotecite] = ACTIONS(4944), + [anon_sym_BSLASHPnotecite] = ACTIONS(4944), + [anon_sym_BSLASHfnotecite] = ACTIONS(4944), + [anon_sym_BSLASHlabel] = ACTIONS(4944), + [anon_sym_BSLASHref] = ACTIONS(4944), + [anon_sym_BSLASHeqref] = ACTIONS(4944), + [anon_sym_BSLASHvref] = ACTIONS(4944), + [anon_sym_BSLASHVref] = ACTIONS(4944), + [anon_sym_BSLASHautoref] = ACTIONS(4944), + [anon_sym_BSLASHpageref] = ACTIONS(4944), + [anon_sym_BSLASHcref] = ACTIONS(4944), + [anon_sym_BSLASHCref] = ACTIONS(4944), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnameCref] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4944), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4944), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4944), + [anon_sym_BSLASHlabelcref] = ACTIONS(4944), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange] = ACTIONS(4944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHCrefrange] = ACTIONS(4944), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4942), + [anon_sym_BSLASHnewlabel] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand] = ACTIONS(4944), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4944), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4944), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4942), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4944), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdef] = ACTIONS(4944), + [anon_sym_BSLASHlet] = ACTIONS(4944), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4944), + [anon_sym_BSLASHgls] = ACTIONS(4944), + [anon_sym_BSLASHGls] = ACTIONS(4944), + [anon_sym_BSLASHGLS] = ACTIONS(4944), + [anon_sym_BSLASHglspl] = ACTIONS(4944), + [anon_sym_BSLASHGlspl] = ACTIONS(4944), + [anon_sym_BSLASHGLSpl] = ACTIONS(4944), + [anon_sym_BSLASHglsdisp] = ACTIONS(4944), + [anon_sym_BSLASHglslink] = ACTIONS(4944), + [anon_sym_BSLASHglstext] = ACTIONS(4944), + [anon_sym_BSLASHGlstext] = ACTIONS(4944), + [anon_sym_BSLASHGLStext] = ACTIONS(4944), + [anon_sym_BSLASHglsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4944), + [anon_sym_BSLASHglsplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSplural] = ACTIONS(4944), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4944), + [anon_sym_BSLASHglsname] = ACTIONS(4944), + [anon_sym_BSLASHGlsname] = ACTIONS(4944), + [anon_sym_BSLASHGLSname] = ACTIONS(4944), + [anon_sym_BSLASHglssymbol] = ACTIONS(4944), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4944), + [anon_sym_BSLASHglsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4944), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4944), + [anon_sym_BSLASHglsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4944), + [anon_sym_BSLASHglsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4944), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4944), + [anon_sym_BSLASHglsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4944), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4944), + [anon_sym_BSLASHglsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4944), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4944), + [anon_sym_BSLASHnewacronym] = ACTIONS(4944), + [anon_sym_BSLASHacrshort] = ACTIONS(4944), + [anon_sym_BSLASHAcrshort] = ACTIONS(4944), + [anon_sym_BSLASHACRshort] = ACTIONS(4944), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4944), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4944), + [anon_sym_BSLASHacrlong] = ACTIONS(4944), + [anon_sym_BSLASHAcrlong] = ACTIONS(4944), + [anon_sym_BSLASHACRlong] = ACTIONS(4944), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4944), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4944), + [anon_sym_BSLASHacrfull] = ACTIONS(4944), + [anon_sym_BSLASHAcrfull] = ACTIONS(4944), + [anon_sym_BSLASHACRfull] = ACTIONS(4944), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4944), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4944), + [anon_sym_BSLASHacs] = ACTIONS(4944), + [anon_sym_BSLASHAcs] = ACTIONS(4944), + [anon_sym_BSLASHacsp] = ACTIONS(4944), + [anon_sym_BSLASHAcsp] = ACTIONS(4944), + [anon_sym_BSLASHacl] = ACTIONS(4944), + [anon_sym_BSLASHAcl] = ACTIONS(4944), + [anon_sym_BSLASHaclp] = ACTIONS(4944), + [anon_sym_BSLASHAclp] = ACTIONS(4944), + [anon_sym_BSLASHacf] = ACTIONS(4944), + [anon_sym_BSLASHAcf] = ACTIONS(4944), + [anon_sym_BSLASHacfp] = ACTIONS(4944), + [anon_sym_BSLASHAcfp] = ACTIONS(4944), + [anon_sym_BSLASHac] = ACTIONS(4944), + [anon_sym_BSLASHAc] = ACTIONS(4944), + [anon_sym_BSLASHacp] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4944), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4944), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4944), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4944), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4944), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4942), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4944), + [anon_sym_BSLASHcolor] = ACTIONS(4944), + [anon_sym_BSLASHcolorbox] = ACTIONS(4944), + [anon_sym_BSLASHtextcolor] = ACTIONS(4944), + [anon_sym_BSLASHpagecolor] = ACTIONS(4944), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4944), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4944), }, [1509] = { - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [sym_command_name] = ACTIONS(5100), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5098), + [sym_word] = ACTIONS(5100), + [sym_placeholder] = ACTIONS(5098), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym__] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5100), + [anon_sym_GT] = ACTIONS(5100), + [anon_sym_BANG] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_SQUOTE] = ACTIONS(5100), + [anon_sym_BSLASHusepackage] = ACTIONS(5100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5100), + [anon_sym_BSLASHinclude] = ACTIONS(5100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5100), + [anon_sym_BSLASHinput] = ACTIONS(5100), + [anon_sym_BSLASHsubfile] = ACTIONS(5100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5100), + [anon_sym_BSLASHbibliography] = ACTIONS(5100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5100), + [anon_sym_BSLASHincludesvg] = ACTIONS(5100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5100), + [anon_sym_BSLASHimport] = ACTIONS(5100), + [anon_sym_BSLASHsubimport] = ACTIONS(5100), + [anon_sym_BSLASHinputfrom] = ACTIONS(5100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5100), + [anon_sym_BSLASHincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5100), + [anon_sym_BSLASHcaption] = ACTIONS(5100), + [anon_sym_BSLASHcite] = ACTIONS(5100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCite] = ACTIONS(5100), + [anon_sym_BSLASHnocite] = ACTIONS(5100), + [anon_sym_BSLASHcitet] = ACTIONS(5100), + [anon_sym_BSLASHcitep] = ACTIONS(5100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteauthor] = ACTIONS(5100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitetitle] = ACTIONS(5100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteyear] = ACTIONS(5100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5098), + [anon_sym_BSLASHcitedate] = ACTIONS(5100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5098), + [anon_sym_BSLASHciteurl] = ACTIONS(5100), + [anon_sym_BSLASHfullcite] = ACTIONS(5100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5100), + [anon_sym_BSLASHcitealt] = ACTIONS(5100), + [anon_sym_BSLASHcitealp] = ACTIONS(5100), + [anon_sym_BSLASHcitetext] = ACTIONS(5100), + [anon_sym_BSLASHparencite] = ACTIONS(5100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHParencite] = ACTIONS(5100), + [anon_sym_BSLASHfootcite] = ACTIONS(5100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5100), + [anon_sym_BSLASHtextcite] = ACTIONS(5100), + [anon_sym_BSLASHTextcite] = ACTIONS(5100), + [anon_sym_BSLASHsmartcite] = ACTIONS(5100), + [anon_sym_BSLASHSmartcite] = ACTIONS(5100), + [anon_sym_BSLASHsupercite] = ACTIONS(5100), + [anon_sym_BSLASHautocite] = ACTIONS(5100), + [anon_sym_BSLASHAutocite] = ACTIONS(5100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5098), + [anon_sym_BSLASHvolcite] = ACTIONS(5100), + [anon_sym_BSLASHVolcite] = ACTIONS(5100), + [anon_sym_BSLASHpvolcite] = ACTIONS(5100), + [anon_sym_BSLASHPvolcite] = ACTIONS(5100), + [anon_sym_BSLASHfvolcite] = ACTIONS(5100), + [anon_sym_BSLASHftvolcite] = ACTIONS(5100), + [anon_sym_BSLASHsvolcite] = ACTIONS(5100), + [anon_sym_BSLASHSvolcite] = ACTIONS(5100), + [anon_sym_BSLASHtvolcite] = ACTIONS(5100), + [anon_sym_BSLASHTvolcite] = ACTIONS(5100), + [anon_sym_BSLASHavolcite] = ACTIONS(5100), + [anon_sym_BSLASHAvolcite] = ACTIONS(5100), + [anon_sym_BSLASHnotecite] = ACTIONS(5100), + [anon_sym_BSLASHNotecite] = ACTIONS(5100), + [anon_sym_BSLASHpnotecite] = ACTIONS(5100), + [anon_sym_BSLASHPnotecite] = ACTIONS(5100), + [anon_sym_BSLASHfnotecite] = ACTIONS(5100), + [anon_sym_BSLASHlabel] = ACTIONS(5100), + [anon_sym_BSLASHref] = ACTIONS(5100), + [anon_sym_BSLASHeqref] = ACTIONS(5100), + [anon_sym_BSLASHvref] = ACTIONS(5100), + [anon_sym_BSLASHVref] = ACTIONS(5100), + [anon_sym_BSLASHautoref] = ACTIONS(5100), + [anon_sym_BSLASHpageref] = ACTIONS(5100), + [anon_sym_BSLASHcref] = ACTIONS(5100), + [anon_sym_BSLASHCref] = ACTIONS(5100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnameCref] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5100), + [anon_sym_BSLASHlabelcref] = ACTIONS(5100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange] = ACTIONS(5100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHCrefrange] = ACTIONS(5100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5098), + [anon_sym_BSLASHnewlabel] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand] = ACTIONS(5100), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5100), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5100), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5098), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdef] = ACTIONS(5100), + [anon_sym_BSLASHlet] = ACTIONS(5100), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5100), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5100), + [anon_sym_BSLASHgls] = ACTIONS(5100), + [anon_sym_BSLASHGls] = ACTIONS(5100), + [anon_sym_BSLASHGLS] = ACTIONS(5100), + [anon_sym_BSLASHglspl] = ACTIONS(5100), + [anon_sym_BSLASHGlspl] = ACTIONS(5100), + [anon_sym_BSLASHGLSpl] = ACTIONS(5100), + [anon_sym_BSLASHglsdisp] = ACTIONS(5100), + [anon_sym_BSLASHglslink] = ACTIONS(5100), + [anon_sym_BSLASHglstext] = ACTIONS(5100), + [anon_sym_BSLASHGlstext] = ACTIONS(5100), + [anon_sym_BSLASHGLStext] = ACTIONS(5100), + [anon_sym_BSLASHglsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5100), + [anon_sym_BSLASHglsplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSplural] = ACTIONS(5100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5100), + [anon_sym_BSLASHglsname] = ACTIONS(5100), + [anon_sym_BSLASHGlsname] = ACTIONS(5100), + [anon_sym_BSLASHGLSname] = ACTIONS(5100), + [anon_sym_BSLASHglssymbol] = ACTIONS(5100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5100), + [anon_sym_BSLASHglsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5100), + [anon_sym_BSLASHglsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5100), + [anon_sym_BSLASHglsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5100), + [anon_sym_BSLASHglsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5100), + [anon_sym_BSLASHglsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5100), + [anon_sym_BSLASHnewacronym] = ACTIONS(5100), + [anon_sym_BSLASHacrshort] = ACTIONS(5100), + [anon_sym_BSLASHAcrshort] = ACTIONS(5100), + [anon_sym_BSLASHACRshort] = ACTIONS(5100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5100), + [anon_sym_BSLASHacrlong] = ACTIONS(5100), + [anon_sym_BSLASHAcrlong] = ACTIONS(5100), + [anon_sym_BSLASHACRlong] = ACTIONS(5100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5100), + [anon_sym_BSLASHacrfull] = ACTIONS(5100), + [anon_sym_BSLASHAcrfull] = ACTIONS(5100), + [anon_sym_BSLASHACRfull] = ACTIONS(5100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5100), + [anon_sym_BSLASHacs] = ACTIONS(5100), + [anon_sym_BSLASHAcs] = ACTIONS(5100), + [anon_sym_BSLASHacsp] = ACTIONS(5100), + [anon_sym_BSLASHAcsp] = ACTIONS(5100), + [anon_sym_BSLASHacl] = ACTIONS(5100), + [anon_sym_BSLASHAcl] = ACTIONS(5100), + [anon_sym_BSLASHaclp] = ACTIONS(5100), + [anon_sym_BSLASHAclp] = ACTIONS(5100), + [anon_sym_BSLASHacf] = ACTIONS(5100), + [anon_sym_BSLASHAcf] = ACTIONS(5100), + [anon_sym_BSLASHacfp] = ACTIONS(5100), + [anon_sym_BSLASHAcfp] = ACTIONS(5100), + [anon_sym_BSLASHac] = ACTIONS(5100), + [anon_sym_BSLASHAc] = ACTIONS(5100), + [anon_sym_BSLASHacp] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5100), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5100), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5098), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5100), + [anon_sym_BSLASHcolor] = ACTIONS(5100), + [anon_sym_BSLASHcolorbox] = ACTIONS(5100), + [anon_sym_BSLASHtextcolor] = ACTIONS(5100), + [anon_sym_BSLASHpagecolor] = ACTIONS(5100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5100), }, [1510] = { - [sym_command_name] = ACTIONS(5181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5181), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [sym_word] = ACTIONS(5181), - [sym_placeholder] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym__] = ACTIONS(5181), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_PIPE] = ACTIONS(5181), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5181), - [anon_sym_BSLASHusepackage] = ACTIONS(5181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), - [anon_sym_BSLASHinclude] = ACTIONS(5181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), - [anon_sym_BSLASHinput] = ACTIONS(5181), - [anon_sym_BSLASHsubfile] = ACTIONS(5181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), - [anon_sym_BSLASHbibliography] = ACTIONS(5181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), - [anon_sym_BSLASHincludesvg] = ACTIONS(5181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), - [anon_sym_BSLASHimport] = ACTIONS(5181), - [anon_sym_BSLASHsubimport] = ACTIONS(5181), - [anon_sym_BSLASHinputfrom] = ACTIONS(5181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), - [anon_sym_BSLASHincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), - [anon_sym_BSLASHcaption] = ACTIONS(5181), - [anon_sym_BSLASHcite] = ACTIONS(5181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCite] = ACTIONS(5181), - [anon_sym_BSLASHnocite] = ACTIONS(5181), - [anon_sym_BSLASHcitet] = ACTIONS(5181), - [anon_sym_BSLASHcitep] = ACTIONS(5181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor] = ACTIONS(5181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle] = ACTIONS(5181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteyear] = ACTIONS(5181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), - [anon_sym_BSLASHcitedate] = ACTIONS(5181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), - [anon_sym_BSLASHciteurl] = ACTIONS(5181), - [anon_sym_BSLASHfullcite] = ACTIONS(5181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), - [anon_sym_BSLASHcitealt] = ACTIONS(5181), - [anon_sym_BSLASHcitealp] = ACTIONS(5181), - [anon_sym_BSLASHcitetext] = ACTIONS(5181), - [anon_sym_BSLASHparencite] = ACTIONS(5181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHParencite] = ACTIONS(5181), - [anon_sym_BSLASHfootcite] = ACTIONS(5181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), - [anon_sym_BSLASHtextcite] = ACTIONS(5181), - [anon_sym_BSLASHTextcite] = ACTIONS(5181), - [anon_sym_BSLASHsmartcite] = ACTIONS(5181), - [anon_sym_BSLASHSmartcite] = ACTIONS(5181), - [anon_sym_BSLASHsupercite] = ACTIONS(5181), - [anon_sym_BSLASHautocite] = ACTIONS(5181), - [anon_sym_BSLASHAutocite] = ACTIONS(5181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), - [anon_sym_BSLASHvolcite] = ACTIONS(5181), - [anon_sym_BSLASHVolcite] = ACTIONS(5181), - [anon_sym_BSLASHpvolcite] = ACTIONS(5181), - [anon_sym_BSLASHPvolcite] = ACTIONS(5181), - [anon_sym_BSLASHfvolcite] = ACTIONS(5181), - [anon_sym_BSLASHftvolcite] = ACTIONS(5181), - [anon_sym_BSLASHsvolcite] = ACTIONS(5181), - [anon_sym_BSLASHSvolcite] = ACTIONS(5181), - [anon_sym_BSLASHtvolcite] = ACTIONS(5181), - [anon_sym_BSLASHTvolcite] = ACTIONS(5181), - [anon_sym_BSLASHavolcite] = ACTIONS(5181), - [anon_sym_BSLASHAvolcite] = ACTIONS(5181), - [anon_sym_BSLASHnotecite] = ACTIONS(5181), - [anon_sym_BSLASHNotecite] = ACTIONS(5181), - [anon_sym_BSLASHpnotecite] = ACTIONS(5181), - [anon_sym_BSLASHPnotecite] = ACTIONS(5181), - [anon_sym_BSLASHfnotecite] = ACTIONS(5181), - [anon_sym_BSLASHlabel] = ACTIONS(5181), - [anon_sym_BSLASHref] = ACTIONS(5181), - [anon_sym_BSLASHeqref] = ACTIONS(5181), - [anon_sym_BSLASHvref] = ACTIONS(5181), - [anon_sym_BSLASHVref] = ACTIONS(5181), - [anon_sym_BSLASHautoref] = ACTIONS(5181), - [anon_sym_BSLASHpageref] = ACTIONS(5181), - [anon_sym_BSLASHcref] = ACTIONS(5181), - [anon_sym_BSLASHCref] = ACTIONS(5181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnameCref] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), - [anon_sym_BSLASHlabelcref] = ACTIONS(5181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange] = ACTIONS(5181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange] = ACTIONS(5181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), - [anon_sym_BSLASHnewlabel] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand] = ACTIONS(5181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), - [anon_sym_BSLASHdef] = ACTIONS(5181), - [anon_sym_BSLASHlet] = ACTIONS(5181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), - [anon_sym_BSLASHgls] = ACTIONS(5181), - [anon_sym_BSLASHGls] = ACTIONS(5181), - [anon_sym_BSLASHGLS] = ACTIONS(5181), - [anon_sym_BSLASHglspl] = ACTIONS(5181), - [anon_sym_BSLASHGlspl] = ACTIONS(5181), - [anon_sym_BSLASHGLSpl] = ACTIONS(5181), - [anon_sym_BSLASHglsdisp] = ACTIONS(5181), - [anon_sym_BSLASHglslink] = ACTIONS(5181), - [anon_sym_BSLASHglstext] = ACTIONS(5181), - [anon_sym_BSLASHGlstext] = ACTIONS(5181), - [anon_sym_BSLASHGLStext] = ACTIONS(5181), - [anon_sym_BSLASHglsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), - [anon_sym_BSLASHglsplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSplural] = ACTIONS(5181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), - [anon_sym_BSLASHglsname] = ACTIONS(5181), - [anon_sym_BSLASHGlsname] = ACTIONS(5181), - [anon_sym_BSLASHGLSname] = ACTIONS(5181), - [anon_sym_BSLASHglssymbol] = ACTIONS(5181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), - [anon_sym_BSLASHglsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), - [anon_sym_BSLASHglsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), - [anon_sym_BSLASHglsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), - [anon_sym_BSLASHglsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), - [anon_sym_BSLASHglsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), - [anon_sym_BSLASHnewacronym] = ACTIONS(5181), - [anon_sym_BSLASHacrshort] = ACTIONS(5181), - [anon_sym_BSLASHAcrshort] = ACTIONS(5181), - [anon_sym_BSLASHACRshort] = ACTIONS(5181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), - [anon_sym_BSLASHacrlong] = ACTIONS(5181), - [anon_sym_BSLASHAcrlong] = ACTIONS(5181), - [anon_sym_BSLASHACRlong] = ACTIONS(5181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), - [anon_sym_BSLASHacrfull] = ACTIONS(5181), - [anon_sym_BSLASHAcrfull] = ACTIONS(5181), - [anon_sym_BSLASHACRfull] = ACTIONS(5181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), - [anon_sym_BSLASHacs] = ACTIONS(5181), - [anon_sym_BSLASHAcs] = ACTIONS(5181), - [anon_sym_BSLASHacsp] = ACTIONS(5181), - [anon_sym_BSLASHAcsp] = ACTIONS(5181), - [anon_sym_BSLASHacl] = ACTIONS(5181), - [anon_sym_BSLASHAcl] = ACTIONS(5181), - [anon_sym_BSLASHaclp] = ACTIONS(5181), - [anon_sym_BSLASHAclp] = ACTIONS(5181), - [anon_sym_BSLASHacf] = ACTIONS(5181), - [anon_sym_BSLASHAcf] = ACTIONS(5181), - [anon_sym_BSLASHacfp] = ACTIONS(5181), - [anon_sym_BSLASHAcfp] = ACTIONS(5181), - [anon_sym_BSLASHac] = ACTIONS(5181), - [anon_sym_BSLASHAc] = ACTIONS(5181), - [anon_sym_BSLASHacp] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), - [anon_sym_BSLASHcolor] = ACTIONS(5181), - [anon_sym_BSLASHcolorbox] = ACTIONS(5181), - [anon_sym_BSLASHtextcolor] = ACTIONS(5181), - [anon_sym_BSLASHpagecolor] = ACTIONS(5181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [sym_command_name] = ACTIONS(5260), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5260), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [sym_word] = ACTIONS(5260), + [sym_placeholder] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym__] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_BSLASHusepackage] = ACTIONS(5260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5260), + [anon_sym_BSLASHinclude] = ACTIONS(5260), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5260), + [anon_sym_BSLASHinput] = ACTIONS(5260), + [anon_sym_BSLASHsubfile] = ACTIONS(5260), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5260), + [anon_sym_BSLASHbibliography] = ACTIONS(5260), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5260), + [anon_sym_BSLASHincludesvg] = ACTIONS(5260), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5260), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5260), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5260), + [anon_sym_BSLASHimport] = ACTIONS(5260), + [anon_sym_BSLASHsubimport] = ACTIONS(5260), + [anon_sym_BSLASHinputfrom] = ACTIONS(5260), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5260), + [anon_sym_BSLASHincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5260), + [anon_sym_BSLASHcaption] = ACTIONS(5260), + [anon_sym_BSLASHcite] = ACTIONS(5260), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCite] = ACTIONS(5260), + [anon_sym_BSLASHnocite] = ACTIONS(5260), + [anon_sym_BSLASHcitet] = ACTIONS(5260), + [anon_sym_BSLASHcitep] = ACTIONS(5260), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteauthor] = ACTIONS(5260), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5260), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitetitle] = ACTIONS(5260), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteyear] = ACTIONS(5260), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5258), + [anon_sym_BSLASHcitedate] = ACTIONS(5260), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5258), + [anon_sym_BSLASHciteurl] = ACTIONS(5260), + [anon_sym_BSLASHfullcite] = ACTIONS(5260), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5260), + [anon_sym_BSLASHcitealt] = ACTIONS(5260), + [anon_sym_BSLASHcitealp] = ACTIONS(5260), + [anon_sym_BSLASHcitetext] = ACTIONS(5260), + [anon_sym_BSLASHparencite] = ACTIONS(5260), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHParencite] = ACTIONS(5260), + [anon_sym_BSLASHfootcite] = ACTIONS(5260), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5260), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5260), + [anon_sym_BSLASHtextcite] = ACTIONS(5260), + [anon_sym_BSLASHTextcite] = ACTIONS(5260), + [anon_sym_BSLASHsmartcite] = ACTIONS(5260), + [anon_sym_BSLASHSmartcite] = ACTIONS(5260), + [anon_sym_BSLASHsupercite] = ACTIONS(5260), + [anon_sym_BSLASHautocite] = ACTIONS(5260), + [anon_sym_BSLASHAutocite] = ACTIONS(5260), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5258), + [anon_sym_BSLASHvolcite] = ACTIONS(5260), + [anon_sym_BSLASHVolcite] = ACTIONS(5260), + [anon_sym_BSLASHpvolcite] = ACTIONS(5260), + [anon_sym_BSLASHPvolcite] = ACTIONS(5260), + [anon_sym_BSLASHfvolcite] = ACTIONS(5260), + [anon_sym_BSLASHftvolcite] = ACTIONS(5260), + [anon_sym_BSLASHsvolcite] = ACTIONS(5260), + [anon_sym_BSLASHSvolcite] = ACTIONS(5260), + [anon_sym_BSLASHtvolcite] = ACTIONS(5260), + [anon_sym_BSLASHTvolcite] = ACTIONS(5260), + [anon_sym_BSLASHavolcite] = ACTIONS(5260), + [anon_sym_BSLASHAvolcite] = ACTIONS(5260), + [anon_sym_BSLASHnotecite] = ACTIONS(5260), + [anon_sym_BSLASHNotecite] = ACTIONS(5260), + [anon_sym_BSLASHpnotecite] = ACTIONS(5260), + [anon_sym_BSLASHPnotecite] = ACTIONS(5260), + [anon_sym_BSLASHfnotecite] = ACTIONS(5260), + [anon_sym_BSLASHlabel] = ACTIONS(5260), + [anon_sym_BSLASHref] = ACTIONS(5260), + [anon_sym_BSLASHeqref] = ACTIONS(5260), + [anon_sym_BSLASHvref] = ACTIONS(5260), + [anon_sym_BSLASHVref] = ACTIONS(5260), + [anon_sym_BSLASHautoref] = ACTIONS(5260), + [anon_sym_BSLASHpageref] = ACTIONS(5260), + [anon_sym_BSLASHcref] = ACTIONS(5260), + [anon_sym_BSLASHCref] = ACTIONS(5260), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnameCref] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5260), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5260), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5260), + [anon_sym_BSLASHlabelcref] = ACTIONS(5260), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange] = ACTIONS(5260), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHCrefrange] = ACTIONS(5260), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5258), + [anon_sym_BSLASHnewlabel] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand] = ACTIONS(5260), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5260), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5260), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5258), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5260), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdef] = ACTIONS(5260), + [anon_sym_BSLASHlet] = ACTIONS(5260), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5260), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5260), + [anon_sym_BSLASHgls] = ACTIONS(5260), + [anon_sym_BSLASHGls] = ACTIONS(5260), + [anon_sym_BSLASHGLS] = ACTIONS(5260), + [anon_sym_BSLASHglspl] = ACTIONS(5260), + [anon_sym_BSLASHGlspl] = ACTIONS(5260), + [anon_sym_BSLASHGLSpl] = ACTIONS(5260), + [anon_sym_BSLASHglsdisp] = ACTIONS(5260), + [anon_sym_BSLASHglslink] = ACTIONS(5260), + [anon_sym_BSLASHglstext] = ACTIONS(5260), + [anon_sym_BSLASHGlstext] = ACTIONS(5260), + [anon_sym_BSLASHGLStext] = ACTIONS(5260), + [anon_sym_BSLASHglsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5260), + [anon_sym_BSLASHglsplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSplural] = ACTIONS(5260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5260), + [anon_sym_BSLASHglsname] = ACTIONS(5260), + [anon_sym_BSLASHGlsname] = ACTIONS(5260), + [anon_sym_BSLASHGLSname] = ACTIONS(5260), + [anon_sym_BSLASHglssymbol] = ACTIONS(5260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5260), + [anon_sym_BSLASHglsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5260), + [anon_sym_BSLASHglsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5260), + [anon_sym_BSLASHglsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5260), + [anon_sym_BSLASHglsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5260), + [anon_sym_BSLASHglsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5260), + [anon_sym_BSLASHnewacronym] = ACTIONS(5260), + [anon_sym_BSLASHacrshort] = ACTIONS(5260), + [anon_sym_BSLASHAcrshort] = ACTIONS(5260), + [anon_sym_BSLASHACRshort] = ACTIONS(5260), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5260), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5260), + [anon_sym_BSLASHacrlong] = ACTIONS(5260), + [anon_sym_BSLASHAcrlong] = ACTIONS(5260), + [anon_sym_BSLASHACRlong] = ACTIONS(5260), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5260), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5260), + [anon_sym_BSLASHacrfull] = ACTIONS(5260), + [anon_sym_BSLASHAcrfull] = ACTIONS(5260), + [anon_sym_BSLASHACRfull] = ACTIONS(5260), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5260), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5260), + [anon_sym_BSLASHacs] = ACTIONS(5260), + [anon_sym_BSLASHAcs] = ACTIONS(5260), + [anon_sym_BSLASHacsp] = ACTIONS(5260), + [anon_sym_BSLASHAcsp] = ACTIONS(5260), + [anon_sym_BSLASHacl] = ACTIONS(5260), + [anon_sym_BSLASHAcl] = ACTIONS(5260), + [anon_sym_BSLASHaclp] = ACTIONS(5260), + [anon_sym_BSLASHAclp] = ACTIONS(5260), + [anon_sym_BSLASHacf] = ACTIONS(5260), + [anon_sym_BSLASHAcf] = ACTIONS(5260), + [anon_sym_BSLASHacfp] = ACTIONS(5260), + [anon_sym_BSLASHAcfp] = ACTIONS(5260), + [anon_sym_BSLASHac] = ACTIONS(5260), + [anon_sym_BSLASHAc] = ACTIONS(5260), + [anon_sym_BSLASHacp] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5260), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5260), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5260), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5260), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5260), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5258), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5260), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5260), + [anon_sym_BSLASHcolor] = ACTIONS(5260), + [anon_sym_BSLASHcolorbox] = ACTIONS(5260), + [anon_sym_BSLASHtextcolor] = ACTIONS(5260), + [anon_sym_BSLASHpagecolor] = ACTIONS(5260), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5260), }, [1511] = { - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [sym_command_name] = ACTIONS(5008), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_COMMA] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_RBRACE] = ACTIONS(5006), + [sym_word] = ACTIONS(5008), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym__] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_SQUOTE] = ACTIONS(5008), + [anon_sym_BSLASHusepackage] = ACTIONS(5008), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5008), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), + [anon_sym_BSLASHinclude] = ACTIONS(5008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5008), + [anon_sym_BSLASHinput] = ACTIONS(5008), + [anon_sym_BSLASHsubfile] = ACTIONS(5008), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5008), + [anon_sym_BSLASHbibliography] = ACTIONS(5008), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5008), + [anon_sym_BSLASHincludesvg] = ACTIONS(5008), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5008), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5008), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5008), + [anon_sym_BSLASHimport] = ACTIONS(5008), + [anon_sym_BSLASHsubimport] = ACTIONS(5008), + [anon_sym_BSLASHinputfrom] = ACTIONS(5008), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5008), + [anon_sym_BSLASHincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5008), + [anon_sym_BSLASHcaption] = ACTIONS(5008), + [anon_sym_BSLASHcite] = ACTIONS(5008), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCite] = ACTIONS(5008), + [anon_sym_BSLASHnocite] = ACTIONS(5008), + [anon_sym_BSLASHcitet] = ACTIONS(5008), + [anon_sym_BSLASHcitep] = ACTIONS(5008), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteauthor] = ACTIONS(5008), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5008), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitetitle] = ACTIONS(5008), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteyear] = ACTIONS(5008), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5006), + [anon_sym_BSLASHcitedate] = ACTIONS(5008), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5006), + [anon_sym_BSLASHciteurl] = ACTIONS(5008), + [anon_sym_BSLASHfullcite] = ACTIONS(5008), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5008), + [anon_sym_BSLASHcitealt] = ACTIONS(5008), + [anon_sym_BSLASHcitealp] = ACTIONS(5008), + [anon_sym_BSLASHcitetext] = ACTIONS(5008), + [anon_sym_BSLASHparencite] = ACTIONS(5008), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHParencite] = ACTIONS(5008), + [anon_sym_BSLASHfootcite] = ACTIONS(5008), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5008), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5008), + [anon_sym_BSLASHtextcite] = ACTIONS(5008), + [anon_sym_BSLASHTextcite] = ACTIONS(5008), + [anon_sym_BSLASHsmartcite] = ACTIONS(5008), + [anon_sym_BSLASHSmartcite] = ACTIONS(5008), + [anon_sym_BSLASHsupercite] = ACTIONS(5008), + [anon_sym_BSLASHautocite] = ACTIONS(5008), + [anon_sym_BSLASHAutocite] = ACTIONS(5008), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5006), + [anon_sym_BSLASHvolcite] = ACTIONS(5008), + [anon_sym_BSLASHVolcite] = ACTIONS(5008), + [anon_sym_BSLASHpvolcite] = ACTIONS(5008), + [anon_sym_BSLASHPvolcite] = ACTIONS(5008), + [anon_sym_BSLASHfvolcite] = ACTIONS(5008), + [anon_sym_BSLASHftvolcite] = ACTIONS(5008), + [anon_sym_BSLASHsvolcite] = ACTIONS(5008), + [anon_sym_BSLASHSvolcite] = ACTIONS(5008), + [anon_sym_BSLASHtvolcite] = ACTIONS(5008), + [anon_sym_BSLASHTvolcite] = ACTIONS(5008), + [anon_sym_BSLASHavolcite] = ACTIONS(5008), + [anon_sym_BSLASHAvolcite] = ACTIONS(5008), + [anon_sym_BSLASHnotecite] = ACTIONS(5008), + [anon_sym_BSLASHNotecite] = ACTIONS(5008), + [anon_sym_BSLASHpnotecite] = ACTIONS(5008), + [anon_sym_BSLASHPnotecite] = ACTIONS(5008), + [anon_sym_BSLASHfnotecite] = ACTIONS(5008), + [anon_sym_BSLASHlabel] = ACTIONS(5008), + [anon_sym_BSLASHref] = ACTIONS(5008), + [anon_sym_BSLASHeqref] = ACTIONS(5008), + [anon_sym_BSLASHvref] = ACTIONS(5008), + [anon_sym_BSLASHVref] = ACTIONS(5008), + [anon_sym_BSLASHautoref] = ACTIONS(5008), + [anon_sym_BSLASHpageref] = ACTIONS(5008), + [anon_sym_BSLASHcref] = ACTIONS(5008), + [anon_sym_BSLASHCref] = ACTIONS(5008), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnameCref] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5008), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5008), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5008), + [anon_sym_BSLASHlabelcref] = ACTIONS(5008), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange] = ACTIONS(5008), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHCrefrange] = ACTIONS(5008), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5006), + [anon_sym_BSLASHnewlabel] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand] = ACTIONS(5008), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5008), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5008), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5006), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5008), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdef] = ACTIONS(5008), + [anon_sym_BSLASHlet] = ACTIONS(5008), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5008), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5008), + [anon_sym_BSLASHgls] = ACTIONS(5008), + [anon_sym_BSLASHGls] = ACTIONS(5008), + [anon_sym_BSLASHGLS] = ACTIONS(5008), + [anon_sym_BSLASHglspl] = ACTIONS(5008), + [anon_sym_BSLASHGlspl] = ACTIONS(5008), + [anon_sym_BSLASHGLSpl] = ACTIONS(5008), + [anon_sym_BSLASHglsdisp] = ACTIONS(5008), + [anon_sym_BSLASHglslink] = ACTIONS(5008), + [anon_sym_BSLASHglstext] = ACTIONS(5008), + [anon_sym_BSLASHGlstext] = ACTIONS(5008), + [anon_sym_BSLASHGLStext] = ACTIONS(5008), + [anon_sym_BSLASHglsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5008), + [anon_sym_BSLASHglsplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSplural] = ACTIONS(5008), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5008), + [anon_sym_BSLASHglsname] = ACTIONS(5008), + [anon_sym_BSLASHGlsname] = ACTIONS(5008), + [anon_sym_BSLASHGLSname] = ACTIONS(5008), + [anon_sym_BSLASHglssymbol] = ACTIONS(5008), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5008), + [anon_sym_BSLASHglsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5008), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5008), + [anon_sym_BSLASHglsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5008), + [anon_sym_BSLASHglsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5008), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5008), + [anon_sym_BSLASHglsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5008), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5008), + [anon_sym_BSLASHglsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5008), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5008), + [anon_sym_BSLASHnewacronym] = ACTIONS(5008), + [anon_sym_BSLASHacrshort] = ACTIONS(5008), + [anon_sym_BSLASHAcrshort] = ACTIONS(5008), + [anon_sym_BSLASHACRshort] = ACTIONS(5008), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5008), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5008), + [anon_sym_BSLASHacrlong] = ACTIONS(5008), + [anon_sym_BSLASHAcrlong] = ACTIONS(5008), + [anon_sym_BSLASHACRlong] = ACTIONS(5008), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5008), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5008), + [anon_sym_BSLASHacrfull] = ACTIONS(5008), + [anon_sym_BSLASHAcrfull] = ACTIONS(5008), + [anon_sym_BSLASHACRfull] = ACTIONS(5008), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5008), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5008), + [anon_sym_BSLASHacs] = ACTIONS(5008), + [anon_sym_BSLASHAcs] = ACTIONS(5008), + [anon_sym_BSLASHacsp] = ACTIONS(5008), + [anon_sym_BSLASHAcsp] = ACTIONS(5008), + [anon_sym_BSLASHacl] = ACTIONS(5008), + [anon_sym_BSLASHAcl] = ACTIONS(5008), + [anon_sym_BSLASHaclp] = ACTIONS(5008), + [anon_sym_BSLASHAclp] = ACTIONS(5008), + [anon_sym_BSLASHacf] = ACTIONS(5008), + [anon_sym_BSLASHAcf] = ACTIONS(5008), + [anon_sym_BSLASHacfp] = ACTIONS(5008), + [anon_sym_BSLASHAcfp] = ACTIONS(5008), + [anon_sym_BSLASHac] = ACTIONS(5008), + [anon_sym_BSLASHAc] = ACTIONS(5008), + [anon_sym_BSLASHacp] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5008), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5008), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5008), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5008), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5008), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5006), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5008), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5008), + [anon_sym_BSLASHcolor] = ACTIONS(5008), + [anon_sym_BSLASHcolorbox] = ACTIONS(5008), + [anon_sym_BSLASHtextcolor] = ACTIONS(5008), + [anon_sym_BSLASHpagecolor] = ACTIONS(5008), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5008), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5008), }, [1512] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = 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_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_BSLASHdeclaretheorem] = ACTIONS(5139), - [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), + [sym_command_name] = ACTIONS(5218), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5216), + [anon_sym_COMMA] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_RBRACE] = ACTIONS(5216), + [sym_word] = ACTIONS(5218), + [sym_placeholder] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym__] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5218), + [anon_sym_GT] = ACTIONS(5218), + [anon_sym_BANG] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_SQUOTE] = ACTIONS(5218), + [anon_sym_BSLASHusepackage] = ACTIONS(5218), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5218), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5218), + [anon_sym_BSLASHinclude] = ACTIONS(5218), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5218), + [anon_sym_BSLASHinput] = ACTIONS(5218), + [anon_sym_BSLASHsubfile] = ACTIONS(5218), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5218), + [anon_sym_BSLASHbibliography] = ACTIONS(5218), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5218), + [anon_sym_BSLASHincludesvg] = ACTIONS(5218), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5218), + [anon_sym_BSLASHimport] = ACTIONS(5218), + [anon_sym_BSLASHsubimport] = ACTIONS(5218), + [anon_sym_BSLASHinputfrom] = ACTIONS(5218), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5218), + [anon_sym_BSLASHincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5218), + [anon_sym_BSLASHcaption] = ACTIONS(5218), + [anon_sym_BSLASHcite] = ACTIONS(5218), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCite] = ACTIONS(5218), + [anon_sym_BSLASHnocite] = ACTIONS(5218), + [anon_sym_BSLASHcitet] = ACTIONS(5218), + [anon_sym_BSLASHcitep] = ACTIONS(5218), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteauthor] = ACTIONS(5218), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5218), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitetitle] = ACTIONS(5218), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteyear] = ACTIONS(5218), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5216), + [anon_sym_BSLASHcitedate] = ACTIONS(5218), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5216), + [anon_sym_BSLASHciteurl] = ACTIONS(5218), + [anon_sym_BSLASHfullcite] = ACTIONS(5218), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5218), + [anon_sym_BSLASHcitealt] = ACTIONS(5218), + [anon_sym_BSLASHcitealp] = ACTIONS(5218), + [anon_sym_BSLASHcitetext] = ACTIONS(5218), + [anon_sym_BSLASHparencite] = ACTIONS(5218), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHParencite] = ACTIONS(5218), + [anon_sym_BSLASHfootcite] = ACTIONS(5218), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5218), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5218), + [anon_sym_BSLASHtextcite] = ACTIONS(5218), + [anon_sym_BSLASHTextcite] = ACTIONS(5218), + [anon_sym_BSLASHsmartcite] = ACTIONS(5218), + [anon_sym_BSLASHSmartcite] = ACTIONS(5218), + [anon_sym_BSLASHsupercite] = ACTIONS(5218), + [anon_sym_BSLASHautocite] = ACTIONS(5218), + [anon_sym_BSLASHAutocite] = ACTIONS(5218), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5216), + [anon_sym_BSLASHvolcite] = ACTIONS(5218), + [anon_sym_BSLASHVolcite] = ACTIONS(5218), + [anon_sym_BSLASHpvolcite] = ACTIONS(5218), + [anon_sym_BSLASHPvolcite] = ACTIONS(5218), + [anon_sym_BSLASHfvolcite] = ACTIONS(5218), + [anon_sym_BSLASHftvolcite] = ACTIONS(5218), + [anon_sym_BSLASHsvolcite] = ACTIONS(5218), + [anon_sym_BSLASHSvolcite] = ACTIONS(5218), + [anon_sym_BSLASHtvolcite] = ACTIONS(5218), + [anon_sym_BSLASHTvolcite] = ACTIONS(5218), + [anon_sym_BSLASHavolcite] = ACTIONS(5218), + [anon_sym_BSLASHAvolcite] = ACTIONS(5218), + [anon_sym_BSLASHnotecite] = ACTIONS(5218), + [anon_sym_BSLASHNotecite] = ACTIONS(5218), + [anon_sym_BSLASHpnotecite] = ACTIONS(5218), + [anon_sym_BSLASHPnotecite] = ACTIONS(5218), + [anon_sym_BSLASHfnotecite] = ACTIONS(5218), + [anon_sym_BSLASHlabel] = ACTIONS(5218), + [anon_sym_BSLASHref] = ACTIONS(5218), + [anon_sym_BSLASHeqref] = ACTIONS(5218), + [anon_sym_BSLASHvref] = ACTIONS(5218), + [anon_sym_BSLASHVref] = ACTIONS(5218), + [anon_sym_BSLASHautoref] = ACTIONS(5218), + [anon_sym_BSLASHpageref] = ACTIONS(5218), + [anon_sym_BSLASHcref] = ACTIONS(5218), + [anon_sym_BSLASHCref] = ACTIONS(5218), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnameCref] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5218), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5218), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5218), + [anon_sym_BSLASHlabelcref] = ACTIONS(5218), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange] = ACTIONS(5218), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHCrefrange] = ACTIONS(5218), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5216), + [anon_sym_BSLASHnewlabel] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand] = ACTIONS(5218), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5218), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5218), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5216), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5218), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdef] = ACTIONS(5218), + [anon_sym_BSLASHlet] = ACTIONS(5218), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5218), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5218), + [anon_sym_BSLASHgls] = ACTIONS(5218), + [anon_sym_BSLASHGls] = ACTIONS(5218), + [anon_sym_BSLASHGLS] = ACTIONS(5218), + [anon_sym_BSLASHglspl] = ACTIONS(5218), + [anon_sym_BSLASHGlspl] = ACTIONS(5218), + [anon_sym_BSLASHGLSpl] = ACTIONS(5218), + [anon_sym_BSLASHglsdisp] = ACTIONS(5218), + [anon_sym_BSLASHglslink] = ACTIONS(5218), + [anon_sym_BSLASHglstext] = ACTIONS(5218), + [anon_sym_BSLASHGlstext] = ACTIONS(5218), + [anon_sym_BSLASHGLStext] = ACTIONS(5218), + [anon_sym_BSLASHglsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5218), + [anon_sym_BSLASHglsplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSplural] = ACTIONS(5218), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5218), + [anon_sym_BSLASHglsname] = ACTIONS(5218), + [anon_sym_BSLASHGlsname] = ACTIONS(5218), + [anon_sym_BSLASHGLSname] = ACTIONS(5218), + [anon_sym_BSLASHglssymbol] = ACTIONS(5218), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5218), + [anon_sym_BSLASHglsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5218), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5218), + [anon_sym_BSLASHglsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5218), + [anon_sym_BSLASHglsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5218), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5218), + [anon_sym_BSLASHglsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5218), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5218), + [anon_sym_BSLASHglsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5218), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5218), + [anon_sym_BSLASHnewacronym] = ACTIONS(5218), + [anon_sym_BSLASHacrshort] = ACTIONS(5218), + [anon_sym_BSLASHAcrshort] = ACTIONS(5218), + [anon_sym_BSLASHACRshort] = ACTIONS(5218), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5218), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5218), + [anon_sym_BSLASHacrlong] = ACTIONS(5218), + [anon_sym_BSLASHAcrlong] = ACTIONS(5218), + [anon_sym_BSLASHACRlong] = ACTIONS(5218), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5218), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5218), + [anon_sym_BSLASHacrfull] = ACTIONS(5218), + [anon_sym_BSLASHAcrfull] = ACTIONS(5218), + [anon_sym_BSLASHACRfull] = ACTIONS(5218), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5218), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5218), + [anon_sym_BSLASHacs] = ACTIONS(5218), + [anon_sym_BSLASHAcs] = ACTIONS(5218), + [anon_sym_BSLASHacsp] = ACTIONS(5218), + [anon_sym_BSLASHAcsp] = ACTIONS(5218), + [anon_sym_BSLASHacl] = ACTIONS(5218), + [anon_sym_BSLASHAcl] = ACTIONS(5218), + [anon_sym_BSLASHaclp] = ACTIONS(5218), + [anon_sym_BSLASHAclp] = ACTIONS(5218), + [anon_sym_BSLASHacf] = ACTIONS(5218), + [anon_sym_BSLASHAcf] = ACTIONS(5218), + [anon_sym_BSLASHacfp] = ACTIONS(5218), + [anon_sym_BSLASHAcfp] = ACTIONS(5218), + [anon_sym_BSLASHac] = ACTIONS(5218), + [anon_sym_BSLASHAc] = ACTIONS(5218), + [anon_sym_BSLASHacp] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5218), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5218), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5218), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5218), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5218), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5216), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5218), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5218), + [anon_sym_BSLASHcolor] = ACTIONS(5218), + [anon_sym_BSLASHcolorbox] = ACTIONS(5218), + [anon_sym_BSLASHtextcolor] = ACTIONS(5218), + [anon_sym_BSLASHpagecolor] = ACTIONS(5218), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5218), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5218), }, [1513] = { - [sym_command_name] = ACTIONS(5177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [sym_word] = ACTIONS(5177), - [sym_placeholder] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym__] = ACTIONS(5177), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_PIPE] = ACTIONS(5177), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), - [anon_sym_BSLASHinclude] = ACTIONS(5177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), - [anon_sym_BSLASHinput] = ACTIONS(5177), - [anon_sym_BSLASHsubfile] = ACTIONS(5177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), - [anon_sym_BSLASHbibliography] = ACTIONS(5177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), - [anon_sym_BSLASHincludesvg] = ACTIONS(5177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), - [anon_sym_BSLASHimport] = ACTIONS(5177), - [anon_sym_BSLASHsubimport] = ACTIONS(5177), - [anon_sym_BSLASHinputfrom] = ACTIONS(5177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), - [anon_sym_BSLASHincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), - [anon_sym_BSLASHcaption] = ACTIONS(5177), - [anon_sym_BSLASHcite] = ACTIONS(5177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCite] = ACTIONS(5177), - [anon_sym_BSLASHnocite] = ACTIONS(5177), - [anon_sym_BSLASHcitet] = ACTIONS(5177), - [anon_sym_BSLASHcitep] = ACTIONS(5177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteyear] = ACTIONS(5177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), - [anon_sym_BSLASHcitedate] = ACTIONS(5177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), - [anon_sym_BSLASHciteurl] = ACTIONS(5177), - [anon_sym_BSLASHfullcite] = ACTIONS(5177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), - [anon_sym_BSLASHcitealt] = ACTIONS(5177), - [anon_sym_BSLASHcitealp] = ACTIONS(5177), - [anon_sym_BSLASHcitetext] = ACTIONS(5177), - [anon_sym_BSLASHparencite] = ACTIONS(5177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHParencite] = ACTIONS(5177), - [anon_sym_BSLASHfootcite] = ACTIONS(5177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), - [anon_sym_BSLASHtextcite] = ACTIONS(5177), - [anon_sym_BSLASHTextcite] = ACTIONS(5177), - [anon_sym_BSLASHsmartcite] = ACTIONS(5177), - [anon_sym_BSLASHSmartcite] = ACTIONS(5177), - [anon_sym_BSLASHsupercite] = ACTIONS(5177), - [anon_sym_BSLASHautocite] = ACTIONS(5177), - [anon_sym_BSLASHAutocite] = ACTIONS(5177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), - [anon_sym_BSLASHvolcite] = ACTIONS(5177), - [anon_sym_BSLASHVolcite] = ACTIONS(5177), - [anon_sym_BSLASHpvolcite] = ACTIONS(5177), - [anon_sym_BSLASHPvolcite] = ACTIONS(5177), - [anon_sym_BSLASHfvolcite] = ACTIONS(5177), - [anon_sym_BSLASHftvolcite] = ACTIONS(5177), - [anon_sym_BSLASHsvolcite] = ACTIONS(5177), - [anon_sym_BSLASHSvolcite] = ACTIONS(5177), - [anon_sym_BSLASHtvolcite] = ACTIONS(5177), - [anon_sym_BSLASHTvolcite] = ACTIONS(5177), - [anon_sym_BSLASHavolcite] = ACTIONS(5177), - [anon_sym_BSLASHAvolcite] = ACTIONS(5177), - [anon_sym_BSLASHnotecite] = ACTIONS(5177), - [anon_sym_BSLASHNotecite] = ACTIONS(5177), - [anon_sym_BSLASHpnotecite] = ACTIONS(5177), - [anon_sym_BSLASHPnotecite] = ACTIONS(5177), - [anon_sym_BSLASHfnotecite] = ACTIONS(5177), - [anon_sym_BSLASHlabel] = ACTIONS(5177), - [anon_sym_BSLASHref] = ACTIONS(5177), - [anon_sym_BSLASHeqref] = ACTIONS(5177), - [anon_sym_BSLASHvref] = ACTIONS(5177), - [anon_sym_BSLASHVref] = ACTIONS(5177), - [anon_sym_BSLASHautoref] = ACTIONS(5177), - [anon_sym_BSLASHpageref] = ACTIONS(5177), - [anon_sym_BSLASHcref] = ACTIONS(5177), - [anon_sym_BSLASHCref] = ACTIONS(5177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnameCref] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), - [anon_sym_BSLASHlabelcref] = ACTIONS(5177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange] = ACTIONS(5177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), - [anon_sym_BSLASHnewlabel] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand] = ACTIONS(5177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), - [anon_sym_BSLASHdef] = ACTIONS(5177), - [anon_sym_BSLASHlet] = ACTIONS(5177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), - [anon_sym_BSLASHgls] = ACTIONS(5177), - [anon_sym_BSLASHGls] = ACTIONS(5177), - [anon_sym_BSLASHGLS] = ACTIONS(5177), - [anon_sym_BSLASHglspl] = ACTIONS(5177), - [anon_sym_BSLASHGlspl] = ACTIONS(5177), - [anon_sym_BSLASHGLSpl] = ACTIONS(5177), - [anon_sym_BSLASHglsdisp] = ACTIONS(5177), - [anon_sym_BSLASHglslink] = ACTIONS(5177), - [anon_sym_BSLASHglstext] = ACTIONS(5177), - [anon_sym_BSLASHGlstext] = ACTIONS(5177), - [anon_sym_BSLASHGLStext] = ACTIONS(5177), - [anon_sym_BSLASHglsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), - [anon_sym_BSLASHglsplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSplural] = ACTIONS(5177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), - [anon_sym_BSLASHglsname] = ACTIONS(5177), - [anon_sym_BSLASHGlsname] = ACTIONS(5177), - [anon_sym_BSLASHGLSname] = ACTIONS(5177), - [anon_sym_BSLASHglssymbol] = ACTIONS(5177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), - [anon_sym_BSLASHglsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), - [anon_sym_BSLASHglsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), - [anon_sym_BSLASHglsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), - [anon_sym_BSLASHglsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), - [anon_sym_BSLASHglsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), - [anon_sym_BSLASHnewacronym] = ACTIONS(5177), - [anon_sym_BSLASHacrshort] = ACTIONS(5177), - [anon_sym_BSLASHAcrshort] = ACTIONS(5177), - [anon_sym_BSLASHACRshort] = ACTIONS(5177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), - [anon_sym_BSLASHacrlong] = ACTIONS(5177), - [anon_sym_BSLASHAcrlong] = ACTIONS(5177), - [anon_sym_BSLASHACRlong] = ACTIONS(5177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), - [anon_sym_BSLASHacrfull] = ACTIONS(5177), - [anon_sym_BSLASHAcrfull] = ACTIONS(5177), - [anon_sym_BSLASHACRfull] = ACTIONS(5177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), - [anon_sym_BSLASHacs] = ACTIONS(5177), - [anon_sym_BSLASHAcs] = ACTIONS(5177), - [anon_sym_BSLASHacsp] = ACTIONS(5177), - [anon_sym_BSLASHAcsp] = ACTIONS(5177), - [anon_sym_BSLASHacl] = ACTIONS(5177), - [anon_sym_BSLASHAcl] = ACTIONS(5177), - [anon_sym_BSLASHaclp] = ACTIONS(5177), - [anon_sym_BSLASHAclp] = ACTIONS(5177), - [anon_sym_BSLASHacf] = ACTIONS(5177), - [anon_sym_BSLASHAcf] = ACTIONS(5177), - [anon_sym_BSLASHacfp] = ACTIONS(5177), - [anon_sym_BSLASHAcfp] = ACTIONS(5177), - [anon_sym_BSLASHac] = ACTIONS(5177), - [anon_sym_BSLASHAc] = ACTIONS(5177), - [anon_sym_BSLASHacp] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), - [anon_sym_BSLASHcolor] = ACTIONS(5177), - [anon_sym_BSLASHcolorbox] = ACTIONS(5177), - [anon_sym_BSLASHtextcolor] = ACTIONS(5177), - [anon_sym_BSLASHpagecolor] = ACTIONS(5177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [sym_command_name] = ACTIONS(5256), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5256), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [sym_word] = ACTIONS(5256), + [sym_placeholder] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_BSLASHusepackage] = ACTIONS(5256), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5256), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5256), + [anon_sym_BSLASHinclude] = ACTIONS(5256), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5256), + [anon_sym_BSLASHinput] = ACTIONS(5256), + [anon_sym_BSLASHsubfile] = ACTIONS(5256), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [anon_sym_BSLASHbibliography] = ACTIONS(5256), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5256), + [anon_sym_BSLASHincludesvg] = ACTIONS(5256), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5256), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5256), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5256), + [anon_sym_BSLASHimport] = ACTIONS(5256), + [anon_sym_BSLASHsubimport] = ACTIONS(5256), + [anon_sym_BSLASHinputfrom] = ACTIONS(5256), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5256), + [anon_sym_BSLASHincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5256), + [anon_sym_BSLASHcaption] = ACTIONS(5256), + [anon_sym_BSLASHcite] = ACTIONS(5256), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCite] = ACTIONS(5256), + [anon_sym_BSLASHnocite] = ACTIONS(5256), + [anon_sym_BSLASHcitet] = ACTIONS(5256), + [anon_sym_BSLASHcitep] = ACTIONS(5256), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteauthor] = ACTIONS(5256), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5256), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitetitle] = ACTIONS(5256), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteyear] = ACTIONS(5256), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5254), + [anon_sym_BSLASHcitedate] = ACTIONS(5256), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5254), + [anon_sym_BSLASHciteurl] = ACTIONS(5256), + [anon_sym_BSLASHfullcite] = ACTIONS(5256), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5256), + [anon_sym_BSLASHcitealt] = ACTIONS(5256), + [anon_sym_BSLASHcitealp] = ACTIONS(5256), + [anon_sym_BSLASHcitetext] = ACTIONS(5256), + [anon_sym_BSLASHparencite] = ACTIONS(5256), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHParencite] = ACTIONS(5256), + [anon_sym_BSLASHfootcite] = ACTIONS(5256), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5256), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5256), + [anon_sym_BSLASHtextcite] = ACTIONS(5256), + [anon_sym_BSLASHTextcite] = ACTIONS(5256), + [anon_sym_BSLASHsmartcite] = ACTIONS(5256), + [anon_sym_BSLASHSmartcite] = ACTIONS(5256), + [anon_sym_BSLASHsupercite] = ACTIONS(5256), + [anon_sym_BSLASHautocite] = ACTIONS(5256), + [anon_sym_BSLASHAutocite] = ACTIONS(5256), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5254), + [anon_sym_BSLASHvolcite] = ACTIONS(5256), + [anon_sym_BSLASHVolcite] = ACTIONS(5256), + [anon_sym_BSLASHpvolcite] = ACTIONS(5256), + [anon_sym_BSLASHPvolcite] = ACTIONS(5256), + [anon_sym_BSLASHfvolcite] = ACTIONS(5256), + [anon_sym_BSLASHftvolcite] = ACTIONS(5256), + [anon_sym_BSLASHsvolcite] = ACTIONS(5256), + [anon_sym_BSLASHSvolcite] = ACTIONS(5256), + [anon_sym_BSLASHtvolcite] = ACTIONS(5256), + [anon_sym_BSLASHTvolcite] = ACTIONS(5256), + [anon_sym_BSLASHavolcite] = ACTIONS(5256), + [anon_sym_BSLASHAvolcite] = ACTIONS(5256), + [anon_sym_BSLASHnotecite] = ACTIONS(5256), + [anon_sym_BSLASHNotecite] = ACTIONS(5256), + [anon_sym_BSLASHpnotecite] = ACTIONS(5256), + [anon_sym_BSLASHPnotecite] = ACTIONS(5256), + [anon_sym_BSLASHfnotecite] = ACTIONS(5256), + [anon_sym_BSLASHlabel] = ACTIONS(5256), + [anon_sym_BSLASHref] = ACTIONS(5256), + [anon_sym_BSLASHeqref] = ACTIONS(5256), + [anon_sym_BSLASHvref] = ACTIONS(5256), + [anon_sym_BSLASHVref] = ACTIONS(5256), + [anon_sym_BSLASHautoref] = ACTIONS(5256), + [anon_sym_BSLASHpageref] = ACTIONS(5256), + [anon_sym_BSLASHcref] = ACTIONS(5256), + [anon_sym_BSLASHCref] = ACTIONS(5256), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnameCref] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5256), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5256), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5256), + [anon_sym_BSLASHlabelcref] = ACTIONS(5256), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange] = ACTIONS(5256), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHCrefrange] = ACTIONS(5256), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5254), + [anon_sym_BSLASHnewlabel] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand] = ACTIONS(5256), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5256), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5256), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5254), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5256), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdef] = ACTIONS(5256), + [anon_sym_BSLASHlet] = ACTIONS(5256), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5256), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5256), + [anon_sym_BSLASHgls] = ACTIONS(5256), + [anon_sym_BSLASHGls] = ACTIONS(5256), + [anon_sym_BSLASHGLS] = ACTIONS(5256), + [anon_sym_BSLASHglspl] = ACTIONS(5256), + [anon_sym_BSLASHGlspl] = ACTIONS(5256), + [anon_sym_BSLASHGLSpl] = ACTIONS(5256), + [anon_sym_BSLASHglsdisp] = ACTIONS(5256), + [anon_sym_BSLASHglslink] = ACTIONS(5256), + [anon_sym_BSLASHglstext] = ACTIONS(5256), + [anon_sym_BSLASHGlstext] = ACTIONS(5256), + [anon_sym_BSLASHGLStext] = ACTIONS(5256), + [anon_sym_BSLASHglsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5256), + [anon_sym_BSLASHglsplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSplural] = ACTIONS(5256), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5256), + [anon_sym_BSLASHglsname] = ACTIONS(5256), + [anon_sym_BSLASHGlsname] = ACTIONS(5256), + [anon_sym_BSLASHGLSname] = ACTIONS(5256), + [anon_sym_BSLASHglssymbol] = ACTIONS(5256), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5256), + [anon_sym_BSLASHglsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5256), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5256), + [anon_sym_BSLASHglsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5256), + [anon_sym_BSLASHglsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5256), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5256), + [anon_sym_BSLASHglsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5256), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5256), + [anon_sym_BSLASHglsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5256), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5256), + [anon_sym_BSLASHnewacronym] = ACTIONS(5256), + [anon_sym_BSLASHacrshort] = ACTIONS(5256), + [anon_sym_BSLASHAcrshort] = ACTIONS(5256), + [anon_sym_BSLASHACRshort] = ACTIONS(5256), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5256), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5256), + [anon_sym_BSLASHacrlong] = ACTIONS(5256), + [anon_sym_BSLASHAcrlong] = ACTIONS(5256), + [anon_sym_BSLASHACRlong] = ACTIONS(5256), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5256), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5256), + [anon_sym_BSLASHacrfull] = ACTIONS(5256), + [anon_sym_BSLASHAcrfull] = ACTIONS(5256), + [anon_sym_BSLASHACRfull] = ACTIONS(5256), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5256), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5256), + [anon_sym_BSLASHacs] = ACTIONS(5256), + [anon_sym_BSLASHAcs] = ACTIONS(5256), + [anon_sym_BSLASHacsp] = ACTIONS(5256), + [anon_sym_BSLASHAcsp] = ACTIONS(5256), + [anon_sym_BSLASHacl] = ACTIONS(5256), + [anon_sym_BSLASHAcl] = ACTIONS(5256), + [anon_sym_BSLASHaclp] = ACTIONS(5256), + [anon_sym_BSLASHAclp] = ACTIONS(5256), + [anon_sym_BSLASHacf] = ACTIONS(5256), + [anon_sym_BSLASHAcf] = ACTIONS(5256), + [anon_sym_BSLASHacfp] = ACTIONS(5256), + [anon_sym_BSLASHAcfp] = ACTIONS(5256), + [anon_sym_BSLASHac] = ACTIONS(5256), + [anon_sym_BSLASHAc] = ACTIONS(5256), + [anon_sym_BSLASHacp] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5256), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5256), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5256), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5256), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5256), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5254), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5256), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5256), + [anon_sym_BSLASHcolor] = ACTIONS(5256), + [anon_sym_BSLASHcolorbox] = ACTIONS(5256), + [anon_sym_BSLASHtextcolor] = ACTIONS(5256), + [anon_sym_BSLASHpagecolor] = ACTIONS(5256), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5256), }, [1514] = { - [sym_command_name] = ACTIONS(5169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [sym_word] = ACTIONS(5169), - [sym_placeholder] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym__] = ACTIONS(5169), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), - [anon_sym_BSLASHinclude] = ACTIONS(5169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), - [anon_sym_BSLASHinput] = ACTIONS(5169), - [anon_sym_BSLASHsubfile] = ACTIONS(5169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), - [anon_sym_BSLASHbibliography] = ACTIONS(5169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), - [anon_sym_BSLASHincludesvg] = ACTIONS(5169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), - [anon_sym_BSLASHimport] = ACTIONS(5169), - [anon_sym_BSLASHsubimport] = ACTIONS(5169), - [anon_sym_BSLASHinputfrom] = ACTIONS(5169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), - [anon_sym_BSLASHincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), - [anon_sym_BSLASHcaption] = ACTIONS(5169), - [anon_sym_BSLASHcite] = ACTIONS(5169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), - [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(5167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), - [anon_sym_BSLASHciteyear] = ACTIONS(5169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), - [anon_sym_BSLASHcitedate] = ACTIONS(5169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), - [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(5167), - [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(5167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), - [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(5169), - [anon_sym_BSLASHref] = ACTIONS(5169), - [anon_sym_BSLASHeqref] = ACTIONS(5169), - [anon_sym_BSLASHvref] = ACTIONS(5169), - [anon_sym_BSLASHVref] = ACTIONS(5169), - [anon_sym_BSLASHautoref] = ACTIONS(5169), - [anon_sym_BSLASHpageref] = ACTIONS(5169), - [anon_sym_BSLASHcref] = ACTIONS(5169), - [anon_sym_BSLASHCref] = ACTIONS(5169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnameCref] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), - [anon_sym_BSLASHlabelcref] = ACTIONS(5169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange] = ACTIONS(5169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), - [anon_sym_BSLASHnewlabel] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand] = ACTIONS(5169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), - [anon_sym_BSLASHdef] = ACTIONS(5169), - [anon_sym_BSLASHlet] = ACTIONS(5169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), - [anon_sym_BSLASHgls] = ACTIONS(5169), - [anon_sym_BSLASHGls] = ACTIONS(5169), - [anon_sym_BSLASHGLS] = ACTIONS(5169), - [anon_sym_BSLASHglspl] = ACTIONS(5169), - [anon_sym_BSLASHGlspl] = ACTIONS(5169), - [anon_sym_BSLASHGLSpl] = ACTIONS(5169), - [anon_sym_BSLASHglsdisp] = ACTIONS(5169), - [anon_sym_BSLASHglslink] = ACTIONS(5169), - [anon_sym_BSLASHglstext] = ACTIONS(5169), - [anon_sym_BSLASHGlstext] = ACTIONS(5169), - [anon_sym_BSLASHGLStext] = ACTIONS(5169), - [anon_sym_BSLASHglsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), - [anon_sym_BSLASHglsplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSplural] = ACTIONS(5169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), - [anon_sym_BSLASHglsname] = ACTIONS(5169), - [anon_sym_BSLASHGlsname] = ACTIONS(5169), - [anon_sym_BSLASHGLSname] = ACTIONS(5169), - [anon_sym_BSLASHglssymbol] = ACTIONS(5169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), - [anon_sym_BSLASHglsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), - [anon_sym_BSLASHglsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), - [anon_sym_BSLASHglsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), - [anon_sym_BSLASHglsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), - [anon_sym_BSLASHglsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), - [anon_sym_BSLASHnewacronym] = ACTIONS(5169), - [anon_sym_BSLASHacrshort] = ACTIONS(5169), - [anon_sym_BSLASHAcrshort] = ACTIONS(5169), - [anon_sym_BSLASHACRshort] = ACTIONS(5169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), - [anon_sym_BSLASHacrlong] = ACTIONS(5169), - [anon_sym_BSLASHAcrlong] = ACTIONS(5169), - [anon_sym_BSLASHACRlong] = ACTIONS(5169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), - [anon_sym_BSLASHacrfull] = ACTIONS(5169), - [anon_sym_BSLASHAcrfull] = ACTIONS(5169), - [anon_sym_BSLASHACRfull] = ACTIONS(5169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), - [anon_sym_BSLASHacs] = ACTIONS(5169), - [anon_sym_BSLASHAcs] = ACTIONS(5169), - [anon_sym_BSLASHacsp] = ACTIONS(5169), - [anon_sym_BSLASHAcsp] = ACTIONS(5169), - [anon_sym_BSLASHacl] = ACTIONS(5169), - [anon_sym_BSLASHAcl] = ACTIONS(5169), - [anon_sym_BSLASHaclp] = ACTIONS(5169), - [anon_sym_BSLASHAclp] = ACTIONS(5169), - [anon_sym_BSLASHacf] = ACTIONS(5169), - [anon_sym_BSLASHAcf] = ACTIONS(5169), - [anon_sym_BSLASHacfp] = ACTIONS(5169), - [anon_sym_BSLASHAcfp] = ACTIONS(5169), - [anon_sym_BSLASHac] = ACTIONS(5169), - [anon_sym_BSLASHAc] = ACTIONS(5169), - [anon_sym_BSLASHacp] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), - [anon_sym_BSLASHcolor] = ACTIONS(5169), - [anon_sym_BSLASHcolorbox] = ACTIONS(5169), - [anon_sym_BSLASHtextcolor] = ACTIONS(5169), - [anon_sym_BSLASHpagecolor] = ACTIONS(5169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [sym_command_name] = ACTIONS(5248), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5248), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [sym_word] = ACTIONS(5248), + [sym_placeholder] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym__] = ACTIONS(5248), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_SQUOTE] = ACTIONS(5248), + [anon_sym_BSLASHusepackage] = ACTIONS(5248), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5248), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5248), + [anon_sym_BSLASHinclude] = ACTIONS(5248), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5248), + [anon_sym_BSLASHinput] = ACTIONS(5248), + [anon_sym_BSLASHsubfile] = ACTIONS(5248), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5248), + [anon_sym_BSLASHbibliography] = ACTIONS(5248), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5248), + [anon_sym_BSLASHincludesvg] = ACTIONS(5248), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5248), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5248), + [anon_sym_BSLASHimport] = ACTIONS(5248), + [anon_sym_BSLASHsubimport] = ACTIONS(5248), + [anon_sym_BSLASHinputfrom] = ACTIONS(5248), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5248), + [anon_sym_BSLASHincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5248), + [anon_sym_BSLASHcaption] = ACTIONS(5248), + [anon_sym_BSLASHcite] = ACTIONS(5248), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCite] = ACTIONS(5248), + [anon_sym_BSLASHnocite] = ACTIONS(5248), + [anon_sym_BSLASHcitet] = ACTIONS(5248), + [anon_sym_BSLASHcitep] = ACTIONS(5248), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteauthor] = ACTIONS(5248), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5248), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitetitle] = ACTIONS(5248), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteyear] = ACTIONS(5248), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5246), + [anon_sym_BSLASHcitedate] = ACTIONS(5248), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5246), + [anon_sym_BSLASHciteurl] = ACTIONS(5248), + [anon_sym_BSLASHfullcite] = ACTIONS(5248), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5248), + [anon_sym_BSLASHcitealt] = ACTIONS(5248), + [anon_sym_BSLASHcitealp] = ACTIONS(5248), + [anon_sym_BSLASHcitetext] = ACTIONS(5248), + [anon_sym_BSLASHparencite] = ACTIONS(5248), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHParencite] = ACTIONS(5248), + [anon_sym_BSLASHfootcite] = ACTIONS(5248), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5248), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5248), + [anon_sym_BSLASHtextcite] = ACTIONS(5248), + [anon_sym_BSLASHTextcite] = ACTIONS(5248), + [anon_sym_BSLASHsmartcite] = ACTIONS(5248), + [anon_sym_BSLASHSmartcite] = ACTIONS(5248), + [anon_sym_BSLASHsupercite] = ACTIONS(5248), + [anon_sym_BSLASHautocite] = ACTIONS(5248), + [anon_sym_BSLASHAutocite] = ACTIONS(5248), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5246), + [anon_sym_BSLASHvolcite] = ACTIONS(5248), + [anon_sym_BSLASHVolcite] = ACTIONS(5248), + [anon_sym_BSLASHpvolcite] = ACTIONS(5248), + [anon_sym_BSLASHPvolcite] = ACTIONS(5248), + [anon_sym_BSLASHfvolcite] = ACTIONS(5248), + [anon_sym_BSLASHftvolcite] = ACTIONS(5248), + [anon_sym_BSLASHsvolcite] = ACTIONS(5248), + [anon_sym_BSLASHSvolcite] = ACTIONS(5248), + [anon_sym_BSLASHtvolcite] = ACTIONS(5248), + [anon_sym_BSLASHTvolcite] = ACTIONS(5248), + [anon_sym_BSLASHavolcite] = ACTIONS(5248), + [anon_sym_BSLASHAvolcite] = ACTIONS(5248), + [anon_sym_BSLASHnotecite] = ACTIONS(5248), + [anon_sym_BSLASHNotecite] = ACTIONS(5248), + [anon_sym_BSLASHpnotecite] = ACTIONS(5248), + [anon_sym_BSLASHPnotecite] = ACTIONS(5248), + [anon_sym_BSLASHfnotecite] = ACTIONS(5248), + [anon_sym_BSLASHlabel] = ACTIONS(5248), + [anon_sym_BSLASHref] = ACTIONS(5248), + [anon_sym_BSLASHeqref] = ACTIONS(5248), + [anon_sym_BSLASHvref] = ACTIONS(5248), + [anon_sym_BSLASHVref] = ACTIONS(5248), + [anon_sym_BSLASHautoref] = ACTIONS(5248), + [anon_sym_BSLASHpageref] = ACTIONS(5248), + [anon_sym_BSLASHcref] = ACTIONS(5248), + [anon_sym_BSLASHCref] = ACTIONS(5248), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnameCref] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5248), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5248), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5248), + [anon_sym_BSLASHlabelcref] = ACTIONS(5248), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange] = ACTIONS(5248), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHCrefrange] = ACTIONS(5248), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5246), + [anon_sym_BSLASHnewlabel] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand] = ACTIONS(5248), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5248), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5248), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5246), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdef] = ACTIONS(5248), + [anon_sym_BSLASHlet] = ACTIONS(5248), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5248), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5248), + [anon_sym_BSLASHgls] = ACTIONS(5248), + [anon_sym_BSLASHGls] = ACTIONS(5248), + [anon_sym_BSLASHGLS] = ACTIONS(5248), + [anon_sym_BSLASHglspl] = ACTIONS(5248), + [anon_sym_BSLASHGlspl] = ACTIONS(5248), + [anon_sym_BSLASHGLSpl] = ACTIONS(5248), + [anon_sym_BSLASHglsdisp] = ACTIONS(5248), + [anon_sym_BSLASHglslink] = ACTIONS(5248), + [anon_sym_BSLASHglstext] = ACTIONS(5248), + [anon_sym_BSLASHGlstext] = ACTIONS(5248), + [anon_sym_BSLASHGLStext] = ACTIONS(5248), + [anon_sym_BSLASHglsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5248), + [anon_sym_BSLASHglsplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSplural] = ACTIONS(5248), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5248), + [anon_sym_BSLASHglsname] = ACTIONS(5248), + [anon_sym_BSLASHGlsname] = ACTIONS(5248), + [anon_sym_BSLASHGLSname] = ACTIONS(5248), + [anon_sym_BSLASHglssymbol] = ACTIONS(5248), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5248), + [anon_sym_BSLASHglsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5248), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5248), + [anon_sym_BSLASHglsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5248), + [anon_sym_BSLASHglsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5248), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5248), + [anon_sym_BSLASHglsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5248), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5248), + [anon_sym_BSLASHglsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5248), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5248), + [anon_sym_BSLASHnewacronym] = ACTIONS(5248), + [anon_sym_BSLASHacrshort] = ACTIONS(5248), + [anon_sym_BSLASHAcrshort] = ACTIONS(5248), + [anon_sym_BSLASHACRshort] = ACTIONS(5248), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5248), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5248), + [anon_sym_BSLASHacrlong] = ACTIONS(5248), + [anon_sym_BSLASHAcrlong] = ACTIONS(5248), + [anon_sym_BSLASHACRlong] = ACTIONS(5248), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5248), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5248), + [anon_sym_BSLASHacrfull] = ACTIONS(5248), + [anon_sym_BSLASHAcrfull] = ACTIONS(5248), + [anon_sym_BSLASHACRfull] = ACTIONS(5248), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5248), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5248), + [anon_sym_BSLASHacs] = ACTIONS(5248), + [anon_sym_BSLASHAcs] = ACTIONS(5248), + [anon_sym_BSLASHacsp] = ACTIONS(5248), + [anon_sym_BSLASHAcsp] = ACTIONS(5248), + [anon_sym_BSLASHacl] = ACTIONS(5248), + [anon_sym_BSLASHAcl] = ACTIONS(5248), + [anon_sym_BSLASHaclp] = ACTIONS(5248), + [anon_sym_BSLASHAclp] = ACTIONS(5248), + [anon_sym_BSLASHacf] = ACTIONS(5248), + [anon_sym_BSLASHAcf] = ACTIONS(5248), + [anon_sym_BSLASHacfp] = ACTIONS(5248), + [anon_sym_BSLASHAcfp] = ACTIONS(5248), + [anon_sym_BSLASHac] = ACTIONS(5248), + [anon_sym_BSLASHAc] = ACTIONS(5248), + [anon_sym_BSLASHacp] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5248), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5248), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5248), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5248), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5248), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5246), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5248), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), + [anon_sym_BSLASHcolor] = ACTIONS(5248), + [anon_sym_BSLASHcolorbox] = ACTIONS(5248), + [anon_sym_BSLASHtextcolor] = ACTIONS(5248), + [anon_sym_BSLASHpagecolor] = ACTIONS(5248), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5248), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5248), }, [1515] = { - [sym_command_name] = ACTIONS(4917), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4917), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_RBRACE] = ACTIONS(4915), - [sym_word] = ACTIONS(4917), - [sym_placeholder] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_CARET] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_COLON] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4917), - [anon_sym_BSLASHusepackage] = ACTIONS(4917), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), - [anon_sym_BSLASHinclude] = ACTIONS(4917), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), - [anon_sym_BSLASHinput] = ACTIONS(4917), - [anon_sym_BSLASHsubfile] = ACTIONS(4917), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), - [anon_sym_BSLASHbibliography] = ACTIONS(4917), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), - [anon_sym_BSLASHincludesvg] = ACTIONS(4917), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), - [anon_sym_BSLASHimport] = ACTIONS(4917), - [anon_sym_BSLASHsubimport] = ACTIONS(4917), - [anon_sym_BSLASHinputfrom] = ACTIONS(4917), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), - [anon_sym_BSLASHincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), - [anon_sym_BSLASHcaption] = ACTIONS(4917), - [anon_sym_BSLASHcite] = ACTIONS(4917), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCite] = ACTIONS(4917), - [anon_sym_BSLASHnocite] = ACTIONS(4917), - [anon_sym_BSLASHcitet] = ACTIONS(4917), - [anon_sym_BSLASHcitep] = ACTIONS(4917), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteauthor] = ACTIONS(4917), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitetitle] = ACTIONS(4917), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteyear] = ACTIONS(4917), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), - [anon_sym_BSLASHcitedate] = ACTIONS(4917), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), - [anon_sym_BSLASHciteurl] = ACTIONS(4917), - [anon_sym_BSLASHfullcite] = ACTIONS(4917), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), - [anon_sym_BSLASHcitealt] = ACTIONS(4917), - [anon_sym_BSLASHcitealp] = ACTIONS(4917), - [anon_sym_BSLASHcitetext] = ACTIONS(4917), - [anon_sym_BSLASHparencite] = ACTIONS(4917), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHParencite] = ACTIONS(4917), - [anon_sym_BSLASHfootcite] = ACTIONS(4917), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), - [anon_sym_BSLASHtextcite] = ACTIONS(4917), - [anon_sym_BSLASHTextcite] = ACTIONS(4917), - [anon_sym_BSLASHsmartcite] = ACTIONS(4917), - [anon_sym_BSLASHSmartcite] = ACTIONS(4917), - [anon_sym_BSLASHsupercite] = ACTIONS(4917), - [anon_sym_BSLASHautocite] = ACTIONS(4917), - [anon_sym_BSLASHAutocite] = ACTIONS(4917), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), - [anon_sym_BSLASHvolcite] = ACTIONS(4917), - [anon_sym_BSLASHVolcite] = ACTIONS(4917), - [anon_sym_BSLASHpvolcite] = ACTIONS(4917), - [anon_sym_BSLASHPvolcite] = ACTIONS(4917), - [anon_sym_BSLASHfvolcite] = ACTIONS(4917), - [anon_sym_BSLASHftvolcite] = ACTIONS(4917), - [anon_sym_BSLASHsvolcite] = ACTIONS(4917), - [anon_sym_BSLASHSvolcite] = ACTIONS(4917), - [anon_sym_BSLASHtvolcite] = ACTIONS(4917), - [anon_sym_BSLASHTvolcite] = ACTIONS(4917), - [anon_sym_BSLASHavolcite] = ACTIONS(4917), - [anon_sym_BSLASHAvolcite] = ACTIONS(4917), - [anon_sym_BSLASHnotecite] = ACTIONS(4917), - [anon_sym_BSLASHNotecite] = ACTIONS(4917), - [anon_sym_BSLASHpnotecite] = ACTIONS(4917), - [anon_sym_BSLASHPnotecite] = ACTIONS(4917), - [anon_sym_BSLASHfnotecite] = ACTIONS(4917), - [anon_sym_BSLASHlabel] = ACTIONS(4917), - [anon_sym_BSLASHref] = ACTIONS(4917), - [anon_sym_BSLASHeqref] = ACTIONS(4917), - [anon_sym_BSLASHvref] = ACTIONS(4917), - [anon_sym_BSLASHVref] = ACTIONS(4917), - [anon_sym_BSLASHautoref] = ACTIONS(4917), - [anon_sym_BSLASHpageref] = ACTIONS(4917), - [anon_sym_BSLASHcref] = ACTIONS(4917), - [anon_sym_BSLASHCref] = ACTIONS(4917), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnameCref] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), - [anon_sym_BSLASHlabelcref] = ACTIONS(4917), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange] = ACTIONS(4917), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHCrefrange] = ACTIONS(4917), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), - [anon_sym_BSLASHnewlabel] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand] = ACTIONS(4917), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), - [anon_sym_BSLASHdef] = ACTIONS(4917), - [anon_sym_BSLASHlet] = ACTIONS(4917), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), - [anon_sym_BSLASHgls] = ACTIONS(4917), - [anon_sym_BSLASHGls] = ACTIONS(4917), - [anon_sym_BSLASHGLS] = ACTIONS(4917), - [anon_sym_BSLASHglspl] = ACTIONS(4917), - [anon_sym_BSLASHGlspl] = ACTIONS(4917), - [anon_sym_BSLASHGLSpl] = ACTIONS(4917), - [anon_sym_BSLASHglsdisp] = ACTIONS(4917), - [anon_sym_BSLASHglslink] = ACTIONS(4917), - [anon_sym_BSLASHglstext] = ACTIONS(4917), - [anon_sym_BSLASHGlstext] = ACTIONS(4917), - [anon_sym_BSLASHGLStext] = ACTIONS(4917), - [anon_sym_BSLASHglsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), - [anon_sym_BSLASHglsplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSplural] = ACTIONS(4917), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), - [anon_sym_BSLASHglsname] = ACTIONS(4917), - [anon_sym_BSLASHGlsname] = ACTIONS(4917), - [anon_sym_BSLASHGLSname] = ACTIONS(4917), - [anon_sym_BSLASHglssymbol] = ACTIONS(4917), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), - [anon_sym_BSLASHglsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), - [anon_sym_BSLASHglsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), - [anon_sym_BSLASHglsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), - [anon_sym_BSLASHglsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), - [anon_sym_BSLASHglsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), - [anon_sym_BSLASHnewacronym] = ACTIONS(4917), - [anon_sym_BSLASHacrshort] = ACTIONS(4917), - [anon_sym_BSLASHAcrshort] = ACTIONS(4917), - [anon_sym_BSLASHACRshort] = ACTIONS(4917), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), - [anon_sym_BSLASHacrlong] = ACTIONS(4917), - [anon_sym_BSLASHAcrlong] = ACTIONS(4917), - [anon_sym_BSLASHACRlong] = ACTIONS(4917), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), - [anon_sym_BSLASHacrfull] = ACTIONS(4917), - [anon_sym_BSLASHAcrfull] = ACTIONS(4917), - [anon_sym_BSLASHACRfull] = ACTIONS(4917), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), - [anon_sym_BSLASHacs] = ACTIONS(4917), - [anon_sym_BSLASHAcs] = ACTIONS(4917), - [anon_sym_BSLASHacsp] = ACTIONS(4917), - [anon_sym_BSLASHAcsp] = ACTIONS(4917), - [anon_sym_BSLASHacl] = ACTIONS(4917), - [anon_sym_BSLASHAcl] = ACTIONS(4917), - [anon_sym_BSLASHaclp] = ACTIONS(4917), - [anon_sym_BSLASHAclp] = ACTIONS(4917), - [anon_sym_BSLASHacf] = ACTIONS(4917), - [anon_sym_BSLASHAcf] = ACTIONS(4917), - [anon_sym_BSLASHacfp] = ACTIONS(4917), - [anon_sym_BSLASHAcfp] = ACTIONS(4917), - [anon_sym_BSLASHac] = ACTIONS(4917), - [anon_sym_BSLASHAc] = ACTIONS(4917), - [anon_sym_BSLASHacp] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), - [anon_sym_BSLASHcolor] = ACTIONS(4917), - [anon_sym_BSLASHcolorbox] = ACTIONS(4917), - [anon_sym_BSLASHtextcolor] = ACTIONS(4917), - [anon_sym_BSLASHpagecolor] = ACTIONS(4917), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [sym_command_name] = ACTIONS(4996), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [sym_word] = ACTIONS(4996), + [sym_placeholder] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym__] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [anon_sym_BSLASHusepackage] = ACTIONS(4996), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4996), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4996), + [anon_sym_BSLASHinclude] = ACTIONS(4996), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4996), + [anon_sym_BSLASHinput] = ACTIONS(4996), + [anon_sym_BSLASHsubfile] = ACTIONS(4996), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4996), + [anon_sym_BSLASHbibliography] = ACTIONS(4996), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4996), + [anon_sym_BSLASHincludesvg] = ACTIONS(4996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4996), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4996), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4996), + [anon_sym_BSLASHimport] = ACTIONS(4996), + [anon_sym_BSLASHsubimport] = ACTIONS(4996), + [anon_sym_BSLASHinputfrom] = ACTIONS(4996), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4996), + [anon_sym_BSLASHincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4996), + [anon_sym_BSLASHcaption] = ACTIONS(4996), + [anon_sym_BSLASHcite] = ACTIONS(4996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCite] = ACTIONS(4996), + [anon_sym_BSLASHnocite] = ACTIONS(4996), + [anon_sym_BSLASHcitet] = ACTIONS(4996), + [anon_sym_BSLASHcitep] = ACTIONS(4996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteauthor] = ACTIONS(4996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitetitle] = ACTIONS(4996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteyear] = ACTIONS(4996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4994), + [anon_sym_BSLASHcitedate] = ACTIONS(4996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4994), + [anon_sym_BSLASHciteurl] = ACTIONS(4996), + [anon_sym_BSLASHfullcite] = ACTIONS(4996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4996), + [anon_sym_BSLASHcitealt] = ACTIONS(4996), + [anon_sym_BSLASHcitealp] = ACTIONS(4996), + [anon_sym_BSLASHcitetext] = ACTIONS(4996), + [anon_sym_BSLASHparencite] = ACTIONS(4996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHParencite] = ACTIONS(4996), + [anon_sym_BSLASHfootcite] = ACTIONS(4996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4996), + [anon_sym_BSLASHtextcite] = ACTIONS(4996), + [anon_sym_BSLASHTextcite] = ACTIONS(4996), + [anon_sym_BSLASHsmartcite] = ACTIONS(4996), + [anon_sym_BSLASHSmartcite] = ACTIONS(4996), + [anon_sym_BSLASHsupercite] = ACTIONS(4996), + [anon_sym_BSLASHautocite] = ACTIONS(4996), + [anon_sym_BSLASHAutocite] = ACTIONS(4996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4994), + [anon_sym_BSLASHvolcite] = ACTIONS(4996), + [anon_sym_BSLASHVolcite] = ACTIONS(4996), + [anon_sym_BSLASHpvolcite] = ACTIONS(4996), + [anon_sym_BSLASHPvolcite] = ACTIONS(4996), + [anon_sym_BSLASHfvolcite] = ACTIONS(4996), + [anon_sym_BSLASHftvolcite] = ACTIONS(4996), + [anon_sym_BSLASHsvolcite] = ACTIONS(4996), + [anon_sym_BSLASHSvolcite] = ACTIONS(4996), + [anon_sym_BSLASHtvolcite] = ACTIONS(4996), + [anon_sym_BSLASHTvolcite] = ACTIONS(4996), + [anon_sym_BSLASHavolcite] = ACTIONS(4996), + [anon_sym_BSLASHAvolcite] = ACTIONS(4996), + [anon_sym_BSLASHnotecite] = ACTIONS(4996), + [anon_sym_BSLASHNotecite] = ACTIONS(4996), + [anon_sym_BSLASHpnotecite] = ACTIONS(4996), + [anon_sym_BSLASHPnotecite] = ACTIONS(4996), + [anon_sym_BSLASHfnotecite] = ACTIONS(4996), + [anon_sym_BSLASHlabel] = ACTIONS(4996), + [anon_sym_BSLASHref] = ACTIONS(4996), + [anon_sym_BSLASHeqref] = ACTIONS(4996), + [anon_sym_BSLASHvref] = ACTIONS(4996), + [anon_sym_BSLASHVref] = ACTIONS(4996), + [anon_sym_BSLASHautoref] = ACTIONS(4996), + [anon_sym_BSLASHpageref] = ACTIONS(4996), + [anon_sym_BSLASHcref] = ACTIONS(4996), + [anon_sym_BSLASHCref] = ACTIONS(4996), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnameCref] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4996), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4996), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4996), + [anon_sym_BSLASHlabelcref] = ACTIONS(4996), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange] = ACTIONS(4996), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHCrefrange] = ACTIONS(4996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4994), + [anon_sym_BSLASHnewlabel] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand] = ACTIONS(4996), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4996), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4996), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4994), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4996), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdef] = ACTIONS(4996), + [anon_sym_BSLASHlet] = ACTIONS(4996), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4996), + [anon_sym_BSLASHgls] = ACTIONS(4996), + [anon_sym_BSLASHGls] = ACTIONS(4996), + [anon_sym_BSLASHGLS] = ACTIONS(4996), + [anon_sym_BSLASHglspl] = ACTIONS(4996), + [anon_sym_BSLASHGlspl] = ACTIONS(4996), + [anon_sym_BSLASHGLSpl] = ACTIONS(4996), + [anon_sym_BSLASHglsdisp] = ACTIONS(4996), + [anon_sym_BSLASHglslink] = ACTIONS(4996), + [anon_sym_BSLASHglstext] = ACTIONS(4996), + [anon_sym_BSLASHGlstext] = ACTIONS(4996), + [anon_sym_BSLASHGLStext] = ACTIONS(4996), + [anon_sym_BSLASHglsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4996), + [anon_sym_BSLASHglsplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSplural] = ACTIONS(4996), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4996), + [anon_sym_BSLASHglsname] = ACTIONS(4996), + [anon_sym_BSLASHGlsname] = ACTIONS(4996), + [anon_sym_BSLASHGLSname] = ACTIONS(4996), + [anon_sym_BSLASHglssymbol] = ACTIONS(4996), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4996), + [anon_sym_BSLASHglsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4996), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4996), + [anon_sym_BSLASHglsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4996), + [anon_sym_BSLASHglsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4996), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4996), + [anon_sym_BSLASHglsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4996), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4996), + [anon_sym_BSLASHglsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4996), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4996), + [anon_sym_BSLASHnewacronym] = ACTIONS(4996), + [anon_sym_BSLASHacrshort] = ACTIONS(4996), + [anon_sym_BSLASHAcrshort] = ACTIONS(4996), + [anon_sym_BSLASHACRshort] = ACTIONS(4996), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4996), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4996), + [anon_sym_BSLASHacrlong] = ACTIONS(4996), + [anon_sym_BSLASHAcrlong] = ACTIONS(4996), + [anon_sym_BSLASHACRlong] = ACTIONS(4996), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4996), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4996), + [anon_sym_BSLASHacrfull] = ACTIONS(4996), + [anon_sym_BSLASHAcrfull] = ACTIONS(4996), + [anon_sym_BSLASHACRfull] = ACTIONS(4996), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4996), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4996), + [anon_sym_BSLASHacs] = ACTIONS(4996), + [anon_sym_BSLASHAcs] = ACTIONS(4996), + [anon_sym_BSLASHacsp] = ACTIONS(4996), + [anon_sym_BSLASHAcsp] = ACTIONS(4996), + [anon_sym_BSLASHacl] = ACTIONS(4996), + [anon_sym_BSLASHAcl] = ACTIONS(4996), + [anon_sym_BSLASHaclp] = ACTIONS(4996), + [anon_sym_BSLASHAclp] = ACTIONS(4996), + [anon_sym_BSLASHacf] = ACTIONS(4996), + [anon_sym_BSLASHAcf] = ACTIONS(4996), + [anon_sym_BSLASHacfp] = ACTIONS(4996), + [anon_sym_BSLASHAcfp] = ACTIONS(4996), + [anon_sym_BSLASHac] = ACTIONS(4996), + [anon_sym_BSLASHAc] = ACTIONS(4996), + [anon_sym_BSLASHacp] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4996), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4996), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4996), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4996), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4996), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4994), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4996), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4996), + [anon_sym_BSLASHcolor] = ACTIONS(4996), + [anon_sym_BSLASHcolorbox] = ACTIONS(4996), + [anon_sym_BSLASHtextcolor] = ACTIONS(4996), + [anon_sym_BSLASHpagecolor] = ACTIONS(4996), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4996), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4996), }, [1516] = { - [sym_command_name] = ACTIONS(4913), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4913), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_RBRACE] = ACTIONS(4911), - [sym_word] = ACTIONS(4913), - [sym_placeholder] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym__] = ACTIONS(4913), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_COLON] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4913), - [anon_sym_BSLASHusepackage] = ACTIONS(4913), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), - [anon_sym_BSLASHinclude] = ACTIONS(4913), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), - [anon_sym_BSLASHinput] = ACTIONS(4913), - [anon_sym_BSLASHsubfile] = ACTIONS(4913), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), - [anon_sym_BSLASHbibliography] = ACTIONS(4913), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), - [anon_sym_BSLASHincludesvg] = ACTIONS(4913), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), - [anon_sym_BSLASHimport] = ACTIONS(4913), - [anon_sym_BSLASHsubimport] = ACTIONS(4913), - [anon_sym_BSLASHinputfrom] = ACTIONS(4913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), - [anon_sym_BSLASHincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), - [anon_sym_BSLASHcaption] = ACTIONS(4913), - [anon_sym_BSLASHcite] = ACTIONS(4913), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCite] = ACTIONS(4913), - [anon_sym_BSLASHnocite] = ACTIONS(4913), - [anon_sym_BSLASHcitet] = ACTIONS(4913), - [anon_sym_BSLASHcitep] = ACTIONS(4913), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteauthor] = ACTIONS(4913), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitetitle] = ACTIONS(4913), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteyear] = ACTIONS(4913), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), - [anon_sym_BSLASHcitedate] = ACTIONS(4913), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), - [anon_sym_BSLASHciteurl] = ACTIONS(4913), - [anon_sym_BSLASHfullcite] = ACTIONS(4913), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), - [anon_sym_BSLASHcitealt] = ACTIONS(4913), - [anon_sym_BSLASHcitealp] = ACTIONS(4913), - [anon_sym_BSLASHcitetext] = ACTIONS(4913), - [anon_sym_BSLASHparencite] = ACTIONS(4913), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHParencite] = ACTIONS(4913), - [anon_sym_BSLASHfootcite] = ACTIONS(4913), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), - [anon_sym_BSLASHtextcite] = ACTIONS(4913), - [anon_sym_BSLASHTextcite] = ACTIONS(4913), - [anon_sym_BSLASHsmartcite] = ACTIONS(4913), - [anon_sym_BSLASHSmartcite] = ACTIONS(4913), - [anon_sym_BSLASHsupercite] = ACTIONS(4913), - [anon_sym_BSLASHautocite] = ACTIONS(4913), - [anon_sym_BSLASHAutocite] = ACTIONS(4913), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), - [anon_sym_BSLASHvolcite] = ACTIONS(4913), - [anon_sym_BSLASHVolcite] = ACTIONS(4913), - [anon_sym_BSLASHpvolcite] = ACTIONS(4913), - [anon_sym_BSLASHPvolcite] = ACTIONS(4913), - [anon_sym_BSLASHfvolcite] = ACTIONS(4913), - [anon_sym_BSLASHftvolcite] = ACTIONS(4913), - [anon_sym_BSLASHsvolcite] = ACTIONS(4913), - [anon_sym_BSLASHSvolcite] = ACTIONS(4913), - [anon_sym_BSLASHtvolcite] = ACTIONS(4913), - [anon_sym_BSLASHTvolcite] = ACTIONS(4913), - [anon_sym_BSLASHavolcite] = ACTIONS(4913), - [anon_sym_BSLASHAvolcite] = ACTIONS(4913), - [anon_sym_BSLASHnotecite] = ACTIONS(4913), - [anon_sym_BSLASHNotecite] = ACTIONS(4913), - [anon_sym_BSLASHpnotecite] = ACTIONS(4913), - [anon_sym_BSLASHPnotecite] = ACTIONS(4913), - [anon_sym_BSLASHfnotecite] = ACTIONS(4913), - [anon_sym_BSLASHlabel] = ACTIONS(4913), - [anon_sym_BSLASHref] = ACTIONS(4913), - [anon_sym_BSLASHeqref] = ACTIONS(4913), - [anon_sym_BSLASHvref] = ACTIONS(4913), - [anon_sym_BSLASHVref] = ACTIONS(4913), - [anon_sym_BSLASHautoref] = ACTIONS(4913), - [anon_sym_BSLASHpageref] = ACTIONS(4913), - [anon_sym_BSLASHcref] = ACTIONS(4913), - [anon_sym_BSLASHCref] = ACTIONS(4913), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnameCref] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), - [anon_sym_BSLASHlabelcref] = ACTIONS(4913), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange] = ACTIONS(4913), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHCrefrange] = ACTIONS(4913), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), - [anon_sym_BSLASHnewlabel] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand] = ACTIONS(4913), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), - [anon_sym_BSLASHdef] = ACTIONS(4913), - [anon_sym_BSLASHlet] = ACTIONS(4913), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), - [anon_sym_BSLASHgls] = ACTIONS(4913), - [anon_sym_BSLASHGls] = ACTIONS(4913), - [anon_sym_BSLASHGLS] = ACTIONS(4913), - [anon_sym_BSLASHglspl] = ACTIONS(4913), - [anon_sym_BSLASHGlspl] = ACTIONS(4913), - [anon_sym_BSLASHGLSpl] = ACTIONS(4913), - [anon_sym_BSLASHglsdisp] = ACTIONS(4913), - [anon_sym_BSLASHglslink] = ACTIONS(4913), - [anon_sym_BSLASHglstext] = ACTIONS(4913), - [anon_sym_BSLASHGlstext] = ACTIONS(4913), - [anon_sym_BSLASHGLStext] = ACTIONS(4913), - [anon_sym_BSLASHglsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), - [anon_sym_BSLASHglsplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSplural] = ACTIONS(4913), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), - [anon_sym_BSLASHglsname] = ACTIONS(4913), - [anon_sym_BSLASHGlsname] = ACTIONS(4913), - [anon_sym_BSLASHGLSname] = ACTIONS(4913), - [anon_sym_BSLASHglssymbol] = ACTIONS(4913), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), - [anon_sym_BSLASHglsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), - [anon_sym_BSLASHglsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), - [anon_sym_BSLASHglsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), - [anon_sym_BSLASHglsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), - [anon_sym_BSLASHglsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), - [anon_sym_BSLASHnewacronym] = ACTIONS(4913), - [anon_sym_BSLASHacrshort] = ACTIONS(4913), - [anon_sym_BSLASHAcrshort] = ACTIONS(4913), - [anon_sym_BSLASHACRshort] = ACTIONS(4913), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), - [anon_sym_BSLASHacrlong] = ACTIONS(4913), - [anon_sym_BSLASHAcrlong] = ACTIONS(4913), - [anon_sym_BSLASHACRlong] = ACTIONS(4913), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), - [anon_sym_BSLASHacrfull] = ACTIONS(4913), - [anon_sym_BSLASHAcrfull] = ACTIONS(4913), - [anon_sym_BSLASHACRfull] = ACTIONS(4913), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), - [anon_sym_BSLASHacs] = ACTIONS(4913), - [anon_sym_BSLASHAcs] = ACTIONS(4913), - [anon_sym_BSLASHacsp] = ACTIONS(4913), - [anon_sym_BSLASHAcsp] = ACTIONS(4913), - [anon_sym_BSLASHacl] = ACTIONS(4913), - [anon_sym_BSLASHAcl] = ACTIONS(4913), - [anon_sym_BSLASHaclp] = ACTIONS(4913), - [anon_sym_BSLASHAclp] = ACTIONS(4913), - [anon_sym_BSLASHacf] = ACTIONS(4913), - [anon_sym_BSLASHAcf] = ACTIONS(4913), - [anon_sym_BSLASHacfp] = ACTIONS(4913), - [anon_sym_BSLASHAcfp] = ACTIONS(4913), - [anon_sym_BSLASHac] = ACTIONS(4913), - [anon_sym_BSLASHAc] = ACTIONS(4913), - [anon_sym_BSLASHacp] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), - [anon_sym_BSLASHcolor] = ACTIONS(4913), - [anon_sym_BSLASHcolorbox] = ACTIONS(4913), - [anon_sym_BSLASHtextcolor] = ACTIONS(4913), - [anon_sym_BSLASHpagecolor] = ACTIONS(4913), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [sym_command_name] = ACTIONS(4992), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4992), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [sym_word] = ACTIONS(4992), + [sym_placeholder] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym__] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4992), + [anon_sym_BSLASHusepackage] = ACTIONS(4992), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4992), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4992), + [anon_sym_BSLASHinclude] = ACTIONS(4992), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4992), + [anon_sym_BSLASHinput] = ACTIONS(4992), + [anon_sym_BSLASHsubfile] = ACTIONS(4992), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), + [anon_sym_BSLASHbibliography] = ACTIONS(4992), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4992), + [anon_sym_BSLASHincludesvg] = ACTIONS(4992), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4992), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4992), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4992), + [anon_sym_BSLASHimport] = ACTIONS(4992), + [anon_sym_BSLASHsubimport] = ACTIONS(4992), + [anon_sym_BSLASHinputfrom] = ACTIONS(4992), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4992), + [anon_sym_BSLASHincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4992), + [anon_sym_BSLASHcaption] = ACTIONS(4992), + [anon_sym_BSLASHcite] = ACTIONS(4992), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCite] = ACTIONS(4992), + [anon_sym_BSLASHnocite] = ACTIONS(4992), + [anon_sym_BSLASHcitet] = ACTIONS(4992), + [anon_sym_BSLASHcitep] = ACTIONS(4992), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteauthor] = ACTIONS(4992), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4992), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitetitle] = ACTIONS(4992), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteyear] = ACTIONS(4992), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4990), + [anon_sym_BSLASHcitedate] = ACTIONS(4992), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4990), + [anon_sym_BSLASHciteurl] = ACTIONS(4992), + [anon_sym_BSLASHfullcite] = ACTIONS(4992), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4992), + [anon_sym_BSLASHcitealt] = ACTIONS(4992), + [anon_sym_BSLASHcitealp] = ACTIONS(4992), + [anon_sym_BSLASHcitetext] = ACTIONS(4992), + [anon_sym_BSLASHparencite] = ACTIONS(4992), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHParencite] = ACTIONS(4992), + [anon_sym_BSLASHfootcite] = ACTIONS(4992), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4992), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4992), + [anon_sym_BSLASHtextcite] = ACTIONS(4992), + [anon_sym_BSLASHTextcite] = ACTIONS(4992), + [anon_sym_BSLASHsmartcite] = ACTIONS(4992), + [anon_sym_BSLASHSmartcite] = ACTIONS(4992), + [anon_sym_BSLASHsupercite] = ACTIONS(4992), + [anon_sym_BSLASHautocite] = ACTIONS(4992), + [anon_sym_BSLASHAutocite] = ACTIONS(4992), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4990), + [anon_sym_BSLASHvolcite] = ACTIONS(4992), + [anon_sym_BSLASHVolcite] = ACTIONS(4992), + [anon_sym_BSLASHpvolcite] = ACTIONS(4992), + [anon_sym_BSLASHPvolcite] = ACTIONS(4992), + [anon_sym_BSLASHfvolcite] = ACTIONS(4992), + [anon_sym_BSLASHftvolcite] = ACTIONS(4992), + [anon_sym_BSLASHsvolcite] = ACTIONS(4992), + [anon_sym_BSLASHSvolcite] = ACTIONS(4992), + [anon_sym_BSLASHtvolcite] = ACTIONS(4992), + [anon_sym_BSLASHTvolcite] = ACTIONS(4992), + [anon_sym_BSLASHavolcite] = ACTIONS(4992), + [anon_sym_BSLASHAvolcite] = ACTIONS(4992), + [anon_sym_BSLASHnotecite] = ACTIONS(4992), + [anon_sym_BSLASHNotecite] = ACTIONS(4992), + [anon_sym_BSLASHpnotecite] = ACTIONS(4992), + [anon_sym_BSLASHPnotecite] = ACTIONS(4992), + [anon_sym_BSLASHfnotecite] = ACTIONS(4992), + [anon_sym_BSLASHlabel] = ACTIONS(4992), + [anon_sym_BSLASHref] = ACTIONS(4992), + [anon_sym_BSLASHeqref] = ACTIONS(4992), + [anon_sym_BSLASHvref] = ACTIONS(4992), + [anon_sym_BSLASHVref] = ACTIONS(4992), + [anon_sym_BSLASHautoref] = ACTIONS(4992), + [anon_sym_BSLASHpageref] = ACTIONS(4992), + [anon_sym_BSLASHcref] = ACTIONS(4992), + [anon_sym_BSLASHCref] = ACTIONS(4992), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnameCref] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4992), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4992), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4992), + [anon_sym_BSLASHlabelcref] = ACTIONS(4992), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange] = ACTIONS(4992), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHCrefrange] = ACTIONS(4992), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4990), + [anon_sym_BSLASHnewlabel] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand] = ACTIONS(4992), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4992), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4992), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdef] = ACTIONS(4992), + [anon_sym_BSLASHlet] = ACTIONS(4992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4992), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4992), + [anon_sym_BSLASHgls] = ACTIONS(4992), + [anon_sym_BSLASHGls] = ACTIONS(4992), + [anon_sym_BSLASHGLS] = ACTIONS(4992), + [anon_sym_BSLASHglspl] = ACTIONS(4992), + [anon_sym_BSLASHGlspl] = ACTIONS(4992), + [anon_sym_BSLASHGLSpl] = ACTIONS(4992), + [anon_sym_BSLASHglsdisp] = ACTIONS(4992), + [anon_sym_BSLASHglslink] = ACTIONS(4992), + [anon_sym_BSLASHglstext] = ACTIONS(4992), + [anon_sym_BSLASHGlstext] = ACTIONS(4992), + [anon_sym_BSLASHGLStext] = ACTIONS(4992), + [anon_sym_BSLASHglsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4992), + [anon_sym_BSLASHglsplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSplural] = ACTIONS(4992), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4992), + [anon_sym_BSLASHglsname] = ACTIONS(4992), + [anon_sym_BSLASHGlsname] = ACTIONS(4992), + [anon_sym_BSLASHGLSname] = ACTIONS(4992), + [anon_sym_BSLASHglssymbol] = ACTIONS(4992), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4992), + [anon_sym_BSLASHglsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4992), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4992), + [anon_sym_BSLASHglsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4992), + [anon_sym_BSLASHglsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4992), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4992), + [anon_sym_BSLASHglsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4992), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4992), + [anon_sym_BSLASHglsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4992), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4992), + [anon_sym_BSLASHnewacronym] = ACTIONS(4992), + [anon_sym_BSLASHacrshort] = ACTIONS(4992), + [anon_sym_BSLASHAcrshort] = ACTIONS(4992), + [anon_sym_BSLASHACRshort] = ACTIONS(4992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4992), + [anon_sym_BSLASHacrlong] = ACTIONS(4992), + [anon_sym_BSLASHAcrlong] = ACTIONS(4992), + [anon_sym_BSLASHACRlong] = ACTIONS(4992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4992), + [anon_sym_BSLASHacrfull] = ACTIONS(4992), + [anon_sym_BSLASHAcrfull] = ACTIONS(4992), + [anon_sym_BSLASHACRfull] = ACTIONS(4992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4992), + [anon_sym_BSLASHacs] = ACTIONS(4992), + [anon_sym_BSLASHAcs] = ACTIONS(4992), + [anon_sym_BSLASHacsp] = ACTIONS(4992), + [anon_sym_BSLASHAcsp] = ACTIONS(4992), + [anon_sym_BSLASHacl] = ACTIONS(4992), + [anon_sym_BSLASHAcl] = ACTIONS(4992), + [anon_sym_BSLASHaclp] = ACTIONS(4992), + [anon_sym_BSLASHAclp] = ACTIONS(4992), + [anon_sym_BSLASHacf] = ACTIONS(4992), + [anon_sym_BSLASHAcf] = ACTIONS(4992), + [anon_sym_BSLASHacfp] = ACTIONS(4992), + [anon_sym_BSLASHAcfp] = ACTIONS(4992), + [anon_sym_BSLASHac] = ACTIONS(4992), + [anon_sym_BSLASHAc] = ACTIONS(4992), + [anon_sym_BSLASHacp] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4992), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4992), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4992), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4992), + [anon_sym_BSLASHcolor] = ACTIONS(4992), + [anon_sym_BSLASHcolorbox] = ACTIONS(4992), + [anon_sym_BSLASHtextcolor] = ACTIONS(4992), + [anon_sym_BSLASHpagecolor] = ACTIONS(4992), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4992), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4992), }, [1517] = { - [sym_command_name] = ACTIONS(5165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [sym_word] = ACTIONS(5165), - [sym_placeholder] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym__] = ACTIONS(5165), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_PIPE] = ACTIONS(5165), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), - [anon_sym_BSLASHinclude] = ACTIONS(5165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), - [anon_sym_BSLASHinput] = ACTIONS(5165), - [anon_sym_BSLASHsubfile] = ACTIONS(5165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), - [anon_sym_BSLASHbibliography] = ACTIONS(5165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), - [anon_sym_BSLASHincludesvg] = ACTIONS(5165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), - [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(5165), - [anon_sym_BSLASHcite] = ACTIONS(5165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCite] = ACTIONS(5165), - [anon_sym_BSLASHnocite] = ACTIONS(5165), - [anon_sym_BSLASHcitet] = ACTIONS(5165), - [anon_sym_BSLASHcitep] = ACTIONS(5165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteyear] = ACTIONS(5165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), - [anon_sym_BSLASHcitedate] = ACTIONS(5165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), - [anon_sym_BSLASHciteurl] = ACTIONS(5165), - [anon_sym_BSLASHfullcite] = ACTIONS(5165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), - [anon_sym_BSLASHcitealt] = ACTIONS(5165), - [anon_sym_BSLASHcitealp] = ACTIONS(5165), - [anon_sym_BSLASHcitetext] = ACTIONS(5165), - [anon_sym_BSLASHparencite] = ACTIONS(5165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHParencite] = ACTIONS(5165), - [anon_sym_BSLASHfootcite] = ACTIONS(5165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), - [anon_sym_BSLASHtextcite] = ACTIONS(5165), - [anon_sym_BSLASHTextcite] = ACTIONS(5165), - [anon_sym_BSLASHsmartcite] = ACTIONS(5165), - [anon_sym_BSLASHSmartcite] = ACTIONS(5165), - [anon_sym_BSLASHsupercite] = ACTIONS(5165), - [anon_sym_BSLASHautocite] = ACTIONS(5165), - [anon_sym_BSLASHAutocite] = ACTIONS(5165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), - [anon_sym_BSLASHvolcite] = ACTIONS(5165), - [anon_sym_BSLASHVolcite] = ACTIONS(5165), - [anon_sym_BSLASHpvolcite] = ACTIONS(5165), - [anon_sym_BSLASHPvolcite] = ACTIONS(5165), - [anon_sym_BSLASHfvolcite] = ACTIONS(5165), - [anon_sym_BSLASHftvolcite] = ACTIONS(5165), - [anon_sym_BSLASHsvolcite] = ACTIONS(5165), - [anon_sym_BSLASHSvolcite] = ACTIONS(5165), - [anon_sym_BSLASHtvolcite] = ACTIONS(5165), - [anon_sym_BSLASHTvolcite] = ACTIONS(5165), - [anon_sym_BSLASHavolcite] = ACTIONS(5165), - [anon_sym_BSLASHAvolcite] = ACTIONS(5165), - [anon_sym_BSLASHnotecite] = ACTIONS(5165), - [anon_sym_BSLASHNotecite] = ACTIONS(5165), - [anon_sym_BSLASHpnotecite] = ACTIONS(5165), - [anon_sym_BSLASHPnotecite] = ACTIONS(5165), - [anon_sym_BSLASHfnotecite] = ACTIONS(5165), - [anon_sym_BSLASHlabel] = ACTIONS(5165), - [anon_sym_BSLASHref] = ACTIONS(5165), - [anon_sym_BSLASHeqref] = ACTIONS(5165), - [anon_sym_BSLASHvref] = ACTIONS(5165), - [anon_sym_BSLASHVref] = ACTIONS(5165), - [anon_sym_BSLASHautoref] = ACTIONS(5165), - [anon_sym_BSLASHpageref] = ACTIONS(5165), - [anon_sym_BSLASHcref] = ACTIONS(5165), - [anon_sym_BSLASHCref] = ACTIONS(5165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnameCref] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), - [anon_sym_BSLASHlabelcref] = ACTIONS(5165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange] = ACTIONS(5165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), - [anon_sym_BSLASHnewlabel] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand] = ACTIONS(5165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), - [anon_sym_BSLASHdef] = ACTIONS(5165), - [anon_sym_BSLASHlet] = ACTIONS(5165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), - [anon_sym_BSLASHgls] = ACTIONS(5165), - [anon_sym_BSLASHGls] = ACTIONS(5165), - [anon_sym_BSLASHGLS] = ACTIONS(5165), - [anon_sym_BSLASHglspl] = ACTIONS(5165), - [anon_sym_BSLASHGlspl] = ACTIONS(5165), - [anon_sym_BSLASHGLSpl] = ACTIONS(5165), - [anon_sym_BSLASHglsdisp] = ACTIONS(5165), - [anon_sym_BSLASHglslink] = ACTIONS(5165), - [anon_sym_BSLASHglstext] = ACTIONS(5165), - [anon_sym_BSLASHGlstext] = ACTIONS(5165), - [anon_sym_BSLASHGLStext] = ACTIONS(5165), - [anon_sym_BSLASHglsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), - [anon_sym_BSLASHglsplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSplural] = ACTIONS(5165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), - [anon_sym_BSLASHglsname] = ACTIONS(5165), - [anon_sym_BSLASHGlsname] = ACTIONS(5165), - [anon_sym_BSLASHGLSname] = ACTIONS(5165), - [anon_sym_BSLASHglssymbol] = ACTIONS(5165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), - [anon_sym_BSLASHglsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), - [anon_sym_BSLASHglsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), - [anon_sym_BSLASHglsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), - [anon_sym_BSLASHglsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), - [anon_sym_BSLASHglsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), - [anon_sym_BSLASHnewacronym] = ACTIONS(5165), - [anon_sym_BSLASHacrshort] = ACTIONS(5165), - [anon_sym_BSLASHAcrshort] = ACTIONS(5165), - [anon_sym_BSLASHACRshort] = ACTIONS(5165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), - [anon_sym_BSLASHacrlong] = ACTIONS(5165), - [anon_sym_BSLASHAcrlong] = ACTIONS(5165), - [anon_sym_BSLASHACRlong] = ACTIONS(5165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), - [anon_sym_BSLASHacrfull] = ACTIONS(5165), - [anon_sym_BSLASHAcrfull] = ACTIONS(5165), - [anon_sym_BSLASHACRfull] = ACTIONS(5165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), - [anon_sym_BSLASHacs] = ACTIONS(5165), - [anon_sym_BSLASHAcs] = ACTIONS(5165), - [anon_sym_BSLASHacsp] = ACTIONS(5165), - [anon_sym_BSLASHAcsp] = ACTIONS(5165), - [anon_sym_BSLASHacl] = ACTIONS(5165), - [anon_sym_BSLASHAcl] = ACTIONS(5165), - [anon_sym_BSLASHaclp] = ACTIONS(5165), - [anon_sym_BSLASHAclp] = ACTIONS(5165), - [anon_sym_BSLASHacf] = ACTIONS(5165), - [anon_sym_BSLASHAcf] = ACTIONS(5165), - [anon_sym_BSLASHacfp] = ACTIONS(5165), - [anon_sym_BSLASHAcfp] = ACTIONS(5165), - [anon_sym_BSLASHac] = ACTIONS(5165), - [anon_sym_BSLASHAc] = ACTIONS(5165), - [anon_sym_BSLASHacp] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), - [anon_sym_BSLASHcolor] = ACTIONS(5165), - [anon_sym_BSLASHcolorbox] = ACTIONS(5165), - [anon_sym_BSLASHtextcolor] = ACTIONS(5165), - [anon_sym_BSLASHpagecolor] = ACTIONS(5165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [sym_command_name] = ACTIONS(5244), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5244), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_word] = ACTIONS(5244), + [sym_placeholder] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_CARET] = ACTIONS(5244), + [anon_sym__] = ACTIONS(5244), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_SQUOTE] = ACTIONS(5244), + [anon_sym_BSLASHusepackage] = ACTIONS(5244), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5244), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5244), + [anon_sym_BSLASHinclude] = ACTIONS(5244), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5244), + [anon_sym_BSLASHinput] = ACTIONS(5244), + [anon_sym_BSLASHsubfile] = ACTIONS(5244), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5244), + [anon_sym_BSLASHbibliography] = ACTIONS(5244), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5244), + [anon_sym_BSLASHincludesvg] = ACTIONS(5244), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5244), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5244), + [anon_sym_BSLASHsubimport] = ACTIONS(5244), + [anon_sym_BSLASHinputfrom] = ACTIONS(5244), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5244), + [anon_sym_BSLASHincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5244), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [anon_sym_BSLASHcite] = ACTIONS(5244), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCite] = ACTIONS(5244), + [anon_sym_BSLASHnocite] = ACTIONS(5244), + [anon_sym_BSLASHcitet] = ACTIONS(5244), + [anon_sym_BSLASHcitep] = ACTIONS(5244), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteauthor] = ACTIONS(5244), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5244), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitetitle] = ACTIONS(5244), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteyear] = ACTIONS(5244), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5242), + [anon_sym_BSLASHcitedate] = ACTIONS(5244), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5242), + [anon_sym_BSLASHciteurl] = ACTIONS(5244), + [anon_sym_BSLASHfullcite] = ACTIONS(5244), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5244), + [anon_sym_BSLASHcitealt] = ACTIONS(5244), + [anon_sym_BSLASHcitealp] = ACTIONS(5244), + [anon_sym_BSLASHcitetext] = ACTIONS(5244), + [anon_sym_BSLASHparencite] = ACTIONS(5244), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHParencite] = ACTIONS(5244), + [anon_sym_BSLASHfootcite] = ACTIONS(5244), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5244), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5244), + [anon_sym_BSLASHtextcite] = ACTIONS(5244), + [anon_sym_BSLASHTextcite] = ACTIONS(5244), + [anon_sym_BSLASHsmartcite] = ACTIONS(5244), + [anon_sym_BSLASHSmartcite] = ACTIONS(5244), + [anon_sym_BSLASHsupercite] = ACTIONS(5244), + [anon_sym_BSLASHautocite] = ACTIONS(5244), + [anon_sym_BSLASHAutocite] = ACTIONS(5244), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5242), + [anon_sym_BSLASHvolcite] = ACTIONS(5244), + [anon_sym_BSLASHVolcite] = ACTIONS(5244), + [anon_sym_BSLASHpvolcite] = ACTIONS(5244), + [anon_sym_BSLASHPvolcite] = ACTIONS(5244), + [anon_sym_BSLASHfvolcite] = ACTIONS(5244), + [anon_sym_BSLASHftvolcite] = ACTIONS(5244), + [anon_sym_BSLASHsvolcite] = ACTIONS(5244), + [anon_sym_BSLASHSvolcite] = ACTIONS(5244), + [anon_sym_BSLASHtvolcite] = ACTIONS(5244), + [anon_sym_BSLASHTvolcite] = ACTIONS(5244), + [anon_sym_BSLASHavolcite] = ACTIONS(5244), + [anon_sym_BSLASHAvolcite] = ACTIONS(5244), + [anon_sym_BSLASHnotecite] = ACTIONS(5244), + [anon_sym_BSLASHNotecite] = ACTIONS(5244), + [anon_sym_BSLASHpnotecite] = ACTIONS(5244), + [anon_sym_BSLASHPnotecite] = ACTIONS(5244), + [anon_sym_BSLASHfnotecite] = ACTIONS(5244), + [anon_sym_BSLASHlabel] = ACTIONS(5244), + [anon_sym_BSLASHref] = ACTIONS(5244), + [anon_sym_BSLASHeqref] = ACTIONS(5244), + [anon_sym_BSLASHvref] = ACTIONS(5244), + [anon_sym_BSLASHVref] = ACTIONS(5244), + [anon_sym_BSLASHautoref] = ACTIONS(5244), + [anon_sym_BSLASHpageref] = ACTIONS(5244), + [anon_sym_BSLASHcref] = ACTIONS(5244), + [anon_sym_BSLASHCref] = ACTIONS(5244), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnameCref] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5244), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5244), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5244), + [anon_sym_BSLASHlabelcref] = ACTIONS(5244), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange] = ACTIONS(5244), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHCrefrange] = ACTIONS(5244), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5242), + [anon_sym_BSLASHnewlabel] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand] = ACTIONS(5244), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5244), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5244), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5242), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdef] = ACTIONS(5244), + [anon_sym_BSLASHlet] = ACTIONS(5244), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5244), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5244), + [anon_sym_BSLASHgls] = ACTIONS(5244), + [anon_sym_BSLASHGls] = ACTIONS(5244), + [anon_sym_BSLASHGLS] = ACTIONS(5244), + [anon_sym_BSLASHglspl] = ACTIONS(5244), + [anon_sym_BSLASHGlspl] = ACTIONS(5244), + [anon_sym_BSLASHGLSpl] = ACTIONS(5244), + [anon_sym_BSLASHglsdisp] = ACTIONS(5244), + [anon_sym_BSLASHglslink] = ACTIONS(5244), + [anon_sym_BSLASHglstext] = ACTIONS(5244), + [anon_sym_BSLASHGlstext] = ACTIONS(5244), + [anon_sym_BSLASHGLStext] = ACTIONS(5244), + [anon_sym_BSLASHglsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5244), + [anon_sym_BSLASHglsplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSplural] = ACTIONS(5244), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5244), + [anon_sym_BSLASHglsname] = ACTIONS(5244), + [anon_sym_BSLASHGlsname] = ACTIONS(5244), + [anon_sym_BSLASHGLSname] = ACTIONS(5244), + [anon_sym_BSLASHglssymbol] = ACTIONS(5244), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5244), + [anon_sym_BSLASHglsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5244), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5244), + [anon_sym_BSLASHglsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5244), + [anon_sym_BSLASHglsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5244), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5244), + [anon_sym_BSLASHglsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5244), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5244), + [anon_sym_BSLASHglsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5244), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5244), + [anon_sym_BSLASHnewacronym] = ACTIONS(5244), + [anon_sym_BSLASHacrshort] = ACTIONS(5244), + [anon_sym_BSLASHAcrshort] = ACTIONS(5244), + [anon_sym_BSLASHACRshort] = ACTIONS(5244), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5244), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5244), + [anon_sym_BSLASHacrlong] = ACTIONS(5244), + [anon_sym_BSLASHAcrlong] = ACTIONS(5244), + [anon_sym_BSLASHACRlong] = ACTIONS(5244), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5244), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5244), + [anon_sym_BSLASHacrfull] = ACTIONS(5244), + [anon_sym_BSLASHAcrfull] = ACTIONS(5244), + [anon_sym_BSLASHACRfull] = ACTIONS(5244), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5244), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5244), + [anon_sym_BSLASHacs] = ACTIONS(5244), + [anon_sym_BSLASHAcs] = ACTIONS(5244), + [anon_sym_BSLASHacsp] = ACTIONS(5244), + [anon_sym_BSLASHAcsp] = ACTIONS(5244), + [anon_sym_BSLASHacl] = ACTIONS(5244), + [anon_sym_BSLASHAcl] = ACTIONS(5244), + [anon_sym_BSLASHaclp] = ACTIONS(5244), + [anon_sym_BSLASHAclp] = ACTIONS(5244), + [anon_sym_BSLASHacf] = ACTIONS(5244), + [anon_sym_BSLASHAcf] = ACTIONS(5244), + [anon_sym_BSLASHacfp] = ACTIONS(5244), + [anon_sym_BSLASHAcfp] = ACTIONS(5244), + [anon_sym_BSLASHac] = ACTIONS(5244), + [anon_sym_BSLASHAc] = ACTIONS(5244), + [anon_sym_BSLASHacp] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5244), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5244), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5244), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5244), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5244), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5244), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5244), + [anon_sym_BSLASHcolor] = ACTIONS(5244), + [anon_sym_BSLASHcolorbox] = ACTIONS(5244), + [anon_sym_BSLASHtextcolor] = ACTIONS(5244), + [anon_sym_BSLASHpagecolor] = ACTIONS(5244), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5244), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5244), }, [1518] = { - [sym_command_name] = ACTIONS(5161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(5159), - [sym_word] = ACTIONS(5161), - [sym_placeholder] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym__] = ACTIONS(5161), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_PIPE] = ACTIONS(5161), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), - [anon_sym_BSLASHinclude] = ACTIONS(5161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), - [anon_sym_BSLASHinput] = ACTIONS(5161), - [anon_sym_BSLASHsubfile] = ACTIONS(5161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), - [anon_sym_BSLASHincludesvg] = ACTIONS(5161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), - [anon_sym_BSLASHimport] = ACTIONS(5161), - [anon_sym_BSLASHsubimport] = ACTIONS(5161), - [anon_sym_BSLASHinputfrom] = ACTIONS(5161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), - [anon_sym_BSLASHincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), - [anon_sym_BSLASHcaption] = ACTIONS(5161), - [anon_sym_BSLASHcite] = ACTIONS(5161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCite] = ACTIONS(5161), - [anon_sym_BSLASHnocite] = ACTIONS(5161), - [anon_sym_BSLASHcitet] = ACTIONS(5161), - [anon_sym_BSLASHcitep] = ACTIONS(5161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteyear] = ACTIONS(5161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), - [anon_sym_BSLASHcitedate] = ACTIONS(5161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), - [anon_sym_BSLASHciteurl] = ACTIONS(5161), - [anon_sym_BSLASHfullcite] = ACTIONS(5161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), - [anon_sym_BSLASHcitealt] = ACTIONS(5161), - [anon_sym_BSLASHcitealp] = ACTIONS(5161), - [anon_sym_BSLASHcitetext] = ACTIONS(5161), - [anon_sym_BSLASHparencite] = ACTIONS(5161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHParencite] = ACTIONS(5161), - [anon_sym_BSLASHfootcite] = ACTIONS(5161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), - [anon_sym_BSLASHtextcite] = ACTIONS(5161), - [anon_sym_BSLASHTextcite] = ACTIONS(5161), - [anon_sym_BSLASHsmartcite] = ACTIONS(5161), - [anon_sym_BSLASHSmartcite] = ACTIONS(5161), - [anon_sym_BSLASHsupercite] = ACTIONS(5161), - [anon_sym_BSLASHautocite] = ACTIONS(5161), - [anon_sym_BSLASHAutocite] = ACTIONS(5161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), - [anon_sym_BSLASHvolcite] = ACTIONS(5161), - [anon_sym_BSLASHVolcite] = ACTIONS(5161), - [anon_sym_BSLASHpvolcite] = ACTIONS(5161), - [anon_sym_BSLASHPvolcite] = ACTIONS(5161), - [anon_sym_BSLASHfvolcite] = ACTIONS(5161), - [anon_sym_BSLASHftvolcite] = ACTIONS(5161), - [anon_sym_BSLASHsvolcite] = ACTIONS(5161), - [anon_sym_BSLASHSvolcite] = ACTIONS(5161), - [anon_sym_BSLASHtvolcite] = ACTIONS(5161), - [anon_sym_BSLASHTvolcite] = ACTIONS(5161), - [anon_sym_BSLASHavolcite] = ACTIONS(5161), - [anon_sym_BSLASHAvolcite] = ACTIONS(5161), - [anon_sym_BSLASHnotecite] = ACTIONS(5161), - [anon_sym_BSLASHNotecite] = ACTIONS(5161), - [anon_sym_BSLASHpnotecite] = ACTIONS(5161), - [anon_sym_BSLASHPnotecite] = ACTIONS(5161), - [anon_sym_BSLASHfnotecite] = ACTIONS(5161), - [anon_sym_BSLASHlabel] = ACTIONS(5161), - [anon_sym_BSLASHref] = ACTIONS(5161), - [anon_sym_BSLASHeqref] = ACTIONS(5161), - [anon_sym_BSLASHvref] = ACTIONS(5161), - [anon_sym_BSLASHVref] = ACTIONS(5161), - [anon_sym_BSLASHautoref] = ACTIONS(5161), - [anon_sym_BSLASHpageref] = ACTIONS(5161), - [anon_sym_BSLASHcref] = ACTIONS(5161), - [anon_sym_BSLASHCref] = ACTIONS(5161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnameCref] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), - [anon_sym_BSLASHlabelcref] = ACTIONS(5161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange] = ACTIONS(5161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), - [anon_sym_BSLASHnewlabel] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand] = ACTIONS(5161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), - [anon_sym_BSLASHdef] = ACTIONS(5161), - [anon_sym_BSLASHlet] = ACTIONS(5161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), - [anon_sym_BSLASHgls] = ACTIONS(5161), - [anon_sym_BSLASHGls] = ACTIONS(5161), - [anon_sym_BSLASHGLS] = ACTIONS(5161), - [anon_sym_BSLASHglspl] = ACTIONS(5161), - [anon_sym_BSLASHGlspl] = ACTIONS(5161), - [anon_sym_BSLASHGLSpl] = ACTIONS(5161), - [anon_sym_BSLASHglsdisp] = ACTIONS(5161), - [anon_sym_BSLASHglslink] = ACTIONS(5161), - [anon_sym_BSLASHglstext] = ACTIONS(5161), - [anon_sym_BSLASHGlstext] = ACTIONS(5161), - [anon_sym_BSLASHGLStext] = ACTIONS(5161), - [anon_sym_BSLASHglsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), - [anon_sym_BSLASHglsplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSplural] = ACTIONS(5161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), - [anon_sym_BSLASHglsname] = ACTIONS(5161), - [anon_sym_BSLASHGlsname] = ACTIONS(5161), - [anon_sym_BSLASHGLSname] = ACTIONS(5161), - [anon_sym_BSLASHglssymbol] = ACTIONS(5161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), - [anon_sym_BSLASHglsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), - [anon_sym_BSLASHglsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), - [anon_sym_BSLASHglsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), - [anon_sym_BSLASHglsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), - [anon_sym_BSLASHglsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5161), - [anon_sym_BSLASHacrshort] = ACTIONS(5161), - [anon_sym_BSLASHAcrshort] = ACTIONS(5161), - [anon_sym_BSLASHACRshort] = ACTIONS(5161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), - [anon_sym_BSLASHacrlong] = ACTIONS(5161), - [anon_sym_BSLASHAcrlong] = ACTIONS(5161), - [anon_sym_BSLASHACRlong] = ACTIONS(5161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), - [anon_sym_BSLASHacrfull] = ACTIONS(5161), - [anon_sym_BSLASHAcrfull] = ACTIONS(5161), - [anon_sym_BSLASHACRfull] = ACTIONS(5161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), - [anon_sym_BSLASHacs] = ACTIONS(5161), - [anon_sym_BSLASHAcs] = ACTIONS(5161), - [anon_sym_BSLASHacsp] = ACTIONS(5161), - [anon_sym_BSLASHAcsp] = ACTIONS(5161), - [anon_sym_BSLASHacl] = ACTIONS(5161), - [anon_sym_BSLASHAcl] = ACTIONS(5161), - [anon_sym_BSLASHaclp] = ACTIONS(5161), - [anon_sym_BSLASHAclp] = ACTIONS(5161), - [anon_sym_BSLASHacf] = ACTIONS(5161), - [anon_sym_BSLASHAcf] = ACTIONS(5161), - [anon_sym_BSLASHacfp] = ACTIONS(5161), - [anon_sym_BSLASHAcfp] = ACTIONS(5161), - [anon_sym_BSLASHac] = ACTIONS(5161), - [anon_sym_BSLASHAc] = ACTIONS(5161), - [anon_sym_BSLASHacp] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), - [anon_sym_BSLASHcolor] = ACTIONS(5161), - [anon_sym_BSLASHcolorbox] = ACTIONS(5161), - [anon_sym_BSLASHtextcolor] = ACTIONS(5161), - [anon_sym_BSLASHpagecolor] = ACTIONS(5161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [sym_command_name] = ACTIONS(5240), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5240), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [sym_word] = ACTIONS(5240), + [sym_placeholder] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_CARET] = ACTIONS(5240), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_SQUOTE] = ACTIONS(5240), + [anon_sym_BSLASHusepackage] = ACTIONS(5240), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5240), + [anon_sym_BSLASHinclude] = ACTIONS(5240), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5240), + [anon_sym_BSLASHinput] = ACTIONS(5240), + [anon_sym_BSLASHsubfile] = ACTIONS(5240), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5240), + [anon_sym_BSLASHbibliography] = ACTIONS(5240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5240), + [anon_sym_BSLASHincludesvg] = ACTIONS(5240), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5240), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5240), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5240), + [anon_sym_BSLASHimport] = ACTIONS(5240), + [anon_sym_BSLASHsubimport] = ACTIONS(5240), + [anon_sym_BSLASHinputfrom] = ACTIONS(5240), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5240), + [anon_sym_BSLASHincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5240), + [anon_sym_BSLASHcaption] = ACTIONS(5240), + [anon_sym_BSLASHcite] = ACTIONS(5240), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCite] = ACTIONS(5240), + [anon_sym_BSLASHnocite] = ACTIONS(5240), + [anon_sym_BSLASHcitet] = ACTIONS(5240), + [anon_sym_BSLASHcitep] = ACTIONS(5240), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteauthor] = ACTIONS(5240), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5240), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitetitle] = ACTIONS(5240), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteyear] = ACTIONS(5240), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5238), + [anon_sym_BSLASHcitedate] = ACTIONS(5240), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5238), + [anon_sym_BSLASHciteurl] = ACTIONS(5240), + [anon_sym_BSLASHfullcite] = ACTIONS(5240), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5240), + [anon_sym_BSLASHcitealt] = ACTIONS(5240), + [anon_sym_BSLASHcitealp] = ACTIONS(5240), + [anon_sym_BSLASHcitetext] = ACTIONS(5240), + [anon_sym_BSLASHparencite] = ACTIONS(5240), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHParencite] = ACTIONS(5240), + [anon_sym_BSLASHfootcite] = ACTIONS(5240), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5240), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5240), + [anon_sym_BSLASHtextcite] = ACTIONS(5240), + [anon_sym_BSLASHTextcite] = ACTIONS(5240), + [anon_sym_BSLASHsmartcite] = ACTIONS(5240), + [anon_sym_BSLASHSmartcite] = ACTIONS(5240), + [anon_sym_BSLASHsupercite] = ACTIONS(5240), + [anon_sym_BSLASHautocite] = ACTIONS(5240), + [anon_sym_BSLASHAutocite] = ACTIONS(5240), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5238), + [anon_sym_BSLASHvolcite] = ACTIONS(5240), + [anon_sym_BSLASHVolcite] = ACTIONS(5240), + [anon_sym_BSLASHpvolcite] = ACTIONS(5240), + [anon_sym_BSLASHPvolcite] = ACTIONS(5240), + [anon_sym_BSLASHfvolcite] = ACTIONS(5240), + [anon_sym_BSLASHftvolcite] = ACTIONS(5240), + [anon_sym_BSLASHsvolcite] = ACTIONS(5240), + [anon_sym_BSLASHSvolcite] = ACTIONS(5240), + [anon_sym_BSLASHtvolcite] = ACTIONS(5240), + [anon_sym_BSLASHTvolcite] = ACTIONS(5240), + [anon_sym_BSLASHavolcite] = ACTIONS(5240), + [anon_sym_BSLASHAvolcite] = ACTIONS(5240), + [anon_sym_BSLASHnotecite] = ACTIONS(5240), + [anon_sym_BSLASHNotecite] = ACTIONS(5240), + [anon_sym_BSLASHpnotecite] = ACTIONS(5240), + [anon_sym_BSLASHPnotecite] = ACTIONS(5240), + [anon_sym_BSLASHfnotecite] = ACTIONS(5240), + [anon_sym_BSLASHlabel] = ACTIONS(5240), + [anon_sym_BSLASHref] = ACTIONS(5240), + [anon_sym_BSLASHeqref] = ACTIONS(5240), + [anon_sym_BSLASHvref] = ACTIONS(5240), + [anon_sym_BSLASHVref] = ACTIONS(5240), + [anon_sym_BSLASHautoref] = ACTIONS(5240), + [anon_sym_BSLASHpageref] = ACTIONS(5240), + [anon_sym_BSLASHcref] = ACTIONS(5240), + [anon_sym_BSLASHCref] = ACTIONS(5240), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnameCref] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5240), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5240), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5240), + [anon_sym_BSLASHlabelcref] = ACTIONS(5240), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange] = ACTIONS(5240), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHCrefrange] = ACTIONS(5240), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5238), + [anon_sym_BSLASHnewlabel] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand] = ACTIONS(5240), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5240), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5240), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5238), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5240), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdef] = ACTIONS(5240), + [anon_sym_BSLASHlet] = ACTIONS(5240), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5240), + [anon_sym_BSLASHgls] = ACTIONS(5240), + [anon_sym_BSLASHGls] = ACTIONS(5240), + [anon_sym_BSLASHGLS] = ACTIONS(5240), + [anon_sym_BSLASHglspl] = ACTIONS(5240), + [anon_sym_BSLASHGlspl] = ACTIONS(5240), + [anon_sym_BSLASHGLSpl] = ACTIONS(5240), + [anon_sym_BSLASHglsdisp] = ACTIONS(5240), + [anon_sym_BSLASHglslink] = ACTIONS(5240), + [anon_sym_BSLASHglstext] = ACTIONS(5240), + [anon_sym_BSLASHGlstext] = ACTIONS(5240), + [anon_sym_BSLASHGLStext] = ACTIONS(5240), + [anon_sym_BSLASHglsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5240), + [anon_sym_BSLASHglsplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSplural] = ACTIONS(5240), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5240), + [anon_sym_BSLASHglsname] = ACTIONS(5240), + [anon_sym_BSLASHGlsname] = ACTIONS(5240), + [anon_sym_BSLASHGLSname] = ACTIONS(5240), + [anon_sym_BSLASHglssymbol] = ACTIONS(5240), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5240), + [anon_sym_BSLASHglsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5240), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5240), + [anon_sym_BSLASHglsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5240), + [anon_sym_BSLASHglsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5240), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5240), + [anon_sym_BSLASHglsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5240), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5240), + [anon_sym_BSLASHglsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5240), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5240), + [anon_sym_BSLASHnewacronym] = ACTIONS(5240), + [anon_sym_BSLASHacrshort] = ACTIONS(5240), + [anon_sym_BSLASHAcrshort] = ACTIONS(5240), + [anon_sym_BSLASHACRshort] = ACTIONS(5240), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5240), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5240), + [anon_sym_BSLASHacrlong] = ACTIONS(5240), + [anon_sym_BSLASHAcrlong] = ACTIONS(5240), + [anon_sym_BSLASHACRlong] = ACTIONS(5240), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5240), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5240), + [anon_sym_BSLASHacrfull] = ACTIONS(5240), + [anon_sym_BSLASHAcrfull] = ACTIONS(5240), + [anon_sym_BSLASHACRfull] = ACTIONS(5240), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5240), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5240), + [anon_sym_BSLASHacs] = ACTIONS(5240), + [anon_sym_BSLASHAcs] = ACTIONS(5240), + [anon_sym_BSLASHacsp] = ACTIONS(5240), + [anon_sym_BSLASHAcsp] = ACTIONS(5240), + [anon_sym_BSLASHacl] = ACTIONS(5240), + [anon_sym_BSLASHAcl] = ACTIONS(5240), + [anon_sym_BSLASHaclp] = ACTIONS(5240), + [anon_sym_BSLASHAclp] = ACTIONS(5240), + [anon_sym_BSLASHacf] = ACTIONS(5240), + [anon_sym_BSLASHAcf] = ACTIONS(5240), + [anon_sym_BSLASHacfp] = ACTIONS(5240), + [anon_sym_BSLASHAcfp] = ACTIONS(5240), + [anon_sym_BSLASHac] = ACTIONS(5240), + [anon_sym_BSLASHAc] = ACTIONS(5240), + [anon_sym_BSLASHacp] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5240), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5240), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5240), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5240), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5240), + [anon_sym_BSLASHcolor] = ACTIONS(5240), + [anon_sym_BSLASHcolorbox] = ACTIONS(5240), + [anon_sym_BSLASHtextcolor] = ACTIONS(5240), + [anon_sym_BSLASHpagecolor] = ACTIONS(5240), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5240), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5240), }, [1519] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [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_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_BSLASHdeclaretheorem] = ACTIONS(4909), - [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_command_name] = ACTIONS(4988), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4988), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [sym_word] = ACTIONS(4988), + [sym_placeholder] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym__] = ACTIONS(4988), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_BSLASHusepackage] = ACTIONS(4988), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4988), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4988), + [anon_sym_BSLASHinclude] = ACTIONS(4988), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4988), + [anon_sym_BSLASHinput] = ACTIONS(4988), + [anon_sym_BSLASHsubfile] = ACTIONS(4988), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4988), + [anon_sym_BSLASHbibliography] = ACTIONS(4988), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4988), + [anon_sym_BSLASHincludesvg] = ACTIONS(4988), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4988), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4988), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4988), + [anon_sym_BSLASHimport] = ACTIONS(4988), + [anon_sym_BSLASHsubimport] = ACTIONS(4988), + [anon_sym_BSLASHinputfrom] = ACTIONS(4988), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4988), + [anon_sym_BSLASHincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4988), + [anon_sym_BSLASHcaption] = ACTIONS(4988), + [anon_sym_BSLASHcite] = ACTIONS(4988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCite] = ACTIONS(4988), + [anon_sym_BSLASHnocite] = ACTIONS(4988), + [anon_sym_BSLASHcitet] = ACTIONS(4988), + [anon_sym_BSLASHcitep] = ACTIONS(4988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteauthor] = ACTIONS(4988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitetitle] = ACTIONS(4988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteyear] = ACTIONS(4988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4986), + [anon_sym_BSLASHcitedate] = ACTIONS(4988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4986), + [anon_sym_BSLASHciteurl] = ACTIONS(4988), + [anon_sym_BSLASHfullcite] = ACTIONS(4988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4988), + [anon_sym_BSLASHcitealt] = ACTIONS(4988), + [anon_sym_BSLASHcitealp] = ACTIONS(4988), + [anon_sym_BSLASHcitetext] = ACTIONS(4988), + [anon_sym_BSLASHparencite] = ACTIONS(4988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHParencite] = ACTIONS(4988), + [anon_sym_BSLASHfootcite] = ACTIONS(4988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4988), + [anon_sym_BSLASHtextcite] = ACTIONS(4988), + [anon_sym_BSLASHTextcite] = ACTIONS(4988), + [anon_sym_BSLASHsmartcite] = ACTIONS(4988), + [anon_sym_BSLASHSmartcite] = ACTIONS(4988), + [anon_sym_BSLASHsupercite] = ACTIONS(4988), + [anon_sym_BSLASHautocite] = ACTIONS(4988), + [anon_sym_BSLASHAutocite] = ACTIONS(4988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4986), + [anon_sym_BSLASHvolcite] = ACTIONS(4988), + [anon_sym_BSLASHVolcite] = ACTIONS(4988), + [anon_sym_BSLASHpvolcite] = ACTIONS(4988), + [anon_sym_BSLASHPvolcite] = ACTIONS(4988), + [anon_sym_BSLASHfvolcite] = ACTIONS(4988), + [anon_sym_BSLASHftvolcite] = ACTIONS(4988), + [anon_sym_BSLASHsvolcite] = ACTIONS(4988), + [anon_sym_BSLASHSvolcite] = ACTIONS(4988), + [anon_sym_BSLASHtvolcite] = ACTIONS(4988), + [anon_sym_BSLASHTvolcite] = ACTIONS(4988), + [anon_sym_BSLASHavolcite] = ACTIONS(4988), + [anon_sym_BSLASHAvolcite] = ACTIONS(4988), + [anon_sym_BSLASHnotecite] = ACTIONS(4988), + [anon_sym_BSLASHNotecite] = ACTIONS(4988), + [anon_sym_BSLASHpnotecite] = ACTIONS(4988), + [anon_sym_BSLASHPnotecite] = ACTIONS(4988), + [anon_sym_BSLASHfnotecite] = ACTIONS(4988), + [anon_sym_BSLASHlabel] = ACTIONS(4988), + [anon_sym_BSLASHref] = ACTIONS(4988), + [anon_sym_BSLASHeqref] = ACTIONS(4988), + [anon_sym_BSLASHvref] = ACTIONS(4988), + [anon_sym_BSLASHVref] = ACTIONS(4988), + [anon_sym_BSLASHautoref] = ACTIONS(4988), + [anon_sym_BSLASHpageref] = ACTIONS(4988), + [anon_sym_BSLASHcref] = ACTIONS(4988), + [anon_sym_BSLASHCref] = ACTIONS(4988), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnameCref] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4988), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4988), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4988), + [anon_sym_BSLASHlabelcref] = ACTIONS(4988), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange] = ACTIONS(4988), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHCrefrange] = ACTIONS(4988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4986), + [anon_sym_BSLASHnewlabel] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand] = ACTIONS(4988), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4988), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4988), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdef] = ACTIONS(4988), + [anon_sym_BSLASHlet] = ACTIONS(4988), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4988), + [anon_sym_BSLASHgls] = ACTIONS(4988), + [anon_sym_BSLASHGls] = ACTIONS(4988), + [anon_sym_BSLASHGLS] = ACTIONS(4988), + [anon_sym_BSLASHglspl] = ACTIONS(4988), + [anon_sym_BSLASHGlspl] = ACTIONS(4988), + [anon_sym_BSLASHGLSpl] = ACTIONS(4988), + [anon_sym_BSLASHglsdisp] = ACTIONS(4988), + [anon_sym_BSLASHglslink] = ACTIONS(4988), + [anon_sym_BSLASHglstext] = ACTIONS(4988), + [anon_sym_BSLASHGlstext] = ACTIONS(4988), + [anon_sym_BSLASHGLStext] = ACTIONS(4988), + [anon_sym_BSLASHglsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4988), + [anon_sym_BSLASHglsplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSplural] = ACTIONS(4988), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4988), + [anon_sym_BSLASHglsname] = ACTIONS(4988), + [anon_sym_BSLASHGlsname] = ACTIONS(4988), + [anon_sym_BSLASHGLSname] = ACTIONS(4988), + [anon_sym_BSLASHglssymbol] = ACTIONS(4988), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4988), + [anon_sym_BSLASHglsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4988), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4988), + [anon_sym_BSLASHglsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4988), + [anon_sym_BSLASHglsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4988), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4988), + [anon_sym_BSLASHglsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4988), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4988), + [anon_sym_BSLASHglsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4988), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4988), + [anon_sym_BSLASHnewacronym] = ACTIONS(4988), + [anon_sym_BSLASHacrshort] = ACTIONS(4988), + [anon_sym_BSLASHAcrshort] = ACTIONS(4988), + [anon_sym_BSLASHACRshort] = ACTIONS(4988), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4988), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4988), + [anon_sym_BSLASHacrlong] = ACTIONS(4988), + [anon_sym_BSLASHAcrlong] = ACTIONS(4988), + [anon_sym_BSLASHACRlong] = ACTIONS(4988), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4988), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4988), + [anon_sym_BSLASHacrfull] = ACTIONS(4988), + [anon_sym_BSLASHAcrfull] = ACTIONS(4988), + [anon_sym_BSLASHACRfull] = ACTIONS(4988), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4988), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4988), + [anon_sym_BSLASHacs] = ACTIONS(4988), + [anon_sym_BSLASHAcs] = ACTIONS(4988), + [anon_sym_BSLASHacsp] = ACTIONS(4988), + [anon_sym_BSLASHAcsp] = ACTIONS(4988), + [anon_sym_BSLASHacl] = ACTIONS(4988), + [anon_sym_BSLASHAcl] = ACTIONS(4988), + [anon_sym_BSLASHaclp] = ACTIONS(4988), + [anon_sym_BSLASHAclp] = ACTIONS(4988), + [anon_sym_BSLASHacf] = ACTIONS(4988), + [anon_sym_BSLASHAcf] = ACTIONS(4988), + [anon_sym_BSLASHacfp] = ACTIONS(4988), + [anon_sym_BSLASHAcfp] = ACTIONS(4988), + [anon_sym_BSLASHac] = ACTIONS(4988), + [anon_sym_BSLASHAc] = ACTIONS(4988), + [anon_sym_BSLASHacp] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4988), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4988), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4988), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4988), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4988), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4986), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4988), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4988), + [anon_sym_BSLASHcolorbox] = ACTIONS(4988), + [anon_sym_BSLASHtextcolor] = ACTIONS(4988), + [anon_sym_BSLASHpagecolor] = ACTIONS(4988), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4988), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4988), }, [1520] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5185), - [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), + [sym_command_name] = ACTIONS(5264), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5264), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_RBRACE] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [sym_placeholder] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_SLASH] = ACTIONS(5264), + [anon_sym_CARET] = ACTIONS(5264), + [anon_sym__] = ACTIONS(5264), + [anon_sym_LT] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5264), + [anon_sym_BANG] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_SQUOTE] = ACTIONS(5264), + [anon_sym_BSLASHusepackage] = ACTIONS(5264), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5264), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5264), + [anon_sym_BSLASHinclude] = ACTIONS(5264), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5264), + [anon_sym_BSLASHinput] = ACTIONS(5264), + [anon_sym_BSLASHsubfile] = ACTIONS(5264), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5264), + [anon_sym_BSLASHbibliography] = ACTIONS(5264), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5264), + [anon_sym_BSLASHincludesvg] = ACTIONS(5264), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5264), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5264), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5264), + [anon_sym_BSLASHimport] = ACTIONS(5264), + [anon_sym_BSLASHsubimport] = ACTIONS(5264), + [anon_sym_BSLASHinputfrom] = ACTIONS(5264), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5264), + [anon_sym_BSLASHincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5264), + [anon_sym_BSLASHcaption] = ACTIONS(5264), + [anon_sym_BSLASHcite] = ACTIONS(5264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCite] = ACTIONS(5264), + [anon_sym_BSLASHnocite] = ACTIONS(5264), + [anon_sym_BSLASHcitet] = ACTIONS(5264), + [anon_sym_BSLASHcitep] = ACTIONS(5264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteauthor] = ACTIONS(5264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitetitle] = ACTIONS(5264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteyear] = ACTIONS(5264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5262), + [anon_sym_BSLASHcitedate] = ACTIONS(5264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5262), + [anon_sym_BSLASHciteurl] = ACTIONS(5264), + [anon_sym_BSLASHfullcite] = ACTIONS(5264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5264), + [anon_sym_BSLASHcitealt] = ACTIONS(5264), + [anon_sym_BSLASHcitealp] = ACTIONS(5264), + [anon_sym_BSLASHcitetext] = ACTIONS(5264), + [anon_sym_BSLASHparencite] = ACTIONS(5264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHParencite] = ACTIONS(5264), + [anon_sym_BSLASHfootcite] = ACTIONS(5264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5264), + [anon_sym_BSLASHtextcite] = ACTIONS(5264), + [anon_sym_BSLASHTextcite] = ACTIONS(5264), + [anon_sym_BSLASHsmartcite] = ACTIONS(5264), + [anon_sym_BSLASHSmartcite] = ACTIONS(5264), + [anon_sym_BSLASHsupercite] = ACTIONS(5264), + [anon_sym_BSLASHautocite] = ACTIONS(5264), + [anon_sym_BSLASHAutocite] = ACTIONS(5264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5262), + [anon_sym_BSLASHvolcite] = ACTIONS(5264), + [anon_sym_BSLASHVolcite] = ACTIONS(5264), + [anon_sym_BSLASHpvolcite] = ACTIONS(5264), + [anon_sym_BSLASHPvolcite] = ACTIONS(5264), + [anon_sym_BSLASHfvolcite] = ACTIONS(5264), + [anon_sym_BSLASHftvolcite] = ACTIONS(5264), + [anon_sym_BSLASHsvolcite] = ACTIONS(5264), + [anon_sym_BSLASHSvolcite] = ACTIONS(5264), + [anon_sym_BSLASHtvolcite] = ACTIONS(5264), + [anon_sym_BSLASHTvolcite] = ACTIONS(5264), + [anon_sym_BSLASHavolcite] = ACTIONS(5264), + [anon_sym_BSLASHAvolcite] = ACTIONS(5264), + [anon_sym_BSLASHnotecite] = ACTIONS(5264), + [anon_sym_BSLASHNotecite] = ACTIONS(5264), + [anon_sym_BSLASHpnotecite] = ACTIONS(5264), + [anon_sym_BSLASHPnotecite] = ACTIONS(5264), + [anon_sym_BSLASHfnotecite] = ACTIONS(5264), + [anon_sym_BSLASHlabel] = ACTIONS(5264), + [anon_sym_BSLASHref] = ACTIONS(5264), + [anon_sym_BSLASHeqref] = ACTIONS(5264), + [anon_sym_BSLASHvref] = ACTIONS(5264), + [anon_sym_BSLASHVref] = ACTIONS(5264), + [anon_sym_BSLASHautoref] = ACTIONS(5264), + [anon_sym_BSLASHpageref] = ACTIONS(5264), + [anon_sym_BSLASHcref] = ACTIONS(5264), + [anon_sym_BSLASHCref] = ACTIONS(5264), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnameCref] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5264), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5264), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5264), + [anon_sym_BSLASHlabelcref] = ACTIONS(5264), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange] = ACTIONS(5264), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5264), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5262), + [anon_sym_BSLASHnewlabel] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand] = ACTIONS(5264), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5264), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5264), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5262), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5264), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdef] = ACTIONS(5264), + [anon_sym_BSLASHlet] = ACTIONS(5264), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5264), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5264), + [anon_sym_BSLASHgls] = ACTIONS(5264), + [anon_sym_BSLASHGls] = ACTIONS(5264), + [anon_sym_BSLASHGLS] = ACTIONS(5264), + [anon_sym_BSLASHglspl] = ACTIONS(5264), + [anon_sym_BSLASHGlspl] = ACTIONS(5264), + [anon_sym_BSLASHGLSpl] = ACTIONS(5264), + [anon_sym_BSLASHglsdisp] = ACTIONS(5264), + [anon_sym_BSLASHglslink] = ACTIONS(5264), + [anon_sym_BSLASHglstext] = ACTIONS(5264), + [anon_sym_BSLASHGlstext] = ACTIONS(5264), + [anon_sym_BSLASHGLStext] = ACTIONS(5264), + [anon_sym_BSLASHglsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5264), + [anon_sym_BSLASHglsplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSplural] = ACTIONS(5264), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5264), + [anon_sym_BSLASHglsname] = ACTIONS(5264), + [anon_sym_BSLASHGlsname] = ACTIONS(5264), + [anon_sym_BSLASHGLSname] = ACTIONS(5264), + [anon_sym_BSLASHglssymbol] = ACTIONS(5264), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5264), + [anon_sym_BSLASHglsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5264), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5264), + [anon_sym_BSLASHglsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5264), + [anon_sym_BSLASHglsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5264), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5264), + [anon_sym_BSLASHglsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5264), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5264), + [anon_sym_BSLASHglsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5264), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5264), + [anon_sym_BSLASHnewacronym] = ACTIONS(5264), + [anon_sym_BSLASHacrshort] = ACTIONS(5264), + [anon_sym_BSLASHAcrshort] = ACTIONS(5264), + [anon_sym_BSLASHACRshort] = ACTIONS(5264), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5264), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5264), + [anon_sym_BSLASHacrlong] = ACTIONS(5264), + [anon_sym_BSLASHAcrlong] = ACTIONS(5264), + [anon_sym_BSLASHACRlong] = ACTIONS(5264), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5264), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5264), + [anon_sym_BSLASHacrfull] = ACTIONS(5264), + [anon_sym_BSLASHAcrfull] = ACTIONS(5264), + [anon_sym_BSLASHACRfull] = ACTIONS(5264), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5264), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5264), + [anon_sym_BSLASHacs] = ACTIONS(5264), + [anon_sym_BSLASHAcs] = ACTIONS(5264), + [anon_sym_BSLASHacsp] = ACTIONS(5264), + [anon_sym_BSLASHAcsp] = ACTIONS(5264), + [anon_sym_BSLASHacl] = ACTIONS(5264), + [anon_sym_BSLASHAcl] = ACTIONS(5264), + [anon_sym_BSLASHaclp] = ACTIONS(5264), + [anon_sym_BSLASHAclp] = ACTIONS(5264), + [anon_sym_BSLASHacf] = ACTIONS(5264), + [anon_sym_BSLASHAcf] = ACTIONS(5264), + [anon_sym_BSLASHacfp] = ACTIONS(5264), + [anon_sym_BSLASHAcfp] = ACTIONS(5264), + [anon_sym_BSLASHac] = ACTIONS(5264), + [anon_sym_BSLASHAc] = ACTIONS(5264), + [anon_sym_BSLASHacp] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5264), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5264), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5264), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5264), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5264), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5262), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5264), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5264), + [anon_sym_BSLASHcolor] = ACTIONS(5264), + [anon_sym_BSLASHcolorbox] = ACTIONS(5264), + [anon_sym_BSLASHtextcolor] = ACTIONS(5264), + [anon_sym_BSLASHpagecolor] = ACTIONS(5264), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5264), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5264), }, [1521] = { - [sym_command_name] = ACTIONS(4905), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4905), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [sym_word] = ACTIONS(4905), - [sym_placeholder] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_CARET] = ACTIONS(4905), - [anon_sym__] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(4905), - [anon_sym_PIPE] = ACTIONS(4905), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_SQUOTE] = ACTIONS(4905), - [anon_sym_BSLASHusepackage] = ACTIONS(4905), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), - [anon_sym_BSLASHinclude] = ACTIONS(4905), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), - [anon_sym_BSLASHinput] = ACTIONS(4905), - [anon_sym_BSLASHsubfile] = ACTIONS(4905), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), - [anon_sym_BSLASHbibliography] = ACTIONS(4905), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), - [anon_sym_BSLASHincludesvg] = ACTIONS(4905), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), - [anon_sym_BSLASHimport] = ACTIONS(4905), - [anon_sym_BSLASHsubimport] = ACTIONS(4905), - [anon_sym_BSLASHinputfrom] = ACTIONS(4905), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), - [anon_sym_BSLASHincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), - [anon_sym_BSLASHcaption] = ACTIONS(4905), - [anon_sym_BSLASHcite] = ACTIONS(4905), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCite] = ACTIONS(4905), - [anon_sym_BSLASHnocite] = ACTIONS(4905), - [anon_sym_BSLASHcitet] = ACTIONS(4905), - [anon_sym_BSLASHcitep] = ACTIONS(4905), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteauthor] = ACTIONS(4905), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitetitle] = ACTIONS(4905), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteyear] = ACTIONS(4905), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), - [anon_sym_BSLASHcitedate] = ACTIONS(4905), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), - [anon_sym_BSLASHciteurl] = ACTIONS(4905), - [anon_sym_BSLASHfullcite] = ACTIONS(4905), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), - [anon_sym_BSLASHcitealt] = ACTIONS(4905), - [anon_sym_BSLASHcitealp] = ACTIONS(4905), - [anon_sym_BSLASHcitetext] = ACTIONS(4905), - [anon_sym_BSLASHparencite] = ACTIONS(4905), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHParencite] = ACTIONS(4905), - [anon_sym_BSLASHfootcite] = ACTIONS(4905), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), - [anon_sym_BSLASHtextcite] = ACTIONS(4905), - [anon_sym_BSLASHTextcite] = ACTIONS(4905), - [anon_sym_BSLASHsmartcite] = ACTIONS(4905), - [anon_sym_BSLASHSmartcite] = ACTIONS(4905), - [anon_sym_BSLASHsupercite] = ACTIONS(4905), - [anon_sym_BSLASHautocite] = ACTIONS(4905), - [anon_sym_BSLASHAutocite] = ACTIONS(4905), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), - [anon_sym_BSLASHvolcite] = ACTIONS(4905), - [anon_sym_BSLASHVolcite] = ACTIONS(4905), - [anon_sym_BSLASHpvolcite] = ACTIONS(4905), - [anon_sym_BSLASHPvolcite] = ACTIONS(4905), - [anon_sym_BSLASHfvolcite] = ACTIONS(4905), - [anon_sym_BSLASHftvolcite] = ACTIONS(4905), - [anon_sym_BSLASHsvolcite] = ACTIONS(4905), - [anon_sym_BSLASHSvolcite] = ACTIONS(4905), - [anon_sym_BSLASHtvolcite] = ACTIONS(4905), - [anon_sym_BSLASHTvolcite] = ACTIONS(4905), - [anon_sym_BSLASHavolcite] = ACTIONS(4905), - [anon_sym_BSLASHAvolcite] = ACTIONS(4905), - [anon_sym_BSLASHnotecite] = ACTIONS(4905), - [anon_sym_BSLASHNotecite] = ACTIONS(4905), - [anon_sym_BSLASHpnotecite] = ACTIONS(4905), - [anon_sym_BSLASHPnotecite] = ACTIONS(4905), - [anon_sym_BSLASHfnotecite] = ACTIONS(4905), - [anon_sym_BSLASHlabel] = ACTIONS(4905), - [anon_sym_BSLASHref] = ACTIONS(4905), - [anon_sym_BSLASHeqref] = ACTIONS(4905), - [anon_sym_BSLASHvref] = ACTIONS(4905), - [anon_sym_BSLASHVref] = ACTIONS(4905), - [anon_sym_BSLASHautoref] = ACTIONS(4905), - [anon_sym_BSLASHpageref] = ACTIONS(4905), - [anon_sym_BSLASHcref] = ACTIONS(4905), - [anon_sym_BSLASHCref] = ACTIONS(4905), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnameCref] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), - [anon_sym_BSLASHlabelcref] = ACTIONS(4905), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange] = ACTIONS(4905), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHCrefrange] = ACTIONS(4905), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), - [anon_sym_BSLASHnewlabel] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand] = ACTIONS(4905), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), - [anon_sym_BSLASHdef] = ACTIONS(4905), - [anon_sym_BSLASHlet] = ACTIONS(4905), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), - [anon_sym_BSLASHgls] = ACTIONS(4905), - [anon_sym_BSLASHGls] = ACTIONS(4905), - [anon_sym_BSLASHGLS] = ACTIONS(4905), - [anon_sym_BSLASHglspl] = ACTIONS(4905), - [anon_sym_BSLASHGlspl] = ACTIONS(4905), - [anon_sym_BSLASHGLSpl] = ACTIONS(4905), - [anon_sym_BSLASHglsdisp] = ACTIONS(4905), - [anon_sym_BSLASHglslink] = ACTIONS(4905), - [anon_sym_BSLASHglstext] = ACTIONS(4905), - [anon_sym_BSLASHGlstext] = ACTIONS(4905), - [anon_sym_BSLASHGLStext] = ACTIONS(4905), - [anon_sym_BSLASHglsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), - [anon_sym_BSLASHglsplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSplural] = ACTIONS(4905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), - [anon_sym_BSLASHglsname] = ACTIONS(4905), - [anon_sym_BSLASHGlsname] = ACTIONS(4905), - [anon_sym_BSLASHGLSname] = ACTIONS(4905), - [anon_sym_BSLASHglssymbol] = ACTIONS(4905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), - [anon_sym_BSLASHglsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), - [anon_sym_BSLASHglsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), - [anon_sym_BSLASHglsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), - [anon_sym_BSLASHglsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), - [anon_sym_BSLASHglsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), - [anon_sym_BSLASHnewacronym] = ACTIONS(4905), - [anon_sym_BSLASHacrshort] = ACTIONS(4905), - [anon_sym_BSLASHAcrshort] = ACTIONS(4905), - [anon_sym_BSLASHACRshort] = ACTIONS(4905), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), - [anon_sym_BSLASHacrlong] = ACTIONS(4905), - [anon_sym_BSLASHAcrlong] = ACTIONS(4905), - [anon_sym_BSLASHACRlong] = ACTIONS(4905), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), - [anon_sym_BSLASHacrfull] = ACTIONS(4905), - [anon_sym_BSLASHAcrfull] = ACTIONS(4905), - [anon_sym_BSLASHACRfull] = ACTIONS(4905), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), - [anon_sym_BSLASHacs] = ACTIONS(4905), - [anon_sym_BSLASHAcs] = ACTIONS(4905), - [anon_sym_BSLASHacsp] = ACTIONS(4905), - [anon_sym_BSLASHAcsp] = ACTIONS(4905), - [anon_sym_BSLASHacl] = ACTIONS(4905), - [anon_sym_BSLASHAcl] = ACTIONS(4905), - [anon_sym_BSLASHaclp] = ACTIONS(4905), - [anon_sym_BSLASHAclp] = ACTIONS(4905), - [anon_sym_BSLASHacf] = ACTIONS(4905), - [anon_sym_BSLASHAcf] = ACTIONS(4905), - [anon_sym_BSLASHacfp] = ACTIONS(4905), - [anon_sym_BSLASHAcfp] = ACTIONS(4905), - [anon_sym_BSLASHac] = ACTIONS(4905), - [anon_sym_BSLASHAc] = ACTIONS(4905), - [anon_sym_BSLASHacp] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), - [anon_sym_BSLASHcolor] = ACTIONS(4905), - [anon_sym_BSLASHcolorbox] = ACTIONS(4905), - [anon_sym_BSLASHtextcolor] = ACTIONS(4905), - [anon_sym_BSLASHpagecolor] = ACTIONS(4905), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [sym_command_name] = ACTIONS(4984), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4984), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [sym_word] = ACTIONS(4984), + [sym_placeholder] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [anon_sym_BSLASHusepackage] = ACTIONS(4984), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4984), + [anon_sym_BSLASHinclude] = ACTIONS(4984), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4984), + [anon_sym_BSLASHinput] = ACTIONS(4984), + [anon_sym_BSLASHsubfile] = ACTIONS(4984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4984), + [anon_sym_BSLASHbibliography] = ACTIONS(4984), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4984), + [anon_sym_BSLASHincludesvg] = ACTIONS(4984), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4984), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4984), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4984), + [anon_sym_BSLASHimport] = ACTIONS(4984), + [anon_sym_BSLASHsubimport] = ACTIONS(4984), + [anon_sym_BSLASHinputfrom] = ACTIONS(4984), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4984), + [anon_sym_BSLASHincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4984), + [anon_sym_BSLASHcaption] = ACTIONS(4984), + [anon_sym_BSLASHcite] = ACTIONS(4984), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCite] = ACTIONS(4984), + [anon_sym_BSLASHnocite] = ACTIONS(4984), + [anon_sym_BSLASHcitet] = ACTIONS(4984), + [anon_sym_BSLASHcitep] = ACTIONS(4984), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteauthor] = ACTIONS(4984), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4984), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitetitle] = ACTIONS(4984), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteyear] = ACTIONS(4984), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4982), + [anon_sym_BSLASHcitedate] = ACTIONS(4984), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4982), + [anon_sym_BSLASHciteurl] = ACTIONS(4984), + [anon_sym_BSLASHfullcite] = ACTIONS(4984), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4984), + [anon_sym_BSLASHcitealt] = ACTIONS(4984), + [anon_sym_BSLASHcitealp] = ACTIONS(4984), + [anon_sym_BSLASHcitetext] = ACTIONS(4984), + [anon_sym_BSLASHparencite] = ACTIONS(4984), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHParencite] = ACTIONS(4984), + [anon_sym_BSLASHfootcite] = ACTIONS(4984), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4984), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4984), + [anon_sym_BSLASHtextcite] = ACTIONS(4984), + [anon_sym_BSLASHTextcite] = ACTIONS(4984), + [anon_sym_BSLASHsmartcite] = ACTIONS(4984), + [anon_sym_BSLASHSmartcite] = ACTIONS(4984), + [anon_sym_BSLASHsupercite] = ACTIONS(4984), + [anon_sym_BSLASHautocite] = ACTIONS(4984), + [anon_sym_BSLASHAutocite] = ACTIONS(4984), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4982), + [anon_sym_BSLASHvolcite] = ACTIONS(4984), + [anon_sym_BSLASHVolcite] = ACTIONS(4984), + [anon_sym_BSLASHpvolcite] = ACTIONS(4984), + [anon_sym_BSLASHPvolcite] = ACTIONS(4984), + [anon_sym_BSLASHfvolcite] = ACTIONS(4984), + [anon_sym_BSLASHftvolcite] = ACTIONS(4984), + [anon_sym_BSLASHsvolcite] = ACTIONS(4984), + [anon_sym_BSLASHSvolcite] = ACTIONS(4984), + [anon_sym_BSLASHtvolcite] = ACTIONS(4984), + [anon_sym_BSLASHTvolcite] = ACTIONS(4984), + [anon_sym_BSLASHavolcite] = ACTIONS(4984), + [anon_sym_BSLASHAvolcite] = ACTIONS(4984), + [anon_sym_BSLASHnotecite] = ACTIONS(4984), + [anon_sym_BSLASHNotecite] = ACTIONS(4984), + [anon_sym_BSLASHpnotecite] = ACTIONS(4984), + [anon_sym_BSLASHPnotecite] = ACTIONS(4984), + [anon_sym_BSLASHfnotecite] = ACTIONS(4984), + [anon_sym_BSLASHlabel] = ACTIONS(4984), + [anon_sym_BSLASHref] = ACTIONS(4984), + [anon_sym_BSLASHeqref] = ACTIONS(4984), + [anon_sym_BSLASHvref] = ACTIONS(4984), + [anon_sym_BSLASHVref] = ACTIONS(4984), + [anon_sym_BSLASHautoref] = ACTIONS(4984), + [anon_sym_BSLASHpageref] = ACTIONS(4984), + [anon_sym_BSLASHcref] = ACTIONS(4984), + [anon_sym_BSLASHCref] = ACTIONS(4984), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnameCref] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4984), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4984), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4984), + [anon_sym_BSLASHlabelcref] = ACTIONS(4984), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange] = ACTIONS(4984), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHCrefrange] = ACTIONS(4984), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4982), + [anon_sym_BSLASHnewlabel] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand] = ACTIONS(4984), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4984), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4984), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4982), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4984), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdef] = ACTIONS(4984), + [anon_sym_BSLASHlet] = ACTIONS(4984), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4984), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4984), + [anon_sym_BSLASHgls] = ACTIONS(4984), + [anon_sym_BSLASHGls] = ACTIONS(4984), + [anon_sym_BSLASHGLS] = ACTIONS(4984), + [anon_sym_BSLASHglspl] = ACTIONS(4984), + [anon_sym_BSLASHGlspl] = ACTIONS(4984), + [anon_sym_BSLASHGLSpl] = ACTIONS(4984), + [anon_sym_BSLASHglsdisp] = ACTIONS(4984), + [anon_sym_BSLASHglslink] = ACTIONS(4984), + [anon_sym_BSLASHglstext] = ACTIONS(4984), + [anon_sym_BSLASHGlstext] = ACTIONS(4984), + [anon_sym_BSLASHGLStext] = ACTIONS(4984), + [anon_sym_BSLASHglsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4984), + [anon_sym_BSLASHglsplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSplural] = ACTIONS(4984), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4984), + [anon_sym_BSLASHglsname] = ACTIONS(4984), + [anon_sym_BSLASHGlsname] = ACTIONS(4984), + [anon_sym_BSLASHGLSname] = ACTIONS(4984), + [anon_sym_BSLASHglssymbol] = ACTIONS(4984), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4984), + [anon_sym_BSLASHglsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4984), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4984), + [anon_sym_BSLASHglsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4984), + [anon_sym_BSLASHglsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4984), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4984), + [anon_sym_BSLASHglsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4984), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4984), + [anon_sym_BSLASHglsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4984), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4984), + [anon_sym_BSLASHnewacronym] = ACTIONS(4984), + [anon_sym_BSLASHacrshort] = ACTIONS(4984), + [anon_sym_BSLASHAcrshort] = ACTIONS(4984), + [anon_sym_BSLASHACRshort] = ACTIONS(4984), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4984), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4984), + [anon_sym_BSLASHacrlong] = ACTIONS(4984), + [anon_sym_BSLASHAcrlong] = ACTIONS(4984), + [anon_sym_BSLASHACRlong] = ACTIONS(4984), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4984), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4984), + [anon_sym_BSLASHacrfull] = ACTIONS(4984), + [anon_sym_BSLASHAcrfull] = ACTIONS(4984), + [anon_sym_BSLASHACRfull] = ACTIONS(4984), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4984), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4984), + [anon_sym_BSLASHacs] = ACTIONS(4984), + [anon_sym_BSLASHAcs] = ACTIONS(4984), + [anon_sym_BSLASHacsp] = ACTIONS(4984), + [anon_sym_BSLASHAcsp] = ACTIONS(4984), + [anon_sym_BSLASHacl] = ACTIONS(4984), + [anon_sym_BSLASHAcl] = ACTIONS(4984), + [anon_sym_BSLASHaclp] = ACTIONS(4984), + [anon_sym_BSLASHAclp] = ACTIONS(4984), + [anon_sym_BSLASHacf] = ACTIONS(4984), + [anon_sym_BSLASHAcf] = ACTIONS(4984), + [anon_sym_BSLASHacfp] = ACTIONS(4984), + [anon_sym_BSLASHAcfp] = ACTIONS(4984), + [anon_sym_BSLASHac] = ACTIONS(4984), + [anon_sym_BSLASHAc] = ACTIONS(4984), + [anon_sym_BSLASHacp] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4984), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4984), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4984), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4984), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4984), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4984), + [anon_sym_BSLASHcolor] = ACTIONS(4984), + [anon_sym_BSLASHcolorbox] = ACTIONS(4984), + [anon_sym_BSLASHtextcolor] = ACTIONS(4984), + [anon_sym_BSLASHpagecolor] = ACTIONS(4984), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4984), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4984), }, [1522] = { - [sym_command_name] = ACTIONS(4901), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4901), - [anon_sym_RBRACK] = ACTIONS(4899), - [anon_sym_COMMA] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [sym_word] = ACTIONS(4901), - [sym_placeholder] = ACTIONS(4899), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_CARET] = ACTIONS(4901), - [anon_sym__] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4901), - [anon_sym_BSLASHusepackage] = ACTIONS(4901), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), - [anon_sym_BSLASHinclude] = ACTIONS(4901), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), - [anon_sym_BSLASHinput] = ACTIONS(4901), - [anon_sym_BSLASHsubfile] = ACTIONS(4901), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), - [anon_sym_BSLASHbibliography] = ACTIONS(4901), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), - [anon_sym_BSLASHincludesvg] = ACTIONS(4901), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), - [anon_sym_BSLASHimport] = ACTIONS(4901), - [anon_sym_BSLASHsubimport] = ACTIONS(4901), - [anon_sym_BSLASHinputfrom] = ACTIONS(4901), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), - [anon_sym_BSLASHincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), - [anon_sym_BSLASHcaption] = ACTIONS(4901), - [anon_sym_BSLASHcite] = ACTIONS(4901), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCite] = ACTIONS(4901), - [anon_sym_BSLASHnocite] = ACTIONS(4901), - [anon_sym_BSLASHcitet] = ACTIONS(4901), - [anon_sym_BSLASHcitep] = ACTIONS(4901), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteauthor] = ACTIONS(4901), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitetitle] = ACTIONS(4901), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteyear] = ACTIONS(4901), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), - [anon_sym_BSLASHcitedate] = ACTIONS(4901), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), - [anon_sym_BSLASHciteurl] = ACTIONS(4901), - [anon_sym_BSLASHfullcite] = ACTIONS(4901), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), - [anon_sym_BSLASHcitealt] = ACTIONS(4901), - [anon_sym_BSLASHcitealp] = ACTIONS(4901), - [anon_sym_BSLASHcitetext] = ACTIONS(4901), - [anon_sym_BSLASHparencite] = ACTIONS(4901), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHParencite] = ACTIONS(4901), - [anon_sym_BSLASHfootcite] = ACTIONS(4901), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), - [anon_sym_BSLASHtextcite] = ACTIONS(4901), - [anon_sym_BSLASHTextcite] = ACTIONS(4901), - [anon_sym_BSLASHsmartcite] = ACTIONS(4901), - [anon_sym_BSLASHSmartcite] = ACTIONS(4901), - [anon_sym_BSLASHsupercite] = ACTIONS(4901), - [anon_sym_BSLASHautocite] = ACTIONS(4901), - [anon_sym_BSLASHAutocite] = ACTIONS(4901), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), - [anon_sym_BSLASHvolcite] = ACTIONS(4901), - [anon_sym_BSLASHVolcite] = ACTIONS(4901), - [anon_sym_BSLASHpvolcite] = ACTIONS(4901), - [anon_sym_BSLASHPvolcite] = ACTIONS(4901), - [anon_sym_BSLASHfvolcite] = ACTIONS(4901), - [anon_sym_BSLASHftvolcite] = ACTIONS(4901), - [anon_sym_BSLASHsvolcite] = ACTIONS(4901), - [anon_sym_BSLASHSvolcite] = ACTIONS(4901), - [anon_sym_BSLASHtvolcite] = ACTIONS(4901), - [anon_sym_BSLASHTvolcite] = ACTIONS(4901), - [anon_sym_BSLASHavolcite] = ACTIONS(4901), - [anon_sym_BSLASHAvolcite] = ACTIONS(4901), - [anon_sym_BSLASHnotecite] = ACTIONS(4901), - [anon_sym_BSLASHNotecite] = ACTIONS(4901), - [anon_sym_BSLASHpnotecite] = ACTIONS(4901), - [anon_sym_BSLASHPnotecite] = ACTIONS(4901), - [anon_sym_BSLASHfnotecite] = ACTIONS(4901), - [anon_sym_BSLASHlabel] = ACTIONS(4901), - [anon_sym_BSLASHref] = ACTIONS(4901), - [anon_sym_BSLASHeqref] = ACTIONS(4901), - [anon_sym_BSLASHvref] = ACTIONS(4901), - [anon_sym_BSLASHVref] = ACTIONS(4901), - [anon_sym_BSLASHautoref] = ACTIONS(4901), - [anon_sym_BSLASHpageref] = ACTIONS(4901), - [anon_sym_BSLASHcref] = ACTIONS(4901), - [anon_sym_BSLASHCref] = ACTIONS(4901), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnameCref] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), - [anon_sym_BSLASHlabelcref] = ACTIONS(4901), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange] = ACTIONS(4901), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHCrefrange] = ACTIONS(4901), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), - [anon_sym_BSLASHnewlabel] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand] = ACTIONS(4901), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), - [anon_sym_BSLASHdef] = ACTIONS(4901), - [anon_sym_BSLASHlet] = ACTIONS(4901), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), - [anon_sym_BSLASHgls] = ACTIONS(4901), - [anon_sym_BSLASHGls] = ACTIONS(4901), - [anon_sym_BSLASHGLS] = ACTIONS(4901), - [anon_sym_BSLASHglspl] = ACTIONS(4901), - [anon_sym_BSLASHGlspl] = ACTIONS(4901), - [anon_sym_BSLASHGLSpl] = ACTIONS(4901), - [anon_sym_BSLASHglsdisp] = ACTIONS(4901), - [anon_sym_BSLASHglslink] = ACTIONS(4901), - [anon_sym_BSLASHglstext] = ACTIONS(4901), - [anon_sym_BSLASHGlstext] = ACTIONS(4901), - [anon_sym_BSLASHGLStext] = ACTIONS(4901), - [anon_sym_BSLASHglsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), - [anon_sym_BSLASHglsplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSplural] = ACTIONS(4901), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), - [anon_sym_BSLASHglsname] = ACTIONS(4901), - [anon_sym_BSLASHGlsname] = ACTIONS(4901), - [anon_sym_BSLASHGLSname] = ACTIONS(4901), - [anon_sym_BSLASHglssymbol] = ACTIONS(4901), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), - [anon_sym_BSLASHglsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), - [anon_sym_BSLASHglsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), - [anon_sym_BSLASHglsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), - [anon_sym_BSLASHglsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), - [anon_sym_BSLASHglsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), - [anon_sym_BSLASHnewacronym] = ACTIONS(4901), - [anon_sym_BSLASHacrshort] = ACTIONS(4901), - [anon_sym_BSLASHAcrshort] = ACTIONS(4901), - [anon_sym_BSLASHACRshort] = ACTIONS(4901), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), - [anon_sym_BSLASHacrlong] = ACTIONS(4901), - [anon_sym_BSLASHAcrlong] = ACTIONS(4901), - [anon_sym_BSLASHACRlong] = ACTIONS(4901), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), - [anon_sym_BSLASHacrfull] = ACTIONS(4901), - [anon_sym_BSLASHAcrfull] = ACTIONS(4901), - [anon_sym_BSLASHACRfull] = ACTIONS(4901), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), - [anon_sym_BSLASHacs] = ACTIONS(4901), - [anon_sym_BSLASHAcs] = ACTIONS(4901), - [anon_sym_BSLASHacsp] = ACTIONS(4901), - [anon_sym_BSLASHAcsp] = ACTIONS(4901), - [anon_sym_BSLASHacl] = ACTIONS(4901), - [anon_sym_BSLASHAcl] = ACTIONS(4901), - [anon_sym_BSLASHaclp] = ACTIONS(4901), - [anon_sym_BSLASHAclp] = ACTIONS(4901), - [anon_sym_BSLASHacf] = ACTIONS(4901), - [anon_sym_BSLASHAcf] = ACTIONS(4901), - [anon_sym_BSLASHacfp] = ACTIONS(4901), - [anon_sym_BSLASHAcfp] = ACTIONS(4901), - [anon_sym_BSLASHac] = ACTIONS(4901), - [anon_sym_BSLASHAc] = ACTIONS(4901), - [anon_sym_BSLASHacp] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), - [anon_sym_BSLASHcolor] = ACTIONS(4901), - [anon_sym_BSLASHcolorbox] = ACTIONS(4901), - [anon_sym_BSLASHtextcolor] = ACTIONS(4901), - [anon_sym_BSLASHpagecolor] = ACTIONS(4901), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [sym_command_name] = ACTIONS(4980), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4980), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [sym_word] = ACTIONS(4980), + [sym_placeholder] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym__] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_BSLASHusepackage] = ACTIONS(4980), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4980), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4980), + [anon_sym_BSLASHinclude] = ACTIONS(4980), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4980), + [anon_sym_BSLASHinput] = ACTIONS(4980), + [anon_sym_BSLASHsubfile] = ACTIONS(4980), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4980), + [anon_sym_BSLASHbibliography] = ACTIONS(4980), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4980), + [anon_sym_BSLASHincludesvg] = ACTIONS(4980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4980), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4980), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4980), + [anon_sym_BSLASHimport] = ACTIONS(4980), + [anon_sym_BSLASHsubimport] = ACTIONS(4980), + [anon_sym_BSLASHinputfrom] = ACTIONS(4980), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4980), + [anon_sym_BSLASHincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4980), + [anon_sym_BSLASHcaption] = ACTIONS(4980), + [anon_sym_BSLASHcite] = ACTIONS(4980), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCite] = ACTIONS(4980), + [anon_sym_BSLASHnocite] = ACTIONS(4980), + [anon_sym_BSLASHcitet] = ACTIONS(4980), + [anon_sym_BSLASHcitep] = ACTIONS(4980), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteauthor] = ACTIONS(4980), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4980), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitetitle] = ACTIONS(4980), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteyear] = ACTIONS(4980), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4978), + [anon_sym_BSLASHcitedate] = ACTIONS(4980), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4978), + [anon_sym_BSLASHciteurl] = ACTIONS(4980), + [anon_sym_BSLASHfullcite] = ACTIONS(4980), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4980), + [anon_sym_BSLASHcitealt] = ACTIONS(4980), + [anon_sym_BSLASHcitealp] = ACTIONS(4980), + [anon_sym_BSLASHcitetext] = ACTIONS(4980), + [anon_sym_BSLASHparencite] = ACTIONS(4980), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHParencite] = ACTIONS(4980), + [anon_sym_BSLASHfootcite] = ACTIONS(4980), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4980), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4980), + [anon_sym_BSLASHtextcite] = ACTIONS(4980), + [anon_sym_BSLASHTextcite] = ACTIONS(4980), + [anon_sym_BSLASHsmartcite] = ACTIONS(4980), + [anon_sym_BSLASHSmartcite] = ACTIONS(4980), + [anon_sym_BSLASHsupercite] = ACTIONS(4980), + [anon_sym_BSLASHautocite] = ACTIONS(4980), + [anon_sym_BSLASHAutocite] = ACTIONS(4980), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4978), + [anon_sym_BSLASHvolcite] = ACTIONS(4980), + [anon_sym_BSLASHVolcite] = ACTIONS(4980), + [anon_sym_BSLASHpvolcite] = ACTIONS(4980), + [anon_sym_BSLASHPvolcite] = ACTIONS(4980), + [anon_sym_BSLASHfvolcite] = ACTIONS(4980), + [anon_sym_BSLASHftvolcite] = ACTIONS(4980), + [anon_sym_BSLASHsvolcite] = ACTIONS(4980), + [anon_sym_BSLASHSvolcite] = ACTIONS(4980), + [anon_sym_BSLASHtvolcite] = ACTIONS(4980), + [anon_sym_BSLASHTvolcite] = ACTIONS(4980), + [anon_sym_BSLASHavolcite] = ACTIONS(4980), + [anon_sym_BSLASHAvolcite] = ACTIONS(4980), + [anon_sym_BSLASHnotecite] = ACTIONS(4980), + [anon_sym_BSLASHNotecite] = ACTIONS(4980), + [anon_sym_BSLASHpnotecite] = ACTIONS(4980), + [anon_sym_BSLASHPnotecite] = ACTIONS(4980), + [anon_sym_BSLASHfnotecite] = ACTIONS(4980), + [anon_sym_BSLASHlabel] = ACTIONS(4980), + [anon_sym_BSLASHref] = ACTIONS(4980), + [anon_sym_BSLASHeqref] = ACTIONS(4980), + [anon_sym_BSLASHvref] = ACTIONS(4980), + [anon_sym_BSLASHVref] = ACTIONS(4980), + [anon_sym_BSLASHautoref] = ACTIONS(4980), + [anon_sym_BSLASHpageref] = ACTIONS(4980), + [anon_sym_BSLASHcref] = ACTIONS(4980), + [anon_sym_BSLASHCref] = ACTIONS(4980), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnameCref] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4980), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4980), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4980), + [anon_sym_BSLASHlabelcref] = ACTIONS(4980), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange] = ACTIONS(4980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHCrefrange] = ACTIONS(4980), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4978), + [anon_sym_BSLASHnewlabel] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand] = ACTIONS(4980), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4980), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4980), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4978), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdef] = ACTIONS(4980), + [anon_sym_BSLASHlet] = ACTIONS(4980), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4980), + [anon_sym_BSLASHgls] = ACTIONS(4980), + [anon_sym_BSLASHGls] = ACTIONS(4980), + [anon_sym_BSLASHGLS] = ACTIONS(4980), + [anon_sym_BSLASHglspl] = ACTIONS(4980), + [anon_sym_BSLASHGlspl] = ACTIONS(4980), + [anon_sym_BSLASHGLSpl] = ACTIONS(4980), + [anon_sym_BSLASHglsdisp] = ACTIONS(4980), + [anon_sym_BSLASHglslink] = ACTIONS(4980), + [anon_sym_BSLASHglstext] = ACTIONS(4980), + [anon_sym_BSLASHGlstext] = ACTIONS(4980), + [anon_sym_BSLASHGLStext] = ACTIONS(4980), + [anon_sym_BSLASHglsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4980), + [anon_sym_BSLASHglsplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSplural] = ACTIONS(4980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4980), + [anon_sym_BSLASHglsname] = ACTIONS(4980), + [anon_sym_BSLASHGlsname] = ACTIONS(4980), + [anon_sym_BSLASHGLSname] = ACTIONS(4980), + [anon_sym_BSLASHglssymbol] = ACTIONS(4980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4980), + [anon_sym_BSLASHglsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4980), + [anon_sym_BSLASHglsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4980), + [anon_sym_BSLASHglsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4980), + [anon_sym_BSLASHglsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4980), + [anon_sym_BSLASHglsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4980), + [anon_sym_BSLASHnewacronym] = ACTIONS(4980), + [anon_sym_BSLASHacrshort] = ACTIONS(4980), + [anon_sym_BSLASHAcrshort] = ACTIONS(4980), + [anon_sym_BSLASHACRshort] = ACTIONS(4980), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4980), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4980), + [anon_sym_BSLASHacrlong] = ACTIONS(4980), + [anon_sym_BSLASHAcrlong] = ACTIONS(4980), + [anon_sym_BSLASHACRlong] = ACTIONS(4980), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4980), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4980), + [anon_sym_BSLASHacrfull] = ACTIONS(4980), + [anon_sym_BSLASHAcrfull] = ACTIONS(4980), + [anon_sym_BSLASHACRfull] = ACTIONS(4980), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4980), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4980), + [anon_sym_BSLASHacs] = ACTIONS(4980), + [anon_sym_BSLASHAcs] = ACTIONS(4980), + [anon_sym_BSLASHacsp] = ACTIONS(4980), + [anon_sym_BSLASHAcsp] = ACTIONS(4980), + [anon_sym_BSLASHacl] = ACTIONS(4980), + [anon_sym_BSLASHAcl] = ACTIONS(4980), + [anon_sym_BSLASHaclp] = ACTIONS(4980), + [anon_sym_BSLASHAclp] = ACTIONS(4980), + [anon_sym_BSLASHacf] = ACTIONS(4980), + [anon_sym_BSLASHAcf] = ACTIONS(4980), + [anon_sym_BSLASHacfp] = ACTIONS(4980), + [anon_sym_BSLASHAcfp] = ACTIONS(4980), + [anon_sym_BSLASHac] = ACTIONS(4980), + [anon_sym_BSLASHAc] = ACTIONS(4980), + [anon_sym_BSLASHacp] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4980), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4980), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4980), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4980), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4980), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4978), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4980), + [anon_sym_BSLASHcolor] = ACTIONS(4980), + [anon_sym_BSLASHcolorbox] = ACTIONS(4980), + [anon_sym_BSLASHtextcolor] = ACTIONS(4980), + [anon_sym_BSLASHpagecolor] = ACTIONS(4980), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4980), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4980), }, [1523] = { - [sym_command_name] = ACTIONS(4897), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4897), - [anon_sym_RBRACK] = ACTIONS(4895), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [sym_word] = ACTIONS(4897), - [sym_placeholder] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4897), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_CARET] = ACTIONS(4897), - [anon_sym__] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_SQUOTE] = ACTIONS(4897), - [anon_sym_BSLASHusepackage] = ACTIONS(4897), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), - [anon_sym_BSLASHinclude] = ACTIONS(4897), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), - [anon_sym_BSLASHinput] = ACTIONS(4897), - [anon_sym_BSLASHsubfile] = ACTIONS(4897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), - [anon_sym_BSLASHbibliography] = ACTIONS(4897), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), - [anon_sym_BSLASHincludesvg] = ACTIONS(4897), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), - [anon_sym_BSLASHimport] = ACTIONS(4897), - [anon_sym_BSLASHsubimport] = ACTIONS(4897), - [anon_sym_BSLASHinputfrom] = ACTIONS(4897), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), - [anon_sym_BSLASHincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), - [anon_sym_BSLASHcaption] = ACTIONS(4897), - [anon_sym_BSLASHcite] = ACTIONS(4897), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCite] = ACTIONS(4897), - [anon_sym_BSLASHnocite] = ACTIONS(4897), - [anon_sym_BSLASHcitet] = ACTIONS(4897), - [anon_sym_BSLASHcitep] = ACTIONS(4897), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteauthor] = ACTIONS(4897), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitetitle] = ACTIONS(4897), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteyear] = ACTIONS(4897), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), - [anon_sym_BSLASHcitedate] = ACTIONS(4897), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), - [anon_sym_BSLASHciteurl] = ACTIONS(4897), - [anon_sym_BSLASHfullcite] = ACTIONS(4897), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), - [anon_sym_BSLASHcitealt] = ACTIONS(4897), - [anon_sym_BSLASHcitealp] = ACTIONS(4897), - [anon_sym_BSLASHcitetext] = ACTIONS(4897), - [anon_sym_BSLASHparencite] = ACTIONS(4897), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHParencite] = ACTIONS(4897), - [anon_sym_BSLASHfootcite] = ACTIONS(4897), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), - [anon_sym_BSLASHtextcite] = ACTIONS(4897), - [anon_sym_BSLASHTextcite] = ACTIONS(4897), - [anon_sym_BSLASHsmartcite] = ACTIONS(4897), - [anon_sym_BSLASHSmartcite] = ACTIONS(4897), - [anon_sym_BSLASHsupercite] = ACTIONS(4897), - [anon_sym_BSLASHautocite] = ACTIONS(4897), - [anon_sym_BSLASHAutocite] = ACTIONS(4897), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), - [anon_sym_BSLASHvolcite] = ACTIONS(4897), - [anon_sym_BSLASHVolcite] = ACTIONS(4897), - [anon_sym_BSLASHpvolcite] = ACTIONS(4897), - [anon_sym_BSLASHPvolcite] = ACTIONS(4897), - [anon_sym_BSLASHfvolcite] = ACTIONS(4897), - [anon_sym_BSLASHftvolcite] = ACTIONS(4897), - [anon_sym_BSLASHsvolcite] = ACTIONS(4897), - [anon_sym_BSLASHSvolcite] = ACTIONS(4897), - [anon_sym_BSLASHtvolcite] = ACTIONS(4897), - [anon_sym_BSLASHTvolcite] = ACTIONS(4897), - [anon_sym_BSLASHavolcite] = ACTIONS(4897), - [anon_sym_BSLASHAvolcite] = ACTIONS(4897), - [anon_sym_BSLASHnotecite] = ACTIONS(4897), - [anon_sym_BSLASHNotecite] = ACTIONS(4897), - [anon_sym_BSLASHpnotecite] = ACTIONS(4897), - [anon_sym_BSLASHPnotecite] = ACTIONS(4897), - [anon_sym_BSLASHfnotecite] = ACTIONS(4897), - [anon_sym_BSLASHlabel] = ACTIONS(4897), - [anon_sym_BSLASHref] = ACTIONS(4897), - [anon_sym_BSLASHeqref] = ACTIONS(4897), - [anon_sym_BSLASHvref] = ACTIONS(4897), - [anon_sym_BSLASHVref] = ACTIONS(4897), - [anon_sym_BSLASHautoref] = ACTIONS(4897), - [anon_sym_BSLASHpageref] = ACTIONS(4897), - [anon_sym_BSLASHcref] = ACTIONS(4897), - [anon_sym_BSLASHCref] = ACTIONS(4897), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnameCref] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), - [anon_sym_BSLASHlabelcref] = ACTIONS(4897), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange] = ACTIONS(4897), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHCrefrange] = ACTIONS(4897), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), - [anon_sym_BSLASHnewlabel] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand] = ACTIONS(4897), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4897), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4897), - [anon_sym_BSLASHacrshort] = ACTIONS(4897), - [anon_sym_BSLASHAcrshort] = ACTIONS(4897), - [anon_sym_BSLASHACRshort] = ACTIONS(4897), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), - [anon_sym_BSLASHacrlong] = ACTIONS(4897), - [anon_sym_BSLASHAcrlong] = ACTIONS(4897), - [anon_sym_BSLASHACRlong] = ACTIONS(4897), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), - [anon_sym_BSLASHacrfull] = ACTIONS(4897), - [anon_sym_BSLASHAcrfull] = ACTIONS(4897), - [anon_sym_BSLASHACRfull] = ACTIONS(4897), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), - [anon_sym_BSLASHacs] = ACTIONS(4897), - [anon_sym_BSLASHAcs] = ACTIONS(4897), - [anon_sym_BSLASHacsp] = ACTIONS(4897), - [anon_sym_BSLASHAcsp] = ACTIONS(4897), - [anon_sym_BSLASHacl] = ACTIONS(4897), - [anon_sym_BSLASHAcl] = ACTIONS(4897), - [anon_sym_BSLASHaclp] = ACTIONS(4897), - [anon_sym_BSLASHAclp] = ACTIONS(4897), - [anon_sym_BSLASHacf] = ACTIONS(4897), - [anon_sym_BSLASHAcf] = ACTIONS(4897), - [anon_sym_BSLASHacfp] = ACTIONS(4897), - [anon_sym_BSLASHAcfp] = ACTIONS(4897), - [anon_sym_BSLASHac] = ACTIONS(4897), - [anon_sym_BSLASHAc] = ACTIONS(4897), - [anon_sym_BSLASHacp] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), - [anon_sym_BSLASHcolor] = ACTIONS(4897), - [anon_sym_BSLASHcolorbox] = ACTIONS(4897), - [anon_sym_BSLASHtextcolor] = ACTIONS(4897), - [anon_sym_BSLASHpagecolor] = ACTIONS(4897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [sym_command_name] = ACTIONS(4976), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [sym_word] = ACTIONS(4976), + [sym_placeholder] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym__] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [anon_sym_BSLASHusepackage] = ACTIONS(4976), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4976), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4976), + [anon_sym_BSLASHinclude] = ACTIONS(4976), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4976), + [anon_sym_BSLASHinput] = ACTIONS(4976), + [anon_sym_BSLASHsubfile] = ACTIONS(4976), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4976), + [anon_sym_BSLASHbibliography] = ACTIONS(4976), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4976), + [anon_sym_BSLASHincludesvg] = ACTIONS(4976), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4976), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4976), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4976), + [anon_sym_BSLASHimport] = ACTIONS(4976), + [anon_sym_BSLASHsubimport] = ACTIONS(4976), + [anon_sym_BSLASHinputfrom] = ACTIONS(4976), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4976), + [anon_sym_BSLASHincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4976), + [anon_sym_BSLASHcaption] = ACTIONS(4976), + [anon_sym_BSLASHcite] = ACTIONS(4976), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCite] = ACTIONS(4976), + [anon_sym_BSLASHnocite] = ACTIONS(4976), + [anon_sym_BSLASHcitet] = ACTIONS(4976), + [anon_sym_BSLASHcitep] = ACTIONS(4976), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteauthor] = ACTIONS(4976), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4976), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitetitle] = ACTIONS(4976), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteyear] = ACTIONS(4976), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4974), + [anon_sym_BSLASHcitedate] = ACTIONS(4976), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4974), + [anon_sym_BSLASHciteurl] = ACTIONS(4976), + [anon_sym_BSLASHfullcite] = ACTIONS(4976), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4976), + [anon_sym_BSLASHcitealt] = ACTIONS(4976), + [anon_sym_BSLASHcitealp] = ACTIONS(4976), + [anon_sym_BSLASHcitetext] = ACTIONS(4976), + [anon_sym_BSLASHparencite] = ACTIONS(4976), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHParencite] = ACTIONS(4976), + [anon_sym_BSLASHfootcite] = ACTIONS(4976), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4976), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4976), + [anon_sym_BSLASHtextcite] = ACTIONS(4976), + [anon_sym_BSLASHTextcite] = ACTIONS(4976), + [anon_sym_BSLASHsmartcite] = ACTIONS(4976), + [anon_sym_BSLASHSmartcite] = ACTIONS(4976), + [anon_sym_BSLASHsupercite] = ACTIONS(4976), + [anon_sym_BSLASHautocite] = ACTIONS(4976), + [anon_sym_BSLASHAutocite] = ACTIONS(4976), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4974), + [anon_sym_BSLASHvolcite] = ACTIONS(4976), + [anon_sym_BSLASHVolcite] = ACTIONS(4976), + [anon_sym_BSLASHpvolcite] = ACTIONS(4976), + [anon_sym_BSLASHPvolcite] = ACTIONS(4976), + [anon_sym_BSLASHfvolcite] = ACTIONS(4976), + [anon_sym_BSLASHftvolcite] = ACTIONS(4976), + [anon_sym_BSLASHsvolcite] = ACTIONS(4976), + [anon_sym_BSLASHSvolcite] = ACTIONS(4976), + [anon_sym_BSLASHtvolcite] = ACTIONS(4976), + [anon_sym_BSLASHTvolcite] = ACTIONS(4976), + [anon_sym_BSLASHavolcite] = ACTIONS(4976), + [anon_sym_BSLASHAvolcite] = ACTIONS(4976), + [anon_sym_BSLASHnotecite] = ACTIONS(4976), + [anon_sym_BSLASHNotecite] = ACTIONS(4976), + [anon_sym_BSLASHpnotecite] = ACTIONS(4976), + [anon_sym_BSLASHPnotecite] = ACTIONS(4976), + [anon_sym_BSLASHfnotecite] = ACTIONS(4976), + [anon_sym_BSLASHlabel] = ACTIONS(4976), + [anon_sym_BSLASHref] = ACTIONS(4976), + [anon_sym_BSLASHeqref] = ACTIONS(4976), + [anon_sym_BSLASHvref] = ACTIONS(4976), + [anon_sym_BSLASHVref] = ACTIONS(4976), + [anon_sym_BSLASHautoref] = ACTIONS(4976), + [anon_sym_BSLASHpageref] = ACTIONS(4976), + [anon_sym_BSLASHcref] = ACTIONS(4976), + [anon_sym_BSLASHCref] = ACTIONS(4976), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnameCref] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4976), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4976), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4976), + [anon_sym_BSLASHlabelcref] = ACTIONS(4976), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4974), + [anon_sym_BSLASHnewlabel] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand] = ACTIONS(4976), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4976), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4976), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4974), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4976), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdef] = ACTIONS(4976), + [anon_sym_BSLASHlet] = ACTIONS(4976), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4976), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4976), + [anon_sym_BSLASHgls] = ACTIONS(4976), + [anon_sym_BSLASHGls] = ACTIONS(4976), + [anon_sym_BSLASHGLS] = ACTIONS(4976), + [anon_sym_BSLASHglspl] = ACTIONS(4976), + [anon_sym_BSLASHGlspl] = ACTIONS(4976), + [anon_sym_BSLASHGLSpl] = ACTIONS(4976), + [anon_sym_BSLASHglsdisp] = ACTIONS(4976), + [anon_sym_BSLASHglslink] = ACTIONS(4976), + [anon_sym_BSLASHglstext] = ACTIONS(4976), + [anon_sym_BSLASHGlstext] = ACTIONS(4976), + [anon_sym_BSLASHGLStext] = ACTIONS(4976), + [anon_sym_BSLASHglsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4976), + [anon_sym_BSLASHglsplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSplural] = ACTIONS(4976), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4976), + [anon_sym_BSLASHglsname] = ACTIONS(4976), + [anon_sym_BSLASHGlsname] = ACTIONS(4976), + [anon_sym_BSLASHGLSname] = ACTIONS(4976), + [anon_sym_BSLASHglssymbol] = ACTIONS(4976), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4976), + [anon_sym_BSLASHglsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4976), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4976), + [anon_sym_BSLASHglsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4976), + [anon_sym_BSLASHglsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4976), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4976), + [anon_sym_BSLASHglsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4976), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4976), + [anon_sym_BSLASHglsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4976), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4976), + [anon_sym_BSLASHnewacronym] = ACTIONS(4976), + [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(4976), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4976), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4974), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4976), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4976), + [anon_sym_BSLASHcolor] = ACTIONS(4976), + [anon_sym_BSLASHcolorbox] = ACTIONS(4976), + [anon_sym_BSLASHtextcolor] = ACTIONS(4976), + [anon_sym_BSLASHpagecolor] = ACTIONS(4976), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4976), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4976), }, [1524] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5221), - [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), + [sym_command_name] = ACTIONS(5300), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_COMMA] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5298), + [anon_sym_RBRACE] = ACTIONS(5298), + [sym_word] = ACTIONS(5300), + [sym_placeholder] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_SLASH] = ACTIONS(5300), + [anon_sym_CARET] = ACTIONS(5300), + [anon_sym__] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5300), + [anon_sym_GT] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5300), + [anon_sym_PIPE] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_SQUOTE] = ACTIONS(5300), + [anon_sym_BSLASHusepackage] = ACTIONS(5300), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5300), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5300), + [anon_sym_BSLASHinclude] = ACTIONS(5300), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5300), + [anon_sym_BSLASHinput] = ACTIONS(5300), + [anon_sym_BSLASHsubfile] = ACTIONS(5300), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5300), + [anon_sym_BSLASHbibliography] = ACTIONS(5300), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5300), + [anon_sym_BSLASHincludesvg] = ACTIONS(5300), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5300), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5300), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5300), + [anon_sym_BSLASHimport] = ACTIONS(5300), + [anon_sym_BSLASHsubimport] = ACTIONS(5300), + [anon_sym_BSLASHinputfrom] = ACTIONS(5300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5300), + [anon_sym_BSLASHincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5300), + [anon_sym_BSLASHcaption] = ACTIONS(5300), + [anon_sym_BSLASHcite] = ACTIONS(5300), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCite] = ACTIONS(5300), + [anon_sym_BSLASHnocite] = ACTIONS(5300), + [anon_sym_BSLASHcitet] = ACTIONS(5300), + [anon_sym_BSLASHcitep] = ACTIONS(5300), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteauthor] = ACTIONS(5300), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5300), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitetitle] = ACTIONS(5300), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteyear] = ACTIONS(5300), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5298), + [anon_sym_BSLASHcitedate] = ACTIONS(5300), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5298), + [anon_sym_BSLASHciteurl] = ACTIONS(5300), + [anon_sym_BSLASHfullcite] = ACTIONS(5300), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5300), + [anon_sym_BSLASHcitealt] = ACTIONS(5300), + [anon_sym_BSLASHcitealp] = ACTIONS(5300), + [anon_sym_BSLASHcitetext] = ACTIONS(5300), + [anon_sym_BSLASHparencite] = ACTIONS(5300), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHParencite] = ACTIONS(5300), + [anon_sym_BSLASHfootcite] = ACTIONS(5300), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5300), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5300), + [anon_sym_BSLASHtextcite] = ACTIONS(5300), + [anon_sym_BSLASHTextcite] = ACTIONS(5300), + [anon_sym_BSLASHsmartcite] = ACTIONS(5300), + [anon_sym_BSLASHSmartcite] = ACTIONS(5300), + [anon_sym_BSLASHsupercite] = ACTIONS(5300), + [anon_sym_BSLASHautocite] = ACTIONS(5300), + [anon_sym_BSLASHAutocite] = ACTIONS(5300), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5298), + [anon_sym_BSLASHvolcite] = ACTIONS(5300), + [anon_sym_BSLASHVolcite] = ACTIONS(5300), + [anon_sym_BSLASHpvolcite] = ACTIONS(5300), + [anon_sym_BSLASHPvolcite] = ACTIONS(5300), + [anon_sym_BSLASHfvolcite] = ACTIONS(5300), + [anon_sym_BSLASHftvolcite] = ACTIONS(5300), + [anon_sym_BSLASHsvolcite] = ACTIONS(5300), + [anon_sym_BSLASHSvolcite] = ACTIONS(5300), + [anon_sym_BSLASHtvolcite] = ACTIONS(5300), + [anon_sym_BSLASHTvolcite] = ACTIONS(5300), + [anon_sym_BSLASHavolcite] = ACTIONS(5300), + [anon_sym_BSLASHAvolcite] = ACTIONS(5300), + [anon_sym_BSLASHnotecite] = ACTIONS(5300), + [anon_sym_BSLASHNotecite] = ACTIONS(5300), + [anon_sym_BSLASHpnotecite] = ACTIONS(5300), + [anon_sym_BSLASHPnotecite] = ACTIONS(5300), + [anon_sym_BSLASHfnotecite] = ACTIONS(5300), + [anon_sym_BSLASHlabel] = ACTIONS(5300), + [anon_sym_BSLASHref] = ACTIONS(5300), + [anon_sym_BSLASHeqref] = ACTIONS(5300), + [anon_sym_BSLASHvref] = ACTIONS(5300), + [anon_sym_BSLASHVref] = ACTIONS(5300), + [anon_sym_BSLASHautoref] = ACTIONS(5300), + [anon_sym_BSLASHpageref] = ACTIONS(5300), + [anon_sym_BSLASHcref] = ACTIONS(5300), + [anon_sym_BSLASHCref] = ACTIONS(5300), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnameCref] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5300), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5300), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5300), + [anon_sym_BSLASHlabelcref] = ACTIONS(5300), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange] = ACTIONS(5300), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHCrefrange] = ACTIONS(5300), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5298), + [anon_sym_BSLASHnewlabel] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand] = ACTIONS(5300), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5300), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5300), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5298), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5300), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdef] = ACTIONS(5300), + [anon_sym_BSLASHlet] = ACTIONS(5300), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5300), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5300), + [anon_sym_BSLASHgls] = ACTIONS(5300), + [anon_sym_BSLASHGls] = ACTIONS(5300), + [anon_sym_BSLASHGLS] = ACTIONS(5300), + [anon_sym_BSLASHglspl] = ACTIONS(5300), + [anon_sym_BSLASHGlspl] = ACTIONS(5300), + [anon_sym_BSLASHGLSpl] = ACTIONS(5300), + [anon_sym_BSLASHglsdisp] = ACTIONS(5300), + [anon_sym_BSLASHglslink] = ACTIONS(5300), + [anon_sym_BSLASHglstext] = ACTIONS(5300), + [anon_sym_BSLASHGlstext] = ACTIONS(5300), + [anon_sym_BSLASHGLStext] = ACTIONS(5300), + [anon_sym_BSLASHglsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5300), + [anon_sym_BSLASHglsplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSplural] = ACTIONS(5300), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5300), + [anon_sym_BSLASHglsname] = ACTIONS(5300), + [anon_sym_BSLASHGlsname] = ACTIONS(5300), + [anon_sym_BSLASHGLSname] = ACTIONS(5300), + [anon_sym_BSLASHglssymbol] = ACTIONS(5300), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5300), + [anon_sym_BSLASHglsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5300), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5300), + [anon_sym_BSLASHglsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5300), + [anon_sym_BSLASHglsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5300), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5300), + [anon_sym_BSLASHglsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5300), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5300), + [anon_sym_BSLASHglsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5300), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5300), + [anon_sym_BSLASHnewacronym] = ACTIONS(5300), + [anon_sym_BSLASHacrshort] = ACTIONS(5300), + [anon_sym_BSLASHAcrshort] = ACTIONS(5300), + [anon_sym_BSLASHACRshort] = ACTIONS(5300), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5300), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5300), + [anon_sym_BSLASHacrlong] = ACTIONS(5300), + [anon_sym_BSLASHAcrlong] = ACTIONS(5300), + [anon_sym_BSLASHACRlong] = ACTIONS(5300), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5300), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5300), + [anon_sym_BSLASHacrfull] = ACTIONS(5300), + [anon_sym_BSLASHAcrfull] = ACTIONS(5300), + [anon_sym_BSLASHACRfull] = ACTIONS(5300), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5300), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5300), + [anon_sym_BSLASHacs] = ACTIONS(5300), + [anon_sym_BSLASHAcs] = ACTIONS(5300), + [anon_sym_BSLASHacsp] = ACTIONS(5300), + [anon_sym_BSLASHAcsp] = ACTIONS(5300), + [anon_sym_BSLASHacl] = ACTIONS(5300), + [anon_sym_BSLASHAcl] = ACTIONS(5300), + [anon_sym_BSLASHaclp] = ACTIONS(5300), + [anon_sym_BSLASHAclp] = ACTIONS(5300), + [anon_sym_BSLASHacf] = ACTIONS(5300), + [anon_sym_BSLASHAcf] = ACTIONS(5300), + [anon_sym_BSLASHacfp] = ACTIONS(5300), + [anon_sym_BSLASHAcfp] = ACTIONS(5300), + [anon_sym_BSLASHac] = ACTIONS(5300), + [anon_sym_BSLASHAc] = ACTIONS(5300), + [anon_sym_BSLASHacp] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5300), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5300), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5300), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5300), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5300), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5300), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5300), + [anon_sym_BSLASHcolor] = ACTIONS(5300), + [anon_sym_BSLASHcolorbox] = ACTIONS(5300), + [anon_sym_BSLASHtextcolor] = ACTIONS(5300), + [anon_sym_BSLASHpagecolor] = ACTIONS(5300), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5300), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5300), }, [1525] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [sym_command_name] = ACTIONS(5384), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5384), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_RBRACE] = ACTIONS(5382), + [sym_word] = ACTIONS(5384), + [sym_placeholder] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5384), + [anon_sym_DASH] = ACTIONS(5384), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_SLASH] = ACTIONS(5384), + [anon_sym_CARET] = ACTIONS(5384), + [anon_sym__] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_BANG] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_SQUOTE] = ACTIONS(5384), + [anon_sym_BSLASHusepackage] = ACTIONS(5384), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5384), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5384), + [anon_sym_BSLASHinclude] = ACTIONS(5384), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5384), + [anon_sym_BSLASHinput] = ACTIONS(5384), + [anon_sym_BSLASHsubfile] = ACTIONS(5384), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5384), + [anon_sym_BSLASHbibliography] = ACTIONS(5384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5384), + [anon_sym_BSLASHincludesvg] = ACTIONS(5384), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5384), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5384), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5384), + [anon_sym_BSLASHimport] = ACTIONS(5384), + [anon_sym_BSLASHsubimport] = ACTIONS(5384), + [anon_sym_BSLASHinputfrom] = ACTIONS(5384), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5384), + [anon_sym_BSLASHincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5384), + [anon_sym_BSLASHcaption] = ACTIONS(5384), + [anon_sym_BSLASHcite] = ACTIONS(5384), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCite] = ACTIONS(5384), + [anon_sym_BSLASHnocite] = ACTIONS(5384), + [anon_sym_BSLASHcitet] = ACTIONS(5384), + [anon_sym_BSLASHcitep] = ACTIONS(5384), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteauthor] = ACTIONS(5384), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5384), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitetitle] = ACTIONS(5384), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteyear] = ACTIONS(5384), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5382), + [anon_sym_BSLASHcitedate] = ACTIONS(5384), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5382), + [anon_sym_BSLASHciteurl] = ACTIONS(5384), + [anon_sym_BSLASHfullcite] = ACTIONS(5384), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5384), + [anon_sym_BSLASHcitealt] = ACTIONS(5384), + [anon_sym_BSLASHcitealp] = ACTIONS(5384), + [anon_sym_BSLASHcitetext] = ACTIONS(5384), + [anon_sym_BSLASHparencite] = ACTIONS(5384), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHParencite] = ACTIONS(5384), + [anon_sym_BSLASHfootcite] = ACTIONS(5384), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5384), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5384), + [anon_sym_BSLASHtextcite] = ACTIONS(5384), + [anon_sym_BSLASHTextcite] = ACTIONS(5384), + [anon_sym_BSLASHsmartcite] = ACTIONS(5384), + [anon_sym_BSLASHSmartcite] = ACTIONS(5384), + [anon_sym_BSLASHsupercite] = ACTIONS(5384), + [anon_sym_BSLASHautocite] = ACTIONS(5384), + [anon_sym_BSLASHAutocite] = ACTIONS(5384), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5382), + [anon_sym_BSLASHvolcite] = ACTIONS(5384), + [anon_sym_BSLASHVolcite] = ACTIONS(5384), + [anon_sym_BSLASHpvolcite] = ACTIONS(5384), + [anon_sym_BSLASHPvolcite] = ACTIONS(5384), + [anon_sym_BSLASHfvolcite] = ACTIONS(5384), + [anon_sym_BSLASHftvolcite] = ACTIONS(5384), + [anon_sym_BSLASHsvolcite] = ACTIONS(5384), + [anon_sym_BSLASHSvolcite] = ACTIONS(5384), + [anon_sym_BSLASHtvolcite] = ACTIONS(5384), + [anon_sym_BSLASHTvolcite] = ACTIONS(5384), + [anon_sym_BSLASHavolcite] = ACTIONS(5384), + [anon_sym_BSLASHAvolcite] = ACTIONS(5384), + [anon_sym_BSLASHnotecite] = ACTIONS(5384), + [anon_sym_BSLASHNotecite] = ACTIONS(5384), + [anon_sym_BSLASHpnotecite] = ACTIONS(5384), + [anon_sym_BSLASHPnotecite] = ACTIONS(5384), + [anon_sym_BSLASHfnotecite] = ACTIONS(5384), + [anon_sym_BSLASHlabel] = ACTIONS(5384), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHCrefrange] = ACTIONS(5384), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5382), + [anon_sym_BSLASHnewlabel] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand] = ACTIONS(5384), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5384), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5384), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdef] = ACTIONS(5384), + [anon_sym_BSLASHlet] = ACTIONS(5384), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5384), + [anon_sym_BSLASHgls] = ACTIONS(5384), + [anon_sym_BSLASHGls] = ACTIONS(5384), + [anon_sym_BSLASHGLS] = ACTIONS(5384), + [anon_sym_BSLASHglspl] = ACTIONS(5384), + [anon_sym_BSLASHGlspl] = ACTIONS(5384), + [anon_sym_BSLASHGLSpl] = ACTIONS(5384), + [anon_sym_BSLASHglsdisp] = ACTIONS(5384), + [anon_sym_BSLASHglslink] = ACTIONS(5384), + [anon_sym_BSLASHglstext] = ACTIONS(5384), + [anon_sym_BSLASHGlstext] = ACTIONS(5384), + [anon_sym_BSLASHGLStext] = ACTIONS(5384), + [anon_sym_BSLASHglsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5384), + [anon_sym_BSLASHglsplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSplural] = ACTIONS(5384), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5384), + [anon_sym_BSLASHglsname] = ACTIONS(5384), + [anon_sym_BSLASHGlsname] = ACTIONS(5384), + [anon_sym_BSLASHGLSname] = ACTIONS(5384), + [anon_sym_BSLASHglssymbol] = ACTIONS(5384), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5384), + [anon_sym_BSLASHglsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5384), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5384), + [anon_sym_BSLASHglsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5384), + [anon_sym_BSLASHglsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5384), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5384), + [anon_sym_BSLASHglsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5384), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5384), + [anon_sym_BSLASHglsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5384), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5384), + [anon_sym_BSLASHnewacronym] = ACTIONS(5384), + [anon_sym_BSLASHacrshort] = ACTIONS(5384), + [anon_sym_BSLASHAcrshort] = ACTIONS(5384), + [anon_sym_BSLASHACRshort] = ACTIONS(5384), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5384), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5384), + [anon_sym_BSLASHacrlong] = ACTIONS(5384), + [anon_sym_BSLASHAcrlong] = ACTIONS(5384), + [anon_sym_BSLASHACRlong] = ACTIONS(5384), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5384), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5384), + [anon_sym_BSLASHacrfull] = ACTIONS(5384), + [anon_sym_BSLASHAcrfull] = ACTIONS(5384), + [anon_sym_BSLASHACRfull] = ACTIONS(5384), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5384), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5384), + [anon_sym_BSLASHacs] = ACTIONS(5384), + [anon_sym_BSLASHAcs] = ACTIONS(5384), + [anon_sym_BSLASHacsp] = ACTIONS(5384), + [anon_sym_BSLASHAcsp] = ACTIONS(5384), + [anon_sym_BSLASHacl] = ACTIONS(5384), + [anon_sym_BSLASHAcl] = ACTIONS(5384), + [anon_sym_BSLASHaclp] = ACTIONS(5384), + [anon_sym_BSLASHAclp] = ACTIONS(5384), + [anon_sym_BSLASHacf] = ACTIONS(5384), + [anon_sym_BSLASHAcf] = ACTIONS(5384), + [anon_sym_BSLASHacfp] = ACTIONS(5384), + [anon_sym_BSLASHAcfp] = ACTIONS(5384), + [anon_sym_BSLASHac] = ACTIONS(5384), + [anon_sym_BSLASHAc] = ACTIONS(5384), + [anon_sym_BSLASHacp] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5384), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5384), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5384), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5384), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5384), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5382), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5384), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5384), + [anon_sym_BSLASHcolor] = ACTIONS(5384), + [anon_sym_BSLASHcolorbox] = ACTIONS(5384), + [anon_sym_BSLASHtextcolor] = ACTIONS(5384), + [anon_sym_BSLASHpagecolor] = ACTIONS(5384), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5384), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5384), }, [1526] = { - [sym_command_name] = ACTIONS(4963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4963), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [sym_word] = ACTIONS(4963), - [sym_placeholder] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym__] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_BSLASHusepackage] = ACTIONS(4963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), - [anon_sym_BSLASHinclude] = ACTIONS(4963), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), - [anon_sym_BSLASHinput] = ACTIONS(4963), - [anon_sym_BSLASHsubfile] = ACTIONS(4963), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), - [anon_sym_BSLASHbibliography] = ACTIONS(4963), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), - [anon_sym_BSLASHincludesvg] = ACTIONS(4963), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), - [anon_sym_BSLASHimport] = ACTIONS(4963), - [anon_sym_BSLASHsubimport] = ACTIONS(4963), - [anon_sym_BSLASHinputfrom] = ACTIONS(4963), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), - [anon_sym_BSLASHincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), - [anon_sym_BSLASHcaption] = ACTIONS(4963), - [anon_sym_BSLASHcite] = ACTIONS(4963), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCite] = ACTIONS(4963), - [anon_sym_BSLASHnocite] = ACTIONS(4963), - [anon_sym_BSLASHcitet] = ACTIONS(4963), - [anon_sym_BSLASHcitep] = ACTIONS(4963), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteauthor] = ACTIONS(4963), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitetitle] = ACTIONS(4963), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteyear] = ACTIONS(4963), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), - [anon_sym_BSLASHcitedate] = ACTIONS(4963), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), - [anon_sym_BSLASHciteurl] = ACTIONS(4963), - [anon_sym_BSLASHfullcite] = ACTIONS(4963), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), - [anon_sym_BSLASHcitealt] = ACTIONS(4963), - [anon_sym_BSLASHcitealp] = ACTIONS(4963), - [anon_sym_BSLASHcitetext] = ACTIONS(4963), - [anon_sym_BSLASHparencite] = ACTIONS(4963), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHParencite] = ACTIONS(4963), - [anon_sym_BSLASHfootcite] = ACTIONS(4963), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), - [anon_sym_BSLASHtextcite] = ACTIONS(4963), - [anon_sym_BSLASHTextcite] = ACTIONS(4963), - [anon_sym_BSLASHsmartcite] = ACTIONS(4963), - [anon_sym_BSLASHSmartcite] = ACTIONS(4963), - [anon_sym_BSLASHsupercite] = ACTIONS(4963), - [anon_sym_BSLASHautocite] = ACTIONS(4963), - [anon_sym_BSLASHAutocite] = ACTIONS(4963), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), - [anon_sym_BSLASHvolcite] = ACTIONS(4963), - [anon_sym_BSLASHVolcite] = ACTIONS(4963), - [anon_sym_BSLASHpvolcite] = ACTIONS(4963), - [anon_sym_BSLASHPvolcite] = ACTIONS(4963), - [anon_sym_BSLASHfvolcite] = ACTIONS(4963), - [anon_sym_BSLASHftvolcite] = ACTIONS(4963), - [anon_sym_BSLASHsvolcite] = ACTIONS(4963), - [anon_sym_BSLASHSvolcite] = ACTIONS(4963), - [anon_sym_BSLASHtvolcite] = ACTIONS(4963), - [anon_sym_BSLASHTvolcite] = ACTIONS(4963), - [anon_sym_BSLASHavolcite] = ACTIONS(4963), - [anon_sym_BSLASHAvolcite] = ACTIONS(4963), - [anon_sym_BSLASHnotecite] = ACTIONS(4963), - [anon_sym_BSLASHNotecite] = ACTIONS(4963), - [anon_sym_BSLASHpnotecite] = ACTIONS(4963), - [anon_sym_BSLASHPnotecite] = ACTIONS(4963), - [anon_sym_BSLASHfnotecite] = ACTIONS(4963), - [anon_sym_BSLASHlabel] = ACTIONS(4963), - [anon_sym_BSLASHref] = ACTIONS(4963), - [anon_sym_BSLASHeqref] = ACTIONS(4963), - [anon_sym_BSLASHvref] = ACTIONS(4963), - [anon_sym_BSLASHVref] = ACTIONS(4963), - [anon_sym_BSLASHautoref] = ACTIONS(4963), - [anon_sym_BSLASHpageref] = ACTIONS(4963), - [anon_sym_BSLASHcref] = ACTIONS(4963), - [anon_sym_BSLASHCref] = ACTIONS(4963), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnameCref] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), - [anon_sym_BSLASHlabelcref] = ACTIONS(4963), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange] = ACTIONS(4963), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHCrefrange] = ACTIONS(4963), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), - [anon_sym_BSLASHnewlabel] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand] = ACTIONS(4963), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), - [anon_sym_BSLASHdef] = ACTIONS(4963), - [anon_sym_BSLASHlet] = ACTIONS(4963), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), - [anon_sym_BSLASHgls] = ACTIONS(4963), - [anon_sym_BSLASHGls] = ACTIONS(4963), - [anon_sym_BSLASHGLS] = ACTIONS(4963), - [anon_sym_BSLASHglspl] = ACTIONS(4963), - [anon_sym_BSLASHGlspl] = ACTIONS(4963), - [anon_sym_BSLASHGLSpl] = ACTIONS(4963), - [anon_sym_BSLASHglsdisp] = ACTIONS(4963), - [anon_sym_BSLASHglslink] = ACTIONS(4963), - [anon_sym_BSLASHglstext] = ACTIONS(4963), - [anon_sym_BSLASHGlstext] = ACTIONS(4963), - [anon_sym_BSLASHGLStext] = ACTIONS(4963), - [anon_sym_BSLASHglsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), - [anon_sym_BSLASHglsplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSplural] = ACTIONS(4963), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), - [anon_sym_BSLASHglsname] = ACTIONS(4963), - [anon_sym_BSLASHGlsname] = ACTIONS(4963), - [anon_sym_BSLASHGLSname] = ACTIONS(4963), - [anon_sym_BSLASHglssymbol] = ACTIONS(4963), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), - [anon_sym_BSLASHglsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), - [anon_sym_BSLASHglsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), - [anon_sym_BSLASHglsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), - [anon_sym_BSLASHglsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), - [anon_sym_BSLASHglsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), - [anon_sym_BSLASHnewacronym] = ACTIONS(4963), - [anon_sym_BSLASHacrshort] = ACTIONS(4963), - [anon_sym_BSLASHAcrshort] = ACTIONS(4963), - [anon_sym_BSLASHACRshort] = ACTIONS(4963), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), - [anon_sym_BSLASHacrlong] = ACTIONS(4963), - [anon_sym_BSLASHAcrlong] = ACTIONS(4963), - [anon_sym_BSLASHACRlong] = ACTIONS(4963), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), - [anon_sym_BSLASHacrfull] = ACTIONS(4963), - [anon_sym_BSLASHAcrfull] = ACTIONS(4963), - [anon_sym_BSLASHACRfull] = ACTIONS(4963), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), - [anon_sym_BSLASHacs] = ACTIONS(4963), - [anon_sym_BSLASHAcs] = ACTIONS(4963), - [anon_sym_BSLASHacsp] = ACTIONS(4963), - [anon_sym_BSLASHAcsp] = ACTIONS(4963), - [anon_sym_BSLASHacl] = ACTIONS(4963), - [anon_sym_BSLASHAcl] = ACTIONS(4963), - [anon_sym_BSLASHaclp] = ACTIONS(4963), - [anon_sym_BSLASHAclp] = ACTIONS(4963), - [anon_sym_BSLASHacf] = ACTIONS(4963), - [anon_sym_BSLASHAcf] = ACTIONS(4963), - [anon_sym_BSLASHacfp] = ACTIONS(4963), - [anon_sym_BSLASHAcfp] = ACTIONS(4963), - [anon_sym_BSLASHac] = ACTIONS(4963), - [anon_sym_BSLASHAc] = ACTIONS(4963), - [anon_sym_BSLASHacp] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), - [anon_sym_BSLASHcolor] = ACTIONS(4963), - [anon_sym_BSLASHcolorbox] = ACTIONS(4963), - [anon_sym_BSLASHtextcolor] = ACTIONS(4963), - [anon_sym_BSLASHpagecolor] = ACTIONS(4963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [sym_command_name] = ACTIONS(5042), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5042), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [sym_word] = ACTIONS(5042), + [sym_placeholder] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym__] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_SQUOTE] = ACTIONS(5042), + [anon_sym_BSLASHusepackage] = ACTIONS(5042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5042), + [anon_sym_BSLASHinclude] = ACTIONS(5042), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5042), + [anon_sym_BSLASHinput] = ACTIONS(5042), + [anon_sym_BSLASHsubfile] = ACTIONS(5042), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5042), + [anon_sym_BSLASHbibliography] = ACTIONS(5042), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5042), + [anon_sym_BSLASHincludesvg] = ACTIONS(5042), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5042), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5042), + [anon_sym_BSLASHsubimport] = ACTIONS(5042), + [anon_sym_BSLASHinputfrom] = ACTIONS(5042), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5042), + [anon_sym_BSLASHincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5042), + [anon_sym_BSLASHcaption] = ACTIONS(5042), + [anon_sym_BSLASHcite] = ACTIONS(5042), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCite] = ACTIONS(5042), + [anon_sym_BSLASHnocite] = ACTIONS(5042), + [anon_sym_BSLASHcitet] = ACTIONS(5042), + [anon_sym_BSLASHcitep] = ACTIONS(5042), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteauthor] = ACTIONS(5042), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5042), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitetitle] = ACTIONS(5042), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteyear] = ACTIONS(5042), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5040), + [anon_sym_BSLASHcitedate] = ACTIONS(5042), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5040), + [anon_sym_BSLASHciteurl] = ACTIONS(5042), + [anon_sym_BSLASHfullcite] = ACTIONS(5042), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5042), + [anon_sym_BSLASHcitealt] = ACTIONS(5042), + [anon_sym_BSLASHcitealp] = ACTIONS(5042), + [anon_sym_BSLASHcitetext] = ACTIONS(5042), + [anon_sym_BSLASHparencite] = ACTIONS(5042), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHParencite] = ACTIONS(5042), + [anon_sym_BSLASHfootcite] = ACTIONS(5042), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5042), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5042), + [anon_sym_BSLASHtextcite] = ACTIONS(5042), + [anon_sym_BSLASHTextcite] = ACTIONS(5042), + [anon_sym_BSLASHsmartcite] = ACTIONS(5042), + [anon_sym_BSLASHSmartcite] = ACTIONS(5042), + [anon_sym_BSLASHsupercite] = ACTIONS(5042), + [anon_sym_BSLASHautocite] = ACTIONS(5042), + [anon_sym_BSLASHAutocite] = ACTIONS(5042), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5040), + [anon_sym_BSLASHvolcite] = ACTIONS(5042), + [anon_sym_BSLASHVolcite] = ACTIONS(5042), + [anon_sym_BSLASHpvolcite] = ACTIONS(5042), + [anon_sym_BSLASHPvolcite] = ACTIONS(5042), + [anon_sym_BSLASHfvolcite] = ACTIONS(5042), + [anon_sym_BSLASHftvolcite] = ACTIONS(5042), + [anon_sym_BSLASHsvolcite] = ACTIONS(5042), + [anon_sym_BSLASHSvolcite] = ACTIONS(5042), + [anon_sym_BSLASHtvolcite] = ACTIONS(5042), + [anon_sym_BSLASHTvolcite] = ACTIONS(5042), + [anon_sym_BSLASHavolcite] = ACTIONS(5042), + [anon_sym_BSLASHAvolcite] = ACTIONS(5042), + [anon_sym_BSLASHnotecite] = ACTIONS(5042), + [anon_sym_BSLASHNotecite] = ACTIONS(5042), + [anon_sym_BSLASHpnotecite] = ACTIONS(5042), + [anon_sym_BSLASHPnotecite] = ACTIONS(5042), + [anon_sym_BSLASHfnotecite] = ACTIONS(5042), + [anon_sym_BSLASHlabel] = ACTIONS(5042), + [anon_sym_BSLASHref] = ACTIONS(5042), + [anon_sym_BSLASHeqref] = ACTIONS(5042), + [anon_sym_BSLASHvref] = ACTIONS(5042), + [anon_sym_BSLASHVref] = ACTIONS(5042), + [anon_sym_BSLASHautoref] = ACTIONS(5042), + [anon_sym_BSLASHpageref] = ACTIONS(5042), + [anon_sym_BSLASHcref] = ACTIONS(5042), + [anon_sym_BSLASHCref] = ACTIONS(5042), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnameCref] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5042), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5042), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5042), + [anon_sym_BSLASHlabelcref] = ACTIONS(5042), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange] = ACTIONS(5042), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHCrefrange] = ACTIONS(5042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), + [anon_sym_BSLASHnewlabel] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand] = ACTIONS(5042), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5042), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5042), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5040), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5042), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdef] = ACTIONS(5042), + [anon_sym_BSLASHlet] = ACTIONS(5042), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5042), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5042), + [anon_sym_BSLASHgls] = ACTIONS(5042), + [anon_sym_BSLASHGls] = ACTIONS(5042), + [anon_sym_BSLASHGLS] = ACTIONS(5042), + [anon_sym_BSLASHglspl] = ACTIONS(5042), + [anon_sym_BSLASHGlspl] = ACTIONS(5042), + [anon_sym_BSLASHGLSpl] = ACTIONS(5042), + [anon_sym_BSLASHglsdisp] = ACTIONS(5042), + [anon_sym_BSLASHglslink] = ACTIONS(5042), + [anon_sym_BSLASHglstext] = ACTIONS(5042), + [anon_sym_BSLASHGlstext] = ACTIONS(5042), + [anon_sym_BSLASHGLStext] = ACTIONS(5042), + [anon_sym_BSLASHglsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5042), + [anon_sym_BSLASHglsplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSplural] = ACTIONS(5042), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5042), + [anon_sym_BSLASHglsname] = ACTIONS(5042), + [anon_sym_BSLASHGlsname] = ACTIONS(5042), + [anon_sym_BSLASHGLSname] = ACTIONS(5042), + [anon_sym_BSLASHglssymbol] = ACTIONS(5042), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5042), + [anon_sym_BSLASHglsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5042), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5042), + [anon_sym_BSLASHglsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5042), + [anon_sym_BSLASHglsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5042), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5042), + [anon_sym_BSLASHglsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5042), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5042), + [anon_sym_BSLASHglsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5042), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5042), + [anon_sym_BSLASHnewacronym] = ACTIONS(5042), + [anon_sym_BSLASHacrshort] = ACTIONS(5042), + [anon_sym_BSLASHAcrshort] = ACTIONS(5042), + [anon_sym_BSLASHACRshort] = ACTIONS(5042), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5042), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5042), + [anon_sym_BSLASHacrlong] = ACTIONS(5042), + [anon_sym_BSLASHAcrlong] = ACTIONS(5042), + [anon_sym_BSLASHACRlong] = ACTIONS(5042), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5042), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5042), + [anon_sym_BSLASHacrfull] = ACTIONS(5042), + [anon_sym_BSLASHAcrfull] = ACTIONS(5042), + [anon_sym_BSLASHACRfull] = ACTIONS(5042), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5042), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5042), + [anon_sym_BSLASHacs] = ACTIONS(5042), + [anon_sym_BSLASHAcs] = ACTIONS(5042), + [anon_sym_BSLASHacsp] = ACTIONS(5042), + [anon_sym_BSLASHAcsp] = ACTIONS(5042), + [anon_sym_BSLASHacl] = ACTIONS(5042), + [anon_sym_BSLASHAcl] = ACTIONS(5042), + [anon_sym_BSLASHaclp] = ACTIONS(5042), + [anon_sym_BSLASHAclp] = ACTIONS(5042), + [anon_sym_BSLASHacf] = ACTIONS(5042), + [anon_sym_BSLASHAcf] = ACTIONS(5042), + [anon_sym_BSLASHacfp] = ACTIONS(5042), + [anon_sym_BSLASHAcfp] = ACTIONS(5042), + [anon_sym_BSLASHac] = ACTIONS(5042), + [anon_sym_BSLASHAc] = ACTIONS(5042), + [anon_sym_BSLASHacp] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5042), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5042), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5042), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5042), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5042), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5040), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5042), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5042), + [anon_sym_BSLASHcolor] = ACTIONS(5042), + [anon_sym_BSLASHcolorbox] = ACTIONS(5042), + [anon_sym_BSLASHtextcolor] = ACTIONS(5042), + [anon_sym_BSLASHpagecolor] = ACTIONS(5042), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5042), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5042), }, [1527] = { - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [sym_command_name] = ACTIONS(5152), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5152), + [anon_sym_RBRACK] = ACTIONS(5150), + [anon_sym_COMMA] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(5150), + [anon_sym_RBRACE] = ACTIONS(5150), + [sym_word] = ACTIONS(5152), + [sym_placeholder] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym__] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_BANG] = ACTIONS(5152), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_SQUOTE] = ACTIONS(5152), + [anon_sym_BSLASHusepackage] = ACTIONS(5152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), + [anon_sym_BSLASHinclude] = ACTIONS(5152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5152), + [anon_sym_BSLASHinput] = ACTIONS(5152), + [anon_sym_BSLASHsubfile] = ACTIONS(5152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5152), + [anon_sym_BSLASHbibliography] = ACTIONS(5152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5152), + [anon_sym_BSLASHincludesvg] = ACTIONS(5152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5152), + [anon_sym_BSLASHimport] = ACTIONS(5152), + [anon_sym_BSLASHsubimport] = ACTIONS(5152), + [anon_sym_BSLASHinputfrom] = ACTIONS(5152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5152), + [anon_sym_BSLASHincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5152), + [anon_sym_BSLASHcaption] = ACTIONS(5152), + [anon_sym_BSLASHcite] = ACTIONS(5152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCite] = ACTIONS(5152), + [anon_sym_BSLASHnocite] = ACTIONS(5152), + [anon_sym_BSLASHcitet] = ACTIONS(5152), + [anon_sym_BSLASHcitep] = ACTIONS(5152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteauthor] = ACTIONS(5152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitetitle] = ACTIONS(5152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteyear] = ACTIONS(5152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5150), + [anon_sym_BSLASHcitedate] = ACTIONS(5152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5150), + [anon_sym_BSLASHciteurl] = ACTIONS(5152), + [anon_sym_BSLASHfullcite] = ACTIONS(5152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5152), + [anon_sym_BSLASHcitealt] = ACTIONS(5152), + [anon_sym_BSLASHcitealp] = ACTIONS(5152), + [anon_sym_BSLASHcitetext] = ACTIONS(5152), + [anon_sym_BSLASHparencite] = ACTIONS(5152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHParencite] = ACTIONS(5152), + [anon_sym_BSLASHfootcite] = ACTIONS(5152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5152), + [anon_sym_BSLASHtextcite] = ACTIONS(5152), + [anon_sym_BSLASHTextcite] = ACTIONS(5152), + [anon_sym_BSLASHsmartcite] = ACTIONS(5152), + [anon_sym_BSLASHSmartcite] = ACTIONS(5152), + [anon_sym_BSLASHsupercite] = ACTIONS(5152), + [anon_sym_BSLASHautocite] = ACTIONS(5152), + [anon_sym_BSLASHAutocite] = ACTIONS(5152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5150), + [anon_sym_BSLASHvolcite] = ACTIONS(5152), + [anon_sym_BSLASHVolcite] = ACTIONS(5152), + [anon_sym_BSLASHpvolcite] = ACTIONS(5152), + [anon_sym_BSLASHPvolcite] = ACTIONS(5152), + [anon_sym_BSLASHfvolcite] = ACTIONS(5152), + [anon_sym_BSLASHftvolcite] = ACTIONS(5152), + [anon_sym_BSLASHsvolcite] = ACTIONS(5152), + [anon_sym_BSLASHSvolcite] = ACTIONS(5152), + [anon_sym_BSLASHtvolcite] = ACTIONS(5152), + [anon_sym_BSLASHTvolcite] = ACTIONS(5152), + [anon_sym_BSLASHavolcite] = ACTIONS(5152), + [anon_sym_BSLASHAvolcite] = ACTIONS(5152), + [anon_sym_BSLASHnotecite] = ACTIONS(5152), + [anon_sym_BSLASHNotecite] = ACTIONS(5152), + [anon_sym_BSLASHpnotecite] = ACTIONS(5152), + [anon_sym_BSLASHPnotecite] = ACTIONS(5152), + [anon_sym_BSLASHfnotecite] = ACTIONS(5152), + [anon_sym_BSLASHlabel] = ACTIONS(5152), + [anon_sym_BSLASHref] = ACTIONS(5152), + [anon_sym_BSLASHeqref] = ACTIONS(5152), + [anon_sym_BSLASHvref] = ACTIONS(5152), + [anon_sym_BSLASHVref] = ACTIONS(5152), + [anon_sym_BSLASHautoref] = ACTIONS(5152), + [anon_sym_BSLASHpageref] = ACTIONS(5152), + [anon_sym_BSLASHcref] = ACTIONS(5152), + [anon_sym_BSLASHCref] = ACTIONS(5152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnameCref] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5152), + [anon_sym_BSLASHlabelcref] = ACTIONS(5152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange] = ACTIONS(5152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHCrefrange] = ACTIONS(5152), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5150), + [anon_sym_BSLASHnewlabel] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand] = ACTIONS(5152), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5152), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5152), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5150), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdef] = ACTIONS(5152), + [anon_sym_BSLASHlet] = ACTIONS(5152), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5152), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5152), + [anon_sym_BSLASHgls] = ACTIONS(5152), + [anon_sym_BSLASHGls] = ACTIONS(5152), + [anon_sym_BSLASHGLS] = ACTIONS(5152), + [anon_sym_BSLASHglspl] = ACTIONS(5152), + [anon_sym_BSLASHGlspl] = ACTIONS(5152), + [anon_sym_BSLASHGLSpl] = ACTIONS(5152), + [anon_sym_BSLASHglsdisp] = ACTIONS(5152), + [anon_sym_BSLASHglslink] = ACTIONS(5152), + [anon_sym_BSLASHglstext] = ACTIONS(5152), + [anon_sym_BSLASHGlstext] = ACTIONS(5152), + [anon_sym_BSLASHGLStext] = ACTIONS(5152), + [anon_sym_BSLASHglsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5152), + [anon_sym_BSLASHglsplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSplural] = ACTIONS(5152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5152), + [anon_sym_BSLASHglsname] = ACTIONS(5152), + [anon_sym_BSLASHGlsname] = ACTIONS(5152), + [anon_sym_BSLASHGLSname] = ACTIONS(5152), + [anon_sym_BSLASHglssymbol] = ACTIONS(5152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5152), + [anon_sym_BSLASHglsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5152), + [anon_sym_BSLASHglsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5152), + [anon_sym_BSLASHglsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5152), + [anon_sym_BSLASHglsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5152), + [anon_sym_BSLASHglsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5152), + [anon_sym_BSLASHnewacronym] = ACTIONS(5152), + [anon_sym_BSLASHacrshort] = ACTIONS(5152), + [anon_sym_BSLASHAcrshort] = ACTIONS(5152), + [anon_sym_BSLASHACRshort] = ACTIONS(5152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5152), + [anon_sym_BSLASHacrlong] = ACTIONS(5152), + [anon_sym_BSLASHAcrlong] = ACTIONS(5152), + [anon_sym_BSLASHACRlong] = ACTIONS(5152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5152), + [anon_sym_BSLASHacrfull] = ACTIONS(5152), + [anon_sym_BSLASHAcrfull] = ACTIONS(5152), + [anon_sym_BSLASHACRfull] = ACTIONS(5152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5152), + [anon_sym_BSLASHacs] = ACTIONS(5152), + [anon_sym_BSLASHAcs] = ACTIONS(5152), + [anon_sym_BSLASHacsp] = ACTIONS(5152), + [anon_sym_BSLASHAcsp] = ACTIONS(5152), + [anon_sym_BSLASHacl] = ACTIONS(5152), + [anon_sym_BSLASHAcl] = ACTIONS(5152), + [anon_sym_BSLASHaclp] = ACTIONS(5152), + [anon_sym_BSLASHAclp] = ACTIONS(5152), + [anon_sym_BSLASHacf] = ACTIONS(5152), + [anon_sym_BSLASHAcf] = ACTIONS(5152), + [anon_sym_BSLASHacfp] = ACTIONS(5152), + [anon_sym_BSLASHAcfp] = ACTIONS(5152), + [anon_sym_BSLASHac] = ACTIONS(5152), + [anon_sym_BSLASHAc] = ACTIONS(5152), + [anon_sym_BSLASHacp] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5152), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5152), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5150), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5152), + [anon_sym_BSLASHcolor] = ACTIONS(5152), + [anon_sym_BSLASHcolorbox] = ACTIONS(5152), + [anon_sym_BSLASHtextcolor] = ACTIONS(5152), + [anon_sym_BSLASHpagecolor] = ACTIONS(5152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5152), }, [1528] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5065), - [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), + [sym_command_name] = ACTIONS(5144), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5144), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [sym_word] = ACTIONS(5144), + [sym_placeholder] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_CARET] = ACTIONS(5144), + [anon_sym__] = ACTIONS(5144), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_SQUOTE] = ACTIONS(5144), + [anon_sym_BSLASHusepackage] = ACTIONS(5144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5144), + [anon_sym_BSLASHinclude] = ACTIONS(5144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5144), + [anon_sym_BSLASHinput] = ACTIONS(5144), + [anon_sym_BSLASHsubfile] = ACTIONS(5144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5144), + [anon_sym_BSLASHbibliography] = ACTIONS(5144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5144), + [anon_sym_BSLASHincludesvg] = ACTIONS(5144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5144), + [anon_sym_BSLASHimport] = ACTIONS(5144), + [anon_sym_BSLASHsubimport] = ACTIONS(5144), + [anon_sym_BSLASHinputfrom] = ACTIONS(5144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5144), + [anon_sym_BSLASHincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5144), + [anon_sym_BSLASHcaption] = ACTIONS(5144), + [anon_sym_BSLASHcite] = ACTIONS(5144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCite] = ACTIONS(5144), + [anon_sym_BSLASHnocite] = ACTIONS(5144), + [anon_sym_BSLASHcitet] = ACTIONS(5144), + [anon_sym_BSLASHcitep] = ACTIONS(5144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteauthor] = ACTIONS(5144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitetitle] = ACTIONS(5144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteyear] = ACTIONS(5144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5142), + [anon_sym_BSLASHcitedate] = ACTIONS(5144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5142), + [anon_sym_BSLASHciteurl] = ACTIONS(5144), + [anon_sym_BSLASHfullcite] = ACTIONS(5144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5144), + [anon_sym_BSLASHcitealt] = ACTIONS(5144), + [anon_sym_BSLASHcitealp] = ACTIONS(5144), + [anon_sym_BSLASHcitetext] = ACTIONS(5144), + [anon_sym_BSLASHparencite] = ACTIONS(5144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHParencite] = ACTIONS(5144), + [anon_sym_BSLASHfootcite] = ACTIONS(5144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5144), + [anon_sym_BSLASHtextcite] = ACTIONS(5144), + [anon_sym_BSLASHTextcite] = ACTIONS(5144), + [anon_sym_BSLASHsmartcite] = ACTIONS(5144), + [anon_sym_BSLASHSmartcite] = ACTIONS(5144), + [anon_sym_BSLASHsupercite] = ACTIONS(5144), + [anon_sym_BSLASHautocite] = ACTIONS(5144), + [anon_sym_BSLASHAutocite] = ACTIONS(5144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5142), + [anon_sym_BSLASHvolcite] = ACTIONS(5144), + [anon_sym_BSLASHVolcite] = ACTIONS(5144), + [anon_sym_BSLASHpvolcite] = ACTIONS(5144), + [anon_sym_BSLASHPvolcite] = ACTIONS(5144), + [anon_sym_BSLASHfvolcite] = ACTIONS(5144), + [anon_sym_BSLASHftvolcite] = ACTIONS(5144), + [anon_sym_BSLASHsvolcite] = ACTIONS(5144), + [anon_sym_BSLASHSvolcite] = ACTIONS(5144), + [anon_sym_BSLASHtvolcite] = ACTIONS(5144), + [anon_sym_BSLASHTvolcite] = ACTIONS(5144), + [anon_sym_BSLASHavolcite] = ACTIONS(5144), + [anon_sym_BSLASHAvolcite] = ACTIONS(5144), + [anon_sym_BSLASHnotecite] = ACTIONS(5144), + [anon_sym_BSLASHNotecite] = ACTIONS(5144), + [anon_sym_BSLASHpnotecite] = ACTIONS(5144), + [anon_sym_BSLASHPnotecite] = ACTIONS(5144), + [anon_sym_BSLASHfnotecite] = ACTIONS(5144), + [anon_sym_BSLASHlabel] = ACTIONS(5144), + [anon_sym_BSLASHref] = ACTIONS(5144), + [anon_sym_BSLASHeqref] = ACTIONS(5144), + [anon_sym_BSLASHvref] = ACTIONS(5144), + [anon_sym_BSLASHVref] = ACTIONS(5144), + [anon_sym_BSLASHautoref] = ACTIONS(5144), + [anon_sym_BSLASHpageref] = ACTIONS(5144), + [anon_sym_BSLASHcref] = ACTIONS(5144), + [anon_sym_BSLASHCref] = ACTIONS(5144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnameCref] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5144), + [anon_sym_BSLASHlabelcref] = ACTIONS(5144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange] = ACTIONS(5144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHCrefrange] = ACTIONS(5144), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5142), + [anon_sym_BSLASHnewlabel] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand] = ACTIONS(5144), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5144), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5144), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5142), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdef] = ACTIONS(5144), + [anon_sym_BSLASHlet] = ACTIONS(5144), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5144), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5144), + [anon_sym_BSLASHgls] = ACTIONS(5144), + [anon_sym_BSLASHGls] = ACTIONS(5144), + [anon_sym_BSLASHGLS] = ACTIONS(5144), + [anon_sym_BSLASHglspl] = ACTIONS(5144), + [anon_sym_BSLASHGlspl] = ACTIONS(5144), + [anon_sym_BSLASHGLSpl] = ACTIONS(5144), + [anon_sym_BSLASHglsdisp] = ACTIONS(5144), + [anon_sym_BSLASHglslink] = ACTIONS(5144), + [anon_sym_BSLASHglstext] = ACTIONS(5144), + [anon_sym_BSLASHGlstext] = ACTIONS(5144), + [anon_sym_BSLASHGLStext] = ACTIONS(5144), + [anon_sym_BSLASHglsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5144), + [anon_sym_BSLASHglsplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSplural] = ACTIONS(5144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5144), + [anon_sym_BSLASHglsname] = ACTIONS(5144), + [anon_sym_BSLASHGlsname] = ACTIONS(5144), + [anon_sym_BSLASHGLSname] = ACTIONS(5144), + [anon_sym_BSLASHglssymbol] = ACTIONS(5144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5144), + [anon_sym_BSLASHglsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5144), + [anon_sym_BSLASHglsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5144), + [anon_sym_BSLASHglsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5144), + [anon_sym_BSLASHglsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5144), + [anon_sym_BSLASHglsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5144), + [anon_sym_BSLASHnewacronym] = ACTIONS(5144), + [anon_sym_BSLASHacrshort] = ACTIONS(5144), + [anon_sym_BSLASHAcrshort] = ACTIONS(5144), + [anon_sym_BSLASHACRshort] = ACTIONS(5144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5144), + [anon_sym_BSLASHacrlong] = ACTIONS(5144), + [anon_sym_BSLASHAcrlong] = ACTIONS(5144), + [anon_sym_BSLASHACRlong] = ACTIONS(5144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5144), + [anon_sym_BSLASHacrfull] = ACTIONS(5144), + [anon_sym_BSLASHAcrfull] = ACTIONS(5144), + [anon_sym_BSLASHACRfull] = ACTIONS(5144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5144), + [anon_sym_BSLASHacs] = ACTIONS(5144), + [anon_sym_BSLASHAcs] = ACTIONS(5144), + [anon_sym_BSLASHacsp] = ACTIONS(5144), + [anon_sym_BSLASHAcsp] = ACTIONS(5144), + [anon_sym_BSLASHacl] = ACTIONS(5144), + [anon_sym_BSLASHAcl] = ACTIONS(5144), + [anon_sym_BSLASHaclp] = ACTIONS(5144), + [anon_sym_BSLASHAclp] = ACTIONS(5144), + [anon_sym_BSLASHacf] = ACTIONS(5144), + [anon_sym_BSLASHAcf] = ACTIONS(5144), + [anon_sym_BSLASHacfp] = ACTIONS(5144), + [anon_sym_BSLASHAcfp] = ACTIONS(5144), + [anon_sym_BSLASHac] = ACTIONS(5144), + [anon_sym_BSLASHAc] = ACTIONS(5144), + [anon_sym_BSLASHacp] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5144), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5144), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5142), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5144), + [anon_sym_BSLASHcolor] = ACTIONS(5144), + [anon_sym_BSLASHcolorbox] = ACTIONS(5144), + [anon_sym_BSLASHtextcolor] = ACTIONS(5144), + [anon_sym_BSLASHpagecolor] = ACTIONS(5144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5144), }, [1529] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [sym_command_name] = ACTIONS(5116), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5114), + [sym_word] = ACTIONS(5116), + [sym_placeholder] = ACTIONS(5114), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym__] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_BANG] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_SQUOTE] = ACTIONS(5116), + [anon_sym_BSLASHusepackage] = ACTIONS(5116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5116), + [anon_sym_BSLASHinclude] = ACTIONS(5116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5116), + [anon_sym_BSLASHinput] = ACTIONS(5116), + [anon_sym_BSLASHsubfile] = ACTIONS(5116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), + [anon_sym_BSLASHbibliography] = ACTIONS(5116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5116), + [anon_sym_BSLASHincludesvg] = ACTIONS(5116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5116), + [anon_sym_BSLASHimport] = ACTIONS(5116), + [anon_sym_BSLASHsubimport] = ACTIONS(5116), + [anon_sym_BSLASHinputfrom] = ACTIONS(5116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5116), + [anon_sym_BSLASHincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5116), + [anon_sym_BSLASHcaption] = ACTIONS(5116), + [anon_sym_BSLASHcite] = ACTIONS(5116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCite] = ACTIONS(5116), + [anon_sym_BSLASHnocite] = ACTIONS(5116), + [anon_sym_BSLASHcitet] = ACTIONS(5116), + [anon_sym_BSLASHcitep] = ACTIONS(5116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteauthor] = ACTIONS(5116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitetitle] = ACTIONS(5116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteyear] = ACTIONS(5116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5114), + [anon_sym_BSLASHcitedate] = ACTIONS(5116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5114), + [anon_sym_BSLASHciteurl] = ACTIONS(5116), + [anon_sym_BSLASHfullcite] = ACTIONS(5116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5116), + [anon_sym_BSLASHcitealt] = ACTIONS(5116), + [anon_sym_BSLASHcitealp] = ACTIONS(5116), + [anon_sym_BSLASHcitetext] = ACTIONS(5116), + [anon_sym_BSLASHparencite] = ACTIONS(5116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHParencite] = ACTIONS(5116), + [anon_sym_BSLASHfootcite] = ACTIONS(5116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5116), + [anon_sym_BSLASHtextcite] = ACTIONS(5116), + [anon_sym_BSLASHTextcite] = ACTIONS(5116), + [anon_sym_BSLASHsmartcite] = ACTIONS(5116), + [anon_sym_BSLASHSmartcite] = ACTIONS(5116), + [anon_sym_BSLASHsupercite] = ACTIONS(5116), + [anon_sym_BSLASHautocite] = ACTIONS(5116), + [anon_sym_BSLASHAutocite] = ACTIONS(5116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5114), + [anon_sym_BSLASHvolcite] = ACTIONS(5116), + [anon_sym_BSLASHVolcite] = ACTIONS(5116), + [anon_sym_BSLASHpvolcite] = ACTIONS(5116), + [anon_sym_BSLASHPvolcite] = ACTIONS(5116), + [anon_sym_BSLASHfvolcite] = ACTIONS(5116), + [anon_sym_BSLASHftvolcite] = ACTIONS(5116), + [anon_sym_BSLASHsvolcite] = ACTIONS(5116), + [anon_sym_BSLASHSvolcite] = ACTIONS(5116), + [anon_sym_BSLASHtvolcite] = ACTIONS(5116), + [anon_sym_BSLASHTvolcite] = ACTIONS(5116), + [anon_sym_BSLASHavolcite] = ACTIONS(5116), + [anon_sym_BSLASHAvolcite] = ACTIONS(5116), + [anon_sym_BSLASHnotecite] = ACTIONS(5116), + [anon_sym_BSLASHNotecite] = ACTIONS(5116), + [anon_sym_BSLASHpnotecite] = ACTIONS(5116), + [anon_sym_BSLASHPnotecite] = ACTIONS(5116), + [anon_sym_BSLASHfnotecite] = ACTIONS(5116), + [anon_sym_BSLASHlabel] = ACTIONS(5116), + [anon_sym_BSLASHref] = ACTIONS(5116), + [anon_sym_BSLASHeqref] = ACTIONS(5116), + [anon_sym_BSLASHvref] = ACTIONS(5116), + [anon_sym_BSLASHVref] = ACTIONS(5116), + [anon_sym_BSLASHautoref] = ACTIONS(5116), + [anon_sym_BSLASHpageref] = ACTIONS(5116), + [anon_sym_BSLASHcref] = ACTIONS(5116), + [anon_sym_BSLASHCref] = ACTIONS(5116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnameCref] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5116), + [anon_sym_BSLASHlabelcref] = ACTIONS(5116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5114), + [anon_sym_BSLASHnewlabel] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand] = ACTIONS(5116), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5116), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5116), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5114), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdef] = ACTIONS(5116), + [anon_sym_BSLASHlet] = ACTIONS(5116), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5116), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5116), + [anon_sym_BSLASHgls] = ACTIONS(5116), + [anon_sym_BSLASHGls] = ACTIONS(5116), + [anon_sym_BSLASHGLS] = ACTIONS(5116), + [anon_sym_BSLASHglspl] = ACTIONS(5116), + [anon_sym_BSLASHGlspl] = ACTIONS(5116), + [anon_sym_BSLASHGLSpl] = ACTIONS(5116), + [anon_sym_BSLASHglsdisp] = ACTIONS(5116), + [anon_sym_BSLASHglslink] = ACTIONS(5116), + [anon_sym_BSLASHglstext] = ACTIONS(5116), + [anon_sym_BSLASHGlstext] = ACTIONS(5116), + [anon_sym_BSLASHGLStext] = ACTIONS(5116), + [anon_sym_BSLASHglsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5116), + [anon_sym_BSLASHglsplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSplural] = ACTIONS(5116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5116), + [anon_sym_BSLASHglsname] = ACTIONS(5116), + [anon_sym_BSLASHGlsname] = ACTIONS(5116), + [anon_sym_BSLASHGLSname] = ACTIONS(5116), + [anon_sym_BSLASHglssymbol] = ACTIONS(5116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5116), + [anon_sym_BSLASHglsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5116), + [anon_sym_BSLASHglsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5116), + [anon_sym_BSLASHglsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5116), + [anon_sym_BSLASHglsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5116), + [anon_sym_BSLASHglsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5116), + [anon_sym_BSLASHnewacronym] = ACTIONS(5116), + [anon_sym_BSLASHacrshort] = ACTIONS(5116), + [anon_sym_BSLASHAcrshort] = ACTIONS(5116), + [anon_sym_BSLASHACRshort] = ACTIONS(5116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5116), + [anon_sym_BSLASHacrlong] = ACTIONS(5116), + [anon_sym_BSLASHAcrlong] = ACTIONS(5116), + [anon_sym_BSLASHACRlong] = ACTIONS(5116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5116), + [anon_sym_BSLASHacrfull] = ACTIONS(5116), + [anon_sym_BSLASHAcrfull] = ACTIONS(5116), + [anon_sym_BSLASHACRfull] = ACTIONS(5116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5116), + [anon_sym_BSLASHacs] = ACTIONS(5116), + [anon_sym_BSLASHAcs] = ACTIONS(5116), + [anon_sym_BSLASHacsp] = ACTIONS(5116), + [anon_sym_BSLASHAcsp] = ACTIONS(5116), + [anon_sym_BSLASHacl] = ACTIONS(5116), + [anon_sym_BSLASHAcl] = ACTIONS(5116), + [anon_sym_BSLASHaclp] = ACTIONS(5116), + [anon_sym_BSLASHAclp] = ACTIONS(5116), + [anon_sym_BSLASHacf] = ACTIONS(5116), + [anon_sym_BSLASHAcf] = ACTIONS(5116), + [anon_sym_BSLASHacfp] = ACTIONS(5116), + [anon_sym_BSLASHAcfp] = ACTIONS(5116), + [anon_sym_BSLASHac] = ACTIONS(5116), + [anon_sym_BSLASHAc] = ACTIONS(5116), + [anon_sym_BSLASHacp] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5116), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5116), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5114), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5116), + [anon_sym_BSLASHcolor] = ACTIONS(5116), + [anon_sym_BSLASHcolorbox] = ACTIONS(5116), + [anon_sym_BSLASHtextcolor] = ACTIONS(5116), + [anon_sym_BSLASHpagecolor] = ACTIONS(5116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5116), }, [1530] = { - [sym_command_name] = ACTIONS(5297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5295), - [anon_sym_COMMA] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_RBRACE] = ACTIONS(5295), - [sym_word] = ACTIONS(5297), - [sym_placeholder] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_STAR] = ACTIONS(5297), - [anon_sym_SLASH] = ACTIONS(5297), - [anon_sym_CARET] = ACTIONS(5297), - [anon_sym__] = ACTIONS(5297), - [anon_sym_LT] = ACTIONS(5297), - [anon_sym_GT] = ACTIONS(5297), - [anon_sym_BANG] = ACTIONS(5297), - [anon_sym_PIPE] = ACTIONS(5297), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_SQUOTE] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), - [anon_sym_BSLASHinclude] = ACTIONS(5297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), - [anon_sym_BSLASHinput] = ACTIONS(5297), - [anon_sym_BSLASHsubfile] = ACTIONS(5297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), - [anon_sym_BSLASHbibliography] = ACTIONS(5297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), - [anon_sym_BSLASHincludesvg] = ACTIONS(5297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), - [anon_sym_BSLASHimport] = ACTIONS(5297), - [anon_sym_BSLASHsubimport] = ACTIONS(5297), - [anon_sym_BSLASHinputfrom] = ACTIONS(5297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), - [anon_sym_BSLASHincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), - [anon_sym_BSLASHcaption] = ACTIONS(5297), - [anon_sym_BSLASHcite] = ACTIONS(5297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCite] = ACTIONS(5297), - [anon_sym_BSLASHnocite] = ACTIONS(5297), - [anon_sym_BSLASHcitet] = ACTIONS(5297), - [anon_sym_BSLASHcitep] = ACTIONS(5297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteyear] = ACTIONS(5297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), - [anon_sym_BSLASHcitedate] = ACTIONS(5297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), - [anon_sym_BSLASHciteurl] = ACTIONS(5297), - [anon_sym_BSLASHfullcite] = ACTIONS(5297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), - [anon_sym_BSLASHcitealt] = ACTIONS(5297), - [anon_sym_BSLASHcitealp] = ACTIONS(5297), - [anon_sym_BSLASHcitetext] = ACTIONS(5297), - [anon_sym_BSLASHparencite] = ACTIONS(5297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHParencite] = ACTIONS(5297), - [anon_sym_BSLASHfootcite] = ACTIONS(5297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), - [anon_sym_BSLASHtextcite] = ACTIONS(5297), - [anon_sym_BSLASHTextcite] = ACTIONS(5297), - [anon_sym_BSLASHsmartcite] = ACTIONS(5297), - [anon_sym_BSLASHSmartcite] = ACTIONS(5297), - [anon_sym_BSLASHsupercite] = ACTIONS(5297), - [anon_sym_BSLASHautocite] = ACTIONS(5297), - [anon_sym_BSLASHAutocite] = ACTIONS(5297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), - [anon_sym_BSLASHvolcite] = ACTIONS(5297), - [anon_sym_BSLASHVolcite] = ACTIONS(5297), - [anon_sym_BSLASHpvolcite] = ACTIONS(5297), - [anon_sym_BSLASHPvolcite] = ACTIONS(5297), - [anon_sym_BSLASHfvolcite] = ACTIONS(5297), - [anon_sym_BSLASHftvolcite] = ACTIONS(5297), - [anon_sym_BSLASHsvolcite] = ACTIONS(5297), - [anon_sym_BSLASHSvolcite] = ACTIONS(5297), - [anon_sym_BSLASHtvolcite] = ACTIONS(5297), - [anon_sym_BSLASHTvolcite] = ACTIONS(5297), - [anon_sym_BSLASHavolcite] = ACTIONS(5297), - [anon_sym_BSLASHAvolcite] = ACTIONS(5297), - [anon_sym_BSLASHnotecite] = ACTIONS(5297), - [anon_sym_BSLASHNotecite] = ACTIONS(5297), - [anon_sym_BSLASHpnotecite] = ACTIONS(5297), - [anon_sym_BSLASHPnotecite] = ACTIONS(5297), - [anon_sym_BSLASHfnotecite] = ACTIONS(5297), - [anon_sym_BSLASHlabel] = ACTIONS(5297), - [anon_sym_BSLASHref] = ACTIONS(5297), - [anon_sym_BSLASHeqref] = ACTIONS(5297), - [anon_sym_BSLASHvref] = ACTIONS(5297), - [anon_sym_BSLASHVref] = ACTIONS(5297), - [anon_sym_BSLASHautoref] = ACTIONS(5297), - [anon_sym_BSLASHpageref] = ACTIONS(5297), - [anon_sym_BSLASHcref] = ACTIONS(5297), - [anon_sym_BSLASHCref] = ACTIONS(5297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnameCref] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), - [anon_sym_BSLASHlabelcref] = ACTIONS(5297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange] = ACTIONS(5297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), - [anon_sym_BSLASHnewlabel] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand] = ACTIONS(5297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), - [anon_sym_BSLASHdef] = ACTIONS(5297), - [anon_sym_BSLASHlet] = ACTIONS(5297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), - [anon_sym_BSLASHgls] = ACTIONS(5297), - [anon_sym_BSLASHGls] = ACTIONS(5297), - [anon_sym_BSLASHGLS] = ACTIONS(5297), - [anon_sym_BSLASHglspl] = ACTIONS(5297), - [anon_sym_BSLASHGlspl] = ACTIONS(5297), - [anon_sym_BSLASHGLSpl] = ACTIONS(5297), - [anon_sym_BSLASHglsdisp] = ACTIONS(5297), - [anon_sym_BSLASHglslink] = ACTIONS(5297), - [anon_sym_BSLASHglstext] = ACTIONS(5297), - [anon_sym_BSLASHGlstext] = ACTIONS(5297), - [anon_sym_BSLASHGLStext] = ACTIONS(5297), - [anon_sym_BSLASHglsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), - [anon_sym_BSLASHglsplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSplural] = ACTIONS(5297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), - [anon_sym_BSLASHglsname] = ACTIONS(5297), - [anon_sym_BSLASHGlsname] = ACTIONS(5297), - [anon_sym_BSLASHGLSname] = ACTIONS(5297), - [anon_sym_BSLASHglssymbol] = ACTIONS(5297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), - [anon_sym_BSLASHglsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), - [anon_sym_BSLASHglsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), - [anon_sym_BSLASHglsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), - [anon_sym_BSLASHglsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), - [anon_sym_BSLASHglsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), - [anon_sym_BSLASHnewacronym] = ACTIONS(5297), - [anon_sym_BSLASHacrshort] = ACTIONS(5297), - [anon_sym_BSLASHAcrshort] = ACTIONS(5297), - [anon_sym_BSLASHACRshort] = ACTIONS(5297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), - [anon_sym_BSLASHacrlong] = ACTIONS(5297), - [anon_sym_BSLASHAcrlong] = ACTIONS(5297), - [anon_sym_BSLASHACRlong] = ACTIONS(5297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), - [anon_sym_BSLASHacrfull] = ACTIONS(5297), - [anon_sym_BSLASHAcrfull] = ACTIONS(5297), - [anon_sym_BSLASHACRfull] = ACTIONS(5297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), - [anon_sym_BSLASHacs] = ACTIONS(5297), - [anon_sym_BSLASHAcs] = ACTIONS(5297), - [anon_sym_BSLASHacsp] = ACTIONS(5297), - [anon_sym_BSLASHAcsp] = ACTIONS(5297), - [anon_sym_BSLASHacl] = ACTIONS(5297), - [anon_sym_BSLASHAcl] = ACTIONS(5297), - [anon_sym_BSLASHaclp] = ACTIONS(5297), - [anon_sym_BSLASHAclp] = ACTIONS(5297), - [anon_sym_BSLASHacf] = ACTIONS(5297), - [anon_sym_BSLASHAcf] = ACTIONS(5297), - [anon_sym_BSLASHacfp] = ACTIONS(5297), - [anon_sym_BSLASHAcfp] = ACTIONS(5297), - [anon_sym_BSLASHac] = ACTIONS(5297), - [anon_sym_BSLASHAc] = ACTIONS(5297), - [anon_sym_BSLASHacp] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), - [anon_sym_BSLASHcolor] = ACTIONS(5297), - [anon_sym_BSLASHcolorbox] = ACTIONS(5297), - [anon_sym_BSLASHtextcolor] = ACTIONS(5297), - [anon_sym_BSLASHpagecolor] = ACTIONS(5297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [sym_command_name] = ACTIONS(5376), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5376), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_RBRACE] = ACTIONS(5374), + [sym_word] = ACTIONS(5376), + [sym_placeholder] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5376), + [anon_sym_DASH] = ACTIONS(5376), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym__] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5376), + [anon_sym_BANG] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_SQUOTE] = ACTIONS(5376), + [anon_sym_BSLASHusepackage] = ACTIONS(5376), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5376), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5376), + [anon_sym_BSLASHinclude] = ACTIONS(5376), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5376), + [anon_sym_BSLASHinput] = ACTIONS(5376), + [anon_sym_BSLASHsubfile] = ACTIONS(5376), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5376), + [anon_sym_BSLASHbibliography] = ACTIONS(5376), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5376), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5376), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5376), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5376), + [anon_sym_BSLASHimport] = ACTIONS(5376), + [anon_sym_BSLASHsubimport] = ACTIONS(5376), + [anon_sym_BSLASHinputfrom] = ACTIONS(5376), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5376), + [anon_sym_BSLASHincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5376), + [anon_sym_BSLASHcaption] = ACTIONS(5376), + [anon_sym_BSLASHcite] = ACTIONS(5376), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCite] = ACTIONS(5376), + [anon_sym_BSLASHnocite] = ACTIONS(5376), + [anon_sym_BSLASHcitet] = ACTIONS(5376), + [anon_sym_BSLASHcitep] = ACTIONS(5376), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteauthor] = ACTIONS(5376), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5376), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitetitle] = ACTIONS(5376), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteyear] = ACTIONS(5376), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5374), + [anon_sym_BSLASHcitedate] = ACTIONS(5376), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5374), + [anon_sym_BSLASHciteurl] = ACTIONS(5376), + [anon_sym_BSLASHfullcite] = ACTIONS(5376), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5376), + [anon_sym_BSLASHcitealt] = ACTIONS(5376), + [anon_sym_BSLASHcitealp] = ACTIONS(5376), + [anon_sym_BSLASHcitetext] = ACTIONS(5376), + [anon_sym_BSLASHparencite] = ACTIONS(5376), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHParencite] = ACTIONS(5376), + [anon_sym_BSLASHfootcite] = ACTIONS(5376), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5376), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5376), + [anon_sym_BSLASHtextcite] = ACTIONS(5376), + [anon_sym_BSLASHTextcite] = ACTIONS(5376), + [anon_sym_BSLASHsmartcite] = ACTIONS(5376), + [anon_sym_BSLASHSmartcite] = ACTIONS(5376), + [anon_sym_BSLASHsupercite] = ACTIONS(5376), + [anon_sym_BSLASHautocite] = ACTIONS(5376), + [anon_sym_BSLASHAutocite] = ACTIONS(5376), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5374), + [anon_sym_BSLASHvolcite] = ACTIONS(5376), + [anon_sym_BSLASHVolcite] = ACTIONS(5376), + [anon_sym_BSLASHpvolcite] = ACTIONS(5376), + [anon_sym_BSLASHPvolcite] = ACTIONS(5376), + [anon_sym_BSLASHfvolcite] = ACTIONS(5376), + [anon_sym_BSLASHftvolcite] = ACTIONS(5376), + [anon_sym_BSLASHsvolcite] = ACTIONS(5376), + [anon_sym_BSLASHSvolcite] = ACTIONS(5376), + [anon_sym_BSLASHtvolcite] = ACTIONS(5376), + [anon_sym_BSLASHTvolcite] = ACTIONS(5376), + [anon_sym_BSLASHavolcite] = ACTIONS(5376), + [anon_sym_BSLASHAvolcite] = ACTIONS(5376), + [anon_sym_BSLASHnotecite] = ACTIONS(5376), + [anon_sym_BSLASHNotecite] = ACTIONS(5376), + [anon_sym_BSLASHpnotecite] = ACTIONS(5376), + [anon_sym_BSLASHPnotecite] = ACTIONS(5376), + [anon_sym_BSLASHfnotecite] = ACTIONS(5376), + [anon_sym_BSLASHlabel] = ACTIONS(5376), + [anon_sym_BSLASHref] = ACTIONS(5376), + [anon_sym_BSLASHeqref] = ACTIONS(5376), + [anon_sym_BSLASHvref] = ACTIONS(5376), + [anon_sym_BSLASHVref] = ACTIONS(5376), + [anon_sym_BSLASHautoref] = ACTIONS(5376), + [anon_sym_BSLASHpageref] = ACTIONS(5376), + [anon_sym_BSLASHcref] = ACTIONS(5376), + [anon_sym_BSLASHCref] = ACTIONS(5376), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnameCref] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5376), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5376), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5376), + [anon_sym_BSLASHlabelcref] = ACTIONS(5376), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange] = ACTIONS(5376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHCrefrange] = ACTIONS(5376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5374), + [anon_sym_BSLASHnewlabel] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand] = ACTIONS(5376), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5376), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5376), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5376), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdef] = ACTIONS(5376), + [anon_sym_BSLASHlet] = ACTIONS(5376), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5376), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5376), + [anon_sym_BSLASHgls] = ACTIONS(5376), + [anon_sym_BSLASHGls] = ACTIONS(5376), + [anon_sym_BSLASHGLS] = ACTIONS(5376), + [anon_sym_BSLASHglspl] = ACTIONS(5376), + [anon_sym_BSLASHGlspl] = ACTIONS(5376), + [anon_sym_BSLASHGLSpl] = ACTIONS(5376), + [anon_sym_BSLASHglsdisp] = ACTIONS(5376), + [anon_sym_BSLASHglslink] = ACTIONS(5376), + [anon_sym_BSLASHglstext] = ACTIONS(5376), + [anon_sym_BSLASHGlstext] = ACTIONS(5376), + [anon_sym_BSLASHGLStext] = ACTIONS(5376), + [anon_sym_BSLASHglsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5376), + [anon_sym_BSLASHglsplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSplural] = ACTIONS(5376), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5376), + [anon_sym_BSLASHglsname] = ACTIONS(5376), + [anon_sym_BSLASHGlsname] = ACTIONS(5376), + [anon_sym_BSLASHGLSname] = ACTIONS(5376), + [anon_sym_BSLASHglssymbol] = ACTIONS(5376), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5376), + [anon_sym_BSLASHglsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5376), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5376), + [anon_sym_BSLASHglsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5376), + [anon_sym_BSLASHglsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5376), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5376), + [anon_sym_BSLASHglsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5376), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5376), + [anon_sym_BSLASHglsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5376), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5376), + [anon_sym_BSLASHnewacronym] = ACTIONS(5376), + [anon_sym_BSLASHacrshort] = ACTIONS(5376), + [anon_sym_BSLASHAcrshort] = ACTIONS(5376), + [anon_sym_BSLASHACRshort] = ACTIONS(5376), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5376), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5376), + [anon_sym_BSLASHacrlong] = ACTIONS(5376), + [anon_sym_BSLASHAcrlong] = ACTIONS(5376), + [anon_sym_BSLASHACRlong] = ACTIONS(5376), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5376), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5376), + [anon_sym_BSLASHacrfull] = ACTIONS(5376), + [anon_sym_BSLASHAcrfull] = ACTIONS(5376), + [anon_sym_BSLASHACRfull] = ACTIONS(5376), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5376), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5376), + [anon_sym_BSLASHacs] = ACTIONS(5376), + [anon_sym_BSLASHAcs] = ACTIONS(5376), + [anon_sym_BSLASHacsp] = ACTIONS(5376), + [anon_sym_BSLASHAcsp] = ACTIONS(5376), + [anon_sym_BSLASHacl] = ACTIONS(5376), + [anon_sym_BSLASHAcl] = ACTIONS(5376), + [anon_sym_BSLASHaclp] = ACTIONS(5376), + [anon_sym_BSLASHAclp] = ACTIONS(5376), + [anon_sym_BSLASHacf] = ACTIONS(5376), + [anon_sym_BSLASHAcf] = ACTIONS(5376), + [anon_sym_BSLASHacfp] = ACTIONS(5376), + [anon_sym_BSLASHAcfp] = ACTIONS(5376), + [anon_sym_BSLASHac] = ACTIONS(5376), + [anon_sym_BSLASHAc] = ACTIONS(5376), + [anon_sym_BSLASHacp] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5376), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5376), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5376), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5376), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5376), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5374), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5376), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5376), + [anon_sym_BSLASHcolor] = ACTIONS(5376), + [anon_sym_BSLASHcolorbox] = ACTIONS(5376), + [anon_sym_BSLASHtextcolor] = ACTIONS(5376), + [anon_sym_BSLASHpagecolor] = ACTIONS(5376), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5376), }, [1531] = { - [sym_command_name] = ACTIONS(5293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5291), - [anon_sym_COMMA] = ACTIONS(5291), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5293), - [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), + [sym_command_name] = ACTIONS(5372), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5372), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5370), + [sym_word] = ACTIONS(5372), + [sym_placeholder] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_CARET] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_SQUOTE] = ACTIONS(5372), + [anon_sym_BSLASHusepackage] = ACTIONS(5372), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5372), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5372), + [anon_sym_BSLASHinclude] = ACTIONS(5372), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5372), + [anon_sym_BSLASHinput] = ACTIONS(5372), + [anon_sym_BSLASHsubfile] = ACTIONS(5372), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5372), + [anon_sym_BSLASHbibliography] = ACTIONS(5372), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5372), + [anon_sym_BSLASHincludesvg] = ACTIONS(5372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5372), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5372), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5372), + [anon_sym_BSLASHimport] = ACTIONS(5372), + [anon_sym_BSLASHsubimport] = ACTIONS(5372), + [anon_sym_BSLASHinputfrom] = ACTIONS(5372), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5372), + [anon_sym_BSLASHincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5372), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5372), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCite] = ACTIONS(5372), + [anon_sym_BSLASHnocite] = ACTIONS(5372), + [anon_sym_BSLASHcitet] = ACTIONS(5372), + [anon_sym_BSLASHcitep] = ACTIONS(5372), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteauthor] = ACTIONS(5372), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5372), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitetitle] = ACTIONS(5372), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteyear] = ACTIONS(5372), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5370), + [anon_sym_BSLASHcitedate] = ACTIONS(5372), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5370), + [anon_sym_BSLASHciteurl] = ACTIONS(5372), + [anon_sym_BSLASHfullcite] = ACTIONS(5372), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5372), + [anon_sym_BSLASHcitealt] = ACTIONS(5372), + [anon_sym_BSLASHcitealp] = ACTIONS(5372), + [anon_sym_BSLASHcitetext] = ACTIONS(5372), + [anon_sym_BSLASHparencite] = ACTIONS(5372), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHParencite] = ACTIONS(5372), + [anon_sym_BSLASHfootcite] = ACTIONS(5372), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5372), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5372), + [anon_sym_BSLASHtextcite] = ACTIONS(5372), + [anon_sym_BSLASHTextcite] = ACTIONS(5372), + [anon_sym_BSLASHsmartcite] = ACTIONS(5372), + [anon_sym_BSLASHSmartcite] = ACTIONS(5372), + [anon_sym_BSLASHsupercite] = ACTIONS(5372), + [anon_sym_BSLASHautocite] = ACTIONS(5372), + [anon_sym_BSLASHAutocite] = ACTIONS(5372), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5370), + [anon_sym_BSLASHvolcite] = ACTIONS(5372), + [anon_sym_BSLASHVolcite] = ACTIONS(5372), + [anon_sym_BSLASHpvolcite] = ACTIONS(5372), + [anon_sym_BSLASHPvolcite] = ACTIONS(5372), + [anon_sym_BSLASHfvolcite] = ACTIONS(5372), + [anon_sym_BSLASHftvolcite] = ACTIONS(5372), + [anon_sym_BSLASHsvolcite] = ACTIONS(5372), + [anon_sym_BSLASHSvolcite] = ACTIONS(5372), + [anon_sym_BSLASHtvolcite] = ACTIONS(5372), + [anon_sym_BSLASHTvolcite] = ACTIONS(5372), + [anon_sym_BSLASHavolcite] = ACTIONS(5372), + [anon_sym_BSLASHAvolcite] = ACTIONS(5372), + [anon_sym_BSLASHnotecite] = ACTIONS(5372), + [anon_sym_BSLASHNotecite] = ACTIONS(5372), + [anon_sym_BSLASHpnotecite] = ACTIONS(5372), + [anon_sym_BSLASHPnotecite] = ACTIONS(5372), + [anon_sym_BSLASHfnotecite] = ACTIONS(5372), + [anon_sym_BSLASHlabel] = ACTIONS(5372), + [anon_sym_BSLASHref] = ACTIONS(5372), + [anon_sym_BSLASHeqref] = ACTIONS(5372), + [anon_sym_BSLASHvref] = ACTIONS(5372), + [anon_sym_BSLASHVref] = ACTIONS(5372), + [anon_sym_BSLASHautoref] = ACTIONS(5372), + [anon_sym_BSLASHpageref] = ACTIONS(5372), + [anon_sym_BSLASHcref] = ACTIONS(5372), + [anon_sym_BSLASHCref] = ACTIONS(5372), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnameCref] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5372), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5372), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5372), + [anon_sym_BSLASHlabelcref] = ACTIONS(5372), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange] = ACTIONS(5372), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHCrefrange] = ACTIONS(5372), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5370), + [anon_sym_BSLASHnewlabel] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand] = ACTIONS(5372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdef] = ACTIONS(5372), + [anon_sym_BSLASHlet] = ACTIONS(5372), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5372), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5372), + [anon_sym_BSLASHgls] = ACTIONS(5372), + [anon_sym_BSLASHGls] = ACTIONS(5372), + [anon_sym_BSLASHGLS] = ACTIONS(5372), + [anon_sym_BSLASHglspl] = ACTIONS(5372), + [anon_sym_BSLASHGlspl] = ACTIONS(5372), + [anon_sym_BSLASHGLSpl] = ACTIONS(5372), + [anon_sym_BSLASHglsdisp] = ACTIONS(5372), + [anon_sym_BSLASHglslink] = ACTIONS(5372), + [anon_sym_BSLASHglstext] = ACTIONS(5372), + [anon_sym_BSLASHGlstext] = ACTIONS(5372), + [anon_sym_BSLASHGLStext] = ACTIONS(5372), + [anon_sym_BSLASHglsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5372), + [anon_sym_BSLASHglsplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSplural] = ACTIONS(5372), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5372), + [anon_sym_BSLASHglsname] = ACTIONS(5372), + [anon_sym_BSLASHGlsname] = ACTIONS(5372), + [anon_sym_BSLASHGLSname] = ACTIONS(5372), + [anon_sym_BSLASHglssymbol] = ACTIONS(5372), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5372), + [anon_sym_BSLASHglsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5372), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5372), + [anon_sym_BSLASHglsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5372), + [anon_sym_BSLASHglsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5372), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5372), + [anon_sym_BSLASHglsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5372), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5372), + [anon_sym_BSLASHglsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5372), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5372), + [anon_sym_BSLASHnewacronym] = ACTIONS(5372), + [anon_sym_BSLASHacrshort] = ACTIONS(5372), + [anon_sym_BSLASHAcrshort] = ACTIONS(5372), + [anon_sym_BSLASHACRshort] = ACTIONS(5372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5372), + [anon_sym_BSLASHacrlong] = ACTIONS(5372), + [anon_sym_BSLASHAcrlong] = ACTIONS(5372), + [anon_sym_BSLASHACRlong] = ACTIONS(5372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5372), + [anon_sym_BSLASHacrfull] = ACTIONS(5372), + [anon_sym_BSLASHAcrfull] = ACTIONS(5372), + [anon_sym_BSLASHACRfull] = ACTIONS(5372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5372), + [anon_sym_BSLASHacs] = ACTIONS(5372), + [anon_sym_BSLASHAcs] = ACTIONS(5372), + [anon_sym_BSLASHacsp] = ACTIONS(5372), + [anon_sym_BSLASHAcsp] = ACTIONS(5372), + [anon_sym_BSLASHacl] = ACTIONS(5372), + [anon_sym_BSLASHAcl] = ACTIONS(5372), + [anon_sym_BSLASHaclp] = ACTIONS(5372), + [anon_sym_BSLASHAclp] = ACTIONS(5372), + [anon_sym_BSLASHacf] = ACTIONS(5372), + [anon_sym_BSLASHAcf] = ACTIONS(5372), + [anon_sym_BSLASHacfp] = ACTIONS(5372), + [anon_sym_BSLASHAcfp] = ACTIONS(5372), + [anon_sym_BSLASHac] = ACTIONS(5372), + [anon_sym_BSLASHAc] = ACTIONS(5372), + [anon_sym_BSLASHacp] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5372), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5372), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5370), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5372), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5372), + [anon_sym_BSLASHcolor] = ACTIONS(5372), + [anon_sym_BSLASHcolorbox] = ACTIONS(5372), + [anon_sym_BSLASHtextcolor] = ACTIONS(5372), + [anon_sym_BSLASHpagecolor] = ACTIONS(5372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5372), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5372), }, [1532] = { - [sym_command_name] = ACTIONS(5289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5287), - [anon_sym_COMMA] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_RBRACE] = ACTIONS(5287), - [sym_word] = ACTIONS(5289), - [sym_placeholder] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_STAR] = ACTIONS(5289), - [anon_sym_SLASH] = ACTIONS(5289), - [anon_sym_CARET] = ACTIONS(5289), - [anon_sym__] = ACTIONS(5289), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(5289), - [anon_sym_BANG] = ACTIONS(5289), - [anon_sym_PIPE] = ACTIONS(5289), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_SQUOTE] = ACTIONS(5289), - [anon_sym_BSLASHusepackage] = ACTIONS(5289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), - [anon_sym_BSLASHinclude] = ACTIONS(5289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), - [anon_sym_BSLASHinput] = ACTIONS(5289), - [anon_sym_BSLASHsubfile] = ACTIONS(5289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), - [anon_sym_BSLASHbibliography] = ACTIONS(5289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), - [anon_sym_BSLASHincludesvg] = ACTIONS(5289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), - [anon_sym_BSLASHimport] = ACTIONS(5289), - [anon_sym_BSLASHsubimport] = ACTIONS(5289), - [anon_sym_BSLASHinputfrom] = ACTIONS(5289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), - [anon_sym_BSLASHincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), - [anon_sym_BSLASHcaption] = ACTIONS(5289), - [anon_sym_BSLASHcite] = ACTIONS(5289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCite] = ACTIONS(5289), - [anon_sym_BSLASHnocite] = ACTIONS(5289), - [anon_sym_BSLASHcitet] = ACTIONS(5289), - [anon_sym_BSLASHcitep] = ACTIONS(5289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteyear] = ACTIONS(5289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), - [anon_sym_BSLASHcitedate] = ACTIONS(5289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), - [anon_sym_BSLASHciteurl] = ACTIONS(5289), - [anon_sym_BSLASHfullcite] = ACTIONS(5289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), - [anon_sym_BSLASHcitealt] = ACTIONS(5289), - [anon_sym_BSLASHcitealp] = ACTIONS(5289), - [anon_sym_BSLASHcitetext] = ACTIONS(5289), - [anon_sym_BSLASHparencite] = ACTIONS(5289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHParencite] = ACTIONS(5289), - [anon_sym_BSLASHfootcite] = ACTIONS(5289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), - [anon_sym_BSLASHtextcite] = ACTIONS(5289), - [anon_sym_BSLASHTextcite] = ACTIONS(5289), - [anon_sym_BSLASHsmartcite] = ACTIONS(5289), - [anon_sym_BSLASHSmartcite] = ACTIONS(5289), - [anon_sym_BSLASHsupercite] = ACTIONS(5289), - [anon_sym_BSLASHautocite] = ACTIONS(5289), - [anon_sym_BSLASHAutocite] = ACTIONS(5289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), - [anon_sym_BSLASHvolcite] = ACTIONS(5289), - [anon_sym_BSLASHVolcite] = ACTIONS(5289), - [anon_sym_BSLASHpvolcite] = ACTIONS(5289), - [anon_sym_BSLASHPvolcite] = ACTIONS(5289), - [anon_sym_BSLASHfvolcite] = ACTIONS(5289), - [anon_sym_BSLASHftvolcite] = ACTIONS(5289), - [anon_sym_BSLASHsvolcite] = ACTIONS(5289), - [anon_sym_BSLASHSvolcite] = ACTIONS(5289), - [anon_sym_BSLASHtvolcite] = ACTIONS(5289), - [anon_sym_BSLASHTvolcite] = ACTIONS(5289), - [anon_sym_BSLASHavolcite] = ACTIONS(5289), - [anon_sym_BSLASHAvolcite] = ACTIONS(5289), - [anon_sym_BSLASHnotecite] = ACTIONS(5289), - [anon_sym_BSLASHNotecite] = ACTIONS(5289), - [anon_sym_BSLASHpnotecite] = ACTIONS(5289), - [anon_sym_BSLASHPnotecite] = ACTIONS(5289), - [anon_sym_BSLASHfnotecite] = ACTIONS(5289), - [anon_sym_BSLASHlabel] = ACTIONS(5289), - [anon_sym_BSLASHref] = ACTIONS(5289), - [anon_sym_BSLASHeqref] = ACTIONS(5289), - [anon_sym_BSLASHvref] = ACTIONS(5289), - [anon_sym_BSLASHVref] = ACTIONS(5289), - [anon_sym_BSLASHautoref] = ACTIONS(5289), - [anon_sym_BSLASHpageref] = ACTIONS(5289), - [anon_sym_BSLASHcref] = ACTIONS(5289), - [anon_sym_BSLASHCref] = ACTIONS(5289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnameCref] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), - [anon_sym_BSLASHlabelcref] = ACTIONS(5289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange] = ACTIONS(5289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), - [anon_sym_BSLASHnewlabel] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand] = ACTIONS(5289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), - [anon_sym_BSLASHdef] = ACTIONS(5289), - [anon_sym_BSLASHlet] = ACTIONS(5289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), - [anon_sym_BSLASHgls] = ACTIONS(5289), - [anon_sym_BSLASHGls] = ACTIONS(5289), - [anon_sym_BSLASHGLS] = ACTIONS(5289), - [anon_sym_BSLASHglspl] = ACTIONS(5289), - [anon_sym_BSLASHGlspl] = ACTIONS(5289), - [anon_sym_BSLASHGLSpl] = ACTIONS(5289), - [anon_sym_BSLASHglsdisp] = ACTIONS(5289), - [anon_sym_BSLASHglslink] = ACTIONS(5289), - [anon_sym_BSLASHglstext] = ACTIONS(5289), - [anon_sym_BSLASHGlstext] = ACTIONS(5289), - [anon_sym_BSLASHGLStext] = ACTIONS(5289), - [anon_sym_BSLASHglsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), - [anon_sym_BSLASHglsplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSplural] = ACTIONS(5289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), - [anon_sym_BSLASHglsname] = ACTIONS(5289), - [anon_sym_BSLASHGlsname] = ACTIONS(5289), - [anon_sym_BSLASHGLSname] = ACTIONS(5289), - [anon_sym_BSLASHglssymbol] = ACTIONS(5289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), - [anon_sym_BSLASHglsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), - [anon_sym_BSLASHglsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), - [anon_sym_BSLASHglsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), - [anon_sym_BSLASHglsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), - [anon_sym_BSLASHglsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), - [anon_sym_BSLASHnewacronym] = ACTIONS(5289), - [anon_sym_BSLASHacrshort] = ACTIONS(5289), - [anon_sym_BSLASHAcrshort] = ACTIONS(5289), - [anon_sym_BSLASHACRshort] = ACTIONS(5289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), - [anon_sym_BSLASHacrlong] = ACTIONS(5289), - [anon_sym_BSLASHAcrlong] = ACTIONS(5289), - [anon_sym_BSLASHACRlong] = ACTIONS(5289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), - [anon_sym_BSLASHacrfull] = ACTIONS(5289), - [anon_sym_BSLASHAcrfull] = ACTIONS(5289), - [anon_sym_BSLASHACRfull] = ACTIONS(5289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), - [anon_sym_BSLASHacs] = ACTIONS(5289), - [anon_sym_BSLASHAcs] = ACTIONS(5289), - [anon_sym_BSLASHacsp] = ACTIONS(5289), - [anon_sym_BSLASHAcsp] = ACTIONS(5289), - [anon_sym_BSLASHacl] = ACTIONS(5289), - [anon_sym_BSLASHAcl] = ACTIONS(5289), - [anon_sym_BSLASHaclp] = ACTIONS(5289), - [anon_sym_BSLASHAclp] = ACTIONS(5289), - [anon_sym_BSLASHacf] = ACTIONS(5289), - [anon_sym_BSLASHAcf] = ACTIONS(5289), - [anon_sym_BSLASHacfp] = ACTIONS(5289), - [anon_sym_BSLASHAcfp] = ACTIONS(5289), - [anon_sym_BSLASHac] = ACTIONS(5289), - [anon_sym_BSLASHAc] = ACTIONS(5289), - [anon_sym_BSLASHacp] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), - [anon_sym_BSLASHcolor] = ACTIONS(5289), - [anon_sym_BSLASHcolorbox] = ACTIONS(5289), - [anon_sym_BSLASHtextcolor] = ACTIONS(5289), - [anon_sym_BSLASHpagecolor] = ACTIONS(5289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [sym_command_name] = ACTIONS(5368), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5368), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5366), + [anon_sym_RBRACE] = ACTIONS(5366), + [sym_word] = ACTIONS(5368), + [sym_placeholder] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_CARET] = ACTIONS(5368), + [anon_sym__] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_SQUOTE] = ACTIONS(5368), + [anon_sym_BSLASHusepackage] = ACTIONS(5368), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5368), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5368), + [anon_sym_BSLASHinclude] = ACTIONS(5368), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5368), + [anon_sym_BSLASHinput] = ACTIONS(5368), + [anon_sym_BSLASHsubfile] = ACTIONS(5368), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5368), + [anon_sym_BSLASHbibliography] = ACTIONS(5368), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5368), + [anon_sym_BSLASHincludesvg] = ACTIONS(5368), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5368), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5368), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5368), + [anon_sym_BSLASHimport] = ACTIONS(5368), + [anon_sym_BSLASHsubimport] = ACTIONS(5368), + [anon_sym_BSLASHinputfrom] = ACTIONS(5368), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5368), + [anon_sym_BSLASHincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5368), + [anon_sym_BSLASHcaption] = ACTIONS(5368), + [anon_sym_BSLASHcite] = ACTIONS(5368), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCite] = ACTIONS(5368), + [anon_sym_BSLASHnocite] = ACTIONS(5368), + [anon_sym_BSLASHcitet] = ACTIONS(5368), + [anon_sym_BSLASHcitep] = ACTIONS(5368), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteauthor] = ACTIONS(5368), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5368), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitetitle] = ACTIONS(5368), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteyear] = ACTIONS(5368), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5366), + [anon_sym_BSLASHcitedate] = ACTIONS(5368), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5366), + [anon_sym_BSLASHciteurl] = ACTIONS(5368), + [anon_sym_BSLASHfullcite] = ACTIONS(5368), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5368), + [anon_sym_BSLASHcitealt] = ACTIONS(5368), + [anon_sym_BSLASHcitealp] = ACTIONS(5368), + [anon_sym_BSLASHcitetext] = ACTIONS(5368), + [anon_sym_BSLASHparencite] = ACTIONS(5368), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHParencite] = ACTIONS(5368), + [anon_sym_BSLASHfootcite] = ACTIONS(5368), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5368), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5368), + [anon_sym_BSLASHtextcite] = ACTIONS(5368), + [anon_sym_BSLASHTextcite] = ACTIONS(5368), + [anon_sym_BSLASHsmartcite] = ACTIONS(5368), + [anon_sym_BSLASHSmartcite] = ACTIONS(5368), + [anon_sym_BSLASHsupercite] = ACTIONS(5368), + [anon_sym_BSLASHautocite] = ACTIONS(5368), + [anon_sym_BSLASHAutocite] = ACTIONS(5368), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5366), + [anon_sym_BSLASHvolcite] = ACTIONS(5368), + [anon_sym_BSLASHVolcite] = ACTIONS(5368), + [anon_sym_BSLASHpvolcite] = ACTIONS(5368), + [anon_sym_BSLASHPvolcite] = ACTIONS(5368), + [anon_sym_BSLASHfvolcite] = ACTIONS(5368), + [anon_sym_BSLASHftvolcite] = ACTIONS(5368), + [anon_sym_BSLASHsvolcite] = ACTIONS(5368), + [anon_sym_BSLASHSvolcite] = ACTIONS(5368), + [anon_sym_BSLASHtvolcite] = ACTIONS(5368), + [anon_sym_BSLASHTvolcite] = ACTIONS(5368), + [anon_sym_BSLASHavolcite] = ACTIONS(5368), + [anon_sym_BSLASHAvolcite] = ACTIONS(5368), + [anon_sym_BSLASHnotecite] = ACTIONS(5368), + [anon_sym_BSLASHNotecite] = ACTIONS(5368), + [anon_sym_BSLASHpnotecite] = ACTIONS(5368), + [anon_sym_BSLASHPnotecite] = ACTIONS(5368), + [anon_sym_BSLASHfnotecite] = ACTIONS(5368), + [anon_sym_BSLASHlabel] = ACTIONS(5368), + [anon_sym_BSLASHref] = ACTIONS(5368), + [anon_sym_BSLASHeqref] = ACTIONS(5368), + [anon_sym_BSLASHvref] = ACTIONS(5368), + [anon_sym_BSLASHVref] = ACTIONS(5368), + [anon_sym_BSLASHautoref] = ACTIONS(5368), + [anon_sym_BSLASHpageref] = ACTIONS(5368), + [anon_sym_BSLASHcref] = ACTIONS(5368), + [anon_sym_BSLASHCref] = ACTIONS(5368), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnameCref] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5368), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5368), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5368), + [anon_sym_BSLASHlabelcref] = ACTIONS(5368), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange] = ACTIONS(5368), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHCrefrange] = ACTIONS(5368), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5366), + [anon_sym_BSLASHnewlabel] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand] = ACTIONS(5368), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5368), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5368), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5366), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5368), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdef] = ACTIONS(5368), + [anon_sym_BSLASHlet] = ACTIONS(5368), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5368), + [anon_sym_BSLASHgls] = ACTIONS(5368), + [anon_sym_BSLASHGls] = ACTIONS(5368), + [anon_sym_BSLASHGLS] = ACTIONS(5368), + [anon_sym_BSLASHglspl] = ACTIONS(5368), + [anon_sym_BSLASHGlspl] = ACTIONS(5368), + [anon_sym_BSLASHGLSpl] = ACTIONS(5368), + [anon_sym_BSLASHglsdisp] = ACTIONS(5368), + [anon_sym_BSLASHglslink] = ACTIONS(5368), + [anon_sym_BSLASHglstext] = ACTIONS(5368), + [anon_sym_BSLASHGlstext] = ACTIONS(5368), + [anon_sym_BSLASHGLStext] = ACTIONS(5368), + [anon_sym_BSLASHglsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5368), + [anon_sym_BSLASHglsplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSplural] = ACTIONS(5368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5368), + [anon_sym_BSLASHglsname] = ACTIONS(5368), + [anon_sym_BSLASHGlsname] = ACTIONS(5368), + [anon_sym_BSLASHGLSname] = ACTIONS(5368), + [anon_sym_BSLASHglssymbol] = ACTIONS(5368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5368), + [anon_sym_BSLASHglsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5368), + [anon_sym_BSLASHglsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5368), + [anon_sym_BSLASHglsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5368), + [anon_sym_BSLASHglsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5368), + [anon_sym_BSLASHglsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5368), + [anon_sym_BSLASHnewacronym] = ACTIONS(5368), + [anon_sym_BSLASHacrshort] = ACTIONS(5368), + [anon_sym_BSLASHAcrshort] = ACTIONS(5368), + [anon_sym_BSLASHACRshort] = ACTIONS(5368), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5368), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5368), + [anon_sym_BSLASHacrlong] = ACTIONS(5368), + [anon_sym_BSLASHAcrlong] = ACTIONS(5368), + [anon_sym_BSLASHACRlong] = ACTIONS(5368), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5368), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5368), + [anon_sym_BSLASHacrfull] = ACTIONS(5368), + [anon_sym_BSLASHAcrfull] = ACTIONS(5368), + [anon_sym_BSLASHACRfull] = ACTIONS(5368), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5368), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5368), + [anon_sym_BSLASHacs] = ACTIONS(5368), + [anon_sym_BSLASHAcs] = ACTIONS(5368), + [anon_sym_BSLASHacsp] = ACTIONS(5368), + [anon_sym_BSLASHAcsp] = ACTIONS(5368), + [anon_sym_BSLASHacl] = ACTIONS(5368), + [anon_sym_BSLASHAcl] = ACTIONS(5368), + [anon_sym_BSLASHaclp] = ACTIONS(5368), + [anon_sym_BSLASHAclp] = ACTIONS(5368), + [anon_sym_BSLASHacf] = ACTIONS(5368), + [anon_sym_BSLASHAcf] = ACTIONS(5368), + [anon_sym_BSLASHacfp] = ACTIONS(5368), + [anon_sym_BSLASHAcfp] = ACTIONS(5368), + [anon_sym_BSLASHac] = ACTIONS(5368), + [anon_sym_BSLASHAc] = ACTIONS(5368), + [anon_sym_BSLASHacp] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5368), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5368), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5368), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5368), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5368), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5368), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5368), + [anon_sym_BSLASHcolor] = ACTIONS(5368), + [anon_sym_BSLASHcolorbox] = ACTIONS(5368), + [anon_sym_BSLASHtextcolor] = ACTIONS(5368), + [anon_sym_BSLASHpagecolor] = ACTIONS(5368), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5368), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5368), }, [1533] = { - [sym_command_name] = ACTIONS(4921), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_RBRACE] = ACTIONS(4919), - [sym_word] = ACTIONS(4921), - [sym_placeholder] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_CARET] = ACTIONS(4921), - [anon_sym__] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4921), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), - [anon_sym_BSLASHinclude] = ACTIONS(4921), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), - [anon_sym_BSLASHinput] = ACTIONS(4921), - [anon_sym_BSLASHsubfile] = ACTIONS(4921), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), - [anon_sym_BSLASHbibliography] = ACTIONS(4921), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), - [anon_sym_BSLASHincludesvg] = ACTIONS(4921), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), - [anon_sym_BSLASHimport] = ACTIONS(4921), - [anon_sym_BSLASHsubimport] = ACTIONS(4921), - [anon_sym_BSLASHinputfrom] = ACTIONS(4921), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), - [anon_sym_BSLASHincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), - [anon_sym_BSLASHcaption] = ACTIONS(4921), - [anon_sym_BSLASHcite] = ACTIONS(4921), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCite] = ACTIONS(4921), - [anon_sym_BSLASHnocite] = ACTIONS(4921), - [anon_sym_BSLASHcitet] = ACTIONS(4921), - [anon_sym_BSLASHcitep] = ACTIONS(4921), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteauthor] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitetitle] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteyear] = ACTIONS(4921), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), - [anon_sym_BSLASHcitedate] = ACTIONS(4921), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), - [anon_sym_BSLASHciteurl] = ACTIONS(4921), - [anon_sym_BSLASHfullcite] = ACTIONS(4921), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), - [anon_sym_BSLASHcitealt] = ACTIONS(4921), - [anon_sym_BSLASHcitealp] = ACTIONS(4921), - [anon_sym_BSLASHcitetext] = ACTIONS(4921), - [anon_sym_BSLASHparencite] = ACTIONS(4921), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHParencite] = ACTIONS(4921), - [anon_sym_BSLASHfootcite] = ACTIONS(4921), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), - [anon_sym_BSLASHtextcite] = ACTIONS(4921), - [anon_sym_BSLASHTextcite] = ACTIONS(4921), - [anon_sym_BSLASHsmartcite] = ACTIONS(4921), - [anon_sym_BSLASHSmartcite] = ACTIONS(4921), - [anon_sym_BSLASHsupercite] = ACTIONS(4921), - [anon_sym_BSLASHautocite] = ACTIONS(4921), - [anon_sym_BSLASHAutocite] = ACTIONS(4921), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), - [anon_sym_BSLASHvolcite] = ACTIONS(4921), - [anon_sym_BSLASHVolcite] = ACTIONS(4921), - [anon_sym_BSLASHpvolcite] = ACTIONS(4921), - [anon_sym_BSLASHPvolcite] = ACTIONS(4921), - [anon_sym_BSLASHfvolcite] = ACTIONS(4921), - [anon_sym_BSLASHftvolcite] = ACTIONS(4921), - [anon_sym_BSLASHsvolcite] = ACTIONS(4921), - [anon_sym_BSLASHSvolcite] = ACTIONS(4921), - [anon_sym_BSLASHtvolcite] = ACTIONS(4921), - [anon_sym_BSLASHTvolcite] = ACTIONS(4921), - [anon_sym_BSLASHavolcite] = ACTIONS(4921), - [anon_sym_BSLASHAvolcite] = ACTIONS(4921), - [anon_sym_BSLASHnotecite] = ACTIONS(4921), - [anon_sym_BSLASHNotecite] = ACTIONS(4921), - [anon_sym_BSLASHpnotecite] = ACTIONS(4921), - [anon_sym_BSLASHPnotecite] = ACTIONS(4921), - [anon_sym_BSLASHfnotecite] = ACTIONS(4921), - [anon_sym_BSLASHlabel] = ACTIONS(4921), - [anon_sym_BSLASHref] = ACTIONS(4921), - [anon_sym_BSLASHeqref] = ACTIONS(4921), - [anon_sym_BSLASHvref] = ACTIONS(4921), - [anon_sym_BSLASHVref] = ACTIONS(4921), - [anon_sym_BSLASHautoref] = ACTIONS(4921), - [anon_sym_BSLASHpageref] = ACTIONS(4921), - [anon_sym_BSLASHcref] = ACTIONS(4921), - [anon_sym_BSLASHCref] = ACTIONS(4921), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnameCref] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), - [anon_sym_BSLASHlabelcref] = ACTIONS(4921), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange] = ACTIONS(4921), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHCrefrange] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), - [anon_sym_BSLASHnewlabel] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand] = ACTIONS(4921), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), - [anon_sym_BSLASHdef] = ACTIONS(4921), - [anon_sym_BSLASHlet] = ACTIONS(4921), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), - [anon_sym_BSLASHgls] = ACTIONS(4921), - [anon_sym_BSLASHGls] = ACTIONS(4921), - [anon_sym_BSLASHGLS] = ACTIONS(4921), - [anon_sym_BSLASHglspl] = ACTIONS(4921), - [anon_sym_BSLASHGlspl] = ACTIONS(4921), - [anon_sym_BSLASHGLSpl] = ACTIONS(4921), - [anon_sym_BSLASHglsdisp] = ACTIONS(4921), - [anon_sym_BSLASHglslink] = ACTIONS(4921), - [anon_sym_BSLASHglstext] = ACTIONS(4921), - [anon_sym_BSLASHGlstext] = ACTIONS(4921), - [anon_sym_BSLASHGLStext] = ACTIONS(4921), - [anon_sym_BSLASHglsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), - [anon_sym_BSLASHglsplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSplural] = ACTIONS(4921), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), - [anon_sym_BSLASHglsname] = ACTIONS(4921), - [anon_sym_BSLASHGlsname] = ACTIONS(4921), - [anon_sym_BSLASHGLSname] = ACTIONS(4921), - [anon_sym_BSLASHglssymbol] = ACTIONS(4921), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), - [anon_sym_BSLASHglsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), - [anon_sym_BSLASHglsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), - [anon_sym_BSLASHglsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), - [anon_sym_BSLASHglsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), - [anon_sym_BSLASHglsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), - [anon_sym_BSLASHnewacronym] = ACTIONS(4921), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), - [anon_sym_BSLASHcolor] = ACTIONS(4921), - [anon_sym_BSLASHcolorbox] = ACTIONS(4921), - [anon_sym_BSLASHtextcolor] = ACTIONS(4921), - [anon_sym_BSLASHpagecolor] = ACTIONS(4921), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [sym_command_name] = ACTIONS(5000), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [sym_word] = ACTIONS(5000), + [sym_placeholder] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym__] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5000), + [anon_sym_BSLASHusepackage] = ACTIONS(5000), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5000), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5000), + [anon_sym_BSLASHinclude] = ACTIONS(5000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5000), + [anon_sym_BSLASHinput] = ACTIONS(5000), + [anon_sym_BSLASHsubfile] = ACTIONS(5000), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5000), + [anon_sym_BSLASHbibliography] = ACTIONS(5000), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5000), + [anon_sym_BSLASHincludesvg] = ACTIONS(5000), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5000), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5000), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5000), + [anon_sym_BSLASHimport] = ACTIONS(5000), + [anon_sym_BSLASHsubimport] = ACTIONS(5000), + [anon_sym_BSLASHinputfrom] = ACTIONS(5000), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5000), + [anon_sym_BSLASHincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5000), + [anon_sym_BSLASHcaption] = ACTIONS(5000), + [anon_sym_BSLASHcite] = ACTIONS(5000), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCite] = ACTIONS(5000), + [anon_sym_BSLASHnocite] = ACTIONS(5000), + [anon_sym_BSLASHcitet] = ACTIONS(5000), + [anon_sym_BSLASHcitep] = ACTIONS(5000), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteauthor] = ACTIONS(5000), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5000), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitetitle] = ACTIONS(5000), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteyear] = ACTIONS(5000), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4998), + [anon_sym_BSLASHcitedate] = ACTIONS(5000), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4998), + [anon_sym_BSLASHciteurl] = ACTIONS(5000), + [anon_sym_BSLASHfullcite] = ACTIONS(5000), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5000), + [anon_sym_BSLASHcitealt] = ACTIONS(5000), + [anon_sym_BSLASHcitealp] = ACTIONS(5000), + [anon_sym_BSLASHcitetext] = ACTIONS(5000), + [anon_sym_BSLASHparencite] = ACTIONS(5000), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHParencite] = ACTIONS(5000), + [anon_sym_BSLASHfootcite] = ACTIONS(5000), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5000), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5000), + [anon_sym_BSLASHtextcite] = ACTIONS(5000), + [anon_sym_BSLASHTextcite] = ACTIONS(5000), + [anon_sym_BSLASHsmartcite] = ACTIONS(5000), + [anon_sym_BSLASHSmartcite] = ACTIONS(5000), + [anon_sym_BSLASHsupercite] = ACTIONS(5000), + [anon_sym_BSLASHautocite] = ACTIONS(5000), + [anon_sym_BSLASHAutocite] = ACTIONS(5000), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4998), + [anon_sym_BSLASHvolcite] = ACTIONS(5000), + [anon_sym_BSLASHVolcite] = ACTIONS(5000), + [anon_sym_BSLASHpvolcite] = ACTIONS(5000), + [anon_sym_BSLASHPvolcite] = ACTIONS(5000), + [anon_sym_BSLASHfvolcite] = ACTIONS(5000), + [anon_sym_BSLASHftvolcite] = ACTIONS(5000), + [anon_sym_BSLASHsvolcite] = ACTIONS(5000), + [anon_sym_BSLASHSvolcite] = ACTIONS(5000), + [anon_sym_BSLASHtvolcite] = ACTIONS(5000), + [anon_sym_BSLASHTvolcite] = ACTIONS(5000), + [anon_sym_BSLASHavolcite] = ACTIONS(5000), + [anon_sym_BSLASHAvolcite] = ACTIONS(5000), + [anon_sym_BSLASHnotecite] = ACTIONS(5000), + [anon_sym_BSLASHNotecite] = ACTIONS(5000), + [anon_sym_BSLASHpnotecite] = ACTIONS(5000), + [anon_sym_BSLASHPnotecite] = ACTIONS(5000), + [anon_sym_BSLASHfnotecite] = ACTIONS(5000), + [anon_sym_BSLASHlabel] = ACTIONS(5000), + [anon_sym_BSLASHref] = ACTIONS(5000), + [anon_sym_BSLASHeqref] = ACTIONS(5000), + [anon_sym_BSLASHvref] = ACTIONS(5000), + [anon_sym_BSLASHVref] = ACTIONS(5000), + [anon_sym_BSLASHautoref] = ACTIONS(5000), + [anon_sym_BSLASHpageref] = ACTIONS(5000), + [anon_sym_BSLASHcref] = ACTIONS(5000), + [anon_sym_BSLASHCref] = ACTIONS(5000), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnameCref] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5000), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5000), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5000), + [anon_sym_BSLASHlabelcref] = ACTIONS(5000), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange] = ACTIONS(5000), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHCrefrange] = ACTIONS(5000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4998), + [anon_sym_BSLASHnewlabel] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand] = ACTIONS(5000), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5000), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5000), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5000), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdef] = ACTIONS(5000), + [anon_sym_BSLASHlet] = ACTIONS(5000), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5000), + [anon_sym_BSLASHgls] = ACTIONS(5000), + [anon_sym_BSLASHGls] = ACTIONS(5000), + [anon_sym_BSLASHGLS] = ACTIONS(5000), + [anon_sym_BSLASHglspl] = ACTIONS(5000), + [anon_sym_BSLASHGlspl] = ACTIONS(5000), + [anon_sym_BSLASHGLSpl] = ACTIONS(5000), + [anon_sym_BSLASHglsdisp] = ACTIONS(5000), + [anon_sym_BSLASHglslink] = ACTIONS(5000), + [anon_sym_BSLASHglstext] = ACTIONS(5000), + [anon_sym_BSLASHGlstext] = ACTIONS(5000), + [anon_sym_BSLASHGLStext] = ACTIONS(5000), + [anon_sym_BSLASHglsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5000), + [anon_sym_BSLASHglsplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSplural] = ACTIONS(5000), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5000), + [anon_sym_BSLASHglsname] = ACTIONS(5000), + [anon_sym_BSLASHGlsname] = ACTIONS(5000), + [anon_sym_BSLASHGLSname] = ACTIONS(5000), + [anon_sym_BSLASHglssymbol] = ACTIONS(5000), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5000), + [anon_sym_BSLASHglsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5000), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5000), + [anon_sym_BSLASHglsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5000), + [anon_sym_BSLASHglsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5000), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5000), + [anon_sym_BSLASHglsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5000), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5000), + [anon_sym_BSLASHglsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5000), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5000), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5000), + [anon_sym_BSLASHAcrshort] = ACTIONS(5000), + [anon_sym_BSLASHACRshort] = ACTIONS(5000), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5000), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5000), + [anon_sym_BSLASHacrlong] = ACTIONS(5000), + [anon_sym_BSLASHAcrlong] = ACTIONS(5000), + [anon_sym_BSLASHACRlong] = ACTIONS(5000), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5000), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5000), + [anon_sym_BSLASHacrfull] = ACTIONS(5000), + [anon_sym_BSLASHAcrfull] = ACTIONS(5000), + [anon_sym_BSLASHACRfull] = ACTIONS(5000), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5000), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5000), + [anon_sym_BSLASHacs] = ACTIONS(5000), + [anon_sym_BSLASHAcs] = ACTIONS(5000), + [anon_sym_BSLASHacsp] = ACTIONS(5000), + [anon_sym_BSLASHAcsp] = ACTIONS(5000), + [anon_sym_BSLASHacl] = ACTIONS(5000), + [anon_sym_BSLASHAcl] = ACTIONS(5000), + [anon_sym_BSLASHaclp] = ACTIONS(5000), + [anon_sym_BSLASHAclp] = ACTIONS(5000), + [anon_sym_BSLASHacf] = ACTIONS(5000), + [anon_sym_BSLASHAcf] = ACTIONS(5000), + [anon_sym_BSLASHacfp] = ACTIONS(5000), + [anon_sym_BSLASHAcfp] = ACTIONS(5000), + [anon_sym_BSLASHac] = ACTIONS(5000), + [anon_sym_BSLASHAc] = ACTIONS(5000), + [anon_sym_BSLASHacp] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5000), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5000), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5000), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5000), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5000), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5000), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5000), + [anon_sym_BSLASHcolor] = ACTIONS(5000), + [anon_sym_BSLASHcolorbox] = ACTIONS(5000), + [anon_sym_BSLASHtextcolor] = ACTIONS(5000), + [anon_sym_BSLASHpagecolor] = ACTIONS(5000), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5000), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5000), }, [1534] = { - [sym_command_name] = ACTIONS(5153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [sym_word] = ACTIONS(5153), - [sym_placeholder] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym__] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), - [anon_sym_BSLASHinclude] = ACTIONS(5153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), - [anon_sym_BSLASHinput] = ACTIONS(5153), - [anon_sym_BSLASHsubfile] = ACTIONS(5153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), - [anon_sym_BSLASHbibliography] = ACTIONS(5153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), - [anon_sym_BSLASHincludesvg] = ACTIONS(5153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), - [anon_sym_BSLASHimport] = ACTIONS(5153), - [anon_sym_BSLASHsubimport] = ACTIONS(5153), - [anon_sym_BSLASHinputfrom] = ACTIONS(5153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), - [anon_sym_BSLASHincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), - [anon_sym_BSLASHcaption] = ACTIONS(5153), - [anon_sym_BSLASHcite] = ACTIONS(5153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCite] = ACTIONS(5153), - [anon_sym_BSLASHnocite] = ACTIONS(5153), - [anon_sym_BSLASHcitet] = ACTIONS(5153), - [anon_sym_BSLASHcitep] = ACTIONS(5153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteyear] = ACTIONS(5153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), - [anon_sym_BSLASHcitedate] = ACTIONS(5153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), - [anon_sym_BSLASHciteurl] = ACTIONS(5153), - [anon_sym_BSLASHfullcite] = ACTIONS(5153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), - [anon_sym_BSLASHcitealt] = ACTIONS(5153), - [anon_sym_BSLASHcitealp] = ACTIONS(5153), - [anon_sym_BSLASHcitetext] = ACTIONS(5153), - [anon_sym_BSLASHparencite] = ACTIONS(5153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHParencite] = ACTIONS(5153), - [anon_sym_BSLASHfootcite] = ACTIONS(5153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), - [anon_sym_BSLASHtextcite] = ACTIONS(5153), - [anon_sym_BSLASHTextcite] = ACTIONS(5153), - [anon_sym_BSLASHsmartcite] = ACTIONS(5153), - [anon_sym_BSLASHSmartcite] = ACTIONS(5153), - [anon_sym_BSLASHsupercite] = ACTIONS(5153), - [anon_sym_BSLASHautocite] = ACTIONS(5153), - [anon_sym_BSLASHAutocite] = ACTIONS(5153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), - [anon_sym_BSLASHvolcite] = ACTIONS(5153), - [anon_sym_BSLASHVolcite] = ACTIONS(5153), - [anon_sym_BSLASHpvolcite] = ACTIONS(5153), - [anon_sym_BSLASHPvolcite] = ACTIONS(5153), - [anon_sym_BSLASHfvolcite] = ACTIONS(5153), - [anon_sym_BSLASHftvolcite] = ACTIONS(5153), - [anon_sym_BSLASHsvolcite] = ACTIONS(5153), - [anon_sym_BSLASHSvolcite] = ACTIONS(5153), - [anon_sym_BSLASHtvolcite] = ACTIONS(5153), - [anon_sym_BSLASHTvolcite] = ACTIONS(5153), - [anon_sym_BSLASHavolcite] = ACTIONS(5153), - [anon_sym_BSLASHAvolcite] = ACTIONS(5153), - [anon_sym_BSLASHnotecite] = ACTIONS(5153), - [anon_sym_BSLASHNotecite] = ACTIONS(5153), - [anon_sym_BSLASHpnotecite] = ACTIONS(5153), - [anon_sym_BSLASHPnotecite] = ACTIONS(5153), - [anon_sym_BSLASHfnotecite] = ACTIONS(5153), - [anon_sym_BSLASHlabel] = ACTIONS(5153), - [anon_sym_BSLASHref] = ACTIONS(5153), - [anon_sym_BSLASHeqref] = ACTIONS(5153), - [anon_sym_BSLASHvref] = ACTIONS(5153), - [anon_sym_BSLASHVref] = ACTIONS(5153), - [anon_sym_BSLASHautoref] = ACTIONS(5153), - [anon_sym_BSLASHpageref] = ACTIONS(5153), - [anon_sym_BSLASHcref] = ACTIONS(5153), - [anon_sym_BSLASHCref] = ACTIONS(5153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnameCref] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), - [anon_sym_BSLASHlabelcref] = ACTIONS(5153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange] = ACTIONS(5153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), - [anon_sym_BSLASHnewlabel] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand] = ACTIONS(5153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), - [anon_sym_BSLASHdef] = ACTIONS(5153), - [anon_sym_BSLASHlet] = ACTIONS(5153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), - [anon_sym_BSLASHgls] = ACTIONS(5153), - [anon_sym_BSLASHGls] = ACTIONS(5153), - [anon_sym_BSLASHGLS] = ACTIONS(5153), - [anon_sym_BSLASHglspl] = ACTIONS(5153), - [anon_sym_BSLASHGlspl] = ACTIONS(5153), - [anon_sym_BSLASHGLSpl] = ACTIONS(5153), - [anon_sym_BSLASHglsdisp] = ACTIONS(5153), - [anon_sym_BSLASHglslink] = ACTIONS(5153), - [anon_sym_BSLASHglstext] = ACTIONS(5153), - [anon_sym_BSLASHGlstext] = ACTIONS(5153), - [anon_sym_BSLASHGLStext] = ACTIONS(5153), - [anon_sym_BSLASHglsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), - [anon_sym_BSLASHglsplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSplural] = ACTIONS(5153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), - [anon_sym_BSLASHglsname] = ACTIONS(5153), - [anon_sym_BSLASHGlsname] = ACTIONS(5153), - [anon_sym_BSLASHGLSname] = ACTIONS(5153), - [anon_sym_BSLASHglssymbol] = ACTIONS(5153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), - [anon_sym_BSLASHglsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), - [anon_sym_BSLASHglsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), - [anon_sym_BSLASHglsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), - [anon_sym_BSLASHglsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), - [anon_sym_BSLASHglsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), - [anon_sym_BSLASHnewacronym] = ACTIONS(5153), - [anon_sym_BSLASHacrshort] = ACTIONS(5153), - [anon_sym_BSLASHAcrshort] = ACTIONS(5153), - [anon_sym_BSLASHACRshort] = ACTIONS(5153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), - [anon_sym_BSLASHacrlong] = ACTIONS(5153), - [anon_sym_BSLASHAcrlong] = ACTIONS(5153), - [anon_sym_BSLASHACRlong] = ACTIONS(5153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), - [anon_sym_BSLASHacrfull] = ACTIONS(5153), - [anon_sym_BSLASHAcrfull] = ACTIONS(5153), - [anon_sym_BSLASHACRfull] = ACTIONS(5153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), - [anon_sym_BSLASHacs] = ACTIONS(5153), - [anon_sym_BSLASHAcs] = ACTIONS(5153), - [anon_sym_BSLASHacsp] = ACTIONS(5153), - [anon_sym_BSLASHAcsp] = ACTIONS(5153), - [anon_sym_BSLASHacl] = ACTIONS(5153), - [anon_sym_BSLASHAcl] = ACTIONS(5153), - [anon_sym_BSLASHaclp] = ACTIONS(5153), - [anon_sym_BSLASHAclp] = ACTIONS(5153), - [anon_sym_BSLASHacf] = ACTIONS(5153), - [anon_sym_BSLASHAcf] = ACTIONS(5153), - [anon_sym_BSLASHacfp] = ACTIONS(5153), - [anon_sym_BSLASHAcfp] = ACTIONS(5153), - [anon_sym_BSLASHac] = ACTIONS(5153), - [anon_sym_BSLASHAc] = ACTIONS(5153), - [anon_sym_BSLASHacp] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), - [anon_sym_BSLASHcolor] = ACTIONS(5153), - [anon_sym_BSLASHcolorbox] = ACTIONS(5153), - [anon_sym_BSLASHtextcolor] = ACTIONS(5153), - [anon_sym_BSLASHpagecolor] = ACTIONS(5153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [sym_command_name] = ACTIONS(5232), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5232), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [sym_word] = ACTIONS(5232), + [sym_placeholder] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym__] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_BANG] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_SQUOTE] = ACTIONS(5232), + [anon_sym_BSLASHusepackage] = ACTIONS(5232), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5232), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5232), + [anon_sym_BSLASHinclude] = ACTIONS(5232), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5232), + [anon_sym_BSLASHinput] = ACTIONS(5232), + [anon_sym_BSLASHsubfile] = ACTIONS(5232), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5232), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5232), + [anon_sym_BSLASHincludesvg] = ACTIONS(5232), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5232), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5232), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5232), + [anon_sym_BSLASHimport] = ACTIONS(5232), + [anon_sym_BSLASHsubimport] = ACTIONS(5232), + [anon_sym_BSLASHinputfrom] = ACTIONS(5232), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5232), + [anon_sym_BSLASHincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5232), + [anon_sym_BSLASHcaption] = ACTIONS(5232), + [anon_sym_BSLASHcite] = ACTIONS(5232), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCite] = ACTIONS(5232), + [anon_sym_BSLASHnocite] = ACTIONS(5232), + [anon_sym_BSLASHcitet] = ACTIONS(5232), + [anon_sym_BSLASHcitep] = ACTIONS(5232), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteauthor] = ACTIONS(5232), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5232), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitetitle] = ACTIONS(5232), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteyear] = ACTIONS(5232), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5230), + [anon_sym_BSLASHcitedate] = ACTIONS(5232), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5230), + [anon_sym_BSLASHciteurl] = ACTIONS(5232), + [anon_sym_BSLASHfullcite] = ACTIONS(5232), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5232), + [anon_sym_BSLASHcitealt] = ACTIONS(5232), + [anon_sym_BSLASHcitealp] = ACTIONS(5232), + [anon_sym_BSLASHcitetext] = ACTIONS(5232), + [anon_sym_BSLASHparencite] = ACTIONS(5232), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHParencite] = ACTIONS(5232), + [anon_sym_BSLASHfootcite] = ACTIONS(5232), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5232), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5232), + [anon_sym_BSLASHtextcite] = ACTIONS(5232), + [anon_sym_BSLASHTextcite] = ACTIONS(5232), + [anon_sym_BSLASHsmartcite] = ACTIONS(5232), + [anon_sym_BSLASHSmartcite] = ACTIONS(5232), + [anon_sym_BSLASHsupercite] = ACTIONS(5232), + [anon_sym_BSLASHautocite] = ACTIONS(5232), + [anon_sym_BSLASHAutocite] = ACTIONS(5232), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5230), + [anon_sym_BSLASHvolcite] = ACTIONS(5232), + [anon_sym_BSLASHVolcite] = ACTIONS(5232), + [anon_sym_BSLASHpvolcite] = ACTIONS(5232), + [anon_sym_BSLASHPvolcite] = ACTIONS(5232), + [anon_sym_BSLASHfvolcite] = ACTIONS(5232), + [anon_sym_BSLASHftvolcite] = ACTIONS(5232), + [anon_sym_BSLASHsvolcite] = ACTIONS(5232), + [anon_sym_BSLASHSvolcite] = ACTIONS(5232), + [anon_sym_BSLASHtvolcite] = ACTIONS(5232), + [anon_sym_BSLASHTvolcite] = ACTIONS(5232), + [anon_sym_BSLASHavolcite] = ACTIONS(5232), + [anon_sym_BSLASHAvolcite] = ACTIONS(5232), + [anon_sym_BSLASHnotecite] = ACTIONS(5232), + [anon_sym_BSLASHNotecite] = ACTIONS(5232), + [anon_sym_BSLASHpnotecite] = ACTIONS(5232), + [anon_sym_BSLASHPnotecite] = ACTIONS(5232), + [anon_sym_BSLASHfnotecite] = ACTIONS(5232), + [anon_sym_BSLASHlabel] = ACTIONS(5232), + [anon_sym_BSLASHref] = ACTIONS(5232), + [anon_sym_BSLASHeqref] = ACTIONS(5232), + [anon_sym_BSLASHvref] = ACTIONS(5232), + [anon_sym_BSLASHVref] = ACTIONS(5232), + [anon_sym_BSLASHautoref] = ACTIONS(5232), + [anon_sym_BSLASHpageref] = ACTIONS(5232), + [anon_sym_BSLASHcref] = ACTIONS(5232), + [anon_sym_BSLASHCref] = ACTIONS(5232), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnameCref] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5232), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5232), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5232), + [anon_sym_BSLASHlabelcref] = ACTIONS(5232), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange] = ACTIONS(5232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHCrefrange] = ACTIONS(5232), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5230), + [anon_sym_BSLASHnewlabel] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand] = ACTIONS(5232), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5232), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5232), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5230), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5232), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdef] = ACTIONS(5232), + [anon_sym_BSLASHlet] = ACTIONS(5232), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5232), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5232), + [anon_sym_BSLASHgls] = ACTIONS(5232), + [anon_sym_BSLASHGls] = ACTIONS(5232), + [anon_sym_BSLASHGLS] = ACTIONS(5232), + [anon_sym_BSLASHglspl] = ACTIONS(5232), + [anon_sym_BSLASHGlspl] = ACTIONS(5232), + [anon_sym_BSLASHGLSpl] = ACTIONS(5232), + [anon_sym_BSLASHglsdisp] = ACTIONS(5232), + [anon_sym_BSLASHglslink] = ACTIONS(5232), + [anon_sym_BSLASHglstext] = ACTIONS(5232), + [anon_sym_BSLASHGlstext] = ACTIONS(5232), + [anon_sym_BSLASHGLStext] = ACTIONS(5232), + [anon_sym_BSLASHglsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5232), + [anon_sym_BSLASHglsplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSplural] = ACTIONS(5232), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5232), + [anon_sym_BSLASHglsname] = ACTIONS(5232), + [anon_sym_BSLASHGlsname] = ACTIONS(5232), + [anon_sym_BSLASHGLSname] = ACTIONS(5232), + [anon_sym_BSLASHglssymbol] = ACTIONS(5232), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5232), + [anon_sym_BSLASHglsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5232), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5232), + [anon_sym_BSLASHglsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5232), + [anon_sym_BSLASHglsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5232), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5232), + [anon_sym_BSLASHglsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5232), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5232), + [anon_sym_BSLASHglsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5232), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5232), + [anon_sym_BSLASHnewacronym] = ACTIONS(5232), + [anon_sym_BSLASHacrshort] = ACTIONS(5232), + [anon_sym_BSLASHAcrshort] = ACTIONS(5232), + [anon_sym_BSLASHACRshort] = ACTIONS(5232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5232), + [anon_sym_BSLASHacrlong] = ACTIONS(5232), + [anon_sym_BSLASHAcrlong] = ACTIONS(5232), + [anon_sym_BSLASHACRlong] = ACTIONS(5232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5232), + [anon_sym_BSLASHacrfull] = ACTIONS(5232), + [anon_sym_BSLASHAcrfull] = ACTIONS(5232), + [anon_sym_BSLASHACRfull] = ACTIONS(5232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5232), + [anon_sym_BSLASHacs] = ACTIONS(5232), + [anon_sym_BSLASHAcs] = ACTIONS(5232), + [anon_sym_BSLASHacsp] = ACTIONS(5232), + [anon_sym_BSLASHAcsp] = ACTIONS(5232), + [anon_sym_BSLASHacl] = ACTIONS(5232), + [anon_sym_BSLASHAcl] = ACTIONS(5232), + [anon_sym_BSLASHaclp] = ACTIONS(5232), + [anon_sym_BSLASHAclp] = ACTIONS(5232), + [anon_sym_BSLASHacf] = ACTIONS(5232), + [anon_sym_BSLASHAcf] = ACTIONS(5232), + [anon_sym_BSLASHacfp] = ACTIONS(5232), + [anon_sym_BSLASHAcfp] = ACTIONS(5232), + [anon_sym_BSLASHac] = ACTIONS(5232), + [anon_sym_BSLASHAc] = ACTIONS(5232), + [anon_sym_BSLASHacp] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5232), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5232), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5232), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5232), + [anon_sym_BSLASHcolor] = ACTIONS(5232), + [anon_sym_BSLASHcolorbox] = ACTIONS(5232), + [anon_sym_BSLASHtextcolor] = ACTIONS(5232), + [anon_sym_BSLASHpagecolor] = ACTIONS(5232), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5232), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5232), }, [1535] = { - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4983), - [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), + [sym_command_name] = ACTIONS(5062), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5062), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [sym_word] = ACTIONS(5062), + [sym_placeholder] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym__] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5062), + [anon_sym_BSLASHusepackage] = ACTIONS(5062), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5062), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5062), + [anon_sym_BSLASHinclude] = ACTIONS(5062), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5062), + [anon_sym_BSLASHinput] = ACTIONS(5062), + [anon_sym_BSLASHsubfile] = ACTIONS(5062), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5062), + [anon_sym_BSLASHbibliography] = ACTIONS(5062), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5062), + [anon_sym_BSLASHincludesvg] = ACTIONS(5062), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5062), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5062), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5062), + [anon_sym_BSLASHimport] = ACTIONS(5062), + [anon_sym_BSLASHsubimport] = ACTIONS(5062), + [anon_sym_BSLASHinputfrom] = ACTIONS(5062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5062), + [anon_sym_BSLASHincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5062), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5062), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCite] = ACTIONS(5062), + [anon_sym_BSLASHnocite] = ACTIONS(5062), + [anon_sym_BSLASHcitet] = ACTIONS(5062), + [anon_sym_BSLASHcitep] = ACTIONS(5062), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteauthor] = ACTIONS(5062), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5062), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitetitle] = ACTIONS(5062), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteyear] = ACTIONS(5062), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5060), + [anon_sym_BSLASHcitedate] = ACTIONS(5062), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5060), + [anon_sym_BSLASHciteurl] = ACTIONS(5062), + [anon_sym_BSLASHfullcite] = ACTIONS(5062), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5062), + [anon_sym_BSLASHcitealt] = ACTIONS(5062), + [anon_sym_BSLASHcitealp] = ACTIONS(5062), + [anon_sym_BSLASHcitetext] = ACTIONS(5062), + [anon_sym_BSLASHparencite] = ACTIONS(5062), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHParencite] = ACTIONS(5062), + [anon_sym_BSLASHfootcite] = ACTIONS(5062), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5062), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5062), + [anon_sym_BSLASHtextcite] = ACTIONS(5062), + [anon_sym_BSLASHTextcite] = ACTIONS(5062), + [anon_sym_BSLASHsmartcite] = ACTIONS(5062), + [anon_sym_BSLASHSmartcite] = ACTIONS(5062), + [anon_sym_BSLASHsupercite] = ACTIONS(5062), + [anon_sym_BSLASHautocite] = ACTIONS(5062), + [anon_sym_BSLASHAutocite] = ACTIONS(5062), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5060), + [anon_sym_BSLASHvolcite] = ACTIONS(5062), + [anon_sym_BSLASHVolcite] = ACTIONS(5062), + [anon_sym_BSLASHpvolcite] = ACTIONS(5062), + [anon_sym_BSLASHPvolcite] = ACTIONS(5062), + [anon_sym_BSLASHfvolcite] = ACTIONS(5062), + [anon_sym_BSLASHftvolcite] = ACTIONS(5062), + [anon_sym_BSLASHsvolcite] = ACTIONS(5062), + [anon_sym_BSLASHSvolcite] = ACTIONS(5062), + [anon_sym_BSLASHtvolcite] = ACTIONS(5062), + [anon_sym_BSLASHTvolcite] = ACTIONS(5062), + [anon_sym_BSLASHavolcite] = ACTIONS(5062), + [anon_sym_BSLASHAvolcite] = ACTIONS(5062), + [anon_sym_BSLASHnotecite] = ACTIONS(5062), + [anon_sym_BSLASHNotecite] = ACTIONS(5062), + [anon_sym_BSLASHpnotecite] = ACTIONS(5062), + [anon_sym_BSLASHPnotecite] = ACTIONS(5062), + [anon_sym_BSLASHfnotecite] = ACTIONS(5062), + [anon_sym_BSLASHlabel] = ACTIONS(5062), + [anon_sym_BSLASHref] = ACTIONS(5062), + [anon_sym_BSLASHeqref] = ACTIONS(5062), + [anon_sym_BSLASHvref] = ACTIONS(5062), + [anon_sym_BSLASHVref] = ACTIONS(5062), + [anon_sym_BSLASHautoref] = ACTIONS(5062), + [anon_sym_BSLASHpageref] = ACTIONS(5062), + [anon_sym_BSLASHcref] = ACTIONS(5062), + [anon_sym_BSLASHCref] = ACTIONS(5062), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnameCref] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5062), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5062), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5062), + [anon_sym_BSLASHlabelcref] = ACTIONS(5062), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange] = ACTIONS(5062), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHCrefrange] = ACTIONS(5062), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5060), + [anon_sym_BSLASHnewlabel] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand] = ACTIONS(5062), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5062), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5062), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5060), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5062), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdef] = ACTIONS(5062), + [anon_sym_BSLASHlet] = ACTIONS(5062), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5062), + [anon_sym_BSLASHgls] = ACTIONS(5062), + [anon_sym_BSLASHGls] = ACTIONS(5062), + [anon_sym_BSLASHGLS] = ACTIONS(5062), + [anon_sym_BSLASHglspl] = ACTIONS(5062), + [anon_sym_BSLASHGlspl] = ACTIONS(5062), + [anon_sym_BSLASHGLSpl] = ACTIONS(5062), + [anon_sym_BSLASHglsdisp] = ACTIONS(5062), + [anon_sym_BSLASHglslink] = ACTIONS(5062), + [anon_sym_BSLASHglstext] = ACTIONS(5062), + [anon_sym_BSLASHGlstext] = ACTIONS(5062), + [anon_sym_BSLASHGLStext] = ACTIONS(5062), + [anon_sym_BSLASHglsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5062), + [anon_sym_BSLASHglsplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSplural] = ACTIONS(5062), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5062), + [anon_sym_BSLASHglsname] = ACTIONS(5062), + [anon_sym_BSLASHGlsname] = ACTIONS(5062), + [anon_sym_BSLASHGLSname] = ACTIONS(5062), + [anon_sym_BSLASHglssymbol] = ACTIONS(5062), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5062), + [anon_sym_BSLASHglsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5062), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5062), + [anon_sym_BSLASHglsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5062), + [anon_sym_BSLASHglsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5062), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5062), + [anon_sym_BSLASHglsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5062), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5062), + [anon_sym_BSLASHglsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5062), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5062), + [anon_sym_BSLASHnewacronym] = ACTIONS(5062), + [anon_sym_BSLASHacrshort] = ACTIONS(5062), + [anon_sym_BSLASHAcrshort] = ACTIONS(5062), + [anon_sym_BSLASHACRshort] = ACTIONS(5062), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5062), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5062), + [anon_sym_BSLASHacrlong] = ACTIONS(5062), + [anon_sym_BSLASHAcrlong] = ACTIONS(5062), + [anon_sym_BSLASHACRlong] = ACTIONS(5062), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5062), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5062), + [anon_sym_BSLASHacrfull] = ACTIONS(5062), + [anon_sym_BSLASHAcrfull] = ACTIONS(5062), + [anon_sym_BSLASHACRfull] = ACTIONS(5062), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5062), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5062), + [anon_sym_BSLASHacs] = ACTIONS(5062), + [anon_sym_BSLASHAcs] = ACTIONS(5062), + [anon_sym_BSLASHacsp] = ACTIONS(5062), + [anon_sym_BSLASHAcsp] = ACTIONS(5062), + [anon_sym_BSLASHacl] = ACTIONS(5062), + [anon_sym_BSLASHAcl] = ACTIONS(5062), + [anon_sym_BSLASHaclp] = ACTIONS(5062), + [anon_sym_BSLASHAclp] = ACTIONS(5062), + [anon_sym_BSLASHacf] = ACTIONS(5062), + [anon_sym_BSLASHAcf] = ACTIONS(5062), + [anon_sym_BSLASHacfp] = ACTIONS(5062), + [anon_sym_BSLASHAcfp] = ACTIONS(5062), + [anon_sym_BSLASHac] = ACTIONS(5062), + [anon_sym_BSLASHAc] = ACTIONS(5062), + [anon_sym_BSLASHacp] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5062), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5062), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5062), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5062), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5062), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5060), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5062), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5062), + [anon_sym_BSLASHcolor] = ACTIONS(5062), + [anon_sym_BSLASHcolorbox] = ACTIONS(5062), + [anon_sym_BSLASHtextcolor] = ACTIONS(5062), + [anon_sym_BSLASHpagecolor] = ACTIONS(5062), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5062), }, [1536] = { - [sym_command_name] = ACTIONS(4987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4987), - [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), + [sym_command_name] = ACTIONS(5066), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5066), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [sym_word] = ACTIONS(5066), + [sym_placeholder] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym__] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5066), + [anon_sym_BSLASHusepackage] = ACTIONS(5066), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5066), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5066), + [anon_sym_BSLASHinclude] = ACTIONS(5066), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5066), + [anon_sym_BSLASHinput] = ACTIONS(5066), + [anon_sym_BSLASHsubfile] = ACTIONS(5066), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5066), + [anon_sym_BSLASHbibliography] = ACTIONS(5066), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5066), + [anon_sym_BSLASHincludesvg] = ACTIONS(5066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5066), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5066), + [anon_sym_BSLASHimport] = ACTIONS(5066), + [anon_sym_BSLASHsubimport] = ACTIONS(5066), + [anon_sym_BSLASHinputfrom] = ACTIONS(5066), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5066), + [anon_sym_BSLASHincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5066), + [anon_sym_BSLASHcaption] = ACTIONS(5066), + [anon_sym_BSLASHcite] = ACTIONS(5066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCite] = ACTIONS(5066), + [anon_sym_BSLASHnocite] = ACTIONS(5066), + [anon_sym_BSLASHcitet] = ACTIONS(5066), + [anon_sym_BSLASHcitep] = ACTIONS(5066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteauthor] = ACTIONS(5066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitetitle] = ACTIONS(5066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteyear] = ACTIONS(5066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5064), + [anon_sym_BSLASHcitedate] = ACTIONS(5066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5064), + [anon_sym_BSLASHciteurl] = ACTIONS(5066), + [anon_sym_BSLASHfullcite] = ACTIONS(5066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5066), + [anon_sym_BSLASHcitealt] = ACTIONS(5066), + [anon_sym_BSLASHcitealp] = ACTIONS(5066), + [anon_sym_BSLASHcitetext] = ACTIONS(5066), + [anon_sym_BSLASHparencite] = ACTIONS(5066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHParencite] = ACTIONS(5066), + [anon_sym_BSLASHfootcite] = ACTIONS(5066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5066), + [anon_sym_BSLASHtextcite] = ACTIONS(5066), + [anon_sym_BSLASHTextcite] = ACTIONS(5066), + [anon_sym_BSLASHsmartcite] = ACTIONS(5066), + [anon_sym_BSLASHSmartcite] = ACTIONS(5066), + [anon_sym_BSLASHsupercite] = ACTIONS(5066), + [anon_sym_BSLASHautocite] = ACTIONS(5066), + [anon_sym_BSLASHAutocite] = ACTIONS(5066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5064), + [anon_sym_BSLASHvolcite] = ACTIONS(5066), + [anon_sym_BSLASHVolcite] = ACTIONS(5066), + [anon_sym_BSLASHpvolcite] = ACTIONS(5066), + [anon_sym_BSLASHPvolcite] = ACTIONS(5066), + [anon_sym_BSLASHfvolcite] = ACTIONS(5066), + [anon_sym_BSLASHftvolcite] = ACTIONS(5066), + [anon_sym_BSLASHsvolcite] = ACTIONS(5066), + [anon_sym_BSLASHSvolcite] = ACTIONS(5066), + [anon_sym_BSLASHtvolcite] = ACTIONS(5066), + [anon_sym_BSLASHTvolcite] = ACTIONS(5066), + [anon_sym_BSLASHavolcite] = ACTIONS(5066), + [anon_sym_BSLASHAvolcite] = ACTIONS(5066), + [anon_sym_BSLASHnotecite] = ACTIONS(5066), + [anon_sym_BSLASHNotecite] = ACTIONS(5066), + [anon_sym_BSLASHpnotecite] = ACTIONS(5066), + [anon_sym_BSLASHPnotecite] = ACTIONS(5066), + [anon_sym_BSLASHfnotecite] = ACTIONS(5066), + [anon_sym_BSLASHlabel] = ACTIONS(5066), + [anon_sym_BSLASHref] = ACTIONS(5066), + [anon_sym_BSLASHeqref] = ACTIONS(5066), + [anon_sym_BSLASHvref] = ACTIONS(5066), + [anon_sym_BSLASHVref] = ACTIONS(5066), + [anon_sym_BSLASHautoref] = ACTIONS(5066), + [anon_sym_BSLASHpageref] = ACTIONS(5066), + [anon_sym_BSLASHcref] = ACTIONS(5066), + [anon_sym_BSLASHCref] = ACTIONS(5066), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnameCref] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5066), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5066), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5066), + [anon_sym_BSLASHlabelcref] = ACTIONS(5066), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5064), + [anon_sym_BSLASHnewlabel] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand] = ACTIONS(5066), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5066), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5066), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5064), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5066), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdef] = ACTIONS(5066), + [anon_sym_BSLASHlet] = ACTIONS(5066), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5066), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5066), + [anon_sym_BSLASHgls] = ACTIONS(5066), + [anon_sym_BSLASHGls] = ACTIONS(5066), + [anon_sym_BSLASHGLS] = ACTIONS(5066), + [anon_sym_BSLASHglspl] = ACTIONS(5066), + [anon_sym_BSLASHGlspl] = ACTIONS(5066), + [anon_sym_BSLASHGLSpl] = ACTIONS(5066), + [anon_sym_BSLASHglsdisp] = ACTIONS(5066), + [anon_sym_BSLASHglslink] = ACTIONS(5066), + [anon_sym_BSLASHglstext] = ACTIONS(5066), + [anon_sym_BSLASHGlstext] = ACTIONS(5066), + [anon_sym_BSLASHGLStext] = ACTIONS(5066), + [anon_sym_BSLASHglsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5066), + [anon_sym_BSLASHglsplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSplural] = ACTIONS(5066), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5066), + [anon_sym_BSLASHglsname] = ACTIONS(5066), + [anon_sym_BSLASHGlsname] = ACTIONS(5066), + [anon_sym_BSLASHGLSname] = ACTIONS(5066), + [anon_sym_BSLASHglssymbol] = ACTIONS(5066), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5066), + [anon_sym_BSLASHglsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5066), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5066), + [anon_sym_BSLASHglsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5066), + [anon_sym_BSLASHglsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5066), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5066), + [anon_sym_BSLASHglsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5066), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5066), + [anon_sym_BSLASHglsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5066), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5066), + [anon_sym_BSLASHnewacronym] = ACTIONS(5066), + [anon_sym_BSLASHacrshort] = ACTIONS(5066), + [anon_sym_BSLASHAcrshort] = ACTIONS(5066), + [anon_sym_BSLASHACRshort] = ACTIONS(5066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5066), + [anon_sym_BSLASHacrlong] = ACTIONS(5066), + [anon_sym_BSLASHAcrlong] = ACTIONS(5066), + [anon_sym_BSLASHACRlong] = ACTIONS(5066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5066), + [anon_sym_BSLASHacrfull] = ACTIONS(5066), + [anon_sym_BSLASHAcrfull] = ACTIONS(5066), + [anon_sym_BSLASHACRfull] = ACTIONS(5066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5066), + [anon_sym_BSLASHacs] = ACTIONS(5066), + [anon_sym_BSLASHAcs] = ACTIONS(5066), + [anon_sym_BSLASHacsp] = ACTIONS(5066), + [anon_sym_BSLASHAcsp] = ACTIONS(5066), + [anon_sym_BSLASHacl] = ACTIONS(5066), + [anon_sym_BSLASHAcl] = ACTIONS(5066), + [anon_sym_BSLASHaclp] = ACTIONS(5066), + [anon_sym_BSLASHAclp] = ACTIONS(5066), + [anon_sym_BSLASHacf] = ACTIONS(5066), + [anon_sym_BSLASHAcf] = ACTIONS(5066), + [anon_sym_BSLASHacfp] = ACTIONS(5066), + [anon_sym_BSLASHAcfp] = ACTIONS(5066), + [anon_sym_BSLASHac] = ACTIONS(5066), + [anon_sym_BSLASHAc] = ACTIONS(5066), + [anon_sym_BSLASHacp] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5064), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5066), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5066), + [anon_sym_BSLASHcolor] = ACTIONS(5066), + [anon_sym_BSLASHcolorbox] = ACTIONS(5066), + [anon_sym_BSLASHtextcolor] = ACTIONS(5066), + [anon_sym_BSLASHpagecolor] = ACTIONS(5066), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5066), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5066), }, [1537] = { - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4991), - [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), + [sym_command_name] = ACTIONS(5070), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5070), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [sym_word] = ACTIONS(5070), + [sym_placeholder] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym__] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [anon_sym_BSLASHusepackage] = ACTIONS(5070), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5070), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5070), + [anon_sym_BSLASHinclude] = ACTIONS(5070), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5070), + [anon_sym_BSLASHinput] = ACTIONS(5070), + [anon_sym_BSLASHsubfile] = ACTIONS(5070), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5070), + [anon_sym_BSLASHbibliography] = ACTIONS(5070), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5070), + [anon_sym_BSLASHincludesvg] = ACTIONS(5070), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5070), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5070), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5070), + [anon_sym_BSLASHimport] = ACTIONS(5070), + [anon_sym_BSLASHsubimport] = ACTIONS(5070), + [anon_sym_BSLASHinputfrom] = ACTIONS(5070), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5070), + [anon_sym_BSLASHincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5070), + [anon_sym_BSLASHcaption] = ACTIONS(5070), + [anon_sym_BSLASHcite] = ACTIONS(5070), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5070), + [anon_sym_BSLASHnocite] = ACTIONS(5070), + [anon_sym_BSLASHcitet] = ACTIONS(5070), + [anon_sym_BSLASHcitep] = ACTIONS(5070), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5070), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5070), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5070), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5070), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5070), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5070), + [anon_sym_BSLASHfullcite] = ACTIONS(5070), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5070), + [anon_sym_BSLASHcitealt] = ACTIONS(5070), + [anon_sym_BSLASHcitealp] = ACTIONS(5070), + [anon_sym_BSLASHcitetext] = ACTIONS(5070), + [anon_sym_BSLASHparencite] = ACTIONS(5070), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5070), + [anon_sym_BSLASHfootcite] = ACTIONS(5070), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5070), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5070), + [anon_sym_BSLASHtextcite] = ACTIONS(5070), + [anon_sym_BSLASHTextcite] = ACTIONS(5070), + [anon_sym_BSLASHsmartcite] = ACTIONS(5070), + [anon_sym_BSLASHSmartcite] = ACTIONS(5070), + [anon_sym_BSLASHsupercite] = ACTIONS(5070), + [anon_sym_BSLASHautocite] = ACTIONS(5070), + [anon_sym_BSLASHAutocite] = ACTIONS(5070), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5070), + [anon_sym_BSLASHVolcite] = ACTIONS(5070), + [anon_sym_BSLASHpvolcite] = ACTIONS(5070), + [anon_sym_BSLASHPvolcite] = ACTIONS(5070), + [anon_sym_BSLASHfvolcite] = ACTIONS(5070), + [anon_sym_BSLASHftvolcite] = ACTIONS(5070), + [anon_sym_BSLASHsvolcite] = ACTIONS(5070), + [anon_sym_BSLASHSvolcite] = ACTIONS(5070), + [anon_sym_BSLASHtvolcite] = ACTIONS(5070), + [anon_sym_BSLASHTvolcite] = ACTIONS(5070), + [anon_sym_BSLASHavolcite] = ACTIONS(5070), + [anon_sym_BSLASHAvolcite] = ACTIONS(5070), + [anon_sym_BSLASHnotecite] = ACTIONS(5070), + [anon_sym_BSLASHNotecite] = ACTIONS(5070), + [anon_sym_BSLASHpnotecite] = ACTIONS(5070), + [anon_sym_BSLASHPnotecite] = ACTIONS(5070), + [anon_sym_BSLASHfnotecite] = ACTIONS(5070), + [anon_sym_BSLASHlabel] = ACTIONS(5070), + [anon_sym_BSLASHref] = ACTIONS(5070), + [anon_sym_BSLASHeqref] = ACTIONS(5070), + [anon_sym_BSLASHvref] = ACTIONS(5070), + [anon_sym_BSLASHVref] = ACTIONS(5070), + [anon_sym_BSLASHautoref] = ACTIONS(5070), + [anon_sym_BSLASHpageref] = ACTIONS(5070), + [anon_sym_BSLASHcref] = ACTIONS(5070), + [anon_sym_BSLASHCref] = ACTIONS(5070), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnameCref] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5070), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5070), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5070), + [anon_sym_BSLASHlabelcref] = ACTIONS(5070), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange] = ACTIONS(5070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCrefrange] = ACTIONS(5070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5068), + [anon_sym_BSLASHnewlabel] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand] = ACTIONS(5070), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5070), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5070), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5068), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5070), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdef] = ACTIONS(5070), + [anon_sym_BSLASHlet] = ACTIONS(5070), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5070), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5070), + [anon_sym_BSLASHgls] = ACTIONS(5070), + [anon_sym_BSLASHGls] = ACTIONS(5070), + [anon_sym_BSLASHGLS] = ACTIONS(5070), + [anon_sym_BSLASHglspl] = ACTIONS(5070), + [anon_sym_BSLASHGlspl] = ACTIONS(5070), + [anon_sym_BSLASHGLSpl] = ACTIONS(5070), + [anon_sym_BSLASHglsdisp] = ACTIONS(5070), + [anon_sym_BSLASHglslink] = ACTIONS(5070), + [anon_sym_BSLASHglstext] = ACTIONS(5070), + [anon_sym_BSLASHGlstext] = ACTIONS(5070), + [anon_sym_BSLASHGLStext] = ACTIONS(5070), + [anon_sym_BSLASHglsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5070), + [anon_sym_BSLASHglsplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSplural] = ACTIONS(5070), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5070), + [anon_sym_BSLASHglsname] = ACTIONS(5070), + [anon_sym_BSLASHGlsname] = ACTIONS(5070), + [anon_sym_BSLASHGLSname] = ACTIONS(5070), + [anon_sym_BSLASHglssymbol] = ACTIONS(5070), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5070), + [anon_sym_BSLASHglsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5070), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5070), + [anon_sym_BSLASHglsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5070), + [anon_sym_BSLASHglsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5070), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5070), + [anon_sym_BSLASHglsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5070), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5070), + [anon_sym_BSLASHglsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5070), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5070), + [anon_sym_BSLASHnewacronym] = ACTIONS(5070), + [anon_sym_BSLASHacrshort] = ACTIONS(5070), + [anon_sym_BSLASHAcrshort] = ACTIONS(5070), + [anon_sym_BSLASHACRshort] = ACTIONS(5070), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5070), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5070), + [anon_sym_BSLASHacrlong] = ACTIONS(5070), + [anon_sym_BSLASHAcrlong] = ACTIONS(5070), + [anon_sym_BSLASHACRlong] = ACTIONS(5070), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5070), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5070), + [anon_sym_BSLASHacrfull] = ACTIONS(5070), + [anon_sym_BSLASHAcrfull] = ACTIONS(5070), + [anon_sym_BSLASHACRfull] = ACTIONS(5070), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5070), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5070), + [anon_sym_BSLASHacs] = ACTIONS(5070), + [anon_sym_BSLASHAcs] = ACTIONS(5070), + [anon_sym_BSLASHacsp] = ACTIONS(5070), + [anon_sym_BSLASHAcsp] = ACTIONS(5070), + [anon_sym_BSLASHacl] = ACTIONS(5070), + [anon_sym_BSLASHAcl] = ACTIONS(5070), + [anon_sym_BSLASHaclp] = ACTIONS(5070), + [anon_sym_BSLASHAclp] = ACTIONS(5070), + [anon_sym_BSLASHacf] = ACTIONS(5070), + [anon_sym_BSLASHAcf] = ACTIONS(5070), + [anon_sym_BSLASHacfp] = ACTIONS(5070), + [anon_sym_BSLASHAcfp] = ACTIONS(5070), + [anon_sym_BSLASHac] = ACTIONS(5070), + [anon_sym_BSLASHAc] = ACTIONS(5070), + [anon_sym_BSLASHacp] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5070), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5070), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5070), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5070), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5070), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5070), + [anon_sym_BSLASHcolor] = ACTIONS(5070), + [anon_sym_BSLASHcolorbox] = ACTIONS(5070), + [anon_sym_BSLASHtextcolor] = ACTIONS(5070), + [anon_sym_BSLASHpagecolor] = ACTIONS(5070), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5070), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5070), }, [1538] = { - [sym_command_name] = ACTIONS(5149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5149), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_PIPE] = ACTIONS(5149), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), - [anon_sym_BSLASHinclude] = ACTIONS(5149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), - [anon_sym_BSLASHinput] = ACTIONS(5149), - [anon_sym_BSLASHsubfile] = ACTIONS(5149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), - [anon_sym_BSLASHbibliography] = ACTIONS(5149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), - [anon_sym_BSLASHincludesvg] = ACTIONS(5149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), - [anon_sym_BSLASHimport] = ACTIONS(5149), - [anon_sym_BSLASHsubimport] = ACTIONS(5149), - [anon_sym_BSLASHinputfrom] = ACTIONS(5149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), - [anon_sym_BSLASHincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), - [anon_sym_BSLASHcaption] = ACTIONS(5149), - [anon_sym_BSLASHcite] = ACTIONS(5149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5149), - [anon_sym_BSLASHnocite] = ACTIONS(5149), - [anon_sym_BSLASHcitet] = ACTIONS(5149), - [anon_sym_BSLASHcitep] = ACTIONS(5149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5149), - [anon_sym_BSLASHfullcite] = ACTIONS(5149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), - [anon_sym_BSLASHcitealt] = ACTIONS(5149), - [anon_sym_BSLASHcitealp] = ACTIONS(5149), - [anon_sym_BSLASHcitetext] = ACTIONS(5149), - [anon_sym_BSLASHparencite] = ACTIONS(5149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5149), - [anon_sym_BSLASHfootcite] = ACTIONS(5149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), - [anon_sym_BSLASHtextcite] = ACTIONS(5149), - [anon_sym_BSLASHTextcite] = ACTIONS(5149), - [anon_sym_BSLASHsmartcite] = ACTIONS(5149), - [anon_sym_BSLASHSmartcite] = ACTIONS(5149), - [anon_sym_BSLASHsupercite] = ACTIONS(5149), - [anon_sym_BSLASHautocite] = ACTIONS(5149), - [anon_sym_BSLASHAutocite] = ACTIONS(5149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5149), - [anon_sym_BSLASHVolcite] = ACTIONS(5149), - [anon_sym_BSLASHpvolcite] = ACTIONS(5149), - [anon_sym_BSLASHPvolcite] = ACTIONS(5149), - [anon_sym_BSLASHfvolcite] = ACTIONS(5149), - [anon_sym_BSLASHftvolcite] = ACTIONS(5149), - [anon_sym_BSLASHsvolcite] = ACTIONS(5149), - [anon_sym_BSLASHSvolcite] = ACTIONS(5149), - [anon_sym_BSLASHtvolcite] = ACTIONS(5149), - [anon_sym_BSLASHTvolcite] = ACTIONS(5149), - [anon_sym_BSLASHavolcite] = ACTIONS(5149), - [anon_sym_BSLASHAvolcite] = ACTIONS(5149), - [anon_sym_BSLASHnotecite] = ACTIONS(5149), - [anon_sym_BSLASHNotecite] = ACTIONS(5149), - [anon_sym_BSLASHpnotecite] = ACTIONS(5149), - [anon_sym_BSLASHPnotecite] = ACTIONS(5149), - [anon_sym_BSLASHfnotecite] = ACTIONS(5149), - [anon_sym_BSLASHlabel] = ACTIONS(5149), - [anon_sym_BSLASHref] = ACTIONS(5149), - [anon_sym_BSLASHeqref] = ACTIONS(5149), - [anon_sym_BSLASHvref] = ACTIONS(5149), - [anon_sym_BSLASHVref] = ACTIONS(5149), - [anon_sym_BSLASHautoref] = ACTIONS(5149), - [anon_sym_BSLASHpageref] = ACTIONS(5149), - [anon_sym_BSLASHcref] = ACTIONS(5149), - [anon_sym_BSLASHCref] = ACTIONS(5149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnameCref] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), - [anon_sym_BSLASHlabelcref] = ACTIONS(5149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange] = ACTIONS(5149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand] = ACTIONS(5149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5149), - [anon_sym_BSLASHlet] = ACTIONS(5149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), - [anon_sym_BSLASHgls] = ACTIONS(5149), - [anon_sym_BSLASHGls] = ACTIONS(5149), - [anon_sym_BSLASHGLS] = ACTIONS(5149), - [anon_sym_BSLASHglspl] = ACTIONS(5149), - [anon_sym_BSLASHGlspl] = ACTIONS(5149), - [anon_sym_BSLASHGLSpl] = ACTIONS(5149), - [anon_sym_BSLASHglsdisp] = ACTIONS(5149), - [anon_sym_BSLASHglslink] = ACTIONS(5149), - [anon_sym_BSLASHglstext] = ACTIONS(5149), - [anon_sym_BSLASHGlstext] = ACTIONS(5149), - [anon_sym_BSLASHGLStext] = ACTIONS(5149), - [anon_sym_BSLASHglsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), - [anon_sym_BSLASHglsplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSplural] = ACTIONS(5149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), - [anon_sym_BSLASHglsname] = ACTIONS(5149), - [anon_sym_BSLASHGlsname] = ACTIONS(5149), - [anon_sym_BSLASHGLSname] = ACTIONS(5149), - [anon_sym_BSLASHglssymbol] = ACTIONS(5149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), - [anon_sym_BSLASHglsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), - [anon_sym_BSLASHglsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), - [anon_sym_BSLASHglsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), - [anon_sym_BSLASHglsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), - [anon_sym_BSLASHglsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), - [anon_sym_BSLASHnewacronym] = ACTIONS(5149), - [anon_sym_BSLASHacrshort] = ACTIONS(5149), - [anon_sym_BSLASHAcrshort] = ACTIONS(5149), - [anon_sym_BSLASHACRshort] = ACTIONS(5149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), - [anon_sym_BSLASHacrlong] = ACTIONS(5149), - [anon_sym_BSLASHAcrlong] = ACTIONS(5149), - [anon_sym_BSLASHACRlong] = ACTIONS(5149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), - [anon_sym_BSLASHacrfull] = ACTIONS(5149), - [anon_sym_BSLASHAcrfull] = ACTIONS(5149), - [anon_sym_BSLASHACRfull] = ACTIONS(5149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), - [anon_sym_BSLASHacs] = ACTIONS(5149), - [anon_sym_BSLASHAcs] = ACTIONS(5149), - [anon_sym_BSLASHacsp] = ACTIONS(5149), - [anon_sym_BSLASHAcsp] = ACTIONS(5149), - [anon_sym_BSLASHacl] = ACTIONS(5149), - [anon_sym_BSLASHAcl] = ACTIONS(5149), - [anon_sym_BSLASHaclp] = ACTIONS(5149), - [anon_sym_BSLASHAclp] = ACTIONS(5149), - [anon_sym_BSLASHacf] = ACTIONS(5149), - [anon_sym_BSLASHAcf] = ACTIONS(5149), - [anon_sym_BSLASHacfp] = ACTIONS(5149), - [anon_sym_BSLASHAcfp] = ACTIONS(5149), - [anon_sym_BSLASHac] = ACTIONS(5149), - [anon_sym_BSLASHAc] = ACTIONS(5149), - [anon_sym_BSLASHacp] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), - [anon_sym_BSLASHcolor] = ACTIONS(5149), - [anon_sym_BSLASHcolorbox] = ACTIONS(5149), - [anon_sym_BSLASHtextcolor] = ACTIONS(5149), - [anon_sym_BSLASHpagecolor] = ACTIONS(5149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [sym_command_name] = ACTIONS(5228), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5228), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_word] = ACTIONS(5228), + [sym_placeholder] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym__] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_SQUOTE] = ACTIONS(5228), + [anon_sym_BSLASHusepackage] = ACTIONS(5228), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5228), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5228), + [anon_sym_BSLASHinclude] = ACTIONS(5228), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5228), + [anon_sym_BSLASHinput] = ACTIONS(5228), + [anon_sym_BSLASHsubfile] = ACTIONS(5228), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5228), + [anon_sym_BSLASHbibliography] = ACTIONS(5228), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5228), + [anon_sym_BSLASHincludesvg] = ACTIONS(5228), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5228), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5228), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5228), + [anon_sym_BSLASHimport] = ACTIONS(5228), + [anon_sym_BSLASHsubimport] = ACTIONS(5228), + [anon_sym_BSLASHinputfrom] = ACTIONS(5228), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5228), + [anon_sym_BSLASHincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5228), + [anon_sym_BSLASHcaption] = ACTIONS(5228), + [anon_sym_BSLASHcite] = ACTIONS(5228), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCite] = ACTIONS(5228), + [anon_sym_BSLASHnocite] = ACTIONS(5228), + [anon_sym_BSLASHcitet] = ACTIONS(5228), + [anon_sym_BSLASHcitep] = ACTIONS(5228), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteauthor] = ACTIONS(5228), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5228), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitetitle] = ACTIONS(5228), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteyear] = ACTIONS(5228), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5226), + [anon_sym_BSLASHcitedate] = ACTIONS(5228), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5226), + [anon_sym_BSLASHciteurl] = ACTIONS(5228), + [anon_sym_BSLASHfullcite] = ACTIONS(5228), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5228), + [anon_sym_BSLASHcitealt] = ACTIONS(5228), + [anon_sym_BSLASHcitealp] = ACTIONS(5228), + [anon_sym_BSLASHcitetext] = ACTIONS(5228), + [anon_sym_BSLASHparencite] = ACTIONS(5228), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHParencite] = ACTIONS(5228), + [anon_sym_BSLASHfootcite] = ACTIONS(5228), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5228), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5228), + [anon_sym_BSLASHtextcite] = ACTIONS(5228), + [anon_sym_BSLASHTextcite] = ACTIONS(5228), + [anon_sym_BSLASHsmartcite] = ACTIONS(5228), + [anon_sym_BSLASHSmartcite] = ACTIONS(5228), + [anon_sym_BSLASHsupercite] = ACTIONS(5228), + [anon_sym_BSLASHautocite] = ACTIONS(5228), + [anon_sym_BSLASHAutocite] = ACTIONS(5228), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5226), + [anon_sym_BSLASHvolcite] = ACTIONS(5228), + [anon_sym_BSLASHVolcite] = ACTIONS(5228), + [anon_sym_BSLASHpvolcite] = ACTIONS(5228), + [anon_sym_BSLASHPvolcite] = ACTIONS(5228), + [anon_sym_BSLASHfvolcite] = ACTIONS(5228), + [anon_sym_BSLASHftvolcite] = ACTIONS(5228), + [anon_sym_BSLASHsvolcite] = ACTIONS(5228), + [anon_sym_BSLASHSvolcite] = ACTIONS(5228), + [anon_sym_BSLASHtvolcite] = ACTIONS(5228), + [anon_sym_BSLASHTvolcite] = ACTIONS(5228), + [anon_sym_BSLASHavolcite] = ACTIONS(5228), + [anon_sym_BSLASHAvolcite] = ACTIONS(5228), + [anon_sym_BSLASHnotecite] = ACTIONS(5228), + [anon_sym_BSLASHNotecite] = ACTIONS(5228), + [anon_sym_BSLASHpnotecite] = ACTIONS(5228), + [anon_sym_BSLASHPnotecite] = ACTIONS(5228), + [anon_sym_BSLASHfnotecite] = ACTIONS(5228), + [anon_sym_BSLASHlabel] = ACTIONS(5228), + [anon_sym_BSLASHref] = ACTIONS(5228), + [anon_sym_BSLASHeqref] = ACTIONS(5228), + [anon_sym_BSLASHvref] = ACTIONS(5228), + [anon_sym_BSLASHVref] = ACTIONS(5228), + [anon_sym_BSLASHautoref] = ACTIONS(5228), + [anon_sym_BSLASHpageref] = ACTIONS(5228), + [anon_sym_BSLASHcref] = ACTIONS(5228), + [anon_sym_BSLASHCref] = ACTIONS(5228), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnameCref] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5228), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5228), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5228), + [anon_sym_BSLASHlabelcref] = ACTIONS(5228), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange] = ACTIONS(5228), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHCrefrange] = ACTIONS(5228), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5226), + [anon_sym_BSLASHnewlabel] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand] = ACTIONS(5228), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5228), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5228), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5226), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5228), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdef] = ACTIONS(5228), + [anon_sym_BSLASHlet] = ACTIONS(5228), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5228), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5228), + [anon_sym_BSLASHgls] = ACTIONS(5228), + [anon_sym_BSLASHGls] = ACTIONS(5228), + [anon_sym_BSLASHGLS] = ACTIONS(5228), + [anon_sym_BSLASHglspl] = ACTIONS(5228), + [anon_sym_BSLASHGlspl] = ACTIONS(5228), + [anon_sym_BSLASHGLSpl] = ACTIONS(5228), + [anon_sym_BSLASHglsdisp] = ACTIONS(5228), + [anon_sym_BSLASHglslink] = ACTIONS(5228), + [anon_sym_BSLASHglstext] = ACTIONS(5228), + [anon_sym_BSLASHGlstext] = ACTIONS(5228), + [anon_sym_BSLASHGLStext] = ACTIONS(5228), + [anon_sym_BSLASHglsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5228), + [anon_sym_BSLASHglsplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSplural] = ACTIONS(5228), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5228), + [anon_sym_BSLASHglsname] = ACTIONS(5228), + [anon_sym_BSLASHGlsname] = ACTIONS(5228), + [anon_sym_BSLASHGLSname] = ACTIONS(5228), + [anon_sym_BSLASHglssymbol] = ACTIONS(5228), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5228), + [anon_sym_BSLASHglsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5228), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5228), + [anon_sym_BSLASHglsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5228), + [anon_sym_BSLASHglsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5228), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5228), + [anon_sym_BSLASHglsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5228), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5228), + [anon_sym_BSLASHglsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5228), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5228), + [anon_sym_BSLASHnewacronym] = ACTIONS(5228), + [anon_sym_BSLASHacrshort] = ACTIONS(5228), + [anon_sym_BSLASHAcrshort] = ACTIONS(5228), + [anon_sym_BSLASHACRshort] = ACTIONS(5228), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5228), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5228), + [anon_sym_BSLASHacrlong] = ACTIONS(5228), + [anon_sym_BSLASHAcrlong] = ACTIONS(5228), + [anon_sym_BSLASHACRlong] = ACTIONS(5228), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5228), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5228), + [anon_sym_BSLASHacrfull] = ACTIONS(5228), + [anon_sym_BSLASHAcrfull] = ACTIONS(5228), + [anon_sym_BSLASHACRfull] = ACTIONS(5228), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5228), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5228), + [anon_sym_BSLASHacs] = ACTIONS(5228), + [anon_sym_BSLASHAcs] = ACTIONS(5228), + [anon_sym_BSLASHacsp] = ACTIONS(5228), + [anon_sym_BSLASHAcsp] = ACTIONS(5228), + [anon_sym_BSLASHacl] = ACTIONS(5228), + [anon_sym_BSLASHAcl] = ACTIONS(5228), + [anon_sym_BSLASHaclp] = ACTIONS(5228), + [anon_sym_BSLASHAclp] = ACTIONS(5228), + [anon_sym_BSLASHacf] = ACTIONS(5228), + [anon_sym_BSLASHAcf] = ACTIONS(5228), + [anon_sym_BSLASHacfp] = ACTIONS(5228), + [anon_sym_BSLASHAcfp] = ACTIONS(5228), + [anon_sym_BSLASHac] = ACTIONS(5228), + [anon_sym_BSLASHAc] = ACTIONS(5228), + [anon_sym_BSLASHacp] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5228), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5228), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5228), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5228), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5228), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5226), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5228), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5228), + [anon_sym_BSLASHcolor] = ACTIONS(5228), + [anon_sym_BSLASHcolorbox] = ACTIONS(5228), + [anon_sym_BSLASHtextcolor] = ACTIONS(5228), + [anon_sym_BSLASHpagecolor] = ACTIONS(5228), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5228), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5228), }, [1539] = { - [sym_command_name] = ACTIONS(4999), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4999), - [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), + [sym_command_name] = ACTIONS(5078), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5078), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [sym_word] = ACTIONS(5078), + [sym_placeholder] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym__] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [anon_sym_BSLASHusepackage] = ACTIONS(5078), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5078), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5078), + [anon_sym_BSLASHinclude] = ACTIONS(5078), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5078), + [anon_sym_BSLASHinput] = ACTIONS(5078), + [anon_sym_BSLASHsubfile] = ACTIONS(5078), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5078), + [anon_sym_BSLASHbibliography] = ACTIONS(5078), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5078), + [anon_sym_BSLASHincludesvg] = ACTIONS(5078), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5078), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5078), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5078), + [anon_sym_BSLASHimport] = ACTIONS(5078), + [anon_sym_BSLASHsubimport] = ACTIONS(5078), + [anon_sym_BSLASHinputfrom] = ACTIONS(5078), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5078), + [anon_sym_BSLASHincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5078), + [anon_sym_BSLASHcaption] = ACTIONS(5078), + [anon_sym_BSLASHcite] = ACTIONS(5078), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCite] = ACTIONS(5078), + [anon_sym_BSLASHnocite] = ACTIONS(5078), + [anon_sym_BSLASHcitet] = ACTIONS(5078), + [anon_sym_BSLASHcitep] = ACTIONS(5078), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteauthor] = ACTIONS(5078), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5078), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitetitle] = ACTIONS(5078), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteyear] = ACTIONS(5078), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5076), + [anon_sym_BSLASHcitedate] = ACTIONS(5078), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5076), + [anon_sym_BSLASHciteurl] = ACTIONS(5078), + [anon_sym_BSLASHfullcite] = ACTIONS(5078), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5078), + [anon_sym_BSLASHcitealt] = ACTIONS(5078), + [anon_sym_BSLASHcitealp] = ACTIONS(5078), + [anon_sym_BSLASHcitetext] = ACTIONS(5078), + [anon_sym_BSLASHparencite] = ACTIONS(5078), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHParencite] = ACTIONS(5078), + [anon_sym_BSLASHfootcite] = ACTIONS(5078), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5078), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5078), + [anon_sym_BSLASHtextcite] = ACTIONS(5078), + [anon_sym_BSLASHTextcite] = ACTIONS(5078), + [anon_sym_BSLASHsmartcite] = ACTIONS(5078), + [anon_sym_BSLASHSmartcite] = ACTIONS(5078), + [anon_sym_BSLASHsupercite] = ACTIONS(5078), + [anon_sym_BSLASHautocite] = ACTIONS(5078), + [anon_sym_BSLASHAutocite] = ACTIONS(5078), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5076), + [anon_sym_BSLASHvolcite] = ACTIONS(5078), + [anon_sym_BSLASHVolcite] = ACTIONS(5078), + [anon_sym_BSLASHpvolcite] = ACTIONS(5078), + [anon_sym_BSLASHPvolcite] = ACTIONS(5078), + [anon_sym_BSLASHfvolcite] = ACTIONS(5078), + [anon_sym_BSLASHftvolcite] = ACTIONS(5078), + [anon_sym_BSLASHsvolcite] = ACTIONS(5078), + [anon_sym_BSLASHSvolcite] = ACTIONS(5078), + [anon_sym_BSLASHtvolcite] = ACTIONS(5078), + [anon_sym_BSLASHTvolcite] = ACTIONS(5078), + [anon_sym_BSLASHavolcite] = ACTIONS(5078), + [anon_sym_BSLASHAvolcite] = ACTIONS(5078), + [anon_sym_BSLASHnotecite] = ACTIONS(5078), + [anon_sym_BSLASHNotecite] = ACTIONS(5078), + [anon_sym_BSLASHpnotecite] = ACTIONS(5078), + [anon_sym_BSLASHPnotecite] = ACTIONS(5078), + [anon_sym_BSLASHfnotecite] = ACTIONS(5078), + [anon_sym_BSLASHlabel] = ACTIONS(5078), + [anon_sym_BSLASHref] = ACTIONS(5078), + [anon_sym_BSLASHeqref] = ACTIONS(5078), + [anon_sym_BSLASHvref] = ACTIONS(5078), + [anon_sym_BSLASHVref] = ACTIONS(5078), + [anon_sym_BSLASHautoref] = ACTIONS(5078), + [anon_sym_BSLASHpageref] = ACTIONS(5078), + [anon_sym_BSLASHcref] = ACTIONS(5078), + [anon_sym_BSLASHCref] = ACTIONS(5078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnameCref] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5078), + [anon_sym_BSLASHlabelcref] = ACTIONS(5078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange] = ACTIONS(5078), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHCrefrange] = ACTIONS(5078), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5076), + [anon_sym_BSLASHnewlabel] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand] = ACTIONS(5078), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5076), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdef] = ACTIONS(5078), + [anon_sym_BSLASHlet] = ACTIONS(5078), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5078), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5078), + [anon_sym_BSLASHgls] = ACTIONS(5078), + [anon_sym_BSLASHGls] = ACTIONS(5078), + [anon_sym_BSLASHGLS] = ACTIONS(5078), + [anon_sym_BSLASHglspl] = ACTIONS(5078), + [anon_sym_BSLASHGlspl] = ACTIONS(5078), + [anon_sym_BSLASHGLSpl] = ACTIONS(5078), + [anon_sym_BSLASHglsdisp] = ACTIONS(5078), + [anon_sym_BSLASHglslink] = ACTIONS(5078), + [anon_sym_BSLASHglstext] = ACTIONS(5078), + [anon_sym_BSLASHGlstext] = ACTIONS(5078), + [anon_sym_BSLASHGLStext] = ACTIONS(5078), + [anon_sym_BSLASHglsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5078), + [anon_sym_BSLASHglsplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSplural] = ACTIONS(5078), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5078), + [anon_sym_BSLASHglsname] = ACTIONS(5078), + [anon_sym_BSLASHGlsname] = ACTIONS(5078), + [anon_sym_BSLASHGLSname] = ACTIONS(5078), + [anon_sym_BSLASHglssymbol] = ACTIONS(5078), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5078), + [anon_sym_BSLASHglsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5078), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5078), + [anon_sym_BSLASHglsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5078), + [anon_sym_BSLASHglsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5078), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5078), + [anon_sym_BSLASHglsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5078), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5078), + [anon_sym_BSLASHglsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5078), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5078), + [anon_sym_BSLASHnewacronym] = ACTIONS(5078), + [anon_sym_BSLASHacrshort] = ACTIONS(5078), + [anon_sym_BSLASHAcrshort] = ACTIONS(5078), + [anon_sym_BSLASHACRshort] = ACTIONS(5078), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5078), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5078), + [anon_sym_BSLASHacrlong] = ACTIONS(5078), + [anon_sym_BSLASHAcrlong] = ACTIONS(5078), + [anon_sym_BSLASHACRlong] = ACTIONS(5078), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5078), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5078), + [anon_sym_BSLASHacrfull] = ACTIONS(5078), + [anon_sym_BSLASHAcrfull] = ACTIONS(5078), + [anon_sym_BSLASHACRfull] = ACTIONS(5078), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5078), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5078), + [anon_sym_BSLASHacs] = ACTIONS(5078), + [anon_sym_BSLASHAcs] = ACTIONS(5078), + [anon_sym_BSLASHacsp] = ACTIONS(5078), + [anon_sym_BSLASHAcsp] = ACTIONS(5078), + [anon_sym_BSLASHacl] = ACTIONS(5078), + [anon_sym_BSLASHAcl] = ACTIONS(5078), + [anon_sym_BSLASHaclp] = ACTIONS(5078), + [anon_sym_BSLASHAclp] = ACTIONS(5078), + [anon_sym_BSLASHacf] = ACTIONS(5078), + [anon_sym_BSLASHAcf] = ACTIONS(5078), + [anon_sym_BSLASHacfp] = ACTIONS(5078), + [anon_sym_BSLASHAcfp] = ACTIONS(5078), + [anon_sym_BSLASHac] = ACTIONS(5078), + [anon_sym_BSLASHAc] = ACTIONS(5078), + [anon_sym_BSLASHacp] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5078), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5078), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5078), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5078), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5078), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5076), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5078), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5078), + [anon_sym_BSLASHcolor] = ACTIONS(5078), + [anon_sym_BSLASHcolorbox] = ACTIONS(5078), + [anon_sym_BSLASHtextcolor] = ACTIONS(5078), + [anon_sym_BSLASHpagecolor] = ACTIONS(5078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5078), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5078), }, [1540] = { - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(5003), - [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), + [sym_command_name] = ACTIONS(5082), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5082), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5082), + [sym_placeholder] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym__] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_SQUOTE] = ACTIONS(5082), + [anon_sym_BSLASHusepackage] = ACTIONS(5082), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5082), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5082), + [anon_sym_BSLASHinclude] = ACTIONS(5082), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5082), + [anon_sym_BSLASHinput] = ACTIONS(5082), + [anon_sym_BSLASHsubfile] = ACTIONS(5082), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5082), + [anon_sym_BSLASHbibliography] = ACTIONS(5082), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5082), + [anon_sym_BSLASHincludesvg] = ACTIONS(5082), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5082), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5082), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5082), + [anon_sym_BSLASHimport] = ACTIONS(5082), + [anon_sym_BSLASHsubimport] = ACTIONS(5082), + [anon_sym_BSLASHinputfrom] = ACTIONS(5082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5082), + [anon_sym_BSLASHincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5082), + [anon_sym_BSLASHcaption] = ACTIONS(5082), + [anon_sym_BSLASHcite] = ACTIONS(5082), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCite] = ACTIONS(5082), + [anon_sym_BSLASHnocite] = ACTIONS(5082), + [anon_sym_BSLASHcitet] = ACTIONS(5082), + [anon_sym_BSLASHcitep] = ACTIONS(5082), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteauthor] = ACTIONS(5082), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5082), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitetitle] = ACTIONS(5082), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteyear] = ACTIONS(5082), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5080), + [anon_sym_BSLASHcitedate] = ACTIONS(5082), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5080), + [anon_sym_BSLASHciteurl] = ACTIONS(5082), + [anon_sym_BSLASHfullcite] = ACTIONS(5082), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5082), + [anon_sym_BSLASHcitealt] = ACTIONS(5082), + [anon_sym_BSLASHcitealp] = ACTIONS(5082), + [anon_sym_BSLASHcitetext] = ACTIONS(5082), + [anon_sym_BSLASHparencite] = ACTIONS(5082), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHParencite] = ACTIONS(5082), + [anon_sym_BSLASHfootcite] = ACTIONS(5082), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5082), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5082), + [anon_sym_BSLASHtextcite] = ACTIONS(5082), + [anon_sym_BSLASHTextcite] = ACTIONS(5082), + [anon_sym_BSLASHsmartcite] = ACTIONS(5082), + [anon_sym_BSLASHSmartcite] = ACTIONS(5082), + [anon_sym_BSLASHsupercite] = ACTIONS(5082), + [anon_sym_BSLASHautocite] = ACTIONS(5082), + [anon_sym_BSLASHAutocite] = ACTIONS(5082), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5080), + [anon_sym_BSLASHvolcite] = ACTIONS(5082), + [anon_sym_BSLASHVolcite] = ACTIONS(5082), + [anon_sym_BSLASHpvolcite] = ACTIONS(5082), + [anon_sym_BSLASHPvolcite] = ACTIONS(5082), + [anon_sym_BSLASHfvolcite] = ACTIONS(5082), + [anon_sym_BSLASHftvolcite] = ACTIONS(5082), + [anon_sym_BSLASHsvolcite] = ACTIONS(5082), + [anon_sym_BSLASHSvolcite] = ACTIONS(5082), + [anon_sym_BSLASHtvolcite] = ACTIONS(5082), + [anon_sym_BSLASHTvolcite] = ACTIONS(5082), + [anon_sym_BSLASHavolcite] = ACTIONS(5082), + [anon_sym_BSLASHAvolcite] = ACTIONS(5082), + [anon_sym_BSLASHnotecite] = ACTIONS(5082), + [anon_sym_BSLASHNotecite] = ACTIONS(5082), + [anon_sym_BSLASHpnotecite] = ACTIONS(5082), + [anon_sym_BSLASHPnotecite] = ACTIONS(5082), + [anon_sym_BSLASHfnotecite] = ACTIONS(5082), + [anon_sym_BSLASHlabel] = ACTIONS(5082), + [anon_sym_BSLASHref] = ACTIONS(5082), + [anon_sym_BSLASHeqref] = ACTIONS(5082), + [anon_sym_BSLASHvref] = ACTIONS(5082), + [anon_sym_BSLASHVref] = ACTIONS(5082), + [anon_sym_BSLASHautoref] = ACTIONS(5082), + [anon_sym_BSLASHpageref] = ACTIONS(5082), + [anon_sym_BSLASHcref] = ACTIONS(5082), + [anon_sym_BSLASHCref] = ACTIONS(5082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnameCref] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5082), + [anon_sym_BSLASHlabelcref] = ACTIONS(5082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange] = ACTIONS(5082), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHCrefrange] = ACTIONS(5082), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5080), + [anon_sym_BSLASHnewlabel] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand] = ACTIONS(5082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5080), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdef] = ACTIONS(5082), + [anon_sym_BSLASHlet] = ACTIONS(5082), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5082), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5082), + [anon_sym_BSLASHgls] = ACTIONS(5082), + [anon_sym_BSLASHGls] = ACTIONS(5082), + [anon_sym_BSLASHGLS] = ACTIONS(5082), + [anon_sym_BSLASHglspl] = ACTIONS(5082), + [anon_sym_BSLASHGlspl] = ACTIONS(5082), + [anon_sym_BSLASHGLSpl] = ACTIONS(5082), + [anon_sym_BSLASHglsdisp] = ACTIONS(5082), + [anon_sym_BSLASHglslink] = ACTIONS(5082), + [anon_sym_BSLASHglstext] = ACTIONS(5082), + [anon_sym_BSLASHGlstext] = ACTIONS(5082), + [anon_sym_BSLASHGLStext] = ACTIONS(5082), + [anon_sym_BSLASHglsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5082), + [anon_sym_BSLASHglsplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSplural] = ACTIONS(5082), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5082), + [anon_sym_BSLASHglsname] = ACTIONS(5082), + [anon_sym_BSLASHGlsname] = ACTIONS(5082), + [anon_sym_BSLASHGLSname] = ACTIONS(5082), + [anon_sym_BSLASHglssymbol] = ACTIONS(5082), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5082), + [anon_sym_BSLASHglsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5082), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5082), + [anon_sym_BSLASHglsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5082), + [anon_sym_BSLASHglsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5082), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5082), + [anon_sym_BSLASHglsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5082), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5082), + [anon_sym_BSLASHglsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5082), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5082), + [anon_sym_BSLASHnewacronym] = ACTIONS(5082), + [anon_sym_BSLASHacrshort] = ACTIONS(5082), + [anon_sym_BSLASHAcrshort] = ACTIONS(5082), + [anon_sym_BSLASHACRshort] = ACTIONS(5082), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5082), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5082), + [anon_sym_BSLASHacrlong] = ACTIONS(5082), + [anon_sym_BSLASHAcrlong] = ACTIONS(5082), + [anon_sym_BSLASHACRlong] = ACTIONS(5082), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5082), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5082), + [anon_sym_BSLASHacrfull] = ACTIONS(5082), + [anon_sym_BSLASHAcrfull] = ACTIONS(5082), + [anon_sym_BSLASHACRfull] = ACTIONS(5082), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5082), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5082), + [anon_sym_BSLASHacs] = ACTIONS(5082), + [anon_sym_BSLASHAcs] = ACTIONS(5082), + [anon_sym_BSLASHacsp] = ACTIONS(5082), + [anon_sym_BSLASHAcsp] = ACTIONS(5082), + [anon_sym_BSLASHacl] = ACTIONS(5082), + [anon_sym_BSLASHAcl] = ACTIONS(5082), + [anon_sym_BSLASHaclp] = ACTIONS(5082), + [anon_sym_BSLASHAclp] = ACTIONS(5082), + [anon_sym_BSLASHacf] = ACTIONS(5082), + [anon_sym_BSLASHAcf] = ACTIONS(5082), + [anon_sym_BSLASHacfp] = ACTIONS(5082), + [anon_sym_BSLASHAcfp] = ACTIONS(5082), + [anon_sym_BSLASHac] = ACTIONS(5082), + [anon_sym_BSLASHAc] = ACTIONS(5082), + [anon_sym_BSLASHacp] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5082), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5082), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5082), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5082), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5082), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5082), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5082), + [anon_sym_BSLASHcolor] = ACTIONS(5082), + [anon_sym_BSLASHcolorbox] = ACTIONS(5082), + [anon_sym_BSLASHtextcolor] = ACTIONS(5082), + [anon_sym_BSLASHpagecolor] = ACTIONS(5082), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5082), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5082), }, [1541] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [sym_command_name] = ACTIONS(5112), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_RBRACE] = ACTIONS(5110), + [sym_word] = ACTIONS(5112), + [sym_placeholder] = ACTIONS(5110), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym__] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_BANG] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_SQUOTE] = ACTIONS(5112), + [anon_sym_BSLASHusepackage] = ACTIONS(5112), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5112), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5112), + [anon_sym_BSLASHinclude] = ACTIONS(5112), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5112), + [anon_sym_BSLASHinput] = ACTIONS(5112), + [anon_sym_BSLASHsubfile] = ACTIONS(5112), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5112), + [anon_sym_BSLASHbibliography] = ACTIONS(5112), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5112), + [anon_sym_BSLASHincludesvg] = ACTIONS(5112), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5112), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5112), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5112), + [anon_sym_BSLASHimport] = ACTIONS(5112), + [anon_sym_BSLASHsubimport] = ACTIONS(5112), + [anon_sym_BSLASHinputfrom] = ACTIONS(5112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5112), + [anon_sym_BSLASHincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5112), + [anon_sym_BSLASHcaption] = ACTIONS(5112), + [anon_sym_BSLASHcite] = ACTIONS(5112), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCite] = ACTIONS(5112), + [anon_sym_BSLASHnocite] = ACTIONS(5112), + [anon_sym_BSLASHcitet] = ACTIONS(5112), + [anon_sym_BSLASHcitep] = ACTIONS(5112), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteauthor] = ACTIONS(5112), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5112), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitetitle] = ACTIONS(5112), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteyear] = ACTIONS(5112), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5110), + [anon_sym_BSLASHcitedate] = ACTIONS(5112), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5110), + [anon_sym_BSLASHciteurl] = ACTIONS(5112), + [anon_sym_BSLASHfullcite] = ACTIONS(5112), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5112), + [anon_sym_BSLASHcitealt] = ACTIONS(5112), + [anon_sym_BSLASHcitealp] = ACTIONS(5112), + [anon_sym_BSLASHcitetext] = ACTIONS(5112), + [anon_sym_BSLASHparencite] = ACTIONS(5112), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHParencite] = ACTIONS(5112), + [anon_sym_BSLASHfootcite] = ACTIONS(5112), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5112), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5112), + [anon_sym_BSLASHtextcite] = ACTIONS(5112), + [anon_sym_BSLASHTextcite] = ACTIONS(5112), + [anon_sym_BSLASHsmartcite] = ACTIONS(5112), + [anon_sym_BSLASHSmartcite] = ACTIONS(5112), + [anon_sym_BSLASHsupercite] = ACTIONS(5112), + [anon_sym_BSLASHautocite] = ACTIONS(5112), + [anon_sym_BSLASHAutocite] = ACTIONS(5112), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5110), + [anon_sym_BSLASHvolcite] = ACTIONS(5112), + [anon_sym_BSLASHVolcite] = ACTIONS(5112), + [anon_sym_BSLASHpvolcite] = ACTIONS(5112), + [anon_sym_BSLASHPvolcite] = ACTIONS(5112), + [anon_sym_BSLASHfvolcite] = ACTIONS(5112), + [anon_sym_BSLASHftvolcite] = ACTIONS(5112), + [anon_sym_BSLASHsvolcite] = ACTIONS(5112), + [anon_sym_BSLASHSvolcite] = ACTIONS(5112), + [anon_sym_BSLASHtvolcite] = ACTIONS(5112), + [anon_sym_BSLASHTvolcite] = ACTIONS(5112), + [anon_sym_BSLASHavolcite] = ACTIONS(5112), + [anon_sym_BSLASHAvolcite] = ACTIONS(5112), + [anon_sym_BSLASHnotecite] = ACTIONS(5112), + [anon_sym_BSLASHNotecite] = ACTIONS(5112), + [anon_sym_BSLASHpnotecite] = ACTIONS(5112), + [anon_sym_BSLASHPnotecite] = ACTIONS(5112), + [anon_sym_BSLASHfnotecite] = ACTIONS(5112), + [anon_sym_BSLASHlabel] = ACTIONS(5112), + [anon_sym_BSLASHref] = ACTIONS(5112), + [anon_sym_BSLASHeqref] = ACTIONS(5112), + [anon_sym_BSLASHvref] = ACTIONS(5112), + [anon_sym_BSLASHVref] = ACTIONS(5112), + [anon_sym_BSLASHautoref] = ACTIONS(5112), + [anon_sym_BSLASHpageref] = ACTIONS(5112), + [anon_sym_BSLASHcref] = ACTIONS(5112), + [anon_sym_BSLASHCref] = ACTIONS(5112), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnameCref] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5112), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5112), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5112), + [anon_sym_BSLASHlabelcref] = ACTIONS(5112), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange] = ACTIONS(5112), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCrefrange] = ACTIONS(5112), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnewlabel] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand] = ACTIONS(5112), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5112), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5112), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5110), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5112), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdef] = ACTIONS(5112), + [anon_sym_BSLASHlet] = ACTIONS(5112), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5112), + [anon_sym_BSLASHgls] = ACTIONS(5112), + [anon_sym_BSLASHGls] = ACTIONS(5112), + [anon_sym_BSLASHGLS] = ACTIONS(5112), + [anon_sym_BSLASHglspl] = ACTIONS(5112), + [anon_sym_BSLASHGlspl] = ACTIONS(5112), + [anon_sym_BSLASHGLSpl] = ACTIONS(5112), + [anon_sym_BSLASHglsdisp] = ACTIONS(5112), + [anon_sym_BSLASHglslink] = ACTIONS(5112), + [anon_sym_BSLASHglstext] = ACTIONS(5112), + [anon_sym_BSLASHGlstext] = ACTIONS(5112), + [anon_sym_BSLASHGLStext] = ACTIONS(5112), + [anon_sym_BSLASHglsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5112), + [anon_sym_BSLASHglsplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSplural] = ACTIONS(5112), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5112), + [anon_sym_BSLASHglsname] = ACTIONS(5112), + [anon_sym_BSLASHGlsname] = ACTIONS(5112), + [anon_sym_BSLASHGLSname] = ACTIONS(5112), + [anon_sym_BSLASHglssymbol] = ACTIONS(5112), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5112), + [anon_sym_BSLASHglsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5112), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5112), + [anon_sym_BSLASHglsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5112), + [anon_sym_BSLASHglsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5112), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5112), + [anon_sym_BSLASHglsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5112), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5112), + [anon_sym_BSLASHglsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5112), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5112), + [anon_sym_BSLASHnewacronym] = ACTIONS(5112), + [anon_sym_BSLASHacrshort] = ACTIONS(5112), + [anon_sym_BSLASHAcrshort] = ACTIONS(5112), + [anon_sym_BSLASHACRshort] = ACTIONS(5112), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5112), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5112), + [anon_sym_BSLASHacrlong] = ACTIONS(5112), + [anon_sym_BSLASHAcrlong] = ACTIONS(5112), + [anon_sym_BSLASHACRlong] = ACTIONS(5112), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5112), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5112), + [anon_sym_BSLASHacrfull] = ACTIONS(5112), + [anon_sym_BSLASHAcrfull] = ACTIONS(5112), + [anon_sym_BSLASHACRfull] = ACTIONS(5112), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5112), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5112), + [anon_sym_BSLASHacs] = ACTIONS(5112), + [anon_sym_BSLASHAcs] = ACTIONS(5112), + [anon_sym_BSLASHacsp] = ACTIONS(5112), + [anon_sym_BSLASHAcsp] = ACTIONS(5112), + [anon_sym_BSLASHacl] = ACTIONS(5112), + [anon_sym_BSLASHAcl] = ACTIONS(5112), + [anon_sym_BSLASHaclp] = ACTIONS(5112), + [anon_sym_BSLASHAclp] = ACTIONS(5112), + [anon_sym_BSLASHacf] = ACTIONS(5112), + [anon_sym_BSLASHAcf] = ACTIONS(5112), + [anon_sym_BSLASHacfp] = ACTIONS(5112), + [anon_sym_BSLASHAcfp] = ACTIONS(5112), + [anon_sym_BSLASHac] = ACTIONS(5112), + [anon_sym_BSLASHAc] = ACTIONS(5112), + [anon_sym_BSLASHacp] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5112), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5112), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5112), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5112), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5112), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5110), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5112), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5112), + [anon_sym_BSLASHcolor] = ACTIONS(5112), + [anon_sym_BSLASHcolorbox] = ACTIONS(5112), + [anon_sym_BSLASHtextcolor] = ACTIONS(5112), + [anon_sym_BSLASHpagecolor] = ACTIONS(5112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5112), }, [1542] = { - [sym_command_name] = ACTIONS(5013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [sym_word] = ACTIONS(5013), - [sym_placeholder] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5013), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_STAR] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym__] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5013), - [anon_sym_COLON] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), - [anon_sym_BSLASHinclude] = ACTIONS(5013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), - [anon_sym_BSLASHinput] = ACTIONS(5013), - [anon_sym_BSLASHsubfile] = ACTIONS(5013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), - [anon_sym_BSLASHbibliography] = ACTIONS(5013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), - [anon_sym_BSLASHincludesvg] = ACTIONS(5013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), - [anon_sym_BSLASHimport] = ACTIONS(5013), - [anon_sym_BSLASHsubimport] = ACTIONS(5013), - [anon_sym_BSLASHinputfrom] = ACTIONS(5013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), - [anon_sym_BSLASHincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), - [anon_sym_BSLASHcaption] = ACTIONS(5013), - [anon_sym_BSLASHcite] = ACTIONS(5013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCite] = ACTIONS(5013), - [anon_sym_BSLASHnocite] = ACTIONS(5013), - [anon_sym_BSLASHcitet] = ACTIONS(5013), - [anon_sym_BSLASHcitep] = ACTIONS(5013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteyear] = ACTIONS(5013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), - [anon_sym_BSLASHcitedate] = ACTIONS(5013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), - [anon_sym_BSLASHciteurl] = ACTIONS(5013), - [anon_sym_BSLASHfullcite] = ACTIONS(5013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), - [anon_sym_BSLASHcitealt] = ACTIONS(5013), - [anon_sym_BSLASHcitealp] = ACTIONS(5013), - [anon_sym_BSLASHcitetext] = ACTIONS(5013), - [anon_sym_BSLASHparencite] = ACTIONS(5013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHParencite] = ACTIONS(5013), - [anon_sym_BSLASHfootcite] = ACTIONS(5013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), - [anon_sym_BSLASHtextcite] = ACTIONS(5013), - [anon_sym_BSLASHTextcite] = ACTIONS(5013), - [anon_sym_BSLASHsmartcite] = ACTIONS(5013), - [anon_sym_BSLASHSmartcite] = ACTIONS(5013), - [anon_sym_BSLASHsupercite] = ACTIONS(5013), - [anon_sym_BSLASHautocite] = ACTIONS(5013), - [anon_sym_BSLASHAutocite] = ACTIONS(5013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), - [anon_sym_BSLASHvolcite] = ACTIONS(5013), - [anon_sym_BSLASHVolcite] = ACTIONS(5013), - [anon_sym_BSLASHpvolcite] = ACTIONS(5013), - [anon_sym_BSLASHPvolcite] = ACTIONS(5013), - [anon_sym_BSLASHfvolcite] = ACTIONS(5013), - [anon_sym_BSLASHftvolcite] = ACTIONS(5013), - [anon_sym_BSLASHsvolcite] = ACTIONS(5013), - [anon_sym_BSLASHSvolcite] = ACTIONS(5013), - [anon_sym_BSLASHtvolcite] = ACTIONS(5013), - [anon_sym_BSLASHTvolcite] = ACTIONS(5013), - [anon_sym_BSLASHavolcite] = ACTIONS(5013), - [anon_sym_BSLASHAvolcite] = ACTIONS(5013), - [anon_sym_BSLASHnotecite] = ACTIONS(5013), - [anon_sym_BSLASHNotecite] = ACTIONS(5013), - [anon_sym_BSLASHpnotecite] = ACTIONS(5013), - [anon_sym_BSLASHPnotecite] = ACTIONS(5013), - [anon_sym_BSLASHfnotecite] = ACTIONS(5013), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [anon_sym_BSLASHref] = ACTIONS(5013), - [anon_sym_BSLASHeqref] = ACTIONS(5013), - [anon_sym_BSLASHvref] = ACTIONS(5013), - [anon_sym_BSLASHVref] = ACTIONS(5013), - [anon_sym_BSLASHautoref] = ACTIONS(5013), - [anon_sym_BSLASHpageref] = ACTIONS(5013), - [anon_sym_BSLASHcref] = ACTIONS(5013), - [anon_sym_BSLASHCref] = ACTIONS(5013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnameCref] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), - [anon_sym_BSLASHlabelcref] = ACTIONS(5013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange] = ACTIONS(5013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), - [anon_sym_BSLASHnewlabel] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand] = ACTIONS(5013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), - [anon_sym_BSLASHdef] = ACTIONS(5013), - [anon_sym_BSLASHlet] = ACTIONS(5013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), - [anon_sym_BSLASHgls] = ACTIONS(5013), - [anon_sym_BSLASHGls] = ACTIONS(5013), - [anon_sym_BSLASHGLS] = ACTIONS(5013), - [anon_sym_BSLASHglspl] = ACTIONS(5013), - [anon_sym_BSLASHGlspl] = ACTIONS(5013), - [anon_sym_BSLASHGLSpl] = ACTIONS(5013), - [anon_sym_BSLASHglsdisp] = ACTIONS(5013), - [anon_sym_BSLASHglslink] = ACTIONS(5013), - [anon_sym_BSLASHglstext] = ACTIONS(5013), - [anon_sym_BSLASHGlstext] = ACTIONS(5013), - [anon_sym_BSLASHGLStext] = ACTIONS(5013), - [anon_sym_BSLASHglsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), - [anon_sym_BSLASHglsplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSplural] = ACTIONS(5013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), - [anon_sym_BSLASHglsname] = ACTIONS(5013), - [anon_sym_BSLASHGlsname] = ACTIONS(5013), - [anon_sym_BSLASHGLSname] = ACTIONS(5013), - [anon_sym_BSLASHglssymbol] = ACTIONS(5013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), - [anon_sym_BSLASHglsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), - [anon_sym_BSLASHglsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), - [anon_sym_BSLASHglsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), - [anon_sym_BSLASHglsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), - [anon_sym_BSLASHglsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), - [anon_sym_BSLASHnewacronym] = ACTIONS(5013), - [anon_sym_BSLASHacrshort] = ACTIONS(5013), - [anon_sym_BSLASHAcrshort] = ACTIONS(5013), - [anon_sym_BSLASHACRshort] = ACTIONS(5013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), - [anon_sym_BSLASHacrlong] = ACTIONS(5013), - [anon_sym_BSLASHAcrlong] = ACTIONS(5013), - [anon_sym_BSLASHACRlong] = ACTIONS(5013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), - [anon_sym_BSLASHacrfull] = ACTIONS(5013), - [anon_sym_BSLASHAcrfull] = ACTIONS(5013), - [anon_sym_BSLASHACRfull] = ACTIONS(5013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), - [anon_sym_BSLASHacs] = ACTIONS(5013), - [anon_sym_BSLASHAcs] = ACTIONS(5013), - [anon_sym_BSLASHacsp] = ACTIONS(5013), - [anon_sym_BSLASHAcsp] = ACTIONS(5013), - [anon_sym_BSLASHacl] = ACTIONS(5013), - [anon_sym_BSLASHAcl] = ACTIONS(5013), - [anon_sym_BSLASHaclp] = ACTIONS(5013), - [anon_sym_BSLASHAclp] = ACTIONS(5013), - [anon_sym_BSLASHacf] = ACTIONS(5013), - [anon_sym_BSLASHAcf] = ACTIONS(5013), - [anon_sym_BSLASHacfp] = ACTIONS(5013), - [anon_sym_BSLASHAcfp] = ACTIONS(5013), - [anon_sym_BSLASHac] = ACTIONS(5013), - [anon_sym_BSLASHAc] = ACTIONS(5013), - [anon_sym_BSLASHacp] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), - [anon_sym_BSLASHcolor] = ACTIONS(5013), - [anon_sym_BSLASHcolorbox] = ACTIONS(5013), - [anon_sym_BSLASHtextcolor] = ACTIONS(5013), - [anon_sym_BSLASHpagecolor] = ACTIONS(5013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [sym_command_name] = ACTIONS(5092), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [sym_word] = ACTIONS(5092), + [sym_placeholder] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym__] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_BANG] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_SQUOTE] = ACTIONS(5092), + [anon_sym_BSLASHusepackage] = ACTIONS(5092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5092), + [anon_sym_BSLASHinclude] = ACTIONS(5092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5092), + [anon_sym_BSLASHinput] = ACTIONS(5092), + [anon_sym_BSLASHsubfile] = ACTIONS(5092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5092), + [anon_sym_BSLASHbibliography] = ACTIONS(5092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5092), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5092), + [anon_sym_BSLASHimport] = ACTIONS(5092), + [anon_sym_BSLASHsubimport] = ACTIONS(5092), + [anon_sym_BSLASHinputfrom] = ACTIONS(5092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5092), + [anon_sym_BSLASHincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5092), + [anon_sym_BSLASHcaption] = ACTIONS(5092), + [anon_sym_BSLASHcite] = ACTIONS(5092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCite] = ACTIONS(5092), + [anon_sym_BSLASHnocite] = ACTIONS(5092), + [anon_sym_BSLASHcitet] = ACTIONS(5092), + [anon_sym_BSLASHcitep] = ACTIONS(5092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteauthor] = ACTIONS(5092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitetitle] = ACTIONS(5092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteyear] = ACTIONS(5092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5090), + [anon_sym_BSLASHcitedate] = ACTIONS(5092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5090), + [anon_sym_BSLASHciteurl] = ACTIONS(5092), + [anon_sym_BSLASHfullcite] = ACTIONS(5092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5092), + [anon_sym_BSLASHcitealt] = ACTIONS(5092), + [anon_sym_BSLASHcitealp] = ACTIONS(5092), + [anon_sym_BSLASHcitetext] = ACTIONS(5092), + [anon_sym_BSLASHparencite] = ACTIONS(5092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHParencite] = ACTIONS(5092), + [anon_sym_BSLASHfootcite] = ACTIONS(5092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5092), + [anon_sym_BSLASHtextcite] = ACTIONS(5092), + [anon_sym_BSLASHTextcite] = ACTIONS(5092), + [anon_sym_BSLASHsmartcite] = ACTIONS(5092), + [anon_sym_BSLASHSmartcite] = ACTIONS(5092), + [anon_sym_BSLASHsupercite] = ACTIONS(5092), + [anon_sym_BSLASHautocite] = ACTIONS(5092), + [anon_sym_BSLASHAutocite] = ACTIONS(5092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5090), + [anon_sym_BSLASHvolcite] = ACTIONS(5092), + [anon_sym_BSLASHVolcite] = ACTIONS(5092), + [anon_sym_BSLASHpvolcite] = ACTIONS(5092), + [anon_sym_BSLASHPvolcite] = ACTIONS(5092), + [anon_sym_BSLASHfvolcite] = ACTIONS(5092), + [anon_sym_BSLASHftvolcite] = ACTIONS(5092), + [anon_sym_BSLASHsvolcite] = ACTIONS(5092), + [anon_sym_BSLASHSvolcite] = ACTIONS(5092), + [anon_sym_BSLASHtvolcite] = ACTIONS(5092), + [anon_sym_BSLASHTvolcite] = ACTIONS(5092), + [anon_sym_BSLASHavolcite] = ACTIONS(5092), + [anon_sym_BSLASHAvolcite] = ACTIONS(5092), + [anon_sym_BSLASHnotecite] = ACTIONS(5092), + [anon_sym_BSLASHNotecite] = ACTIONS(5092), + [anon_sym_BSLASHpnotecite] = ACTIONS(5092), + [anon_sym_BSLASHPnotecite] = ACTIONS(5092), + [anon_sym_BSLASHfnotecite] = ACTIONS(5092), + [anon_sym_BSLASHlabel] = ACTIONS(5092), + [anon_sym_BSLASHref] = ACTIONS(5092), + [anon_sym_BSLASHeqref] = ACTIONS(5092), + [anon_sym_BSLASHvref] = ACTIONS(5092), + [anon_sym_BSLASHVref] = ACTIONS(5092), + [anon_sym_BSLASHautoref] = ACTIONS(5092), + [anon_sym_BSLASHpageref] = ACTIONS(5092), + [anon_sym_BSLASHcref] = ACTIONS(5092), + [anon_sym_BSLASHCref] = ACTIONS(5092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnameCref] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5092), + [anon_sym_BSLASHlabelcref] = ACTIONS(5092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange] = ACTIONS(5092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHCrefrange] = ACTIONS(5092), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5090), + [anon_sym_BSLASHnewlabel] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand] = ACTIONS(5092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5090), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdef] = ACTIONS(5092), + [anon_sym_BSLASHlet] = ACTIONS(5092), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5092), + [anon_sym_BSLASHgls] = ACTIONS(5092), + [anon_sym_BSLASHGls] = ACTIONS(5092), + [anon_sym_BSLASHGLS] = ACTIONS(5092), + [anon_sym_BSLASHglspl] = ACTIONS(5092), + [anon_sym_BSLASHGlspl] = ACTIONS(5092), + [anon_sym_BSLASHGLSpl] = ACTIONS(5092), + [anon_sym_BSLASHglsdisp] = ACTIONS(5092), + [anon_sym_BSLASHglslink] = ACTIONS(5092), + [anon_sym_BSLASHglstext] = ACTIONS(5092), + [anon_sym_BSLASHGlstext] = ACTIONS(5092), + [anon_sym_BSLASHGLStext] = ACTIONS(5092), + [anon_sym_BSLASHglsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5092), + [anon_sym_BSLASHglsplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSplural] = ACTIONS(5092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5092), + [anon_sym_BSLASHglsname] = ACTIONS(5092), + [anon_sym_BSLASHGlsname] = ACTIONS(5092), + [anon_sym_BSLASHGLSname] = ACTIONS(5092), + [anon_sym_BSLASHglssymbol] = ACTIONS(5092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5092), + [anon_sym_BSLASHglsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5092), + [anon_sym_BSLASHglsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5092), + [anon_sym_BSLASHglsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5092), + [anon_sym_BSLASHglsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5092), + [anon_sym_BSLASHglsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5092), + [anon_sym_BSLASHnewacronym] = ACTIONS(5092), + [anon_sym_BSLASHacrshort] = ACTIONS(5092), + [anon_sym_BSLASHAcrshort] = ACTIONS(5092), + [anon_sym_BSLASHACRshort] = ACTIONS(5092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5092), + [anon_sym_BSLASHacrlong] = ACTIONS(5092), + [anon_sym_BSLASHAcrlong] = ACTIONS(5092), + [anon_sym_BSLASHACRlong] = ACTIONS(5092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5092), + [anon_sym_BSLASHacrfull] = ACTIONS(5092), + [anon_sym_BSLASHAcrfull] = ACTIONS(5092), + [anon_sym_BSLASHACRfull] = ACTIONS(5092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5092), + [anon_sym_BSLASHacs] = ACTIONS(5092), + [anon_sym_BSLASHAcs] = ACTIONS(5092), + [anon_sym_BSLASHacsp] = ACTIONS(5092), + [anon_sym_BSLASHAcsp] = ACTIONS(5092), + [anon_sym_BSLASHacl] = ACTIONS(5092), + [anon_sym_BSLASHAcl] = ACTIONS(5092), + [anon_sym_BSLASHaclp] = ACTIONS(5092), + [anon_sym_BSLASHAclp] = ACTIONS(5092), + [anon_sym_BSLASHacf] = ACTIONS(5092), + [anon_sym_BSLASHAcf] = ACTIONS(5092), + [anon_sym_BSLASHacfp] = ACTIONS(5092), + [anon_sym_BSLASHAcfp] = ACTIONS(5092), + [anon_sym_BSLASHac] = ACTIONS(5092), + [anon_sym_BSLASHAc] = ACTIONS(5092), + [anon_sym_BSLASHacp] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5092), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5092), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5090), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5092), + [anon_sym_BSLASHcolor] = ACTIONS(5092), + [anon_sym_BSLASHcolorbox] = ACTIONS(5092), + [anon_sym_BSLASHtextcolor] = ACTIONS(5092), + [anon_sym_BSLASHpagecolor] = ACTIONS(5092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5092), }, [1543] = { - [sym_command_name] = ACTIONS(5017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [sym_word] = ACTIONS(5017), - [sym_placeholder] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym__] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_COLON] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5017), - [anon_sym_BSLASHusepackage] = ACTIONS(5017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), - [anon_sym_BSLASHinclude] = ACTIONS(5017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), - [anon_sym_BSLASHinput] = ACTIONS(5017), - [anon_sym_BSLASHsubfile] = ACTIONS(5017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), - [anon_sym_BSLASHbibliography] = ACTIONS(5017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), - [anon_sym_BSLASHincludesvg] = ACTIONS(5017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), - [anon_sym_BSLASHimport] = ACTIONS(5017), - [anon_sym_BSLASHsubimport] = ACTIONS(5017), - [anon_sym_BSLASHinputfrom] = ACTIONS(5017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), - [anon_sym_BSLASHincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), - [anon_sym_BSLASHcaption] = ACTIONS(5017), - [anon_sym_BSLASHcite] = ACTIONS(5017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCite] = ACTIONS(5017), - [anon_sym_BSLASHnocite] = ACTIONS(5017), - [anon_sym_BSLASHcitet] = ACTIONS(5017), - [anon_sym_BSLASHcitep] = ACTIONS(5017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteyear] = ACTIONS(5017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), - [anon_sym_BSLASHcitedate] = ACTIONS(5017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), - [anon_sym_BSLASHciteurl] = ACTIONS(5017), - [anon_sym_BSLASHfullcite] = ACTIONS(5017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), - [anon_sym_BSLASHcitealt] = ACTIONS(5017), - [anon_sym_BSLASHcitealp] = ACTIONS(5017), - [anon_sym_BSLASHcitetext] = ACTIONS(5017), - [anon_sym_BSLASHparencite] = ACTIONS(5017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHParencite] = ACTIONS(5017), - [anon_sym_BSLASHfootcite] = ACTIONS(5017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), - [anon_sym_BSLASHtextcite] = ACTIONS(5017), - [anon_sym_BSLASHTextcite] = ACTIONS(5017), - [anon_sym_BSLASHsmartcite] = ACTIONS(5017), - [anon_sym_BSLASHSmartcite] = ACTIONS(5017), - [anon_sym_BSLASHsupercite] = ACTIONS(5017), - [anon_sym_BSLASHautocite] = ACTIONS(5017), - [anon_sym_BSLASHAutocite] = ACTIONS(5017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), - [anon_sym_BSLASHvolcite] = ACTIONS(5017), - [anon_sym_BSLASHVolcite] = ACTIONS(5017), - [anon_sym_BSLASHpvolcite] = ACTIONS(5017), - [anon_sym_BSLASHPvolcite] = ACTIONS(5017), - [anon_sym_BSLASHfvolcite] = ACTIONS(5017), - [anon_sym_BSLASHftvolcite] = ACTIONS(5017), - [anon_sym_BSLASHsvolcite] = ACTIONS(5017), - [anon_sym_BSLASHSvolcite] = ACTIONS(5017), - [anon_sym_BSLASHtvolcite] = ACTIONS(5017), - [anon_sym_BSLASHTvolcite] = ACTIONS(5017), - [anon_sym_BSLASHavolcite] = ACTIONS(5017), - [anon_sym_BSLASHAvolcite] = ACTIONS(5017), - [anon_sym_BSLASHnotecite] = ACTIONS(5017), - [anon_sym_BSLASHNotecite] = ACTIONS(5017), - [anon_sym_BSLASHpnotecite] = ACTIONS(5017), - [anon_sym_BSLASHPnotecite] = ACTIONS(5017), - [anon_sym_BSLASHfnotecite] = ACTIONS(5017), - [anon_sym_BSLASHlabel] = ACTIONS(5017), - [anon_sym_BSLASHref] = ACTIONS(5017), - [anon_sym_BSLASHeqref] = ACTIONS(5017), - [anon_sym_BSLASHvref] = ACTIONS(5017), - [anon_sym_BSLASHVref] = ACTIONS(5017), - [anon_sym_BSLASHautoref] = ACTIONS(5017), - [anon_sym_BSLASHpageref] = ACTIONS(5017), - [anon_sym_BSLASHcref] = ACTIONS(5017), - [anon_sym_BSLASHCref] = ACTIONS(5017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnameCref] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), - [anon_sym_BSLASHlabelcref] = ACTIONS(5017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange] = ACTIONS(5017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), - [anon_sym_BSLASHnewlabel] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand] = ACTIONS(5017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), - [anon_sym_BSLASHdef] = ACTIONS(5017), - [anon_sym_BSLASHlet] = ACTIONS(5017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), - [anon_sym_BSLASHgls] = ACTIONS(5017), - [anon_sym_BSLASHGls] = ACTIONS(5017), - [anon_sym_BSLASHGLS] = ACTIONS(5017), - [anon_sym_BSLASHglspl] = ACTIONS(5017), - [anon_sym_BSLASHGlspl] = ACTIONS(5017), - [anon_sym_BSLASHGLSpl] = ACTIONS(5017), - [anon_sym_BSLASHglsdisp] = ACTIONS(5017), - [anon_sym_BSLASHglslink] = ACTIONS(5017), - [anon_sym_BSLASHglstext] = ACTIONS(5017), - [anon_sym_BSLASHGlstext] = ACTIONS(5017), - [anon_sym_BSLASHGLStext] = ACTIONS(5017), - [anon_sym_BSLASHglsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), - [anon_sym_BSLASHglsplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSplural] = ACTIONS(5017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), - [anon_sym_BSLASHglsname] = ACTIONS(5017), - [anon_sym_BSLASHGlsname] = ACTIONS(5017), - [anon_sym_BSLASHGLSname] = ACTIONS(5017), - [anon_sym_BSLASHglssymbol] = ACTIONS(5017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), - [anon_sym_BSLASHglsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), - [anon_sym_BSLASHglsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), - [anon_sym_BSLASHglsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), - [anon_sym_BSLASHglsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), - [anon_sym_BSLASHglsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), - [anon_sym_BSLASHnewacronym] = ACTIONS(5017), - [anon_sym_BSLASHacrshort] = ACTIONS(5017), - [anon_sym_BSLASHAcrshort] = ACTIONS(5017), - [anon_sym_BSLASHACRshort] = ACTIONS(5017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), - [anon_sym_BSLASHacrlong] = ACTIONS(5017), - [anon_sym_BSLASHAcrlong] = ACTIONS(5017), - [anon_sym_BSLASHACRlong] = ACTIONS(5017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), - [anon_sym_BSLASHacrfull] = ACTIONS(5017), - [anon_sym_BSLASHAcrfull] = ACTIONS(5017), - [anon_sym_BSLASHACRfull] = ACTIONS(5017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), - [anon_sym_BSLASHacs] = ACTIONS(5017), - [anon_sym_BSLASHAcs] = ACTIONS(5017), - [anon_sym_BSLASHacsp] = ACTIONS(5017), - [anon_sym_BSLASHAcsp] = ACTIONS(5017), - [anon_sym_BSLASHacl] = ACTIONS(5017), - [anon_sym_BSLASHAcl] = ACTIONS(5017), - [anon_sym_BSLASHaclp] = ACTIONS(5017), - [anon_sym_BSLASHAclp] = ACTIONS(5017), - [anon_sym_BSLASHacf] = ACTIONS(5017), - [anon_sym_BSLASHAcf] = ACTIONS(5017), - [anon_sym_BSLASHacfp] = ACTIONS(5017), - [anon_sym_BSLASHAcfp] = ACTIONS(5017), - [anon_sym_BSLASHac] = ACTIONS(5017), - [anon_sym_BSLASHAc] = ACTIONS(5017), - [anon_sym_BSLASHacp] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), - [anon_sym_BSLASHcolor] = ACTIONS(5017), - [anon_sym_BSLASHcolorbox] = ACTIONS(5017), - [anon_sym_BSLASHtextcolor] = ACTIONS(5017), - [anon_sym_BSLASHpagecolor] = ACTIONS(5017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [sym_command_name] = ACTIONS(5096), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [sym_word] = ACTIONS(5096), + [sym_placeholder] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym__] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_BANG] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_SQUOTE] = ACTIONS(5096), + [anon_sym_BSLASHusepackage] = ACTIONS(5096), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5096), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5096), + [anon_sym_BSLASHinclude] = ACTIONS(5096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5096), + [anon_sym_BSLASHinput] = ACTIONS(5096), + [anon_sym_BSLASHsubfile] = ACTIONS(5096), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [anon_sym_BSLASHbibliography] = ACTIONS(5096), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5096), + [anon_sym_BSLASHincludesvg] = ACTIONS(5096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5096), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5096), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5096), + [anon_sym_BSLASHimport] = ACTIONS(5096), + [anon_sym_BSLASHsubimport] = ACTIONS(5096), + [anon_sym_BSLASHinputfrom] = ACTIONS(5096), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5096), + [anon_sym_BSLASHincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5096), + [anon_sym_BSLASHcaption] = ACTIONS(5096), + [anon_sym_BSLASHcite] = ACTIONS(5096), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCite] = ACTIONS(5096), + [anon_sym_BSLASHnocite] = ACTIONS(5096), + [anon_sym_BSLASHcitet] = ACTIONS(5096), + [anon_sym_BSLASHcitep] = ACTIONS(5096), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteauthor] = ACTIONS(5096), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5096), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitetitle] = ACTIONS(5096), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteyear] = ACTIONS(5096), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5094), + [anon_sym_BSLASHcitedate] = ACTIONS(5096), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5094), + [anon_sym_BSLASHciteurl] = ACTIONS(5096), + [anon_sym_BSLASHfullcite] = ACTIONS(5096), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5096), + [anon_sym_BSLASHcitealt] = ACTIONS(5096), + [anon_sym_BSLASHcitealp] = ACTIONS(5096), + [anon_sym_BSLASHcitetext] = ACTIONS(5096), + [anon_sym_BSLASHparencite] = ACTIONS(5096), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHParencite] = ACTIONS(5096), + [anon_sym_BSLASHfootcite] = ACTIONS(5096), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5096), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5096), + [anon_sym_BSLASHtextcite] = ACTIONS(5096), + [anon_sym_BSLASHTextcite] = ACTIONS(5096), + [anon_sym_BSLASHsmartcite] = ACTIONS(5096), + [anon_sym_BSLASHSmartcite] = ACTIONS(5096), + [anon_sym_BSLASHsupercite] = ACTIONS(5096), + [anon_sym_BSLASHautocite] = ACTIONS(5096), + [anon_sym_BSLASHAutocite] = ACTIONS(5096), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5094), + [anon_sym_BSLASHvolcite] = ACTIONS(5096), + [anon_sym_BSLASHVolcite] = ACTIONS(5096), + [anon_sym_BSLASHpvolcite] = ACTIONS(5096), + [anon_sym_BSLASHPvolcite] = ACTIONS(5096), + [anon_sym_BSLASHfvolcite] = ACTIONS(5096), + [anon_sym_BSLASHftvolcite] = ACTIONS(5096), + [anon_sym_BSLASHsvolcite] = ACTIONS(5096), + [anon_sym_BSLASHSvolcite] = ACTIONS(5096), + [anon_sym_BSLASHtvolcite] = ACTIONS(5096), + [anon_sym_BSLASHTvolcite] = ACTIONS(5096), + [anon_sym_BSLASHavolcite] = ACTIONS(5096), + [anon_sym_BSLASHAvolcite] = ACTIONS(5096), + [anon_sym_BSLASHnotecite] = ACTIONS(5096), + [anon_sym_BSLASHNotecite] = ACTIONS(5096), + [anon_sym_BSLASHpnotecite] = ACTIONS(5096), + [anon_sym_BSLASHPnotecite] = ACTIONS(5096), + [anon_sym_BSLASHfnotecite] = ACTIONS(5096), + [anon_sym_BSLASHlabel] = ACTIONS(5096), + [anon_sym_BSLASHref] = ACTIONS(5096), + [anon_sym_BSLASHeqref] = ACTIONS(5096), + [anon_sym_BSLASHvref] = ACTIONS(5096), + [anon_sym_BSLASHVref] = ACTIONS(5096), + [anon_sym_BSLASHautoref] = ACTIONS(5096), + [anon_sym_BSLASHpageref] = ACTIONS(5096), + [anon_sym_BSLASHcref] = ACTIONS(5096), + [anon_sym_BSLASHCref] = ACTIONS(5096), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnameCref] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5096), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5096), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5096), + [anon_sym_BSLASHlabelcref] = ACTIONS(5096), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange] = ACTIONS(5096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHCrefrange] = ACTIONS(5096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5094), + [anon_sym_BSLASHnewlabel] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand] = ACTIONS(5096), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5096), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5096), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5094), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5096), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdef] = ACTIONS(5096), + [anon_sym_BSLASHlet] = ACTIONS(5096), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5096), + [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(5096), + [anon_sym_BSLASHacrshort] = ACTIONS(5096), + [anon_sym_BSLASHAcrshort] = ACTIONS(5096), + [anon_sym_BSLASHACRshort] = ACTIONS(5096), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5096), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5096), + [anon_sym_BSLASHacrlong] = ACTIONS(5096), + [anon_sym_BSLASHAcrlong] = ACTIONS(5096), + [anon_sym_BSLASHACRlong] = ACTIONS(5096), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5096), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5096), + [anon_sym_BSLASHacrfull] = ACTIONS(5096), + [anon_sym_BSLASHAcrfull] = ACTIONS(5096), + [anon_sym_BSLASHACRfull] = ACTIONS(5096), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5096), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5096), + [anon_sym_BSLASHacs] = ACTIONS(5096), + [anon_sym_BSLASHAcs] = ACTIONS(5096), + [anon_sym_BSLASHacsp] = ACTIONS(5096), + [anon_sym_BSLASHAcsp] = ACTIONS(5096), + [anon_sym_BSLASHacl] = ACTIONS(5096), + [anon_sym_BSLASHAcl] = ACTIONS(5096), + [anon_sym_BSLASHaclp] = ACTIONS(5096), + [anon_sym_BSLASHAclp] = ACTIONS(5096), + [anon_sym_BSLASHacf] = ACTIONS(5096), + [anon_sym_BSLASHAcf] = ACTIONS(5096), + [anon_sym_BSLASHacfp] = ACTIONS(5096), + [anon_sym_BSLASHAcfp] = ACTIONS(5096), + [anon_sym_BSLASHac] = ACTIONS(5096), + [anon_sym_BSLASHAc] = ACTIONS(5096), + [anon_sym_BSLASHacp] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5096), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5096), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5096), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5096), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5096), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5094), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5096), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5096), + [anon_sym_BSLASHcolor] = ACTIONS(5096), + [anon_sym_BSLASHcolorbox] = ACTIONS(5096), + [anon_sym_BSLASHtextcolor] = ACTIONS(5096), + [anon_sym_BSLASHpagecolor] = ACTIONS(5096), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5096), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5096), }, [1544] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5201), - [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), + [sym_command_name] = ACTIONS(5280), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5280), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_RBRACE] = ACTIONS(5278), + [sym_word] = ACTIONS(5280), + [sym_placeholder] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5280), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5280), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym__] = ACTIONS(5280), + [anon_sym_LT] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5280), + [anon_sym_BANG] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_SQUOTE] = ACTIONS(5280), + [anon_sym_BSLASHusepackage] = ACTIONS(5280), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5280), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5280), + [anon_sym_BSLASHinclude] = ACTIONS(5280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5280), + [anon_sym_BSLASHinput] = ACTIONS(5280), + [anon_sym_BSLASHsubfile] = ACTIONS(5280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5280), + [anon_sym_BSLASHbibliography] = ACTIONS(5280), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5280), + [anon_sym_BSLASHincludesvg] = ACTIONS(5280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5280), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5280), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5280), + [anon_sym_BSLASHimport] = ACTIONS(5280), + [anon_sym_BSLASHsubimport] = ACTIONS(5280), + [anon_sym_BSLASHinputfrom] = ACTIONS(5280), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5280), + [anon_sym_BSLASHincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5280), + [anon_sym_BSLASHcaption] = ACTIONS(5280), + [anon_sym_BSLASHcite] = ACTIONS(5280), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCite] = ACTIONS(5280), + [anon_sym_BSLASHnocite] = ACTIONS(5280), + [anon_sym_BSLASHcitet] = ACTIONS(5280), + [anon_sym_BSLASHcitep] = ACTIONS(5280), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteauthor] = ACTIONS(5280), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5280), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitetitle] = ACTIONS(5280), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteyear] = ACTIONS(5280), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5278), + [anon_sym_BSLASHcitedate] = ACTIONS(5280), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5278), + [anon_sym_BSLASHciteurl] = ACTIONS(5280), + [anon_sym_BSLASHfullcite] = ACTIONS(5280), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5280), + [anon_sym_BSLASHcitealt] = ACTIONS(5280), + [anon_sym_BSLASHcitealp] = ACTIONS(5280), + [anon_sym_BSLASHcitetext] = ACTIONS(5280), + [anon_sym_BSLASHparencite] = ACTIONS(5280), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHParencite] = ACTIONS(5280), + [anon_sym_BSLASHfootcite] = ACTIONS(5280), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5280), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5280), + [anon_sym_BSLASHtextcite] = ACTIONS(5280), + [anon_sym_BSLASHTextcite] = ACTIONS(5280), + [anon_sym_BSLASHsmartcite] = ACTIONS(5280), + [anon_sym_BSLASHSmartcite] = ACTIONS(5280), + [anon_sym_BSLASHsupercite] = ACTIONS(5280), + [anon_sym_BSLASHautocite] = ACTIONS(5280), + [anon_sym_BSLASHAutocite] = ACTIONS(5280), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5278), + [anon_sym_BSLASHvolcite] = ACTIONS(5280), + [anon_sym_BSLASHVolcite] = ACTIONS(5280), + [anon_sym_BSLASHpvolcite] = ACTIONS(5280), + [anon_sym_BSLASHPvolcite] = ACTIONS(5280), + [anon_sym_BSLASHfvolcite] = ACTIONS(5280), + [anon_sym_BSLASHftvolcite] = ACTIONS(5280), + [anon_sym_BSLASHsvolcite] = ACTIONS(5280), + [anon_sym_BSLASHSvolcite] = ACTIONS(5280), + [anon_sym_BSLASHtvolcite] = ACTIONS(5280), + [anon_sym_BSLASHTvolcite] = ACTIONS(5280), + [anon_sym_BSLASHavolcite] = ACTIONS(5280), + [anon_sym_BSLASHAvolcite] = ACTIONS(5280), + [anon_sym_BSLASHnotecite] = ACTIONS(5280), + [anon_sym_BSLASHNotecite] = ACTIONS(5280), + [anon_sym_BSLASHpnotecite] = ACTIONS(5280), + [anon_sym_BSLASHPnotecite] = ACTIONS(5280), + [anon_sym_BSLASHfnotecite] = ACTIONS(5280), + [anon_sym_BSLASHlabel] = ACTIONS(5280), + [anon_sym_BSLASHref] = ACTIONS(5280), + [anon_sym_BSLASHeqref] = ACTIONS(5280), + [anon_sym_BSLASHvref] = ACTIONS(5280), + [anon_sym_BSLASHVref] = ACTIONS(5280), + [anon_sym_BSLASHautoref] = ACTIONS(5280), + [anon_sym_BSLASHpageref] = ACTIONS(5280), + [anon_sym_BSLASHcref] = ACTIONS(5280), + [anon_sym_BSLASHCref] = ACTIONS(5280), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnameCref] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5280), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5280), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5280), + [anon_sym_BSLASHlabelcref] = ACTIONS(5280), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange] = ACTIONS(5280), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHCrefrange] = ACTIONS(5280), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5278), + [anon_sym_BSLASHnewlabel] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand] = ACTIONS(5280), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5280), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5280), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5278), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5280), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdef] = ACTIONS(5280), + [anon_sym_BSLASHlet] = ACTIONS(5280), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5280), + [anon_sym_BSLASHGls] = ACTIONS(5280), + [anon_sym_BSLASHGLS] = ACTIONS(5280), + [anon_sym_BSLASHglspl] = ACTIONS(5280), + [anon_sym_BSLASHGlspl] = ACTIONS(5280), + [anon_sym_BSLASHGLSpl] = ACTIONS(5280), + [anon_sym_BSLASHglsdisp] = ACTIONS(5280), + [anon_sym_BSLASHglslink] = ACTIONS(5280), + [anon_sym_BSLASHglstext] = ACTIONS(5280), + [anon_sym_BSLASHGlstext] = ACTIONS(5280), + [anon_sym_BSLASHGLStext] = ACTIONS(5280), + [anon_sym_BSLASHglsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5280), + [anon_sym_BSLASHglsplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSplural] = ACTIONS(5280), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5280), + [anon_sym_BSLASHglsname] = ACTIONS(5280), + [anon_sym_BSLASHGlsname] = ACTIONS(5280), + [anon_sym_BSLASHGLSname] = ACTIONS(5280), + [anon_sym_BSLASHglssymbol] = ACTIONS(5280), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5280), + [anon_sym_BSLASHglsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5280), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5280), + [anon_sym_BSLASHglsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5280), + [anon_sym_BSLASHglsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5280), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5280), + [anon_sym_BSLASHglsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5280), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5280), + [anon_sym_BSLASHglsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5280), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5280), + [anon_sym_BSLASHnewacronym] = ACTIONS(5280), + [anon_sym_BSLASHacrshort] = ACTIONS(5280), + [anon_sym_BSLASHAcrshort] = ACTIONS(5280), + [anon_sym_BSLASHACRshort] = ACTIONS(5280), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5280), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5280), + [anon_sym_BSLASHacrlong] = ACTIONS(5280), + [anon_sym_BSLASHAcrlong] = ACTIONS(5280), + [anon_sym_BSLASHACRlong] = ACTIONS(5280), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5280), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5280), + [anon_sym_BSLASHacrfull] = ACTIONS(5280), + [anon_sym_BSLASHAcrfull] = ACTIONS(5280), + [anon_sym_BSLASHACRfull] = ACTIONS(5280), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5280), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5280), + [anon_sym_BSLASHacs] = ACTIONS(5280), + [anon_sym_BSLASHAcs] = ACTIONS(5280), + [anon_sym_BSLASHacsp] = ACTIONS(5280), + [anon_sym_BSLASHAcsp] = ACTIONS(5280), + [anon_sym_BSLASHacl] = ACTIONS(5280), + [anon_sym_BSLASHAcl] = ACTIONS(5280), + [anon_sym_BSLASHaclp] = ACTIONS(5280), + [anon_sym_BSLASHAclp] = ACTIONS(5280), + [anon_sym_BSLASHacf] = ACTIONS(5280), + [anon_sym_BSLASHAcf] = ACTIONS(5280), + [anon_sym_BSLASHacfp] = ACTIONS(5280), + [anon_sym_BSLASHAcfp] = ACTIONS(5280), + [anon_sym_BSLASHac] = ACTIONS(5280), + [anon_sym_BSLASHAc] = ACTIONS(5280), + [anon_sym_BSLASHacp] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5280), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5280), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5280), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5280), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5280), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5278), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5280), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5280), + [anon_sym_BSLASHcolor] = ACTIONS(5280), + [anon_sym_BSLASHcolorbox] = ACTIONS(5280), + [anon_sym_BSLASHtextcolor] = ACTIONS(5280), + [anon_sym_BSLASHpagecolor] = ACTIONS(5280), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5280), }, [1545] = { - [sym_command_name] = ACTIONS(5313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5311), - [anon_sym_COMMA] = ACTIONS(5311), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5313), - [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), + [sym_command_name] = ACTIONS(5392), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5392), + [anon_sym_RBRACK] = ACTIONS(5390), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_RBRACE] = ACTIONS(5390), + [sym_word] = ACTIONS(5392), + [sym_placeholder] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5392), + [anon_sym_SLASH] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym__] = ACTIONS(5392), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_COLON] = ACTIONS(5392), + [anon_sym_SQUOTE] = ACTIONS(5392), + [anon_sym_BSLASHusepackage] = ACTIONS(5392), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5392), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5392), + [anon_sym_BSLASHinclude] = ACTIONS(5392), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5392), + [anon_sym_BSLASHinput] = ACTIONS(5392), + [anon_sym_BSLASHsubfile] = ACTIONS(5392), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5392), + [anon_sym_BSLASHbibliography] = ACTIONS(5392), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5392), + [anon_sym_BSLASHincludesvg] = ACTIONS(5392), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5392), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5392), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5392), + [anon_sym_BSLASHimport] = ACTIONS(5392), + [anon_sym_BSLASHsubimport] = ACTIONS(5392), + [anon_sym_BSLASHinputfrom] = ACTIONS(5392), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5392), + [anon_sym_BSLASHincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5392), + [anon_sym_BSLASHcaption] = ACTIONS(5392), + [anon_sym_BSLASHcite] = ACTIONS(5392), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCite] = ACTIONS(5392), + [anon_sym_BSLASHnocite] = ACTIONS(5392), + [anon_sym_BSLASHcitet] = ACTIONS(5392), + [anon_sym_BSLASHcitep] = ACTIONS(5392), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteauthor] = ACTIONS(5392), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5392), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitetitle] = ACTIONS(5392), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteyear] = ACTIONS(5392), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5390), + [anon_sym_BSLASHcitedate] = ACTIONS(5392), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5390), + [anon_sym_BSLASHciteurl] = ACTIONS(5392), + [anon_sym_BSLASHfullcite] = ACTIONS(5392), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5392), + [anon_sym_BSLASHcitealt] = ACTIONS(5392), + [anon_sym_BSLASHcitealp] = ACTIONS(5392), + [anon_sym_BSLASHcitetext] = ACTIONS(5392), + [anon_sym_BSLASHparencite] = ACTIONS(5392), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHParencite] = ACTIONS(5392), + [anon_sym_BSLASHfootcite] = ACTIONS(5392), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5392), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5392), + [anon_sym_BSLASHtextcite] = ACTIONS(5392), + [anon_sym_BSLASHTextcite] = ACTIONS(5392), + [anon_sym_BSLASHsmartcite] = ACTIONS(5392), + [anon_sym_BSLASHSmartcite] = ACTIONS(5392), + [anon_sym_BSLASHsupercite] = ACTIONS(5392), + [anon_sym_BSLASHautocite] = ACTIONS(5392), + [anon_sym_BSLASHAutocite] = ACTIONS(5392), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5390), + [anon_sym_BSLASHvolcite] = ACTIONS(5392), + [anon_sym_BSLASHVolcite] = ACTIONS(5392), + [anon_sym_BSLASHpvolcite] = ACTIONS(5392), + [anon_sym_BSLASHPvolcite] = ACTIONS(5392), + [anon_sym_BSLASHfvolcite] = ACTIONS(5392), + [anon_sym_BSLASHftvolcite] = ACTIONS(5392), + [anon_sym_BSLASHsvolcite] = ACTIONS(5392), + [anon_sym_BSLASHSvolcite] = ACTIONS(5392), + [anon_sym_BSLASHtvolcite] = ACTIONS(5392), + [anon_sym_BSLASHTvolcite] = ACTIONS(5392), + [anon_sym_BSLASHavolcite] = ACTIONS(5392), + [anon_sym_BSLASHAvolcite] = ACTIONS(5392), + [anon_sym_BSLASHnotecite] = ACTIONS(5392), + [anon_sym_BSLASHNotecite] = ACTIONS(5392), + [anon_sym_BSLASHpnotecite] = ACTIONS(5392), + [anon_sym_BSLASHPnotecite] = ACTIONS(5392), + [anon_sym_BSLASHfnotecite] = ACTIONS(5392), + [anon_sym_BSLASHlabel] = ACTIONS(5392), + [anon_sym_BSLASHref] = ACTIONS(5392), + [anon_sym_BSLASHeqref] = ACTIONS(5392), + [anon_sym_BSLASHvref] = ACTIONS(5392), + [anon_sym_BSLASHVref] = ACTIONS(5392), + [anon_sym_BSLASHautoref] = ACTIONS(5392), + [anon_sym_BSLASHpageref] = ACTIONS(5392), + [anon_sym_BSLASHcref] = ACTIONS(5392), + [anon_sym_BSLASHCref] = ACTIONS(5392), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnameCref] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5392), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5392), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5392), + [anon_sym_BSLASHlabelcref] = ACTIONS(5392), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange] = ACTIONS(5392), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange] = ACTIONS(5392), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5390), + [anon_sym_BSLASHnewlabel] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand] = ACTIONS(5392), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5392), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5392), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5390), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5392), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdef] = ACTIONS(5392), + [anon_sym_BSLASHlet] = ACTIONS(5392), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5392), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5392), + [anon_sym_BSLASHgls] = ACTIONS(5392), + [anon_sym_BSLASHGls] = ACTIONS(5392), + [anon_sym_BSLASHGLS] = ACTIONS(5392), + [anon_sym_BSLASHglspl] = ACTIONS(5392), + [anon_sym_BSLASHGlspl] = ACTIONS(5392), + [anon_sym_BSLASHGLSpl] = ACTIONS(5392), + [anon_sym_BSLASHglsdisp] = ACTIONS(5392), + [anon_sym_BSLASHglslink] = ACTIONS(5392), + [anon_sym_BSLASHglstext] = ACTIONS(5392), + [anon_sym_BSLASHGlstext] = ACTIONS(5392), + [anon_sym_BSLASHGLStext] = ACTIONS(5392), + [anon_sym_BSLASHglsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), + [anon_sym_BSLASHglsplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSplural] = ACTIONS(5392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), + [anon_sym_BSLASHglsname] = ACTIONS(5392), + [anon_sym_BSLASHGlsname] = ACTIONS(5392), + [anon_sym_BSLASHGLSname] = ACTIONS(5392), + [anon_sym_BSLASHglssymbol] = ACTIONS(5392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), + [anon_sym_BSLASHglsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), + [anon_sym_BSLASHglsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), + [anon_sym_BSLASHglsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), + [anon_sym_BSLASHglsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), + [anon_sym_BSLASHglsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), + [anon_sym_BSLASHnewacronym] = ACTIONS(5392), + [anon_sym_BSLASHacrshort] = ACTIONS(5392), + [anon_sym_BSLASHAcrshort] = ACTIONS(5392), + [anon_sym_BSLASHACRshort] = ACTIONS(5392), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5392), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5392), + [anon_sym_BSLASHacrlong] = ACTIONS(5392), + [anon_sym_BSLASHAcrlong] = ACTIONS(5392), + [anon_sym_BSLASHACRlong] = ACTIONS(5392), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5392), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5392), + [anon_sym_BSLASHacrfull] = ACTIONS(5392), + [anon_sym_BSLASHAcrfull] = ACTIONS(5392), + [anon_sym_BSLASHACRfull] = ACTIONS(5392), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5392), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5392), + [anon_sym_BSLASHacs] = ACTIONS(5392), + [anon_sym_BSLASHAcs] = ACTIONS(5392), + [anon_sym_BSLASHacsp] = ACTIONS(5392), + [anon_sym_BSLASHAcsp] = ACTIONS(5392), + [anon_sym_BSLASHacl] = ACTIONS(5392), + [anon_sym_BSLASHAcl] = ACTIONS(5392), + [anon_sym_BSLASHaclp] = ACTIONS(5392), + [anon_sym_BSLASHAclp] = ACTIONS(5392), + [anon_sym_BSLASHacf] = ACTIONS(5392), + [anon_sym_BSLASHAcf] = ACTIONS(5392), + [anon_sym_BSLASHacfp] = ACTIONS(5392), + [anon_sym_BSLASHAcfp] = ACTIONS(5392), + [anon_sym_BSLASHac] = ACTIONS(5392), + [anon_sym_BSLASHAc] = ACTIONS(5392), + [anon_sym_BSLASHacp] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5392), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5392), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5392), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5392), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5392), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5390), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5392), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5392), + [anon_sym_BSLASHcolor] = ACTIONS(5392), + [anon_sym_BSLASHcolorbox] = ACTIONS(5392), + [anon_sym_BSLASHtextcolor] = ACTIONS(5392), + [anon_sym_BSLASHpagecolor] = ACTIONS(5392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5392), }, [1546] = { - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [sym_command_name] = ACTIONS(5104), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5104), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_RBRACE] = ACTIONS(5102), + [sym_word] = ACTIONS(5104), + [sym_placeholder] = ACTIONS(5102), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym__] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_BANG] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_SQUOTE] = ACTIONS(5104), + [anon_sym_BSLASHusepackage] = ACTIONS(5104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5104), + [anon_sym_BSLASHinclude] = ACTIONS(5104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5104), + [anon_sym_BSLASHinput] = ACTIONS(5104), + [anon_sym_BSLASHsubfile] = ACTIONS(5104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5104), + [anon_sym_BSLASHbibliography] = ACTIONS(5104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5104), + [anon_sym_BSLASHincludesvg] = ACTIONS(5104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5104), + [anon_sym_BSLASHimport] = ACTIONS(5104), + [anon_sym_BSLASHsubimport] = ACTIONS(5104), + [anon_sym_BSLASHinputfrom] = ACTIONS(5104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5104), + [anon_sym_BSLASHincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5104), + [anon_sym_BSLASHcaption] = ACTIONS(5104), + [anon_sym_BSLASHcite] = ACTIONS(5104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCite] = ACTIONS(5104), + [anon_sym_BSLASHnocite] = ACTIONS(5104), + [anon_sym_BSLASHcitet] = ACTIONS(5104), + [anon_sym_BSLASHcitep] = ACTIONS(5104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteauthor] = ACTIONS(5104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitetitle] = ACTIONS(5104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteyear] = ACTIONS(5104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5102), + [anon_sym_BSLASHcitedate] = ACTIONS(5104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5102), + [anon_sym_BSLASHciteurl] = ACTIONS(5104), + [anon_sym_BSLASHfullcite] = ACTIONS(5104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5104), + [anon_sym_BSLASHcitealt] = ACTIONS(5104), + [anon_sym_BSLASHcitealp] = ACTIONS(5104), + [anon_sym_BSLASHcitetext] = ACTIONS(5104), + [anon_sym_BSLASHparencite] = ACTIONS(5104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHParencite] = ACTIONS(5104), + [anon_sym_BSLASHfootcite] = ACTIONS(5104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5104), + [anon_sym_BSLASHtextcite] = ACTIONS(5104), + [anon_sym_BSLASHTextcite] = ACTIONS(5104), + [anon_sym_BSLASHsmartcite] = ACTIONS(5104), + [anon_sym_BSLASHSmartcite] = ACTIONS(5104), + [anon_sym_BSLASHsupercite] = ACTIONS(5104), + [anon_sym_BSLASHautocite] = ACTIONS(5104), + [anon_sym_BSLASHAutocite] = ACTIONS(5104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5102), + [anon_sym_BSLASHvolcite] = ACTIONS(5104), + [anon_sym_BSLASHVolcite] = ACTIONS(5104), + [anon_sym_BSLASHpvolcite] = ACTIONS(5104), + [anon_sym_BSLASHPvolcite] = ACTIONS(5104), + [anon_sym_BSLASHfvolcite] = ACTIONS(5104), + [anon_sym_BSLASHftvolcite] = ACTIONS(5104), + [anon_sym_BSLASHsvolcite] = ACTIONS(5104), + [anon_sym_BSLASHSvolcite] = ACTIONS(5104), + [anon_sym_BSLASHtvolcite] = ACTIONS(5104), + [anon_sym_BSLASHTvolcite] = ACTIONS(5104), + [anon_sym_BSLASHavolcite] = ACTIONS(5104), + [anon_sym_BSLASHAvolcite] = ACTIONS(5104), + [anon_sym_BSLASHnotecite] = ACTIONS(5104), + [anon_sym_BSLASHNotecite] = ACTIONS(5104), + [anon_sym_BSLASHpnotecite] = ACTIONS(5104), + [anon_sym_BSLASHPnotecite] = ACTIONS(5104), + [anon_sym_BSLASHfnotecite] = ACTIONS(5104), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5104), + [anon_sym_BSLASHeqref] = ACTIONS(5104), + [anon_sym_BSLASHvref] = ACTIONS(5104), + [anon_sym_BSLASHVref] = ACTIONS(5104), + [anon_sym_BSLASHautoref] = ACTIONS(5104), + [anon_sym_BSLASHpageref] = ACTIONS(5104), + [anon_sym_BSLASHcref] = ACTIONS(5104), + [anon_sym_BSLASHCref] = ACTIONS(5104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnameCref] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5104), + [anon_sym_BSLASHlabelcref] = ACTIONS(5104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange] = ACTIONS(5104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHCrefrange] = ACTIONS(5104), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5102), + [anon_sym_BSLASHnewlabel] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand] = ACTIONS(5104), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5104), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5104), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5102), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdef] = ACTIONS(5104), + [anon_sym_BSLASHlet] = ACTIONS(5104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5104), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5104), + [anon_sym_BSLASHgls] = ACTIONS(5104), + [anon_sym_BSLASHGls] = ACTIONS(5104), + [anon_sym_BSLASHGLS] = ACTIONS(5104), + [anon_sym_BSLASHglspl] = ACTIONS(5104), + [anon_sym_BSLASHGlspl] = ACTIONS(5104), + [anon_sym_BSLASHGLSpl] = ACTIONS(5104), + [anon_sym_BSLASHglsdisp] = ACTIONS(5104), + [anon_sym_BSLASHglslink] = ACTIONS(5104), + [anon_sym_BSLASHglstext] = ACTIONS(5104), + [anon_sym_BSLASHGlstext] = ACTIONS(5104), + [anon_sym_BSLASHGLStext] = ACTIONS(5104), + [anon_sym_BSLASHglsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5104), + [anon_sym_BSLASHglsplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSplural] = ACTIONS(5104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5104), + [anon_sym_BSLASHglsname] = ACTIONS(5104), + [anon_sym_BSLASHGlsname] = ACTIONS(5104), + [anon_sym_BSLASHGLSname] = ACTIONS(5104), + [anon_sym_BSLASHglssymbol] = ACTIONS(5104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5104), + [anon_sym_BSLASHglsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5104), + [anon_sym_BSLASHglsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5104), + [anon_sym_BSLASHglsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5104), + [anon_sym_BSLASHglsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5104), + [anon_sym_BSLASHglsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5104), + [anon_sym_BSLASHnewacronym] = ACTIONS(5104), + [anon_sym_BSLASHacrshort] = ACTIONS(5104), + [anon_sym_BSLASHAcrshort] = ACTIONS(5104), + [anon_sym_BSLASHACRshort] = ACTIONS(5104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5104), + [anon_sym_BSLASHacrlong] = ACTIONS(5104), + [anon_sym_BSLASHAcrlong] = ACTIONS(5104), + [anon_sym_BSLASHACRlong] = ACTIONS(5104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5104), + [anon_sym_BSLASHacrfull] = ACTIONS(5104), + [anon_sym_BSLASHAcrfull] = ACTIONS(5104), + [anon_sym_BSLASHACRfull] = ACTIONS(5104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5104), + [anon_sym_BSLASHacs] = ACTIONS(5104), + [anon_sym_BSLASHAcs] = ACTIONS(5104), + [anon_sym_BSLASHacsp] = ACTIONS(5104), + [anon_sym_BSLASHAcsp] = ACTIONS(5104), + [anon_sym_BSLASHacl] = ACTIONS(5104), + [anon_sym_BSLASHAcl] = ACTIONS(5104), + [anon_sym_BSLASHaclp] = ACTIONS(5104), + [anon_sym_BSLASHAclp] = ACTIONS(5104), + [anon_sym_BSLASHacf] = ACTIONS(5104), + [anon_sym_BSLASHAcf] = ACTIONS(5104), + [anon_sym_BSLASHacfp] = ACTIONS(5104), + [anon_sym_BSLASHAcfp] = ACTIONS(5104), + [anon_sym_BSLASHac] = ACTIONS(5104), + [anon_sym_BSLASHAc] = ACTIONS(5104), + [anon_sym_BSLASHacp] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5104), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5104), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5102), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5104), + [anon_sym_BSLASHcolor] = ACTIONS(5104), + [anon_sym_BSLASHcolorbox] = ACTIONS(5104), + [anon_sym_BSLASHtextcolor] = ACTIONS(5104), + [anon_sym_BSLASHpagecolor] = ACTIONS(5104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5104), }, [1547] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [sym_command_name] = ACTIONS(5108), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5106), + [sym_word] = ACTIONS(5108), + [sym_placeholder] = ACTIONS(5106), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym__] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_BANG] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_SQUOTE] = ACTIONS(5108), + [anon_sym_BSLASHusepackage] = ACTIONS(5108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5108), + [anon_sym_BSLASHinclude] = ACTIONS(5108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5108), + [anon_sym_BSLASHinput] = ACTIONS(5108), + [anon_sym_BSLASHsubfile] = ACTIONS(5108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5108), + [anon_sym_BSLASHbibliography] = ACTIONS(5108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5108), + [anon_sym_BSLASHincludesvg] = ACTIONS(5108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5108), + [anon_sym_BSLASHimport] = ACTIONS(5108), + [anon_sym_BSLASHsubimport] = ACTIONS(5108), + [anon_sym_BSLASHinputfrom] = ACTIONS(5108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5108), + [anon_sym_BSLASHincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5108), + [anon_sym_BSLASHcaption] = ACTIONS(5108), + [anon_sym_BSLASHcite] = ACTIONS(5108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCite] = ACTIONS(5108), + [anon_sym_BSLASHnocite] = ACTIONS(5108), + [anon_sym_BSLASHcitet] = ACTIONS(5108), + [anon_sym_BSLASHcitep] = ACTIONS(5108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteauthor] = ACTIONS(5108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitetitle] = ACTIONS(5108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteyear] = ACTIONS(5108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5106), + [anon_sym_BSLASHcitedate] = ACTIONS(5108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5106), + [anon_sym_BSLASHciteurl] = ACTIONS(5108), + [anon_sym_BSLASHfullcite] = ACTIONS(5108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5108), + [anon_sym_BSLASHcitealt] = ACTIONS(5108), + [anon_sym_BSLASHcitealp] = ACTIONS(5108), + [anon_sym_BSLASHcitetext] = ACTIONS(5108), + [anon_sym_BSLASHparencite] = ACTIONS(5108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHParencite] = ACTIONS(5108), + [anon_sym_BSLASHfootcite] = ACTIONS(5108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5108), + [anon_sym_BSLASHtextcite] = ACTIONS(5108), + [anon_sym_BSLASHTextcite] = ACTIONS(5108), + [anon_sym_BSLASHsmartcite] = ACTIONS(5108), + [anon_sym_BSLASHSmartcite] = ACTIONS(5108), + [anon_sym_BSLASHsupercite] = ACTIONS(5108), + [anon_sym_BSLASHautocite] = ACTIONS(5108), + [anon_sym_BSLASHAutocite] = ACTIONS(5108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5106), + [anon_sym_BSLASHvolcite] = ACTIONS(5108), + [anon_sym_BSLASHVolcite] = ACTIONS(5108), + [anon_sym_BSLASHpvolcite] = ACTIONS(5108), + [anon_sym_BSLASHPvolcite] = ACTIONS(5108), + [anon_sym_BSLASHfvolcite] = ACTIONS(5108), + [anon_sym_BSLASHftvolcite] = ACTIONS(5108), + [anon_sym_BSLASHsvolcite] = ACTIONS(5108), + [anon_sym_BSLASHSvolcite] = ACTIONS(5108), + [anon_sym_BSLASHtvolcite] = ACTIONS(5108), + [anon_sym_BSLASHTvolcite] = ACTIONS(5108), + [anon_sym_BSLASHavolcite] = ACTIONS(5108), + [anon_sym_BSLASHAvolcite] = ACTIONS(5108), + [anon_sym_BSLASHnotecite] = ACTIONS(5108), + [anon_sym_BSLASHNotecite] = ACTIONS(5108), + [anon_sym_BSLASHpnotecite] = ACTIONS(5108), + [anon_sym_BSLASHPnotecite] = ACTIONS(5108), + [anon_sym_BSLASHfnotecite] = ACTIONS(5108), + [anon_sym_BSLASHlabel] = ACTIONS(5108), + [anon_sym_BSLASHref] = ACTIONS(5108), + [anon_sym_BSLASHeqref] = ACTIONS(5108), + [anon_sym_BSLASHvref] = ACTIONS(5108), + [anon_sym_BSLASHVref] = ACTIONS(5108), + [anon_sym_BSLASHautoref] = ACTIONS(5108), + [anon_sym_BSLASHpageref] = ACTIONS(5108), + [anon_sym_BSLASHcref] = ACTIONS(5108), + [anon_sym_BSLASHCref] = ACTIONS(5108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnameCref] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5108), + [anon_sym_BSLASHlabelcref] = ACTIONS(5108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange] = ACTIONS(5108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHCrefrange] = ACTIONS(5108), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5106), + [anon_sym_BSLASHnewlabel] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand] = ACTIONS(5108), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5108), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5108), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdef] = ACTIONS(5108), + [anon_sym_BSLASHlet] = ACTIONS(5108), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5108), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5108), + [anon_sym_BSLASHgls] = ACTIONS(5108), + [anon_sym_BSLASHGls] = ACTIONS(5108), + [anon_sym_BSLASHGLS] = ACTIONS(5108), + [anon_sym_BSLASHglspl] = ACTIONS(5108), + [anon_sym_BSLASHGlspl] = ACTIONS(5108), + [anon_sym_BSLASHGLSpl] = ACTIONS(5108), + [anon_sym_BSLASHglsdisp] = ACTIONS(5108), + [anon_sym_BSLASHglslink] = ACTIONS(5108), + [anon_sym_BSLASHglstext] = ACTIONS(5108), + [anon_sym_BSLASHGlstext] = ACTIONS(5108), + [anon_sym_BSLASHGLStext] = ACTIONS(5108), + [anon_sym_BSLASHglsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5108), + [anon_sym_BSLASHglsplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSplural] = ACTIONS(5108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5108), + [anon_sym_BSLASHglsname] = ACTIONS(5108), + [anon_sym_BSLASHGlsname] = ACTIONS(5108), + [anon_sym_BSLASHGLSname] = ACTIONS(5108), + [anon_sym_BSLASHglssymbol] = ACTIONS(5108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5108), + [anon_sym_BSLASHglsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5108), + [anon_sym_BSLASHglsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5108), + [anon_sym_BSLASHglsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5108), + [anon_sym_BSLASHglsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5108), + [anon_sym_BSLASHglsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5108), + [anon_sym_BSLASHnewacronym] = ACTIONS(5108), + [anon_sym_BSLASHacrshort] = ACTIONS(5108), + [anon_sym_BSLASHAcrshort] = ACTIONS(5108), + [anon_sym_BSLASHACRshort] = ACTIONS(5108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5108), + [anon_sym_BSLASHacrlong] = ACTIONS(5108), + [anon_sym_BSLASHAcrlong] = ACTIONS(5108), + [anon_sym_BSLASHACRlong] = ACTIONS(5108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5108), + [anon_sym_BSLASHacrfull] = ACTIONS(5108), + [anon_sym_BSLASHAcrfull] = ACTIONS(5108), + [anon_sym_BSLASHACRfull] = ACTIONS(5108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5108), + [anon_sym_BSLASHacs] = ACTIONS(5108), + [anon_sym_BSLASHAcs] = ACTIONS(5108), + [anon_sym_BSLASHacsp] = ACTIONS(5108), + [anon_sym_BSLASHAcsp] = ACTIONS(5108), + [anon_sym_BSLASHacl] = ACTIONS(5108), + [anon_sym_BSLASHAcl] = ACTIONS(5108), + [anon_sym_BSLASHaclp] = ACTIONS(5108), + [anon_sym_BSLASHAclp] = ACTIONS(5108), + [anon_sym_BSLASHacf] = ACTIONS(5108), + [anon_sym_BSLASHAcf] = ACTIONS(5108), + [anon_sym_BSLASHacfp] = ACTIONS(5108), + [anon_sym_BSLASHAcfp] = ACTIONS(5108), + [anon_sym_BSLASHac] = ACTIONS(5108), + [anon_sym_BSLASHAc] = ACTIONS(5108), + [anon_sym_BSLASHacp] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5108), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5106), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5108), + [anon_sym_BSLASHcolor] = ACTIONS(5108), + [anon_sym_BSLASHcolorbox] = ACTIONS(5108), + [anon_sym_BSLASHtextcolor] = ACTIONS(5108), + [anon_sym_BSLASHpagecolor] = ACTIONS(5108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5108), }, [1548] = { - [sym_command_name] = ACTIONS(5119), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5117), - [anon_sym_COMMA] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(5117), - [sym_word] = ACTIONS(5119), - [sym_placeholder] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5119), - [anon_sym__] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5119), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5119), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), - [anon_sym_BSLASHinclude] = ACTIONS(5119), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), - [anon_sym_BSLASHinput] = ACTIONS(5119), - [anon_sym_BSLASHsubfile] = ACTIONS(5119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), - [anon_sym_BSLASHincludesvg] = ACTIONS(5119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), - [anon_sym_BSLASHimport] = ACTIONS(5119), - [anon_sym_BSLASHsubimport] = ACTIONS(5119), - [anon_sym_BSLASHinputfrom] = ACTIONS(5119), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), - [anon_sym_BSLASHincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), - [anon_sym_BSLASHcaption] = ACTIONS(5119), - [anon_sym_BSLASHcite] = ACTIONS(5119), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCite] = ACTIONS(5119), - [anon_sym_BSLASHnocite] = ACTIONS(5119), - [anon_sym_BSLASHcitet] = ACTIONS(5119), - [anon_sym_BSLASHcitep] = ACTIONS(5119), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteyear] = ACTIONS(5119), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), - [anon_sym_BSLASHcitedate] = ACTIONS(5119), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), - [anon_sym_BSLASHciteurl] = ACTIONS(5119), - [anon_sym_BSLASHfullcite] = ACTIONS(5119), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), - [anon_sym_BSLASHcitealt] = ACTIONS(5119), - [anon_sym_BSLASHcitealp] = ACTIONS(5119), - [anon_sym_BSLASHcitetext] = ACTIONS(5119), - [anon_sym_BSLASHparencite] = ACTIONS(5119), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHParencite] = ACTIONS(5119), - [anon_sym_BSLASHfootcite] = ACTIONS(5119), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), - [anon_sym_BSLASHtextcite] = ACTIONS(5119), - [anon_sym_BSLASHTextcite] = ACTIONS(5119), - [anon_sym_BSLASHsmartcite] = ACTIONS(5119), - [anon_sym_BSLASHSmartcite] = ACTIONS(5119), - [anon_sym_BSLASHsupercite] = ACTIONS(5119), - [anon_sym_BSLASHautocite] = ACTIONS(5119), - [anon_sym_BSLASHAutocite] = ACTIONS(5119), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), - [anon_sym_BSLASHvolcite] = ACTIONS(5119), - [anon_sym_BSLASHVolcite] = ACTIONS(5119), - [anon_sym_BSLASHpvolcite] = ACTIONS(5119), - [anon_sym_BSLASHPvolcite] = ACTIONS(5119), - [anon_sym_BSLASHfvolcite] = ACTIONS(5119), - [anon_sym_BSLASHftvolcite] = ACTIONS(5119), - [anon_sym_BSLASHsvolcite] = ACTIONS(5119), - [anon_sym_BSLASHSvolcite] = ACTIONS(5119), - [anon_sym_BSLASHtvolcite] = ACTIONS(5119), - [anon_sym_BSLASHTvolcite] = ACTIONS(5119), - [anon_sym_BSLASHavolcite] = ACTIONS(5119), - [anon_sym_BSLASHAvolcite] = ACTIONS(5119), - [anon_sym_BSLASHnotecite] = ACTIONS(5119), - [anon_sym_BSLASHNotecite] = ACTIONS(5119), - [anon_sym_BSLASHpnotecite] = ACTIONS(5119), - [anon_sym_BSLASHPnotecite] = ACTIONS(5119), - [anon_sym_BSLASHfnotecite] = ACTIONS(5119), - [anon_sym_BSLASHlabel] = ACTIONS(5119), - [anon_sym_BSLASHref] = ACTIONS(5119), - [anon_sym_BSLASHeqref] = ACTIONS(5119), - [anon_sym_BSLASHvref] = ACTIONS(5119), - [anon_sym_BSLASHVref] = ACTIONS(5119), - [anon_sym_BSLASHautoref] = ACTIONS(5119), - [anon_sym_BSLASHpageref] = ACTIONS(5119), - [anon_sym_BSLASHcref] = ACTIONS(5119), - [anon_sym_BSLASHCref] = ACTIONS(5119), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnameCref] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), - [anon_sym_BSLASHlabelcref] = ACTIONS(5119), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange] = ACTIONS(5119), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), - [anon_sym_BSLASHnewlabel] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand] = ACTIONS(5119), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), - [anon_sym_BSLASHdef] = ACTIONS(5119), - [anon_sym_BSLASHlet] = ACTIONS(5119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), - [anon_sym_BSLASHgls] = ACTIONS(5119), - [anon_sym_BSLASHGls] = ACTIONS(5119), - [anon_sym_BSLASHGLS] = ACTIONS(5119), - [anon_sym_BSLASHglspl] = ACTIONS(5119), - [anon_sym_BSLASHGlspl] = ACTIONS(5119), - [anon_sym_BSLASHGLSpl] = ACTIONS(5119), - [anon_sym_BSLASHglsdisp] = ACTIONS(5119), - [anon_sym_BSLASHglslink] = ACTIONS(5119), - [anon_sym_BSLASHglstext] = ACTIONS(5119), - [anon_sym_BSLASHGlstext] = ACTIONS(5119), - [anon_sym_BSLASHGLStext] = ACTIONS(5119), - [anon_sym_BSLASHglsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), - [anon_sym_BSLASHglsplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSplural] = ACTIONS(5119), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), - [anon_sym_BSLASHglsname] = ACTIONS(5119), - [anon_sym_BSLASHGlsname] = ACTIONS(5119), - [anon_sym_BSLASHGLSname] = ACTIONS(5119), - [anon_sym_BSLASHglssymbol] = ACTIONS(5119), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), - [anon_sym_BSLASHglsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), - [anon_sym_BSLASHglsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), - [anon_sym_BSLASHglsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), - [anon_sym_BSLASHglsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), - [anon_sym_BSLASHglsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), - [anon_sym_BSLASHnewacronym] = ACTIONS(5119), - [anon_sym_BSLASHacrshort] = ACTIONS(5119), - [anon_sym_BSLASHAcrshort] = ACTIONS(5119), - [anon_sym_BSLASHACRshort] = ACTIONS(5119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), - [anon_sym_BSLASHacrlong] = ACTIONS(5119), - [anon_sym_BSLASHAcrlong] = ACTIONS(5119), - [anon_sym_BSLASHACRlong] = ACTIONS(5119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), - [anon_sym_BSLASHacrfull] = ACTIONS(5119), - [anon_sym_BSLASHAcrfull] = ACTIONS(5119), - [anon_sym_BSLASHACRfull] = ACTIONS(5119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), - [anon_sym_BSLASHacs] = ACTIONS(5119), - [anon_sym_BSLASHAcs] = ACTIONS(5119), - [anon_sym_BSLASHacsp] = ACTIONS(5119), - [anon_sym_BSLASHAcsp] = ACTIONS(5119), - [anon_sym_BSLASHacl] = ACTIONS(5119), - [anon_sym_BSLASHAcl] = ACTIONS(5119), - [anon_sym_BSLASHaclp] = ACTIONS(5119), - [anon_sym_BSLASHAclp] = ACTIONS(5119), - [anon_sym_BSLASHacf] = ACTIONS(5119), - [anon_sym_BSLASHAcf] = ACTIONS(5119), - [anon_sym_BSLASHacfp] = ACTIONS(5119), - [anon_sym_BSLASHAcfp] = ACTIONS(5119), - [anon_sym_BSLASHac] = ACTIONS(5119), - [anon_sym_BSLASHAc] = ACTIONS(5119), - [anon_sym_BSLASHacp] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), - [anon_sym_BSLASHcolor] = ACTIONS(5119), - [anon_sym_BSLASHcolorbox] = ACTIONS(5119), - [anon_sym_BSLASHtextcolor] = ACTIONS(5119), - [anon_sym_BSLASHpagecolor] = ACTIONS(5119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [sym_command_name] = ACTIONS(5198), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5198), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_RBRACE] = ACTIONS(5196), + [sym_word] = ACTIONS(5198), + [sym_placeholder] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5198), + [anon_sym_CARET] = ACTIONS(5198), + [anon_sym__] = ACTIONS(5198), + [anon_sym_LT] = ACTIONS(5198), + [anon_sym_GT] = ACTIONS(5198), + [anon_sym_BANG] = ACTIONS(5198), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_SQUOTE] = ACTIONS(5198), + [anon_sym_BSLASHusepackage] = ACTIONS(5198), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5198), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5198), + [anon_sym_BSLASHinclude] = ACTIONS(5198), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5198), + [anon_sym_BSLASHinput] = ACTIONS(5198), + [anon_sym_BSLASHsubfile] = ACTIONS(5198), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5198), + [anon_sym_BSLASHbibliography] = ACTIONS(5198), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5198), + [anon_sym_BSLASHincludesvg] = ACTIONS(5198), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5198), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5198), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5198), + [anon_sym_BSLASHimport] = ACTIONS(5198), + [anon_sym_BSLASHsubimport] = ACTIONS(5198), + [anon_sym_BSLASHinputfrom] = ACTIONS(5198), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5198), + [anon_sym_BSLASHincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5198), + [anon_sym_BSLASHcaption] = ACTIONS(5198), + [anon_sym_BSLASHcite] = ACTIONS(5198), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCite] = ACTIONS(5198), + [anon_sym_BSLASHnocite] = ACTIONS(5198), + [anon_sym_BSLASHcitet] = ACTIONS(5198), + [anon_sym_BSLASHcitep] = ACTIONS(5198), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteauthor] = ACTIONS(5198), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5198), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitetitle] = ACTIONS(5198), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteyear] = ACTIONS(5198), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5196), + [anon_sym_BSLASHcitedate] = ACTIONS(5198), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5196), + [anon_sym_BSLASHciteurl] = ACTIONS(5198), + [anon_sym_BSLASHfullcite] = ACTIONS(5198), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5198), + [anon_sym_BSLASHcitealt] = ACTIONS(5198), + [anon_sym_BSLASHcitealp] = ACTIONS(5198), + [anon_sym_BSLASHcitetext] = ACTIONS(5198), + [anon_sym_BSLASHparencite] = ACTIONS(5198), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHParencite] = ACTIONS(5198), + [anon_sym_BSLASHfootcite] = ACTIONS(5198), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5198), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5198), + [anon_sym_BSLASHtextcite] = ACTIONS(5198), + [anon_sym_BSLASHTextcite] = ACTIONS(5198), + [anon_sym_BSLASHsmartcite] = ACTIONS(5198), + [anon_sym_BSLASHSmartcite] = ACTIONS(5198), + [anon_sym_BSLASHsupercite] = ACTIONS(5198), + [anon_sym_BSLASHautocite] = ACTIONS(5198), + [anon_sym_BSLASHAutocite] = ACTIONS(5198), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5196), + [anon_sym_BSLASHvolcite] = ACTIONS(5198), + [anon_sym_BSLASHVolcite] = ACTIONS(5198), + [anon_sym_BSLASHpvolcite] = ACTIONS(5198), + [anon_sym_BSLASHPvolcite] = ACTIONS(5198), + [anon_sym_BSLASHfvolcite] = ACTIONS(5198), + [anon_sym_BSLASHftvolcite] = ACTIONS(5198), + [anon_sym_BSLASHsvolcite] = ACTIONS(5198), + [anon_sym_BSLASHSvolcite] = ACTIONS(5198), + [anon_sym_BSLASHtvolcite] = ACTIONS(5198), + [anon_sym_BSLASHTvolcite] = ACTIONS(5198), + [anon_sym_BSLASHavolcite] = ACTIONS(5198), + [anon_sym_BSLASHAvolcite] = ACTIONS(5198), + [anon_sym_BSLASHnotecite] = ACTIONS(5198), + [anon_sym_BSLASHNotecite] = ACTIONS(5198), + [anon_sym_BSLASHpnotecite] = ACTIONS(5198), + [anon_sym_BSLASHPnotecite] = ACTIONS(5198), + [anon_sym_BSLASHfnotecite] = ACTIONS(5198), + [anon_sym_BSLASHlabel] = ACTIONS(5198), + [anon_sym_BSLASHref] = ACTIONS(5198), + [anon_sym_BSLASHeqref] = ACTIONS(5198), + [anon_sym_BSLASHvref] = ACTIONS(5198), + [anon_sym_BSLASHVref] = ACTIONS(5198), + [anon_sym_BSLASHautoref] = ACTIONS(5198), + [anon_sym_BSLASHpageref] = ACTIONS(5198), + [anon_sym_BSLASHcref] = ACTIONS(5198), + [anon_sym_BSLASHCref] = ACTIONS(5198), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnameCref] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5198), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5198), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5198), + [anon_sym_BSLASHlabelcref] = ACTIONS(5198), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange] = ACTIONS(5198), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHCrefrange] = ACTIONS(5198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5196), + [anon_sym_BSLASHnewlabel] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand] = ACTIONS(5198), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5198), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5198), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5196), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5198), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdef] = ACTIONS(5198), + [anon_sym_BSLASHlet] = ACTIONS(5198), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5198), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5198), + [anon_sym_BSLASHgls] = ACTIONS(5198), + [anon_sym_BSLASHGls] = ACTIONS(5198), + [anon_sym_BSLASHGLS] = ACTIONS(5198), + [anon_sym_BSLASHglspl] = ACTIONS(5198), + [anon_sym_BSLASHGlspl] = ACTIONS(5198), + [anon_sym_BSLASHGLSpl] = ACTIONS(5198), + [anon_sym_BSLASHglsdisp] = ACTIONS(5198), + [anon_sym_BSLASHglslink] = ACTIONS(5198), + [anon_sym_BSLASHglstext] = ACTIONS(5198), + [anon_sym_BSLASHGlstext] = ACTIONS(5198), + [anon_sym_BSLASHGLStext] = ACTIONS(5198), + [anon_sym_BSLASHglsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5198), + [anon_sym_BSLASHglsplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSplural] = ACTIONS(5198), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5198), + [anon_sym_BSLASHglsname] = ACTIONS(5198), + [anon_sym_BSLASHGlsname] = ACTIONS(5198), + [anon_sym_BSLASHGLSname] = ACTIONS(5198), + [anon_sym_BSLASHglssymbol] = ACTIONS(5198), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5198), + [anon_sym_BSLASHglsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5198), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5198), + [anon_sym_BSLASHglsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5198), + [anon_sym_BSLASHglsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5198), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5198), + [anon_sym_BSLASHglsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5198), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5198), + [anon_sym_BSLASHglsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5198), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5198), + [anon_sym_BSLASHnewacronym] = ACTIONS(5198), + [anon_sym_BSLASHacrshort] = ACTIONS(5198), + [anon_sym_BSLASHAcrshort] = ACTIONS(5198), + [anon_sym_BSLASHACRshort] = ACTIONS(5198), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5198), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5198), + [anon_sym_BSLASHacrlong] = ACTIONS(5198), + [anon_sym_BSLASHAcrlong] = ACTIONS(5198), + [anon_sym_BSLASHACRlong] = ACTIONS(5198), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5198), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5198), + [anon_sym_BSLASHacrfull] = ACTIONS(5198), + [anon_sym_BSLASHAcrfull] = ACTIONS(5198), + [anon_sym_BSLASHACRfull] = ACTIONS(5198), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5198), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5198), + [anon_sym_BSLASHacs] = ACTIONS(5198), + [anon_sym_BSLASHAcs] = ACTIONS(5198), + [anon_sym_BSLASHacsp] = ACTIONS(5198), + [anon_sym_BSLASHAcsp] = ACTIONS(5198), + [anon_sym_BSLASHacl] = ACTIONS(5198), + [anon_sym_BSLASHAcl] = ACTIONS(5198), + [anon_sym_BSLASHaclp] = ACTIONS(5198), + [anon_sym_BSLASHAclp] = ACTIONS(5198), + [anon_sym_BSLASHacf] = ACTIONS(5198), + [anon_sym_BSLASHAcf] = ACTIONS(5198), + [anon_sym_BSLASHacfp] = ACTIONS(5198), + [anon_sym_BSLASHAcfp] = ACTIONS(5198), + [anon_sym_BSLASHac] = ACTIONS(5198), + [anon_sym_BSLASHAc] = ACTIONS(5198), + [anon_sym_BSLASHacp] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5198), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5198), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5198), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5198), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5198), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5196), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5198), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5198), + [anon_sym_BSLASHcolor] = ACTIONS(5198), + [anon_sym_BSLASHcolorbox] = ACTIONS(5198), + [anon_sym_BSLASHtextcolor] = ACTIONS(5198), + [anon_sym_BSLASHpagecolor] = ACTIONS(5198), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5198), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5198), }, [1549] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5197), - [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), + [sym_command_name] = ACTIONS(5276), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5276), + [anon_sym_RBRACK] = ACTIONS(5274), + [anon_sym_COMMA] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_word] = ACTIONS(5276), + [sym_placeholder] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(5276), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_STAR] = ACTIONS(5276), + [anon_sym_SLASH] = ACTIONS(5276), + [anon_sym_CARET] = ACTIONS(5276), + [anon_sym__] = ACTIONS(5276), + [anon_sym_LT] = ACTIONS(5276), + [anon_sym_GT] = ACTIONS(5276), + [anon_sym_BANG] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_SQUOTE] = ACTIONS(5276), + [anon_sym_BSLASHusepackage] = ACTIONS(5276), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5276), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5276), + [anon_sym_BSLASHinclude] = ACTIONS(5276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5276), + [anon_sym_BSLASHinput] = ACTIONS(5276), + [anon_sym_BSLASHsubfile] = ACTIONS(5276), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5276), + [anon_sym_BSLASHbibliography] = ACTIONS(5276), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5276), + [anon_sym_BSLASHincludesvg] = ACTIONS(5276), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5276), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5276), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5276), + [anon_sym_BSLASHimport] = ACTIONS(5276), + [anon_sym_BSLASHsubimport] = ACTIONS(5276), + [anon_sym_BSLASHinputfrom] = ACTIONS(5276), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5276), + [anon_sym_BSLASHincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5276), + [anon_sym_BSLASHcaption] = ACTIONS(5276), + [anon_sym_BSLASHcite] = ACTIONS(5276), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCite] = ACTIONS(5276), + [anon_sym_BSLASHnocite] = ACTIONS(5276), + [anon_sym_BSLASHcitet] = ACTIONS(5276), + [anon_sym_BSLASHcitep] = ACTIONS(5276), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteauthor] = ACTIONS(5276), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5276), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitetitle] = ACTIONS(5276), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteyear] = ACTIONS(5276), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5274), + [anon_sym_BSLASHcitedate] = ACTIONS(5276), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5274), + [anon_sym_BSLASHciteurl] = ACTIONS(5276), + [anon_sym_BSLASHfullcite] = ACTIONS(5276), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5276), + [anon_sym_BSLASHcitealt] = ACTIONS(5276), + [anon_sym_BSLASHcitealp] = ACTIONS(5276), + [anon_sym_BSLASHcitetext] = ACTIONS(5276), + [anon_sym_BSLASHparencite] = ACTIONS(5276), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHParencite] = ACTIONS(5276), + [anon_sym_BSLASHfootcite] = ACTIONS(5276), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5276), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5276), + [anon_sym_BSLASHtextcite] = ACTIONS(5276), + [anon_sym_BSLASHTextcite] = ACTIONS(5276), + [anon_sym_BSLASHsmartcite] = ACTIONS(5276), + [anon_sym_BSLASHSmartcite] = ACTIONS(5276), + [anon_sym_BSLASHsupercite] = ACTIONS(5276), + [anon_sym_BSLASHautocite] = ACTIONS(5276), + [anon_sym_BSLASHAutocite] = ACTIONS(5276), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5274), + [anon_sym_BSLASHvolcite] = ACTIONS(5276), + [anon_sym_BSLASHVolcite] = ACTIONS(5276), + [anon_sym_BSLASHpvolcite] = ACTIONS(5276), + [anon_sym_BSLASHPvolcite] = ACTIONS(5276), + [anon_sym_BSLASHfvolcite] = ACTIONS(5276), + [anon_sym_BSLASHftvolcite] = ACTIONS(5276), + [anon_sym_BSLASHsvolcite] = ACTIONS(5276), + [anon_sym_BSLASHSvolcite] = ACTIONS(5276), + [anon_sym_BSLASHtvolcite] = ACTIONS(5276), + [anon_sym_BSLASHTvolcite] = ACTIONS(5276), + [anon_sym_BSLASHavolcite] = ACTIONS(5276), + [anon_sym_BSLASHAvolcite] = ACTIONS(5276), + [anon_sym_BSLASHnotecite] = ACTIONS(5276), + [anon_sym_BSLASHNotecite] = ACTIONS(5276), + [anon_sym_BSLASHpnotecite] = ACTIONS(5276), + [anon_sym_BSLASHPnotecite] = ACTIONS(5276), + [anon_sym_BSLASHfnotecite] = ACTIONS(5276), + [anon_sym_BSLASHlabel] = ACTIONS(5276), + [anon_sym_BSLASHref] = ACTIONS(5276), + [anon_sym_BSLASHeqref] = ACTIONS(5276), + [anon_sym_BSLASHvref] = ACTIONS(5276), + [anon_sym_BSLASHVref] = ACTIONS(5276), + [anon_sym_BSLASHautoref] = ACTIONS(5276), + [anon_sym_BSLASHpageref] = ACTIONS(5276), + [anon_sym_BSLASHcref] = ACTIONS(5276), + [anon_sym_BSLASHCref] = ACTIONS(5276), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnameCref] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5276), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5276), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5276), + [anon_sym_BSLASHlabelcref] = ACTIONS(5276), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange] = ACTIONS(5276), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHCrefrange] = ACTIONS(5276), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5274), + [anon_sym_BSLASHnewlabel] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand] = ACTIONS(5276), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5276), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5276), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5276), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdef] = ACTIONS(5276), + [anon_sym_BSLASHlet] = ACTIONS(5276), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5276), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5276), + [anon_sym_BSLASHgls] = ACTIONS(5276), + [anon_sym_BSLASHGls] = ACTIONS(5276), + [anon_sym_BSLASHGLS] = ACTIONS(5276), + [anon_sym_BSLASHglspl] = ACTIONS(5276), + [anon_sym_BSLASHGlspl] = ACTIONS(5276), + [anon_sym_BSLASHGLSpl] = ACTIONS(5276), + [anon_sym_BSLASHglsdisp] = ACTIONS(5276), + [anon_sym_BSLASHglslink] = ACTIONS(5276), + [anon_sym_BSLASHglstext] = ACTIONS(5276), + [anon_sym_BSLASHGlstext] = ACTIONS(5276), + [anon_sym_BSLASHGLStext] = ACTIONS(5276), + [anon_sym_BSLASHglsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5276), + [anon_sym_BSLASHglsplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSplural] = ACTIONS(5276), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5276), + [anon_sym_BSLASHglsname] = ACTIONS(5276), + [anon_sym_BSLASHGlsname] = ACTIONS(5276), + [anon_sym_BSLASHGLSname] = ACTIONS(5276), + [anon_sym_BSLASHglssymbol] = ACTIONS(5276), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5276), + [anon_sym_BSLASHglsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5276), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5276), + [anon_sym_BSLASHglsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5276), + [anon_sym_BSLASHglsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5276), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5276), + [anon_sym_BSLASHglsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5276), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5276), + [anon_sym_BSLASHglsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5276), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5276), + [anon_sym_BSLASHnewacronym] = ACTIONS(5276), + [anon_sym_BSLASHacrshort] = ACTIONS(5276), + [anon_sym_BSLASHAcrshort] = ACTIONS(5276), + [anon_sym_BSLASHACRshort] = ACTIONS(5276), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5276), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5276), + [anon_sym_BSLASHacrlong] = ACTIONS(5276), + [anon_sym_BSLASHAcrlong] = ACTIONS(5276), + [anon_sym_BSLASHACRlong] = ACTIONS(5276), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5276), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5276), + [anon_sym_BSLASHacrfull] = ACTIONS(5276), + [anon_sym_BSLASHAcrfull] = ACTIONS(5276), + [anon_sym_BSLASHACRfull] = ACTIONS(5276), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5276), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5276), + [anon_sym_BSLASHacs] = ACTIONS(5276), + [anon_sym_BSLASHAcs] = ACTIONS(5276), + [anon_sym_BSLASHacsp] = ACTIONS(5276), + [anon_sym_BSLASHAcsp] = ACTIONS(5276), + [anon_sym_BSLASHacl] = ACTIONS(5276), + [anon_sym_BSLASHAcl] = ACTIONS(5276), + [anon_sym_BSLASHaclp] = ACTIONS(5276), + [anon_sym_BSLASHAclp] = ACTIONS(5276), + [anon_sym_BSLASHacf] = ACTIONS(5276), + [anon_sym_BSLASHAcf] = ACTIONS(5276), + [anon_sym_BSLASHacfp] = ACTIONS(5276), + [anon_sym_BSLASHAcfp] = ACTIONS(5276), + [anon_sym_BSLASHac] = ACTIONS(5276), + [anon_sym_BSLASHAc] = ACTIONS(5276), + [anon_sym_BSLASHacp] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5276), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5276), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5276), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5276), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5276), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5274), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5276), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5276), + [anon_sym_BSLASHcolor] = ACTIONS(5276), + [anon_sym_BSLASHcolorbox] = ACTIONS(5276), + [anon_sym_BSLASHtextcolor] = ACTIONS(5276), + [anon_sym_BSLASHpagecolor] = ACTIONS(5276), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5276), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5276), }, [1550] = { - [sym_command_name] = ACTIONS(5301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5301), - [anon_sym_RBRACK] = ACTIONS(5299), - [anon_sym_COMMA] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_RBRACE] = ACTIONS(5299), - [sym_word] = ACTIONS(5301), - [sym_placeholder] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(5301), - [anon_sym_DASH] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5301), - [anon_sym_SLASH] = ACTIONS(5301), - [anon_sym_CARET] = ACTIONS(5301), - [anon_sym__] = ACTIONS(5301), - [anon_sym_LT] = ACTIONS(5301), - [anon_sym_GT] = ACTIONS(5301), - [anon_sym_BANG] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(5301), - [anon_sym_SQUOTE] = ACTIONS(5301), - [anon_sym_BSLASHusepackage] = ACTIONS(5301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), - [anon_sym_BSLASHinclude] = ACTIONS(5301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), - [anon_sym_BSLASHinput] = ACTIONS(5301), - [anon_sym_BSLASHsubfile] = ACTIONS(5301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), - [anon_sym_BSLASHbibliography] = ACTIONS(5301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), - [anon_sym_BSLASHincludesvg] = ACTIONS(5301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), - [anon_sym_BSLASHimport] = ACTIONS(5301), - [anon_sym_BSLASHsubimport] = ACTIONS(5301), - [anon_sym_BSLASHinputfrom] = ACTIONS(5301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), - [anon_sym_BSLASHincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), - [anon_sym_BSLASHcaption] = ACTIONS(5301), - [anon_sym_BSLASHcite] = ACTIONS(5301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCite] = ACTIONS(5301), - [anon_sym_BSLASHnocite] = ACTIONS(5301), - [anon_sym_BSLASHcitet] = ACTIONS(5301), - [anon_sym_BSLASHcitep] = ACTIONS(5301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteyear] = ACTIONS(5301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), - [anon_sym_BSLASHcitedate] = ACTIONS(5301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), - [anon_sym_BSLASHciteurl] = ACTIONS(5301), - [anon_sym_BSLASHfullcite] = ACTIONS(5301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), - [anon_sym_BSLASHcitealt] = ACTIONS(5301), - [anon_sym_BSLASHcitealp] = ACTIONS(5301), - [anon_sym_BSLASHcitetext] = ACTIONS(5301), - [anon_sym_BSLASHparencite] = ACTIONS(5301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHParencite] = ACTIONS(5301), - [anon_sym_BSLASHfootcite] = ACTIONS(5301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), - [anon_sym_BSLASHtextcite] = ACTIONS(5301), - [anon_sym_BSLASHTextcite] = ACTIONS(5301), - [anon_sym_BSLASHsmartcite] = ACTIONS(5301), - [anon_sym_BSLASHSmartcite] = ACTIONS(5301), - [anon_sym_BSLASHsupercite] = ACTIONS(5301), - [anon_sym_BSLASHautocite] = ACTIONS(5301), - [anon_sym_BSLASHAutocite] = ACTIONS(5301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), - [anon_sym_BSLASHvolcite] = ACTIONS(5301), - [anon_sym_BSLASHVolcite] = ACTIONS(5301), - [anon_sym_BSLASHpvolcite] = ACTIONS(5301), - [anon_sym_BSLASHPvolcite] = ACTIONS(5301), - [anon_sym_BSLASHfvolcite] = ACTIONS(5301), - [anon_sym_BSLASHftvolcite] = ACTIONS(5301), - [anon_sym_BSLASHsvolcite] = ACTIONS(5301), - [anon_sym_BSLASHSvolcite] = ACTIONS(5301), - [anon_sym_BSLASHtvolcite] = ACTIONS(5301), - [anon_sym_BSLASHTvolcite] = ACTIONS(5301), - [anon_sym_BSLASHavolcite] = ACTIONS(5301), - [anon_sym_BSLASHAvolcite] = ACTIONS(5301), - [anon_sym_BSLASHnotecite] = ACTIONS(5301), - [anon_sym_BSLASHNotecite] = ACTIONS(5301), - [anon_sym_BSLASHpnotecite] = ACTIONS(5301), - [anon_sym_BSLASHPnotecite] = ACTIONS(5301), - [anon_sym_BSLASHfnotecite] = ACTIONS(5301), - [anon_sym_BSLASHlabel] = ACTIONS(5301), - [anon_sym_BSLASHref] = ACTIONS(5301), - [anon_sym_BSLASHeqref] = ACTIONS(5301), - [anon_sym_BSLASHvref] = ACTIONS(5301), - [anon_sym_BSLASHVref] = ACTIONS(5301), - [anon_sym_BSLASHautoref] = ACTIONS(5301), - [anon_sym_BSLASHpageref] = ACTIONS(5301), - [anon_sym_BSLASHcref] = ACTIONS(5301), - [anon_sym_BSLASHCref] = ACTIONS(5301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnameCref] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), - [anon_sym_BSLASHlabelcref] = ACTIONS(5301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange] = ACTIONS(5301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), - [anon_sym_BSLASHnewlabel] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand] = ACTIONS(5301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), - [anon_sym_BSLASHdef] = ACTIONS(5301), - [anon_sym_BSLASHlet] = ACTIONS(5301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), - [anon_sym_BSLASHgls] = ACTIONS(5301), - [anon_sym_BSLASHGls] = ACTIONS(5301), - [anon_sym_BSLASHGLS] = ACTIONS(5301), - [anon_sym_BSLASHglspl] = ACTIONS(5301), - [anon_sym_BSLASHGlspl] = ACTIONS(5301), - [anon_sym_BSLASHGLSpl] = ACTIONS(5301), - [anon_sym_BSLASHglsdisp] = ACTIONS(5301), - [anon_sym_BSLASHglslink] = ACTIONS(5301), - [anon_sym_BSLASHglstext] = ACTIONS(5301), - [anon_sym_BSLASHGlstext] = ACTIONS(5301), - [anon_sym_BSLASHGLStext] = ACTIONS(5301), - [anon_sym_BSLASHglsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), - [anon_sym_BSLASHglsplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSplural] = ACTIONS(5301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), - [anon_sym_BSLASHglsname] = ACTIONS(5301), - [anon_sym_BSLASHGlsname] = ACTIONS(5301), - [anon_sym_BSLASHGLSname] = ACTIONS(5301), - [anon_sym_BSLASHglssymbol] = ACTIONS(5301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), - [anon_sym_BSLASHglsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), - [anon_sym_BSLASHglsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), - [anon_sym_BSLASHglsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), - [anon_sym_BSLASHglsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), - [anon_sym_BSLASHglsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), - [anon_sym_BSLASHnewacronym] = ACTIONS(5301), - [anon_sym_BSLASHacrshort] = ACTIONS(5301), - [anon_sym_BSLASHAcrshort] = ACTIONS(5301), - [anon_sym_BSLASHACRshort] = ACTIONS(5301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), - [anon_sym_BSLASHacrlong] = ACTIONS(5301), - [anon_sym_BSLASHAcrlong] = ACTIONS(5301), - [anon_sym_BSLASHACRlong] = ACTIONS(5301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), - [anon_sym_BSLASHacrfull] = ACTIONS(5301), - [anon_sym_BSLASHAcrfull] = ACTIONS(5301), - [anon_sym_BSLASHACRfull] = ACTIONS(5301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), - [anon_sym_BSLASHacs] = ACTIONS(5301), - [anon_sym_BSLASHAcs] = ACTIONS(5301), - [anon_sym_BSLASHacsp] = ACTIONS(5301), - [anon_sym_BSLASHAcsp] = ACTIONS(5301), - [anon_sym_BSLASHacl] = ACTIONS(5301), - [anon_sym_BSLASHAcl] = ACTIONS(5301), - [anon_sym_BSLASHaclp] = ACTIONS(5301), - [anon_sym_BSLASHAclp] = ACTIONS(5301), - [anon_sym_BSLASHacf] = ACTIONS(5301), - [anon_sym_BSLASHAcf] = ACTIONS(5301), - [anon_sym_BSLASHacfp] = ACTIONS(5301), - [anon_sym_BSLASHAcfp] = ACTIONS(5301), - [anon_sym_BSLASHac] = ACTIONS(5301), - [anon_sym_BSLASHAc] = ACTIONS(5301), - [anon_sym_BSLASHacp] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), - [anon_sym_BSLASHcolor] = ACTIONS(5301), - [anon_sym_BSLASHcolorbox] = ACTIONS(5301), - [anon_sym_BSLASHtextcolor] = ACTIONS(5301), - [anon_sym_BSLASHpagecolor] = ACTIONS(5301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5380), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5380), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5378), + [sym_word] = ACTIONS(5380), + [sym_placeholder] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_CARET] = ACTIONS(5380), + [anon_sym__] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_BANG] = ACTIONS(5380), + [anon_sym_PIPE] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(5380), + [anon_sym_SQUOTE] = ACTIONS(5380), + [anon_sym_BSLASHusepackage] = ACTIONS(5380), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5380), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5380), + [anon_sym_BSLASHinclude] = ACTIONS(5380), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5380), + [anon_sym_BSLASHinput] = ACTIONS(5380), + [anon_sym_BSLASHsubfile] = ACTIONS(5380), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5380), + [anon_sym_BSLASHbibliography] = ACTIONS(5380), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5380), + [anon_sym_BSLASHincludesvg] = ACTIONS(5380), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5380), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5380), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5380), + [anon_sym_BSLASHimport] = ACTIONS(5380), + [anon_sym_BSLASHsubimport] = ACTIONS(5380), + [anon_sym_BSLASHinputfrom] = ACTIONS(5380), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5380), + [anon_sym_BSLASHincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5380), + [anon_sym_BSLASHcaption] = ACTIONS(5380), + [anon_sym_BSLASHcite] = ACTIONS(5380), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5380), + [anon_sym_BSLASHnocite] = ACTIONS(5380), + [anon_sym_BSLASHcitet] = ACTIONS(5380), + [anon_sym_BSLASHcitep] = ACTIONS(5380), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5380), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5380), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5380), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5380), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5380), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5380), + [anon_sym_BSLASHfullcite] = ACTIONS(5380), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5380), + [anon_sym_BSLASHcitealt] = ACTIONS(5380), + [anon_sym_BSLASHcitealp] = ACTIONS(5380), + [anon_sym_BSLASHcitetext] = ACTIONS(5380), + [anon_sym_BSLASHparencite] = ACTIONS(5380), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5380), + [anon_sym_BSLASHfootcite] = ACTIONS(5380), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5380), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5380), + [anon_sym_BSLASHtextcite] = ACTIONS(5380), + [anon_sym_BSLASHTextcite] = ACTIONS(5380), + [anon_sym_BSLASHsmartcite] = ACTIONS(5380), + [anon_sym_BSLASHSmartcite] = ACTIONS(5380), + [anon_sym_BSLASHsupercite] = ACTIONS(5380), + [anon_sym_BSLASHautocite] = ACTIONS(5380), + [anon_sym_BSLASHAutocite] = ACTIONS(5380), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5380), + [anon_sym_BSLASHVolcite] = ACTIONS(5380), + [anon_sym_BSLASHpvolcite] = ACTIONS(5380), + [anon_sym_BSLASHPvolcite] = ACTIONS(5380), + [anon_sym_BSLASHfvolcite] = ACTIONS(5380), + [anon_sym_BSLASHftvolcite] = ACTIONS(5380), + [anon_sym_BSLASHsvolcite] = ACTIONS(5380), + [anon_sym_BSLASHSvolcite] = ACTIONS(5380), + [anon_sym_BSLASHtvolcite] = ACTIONS(5380), + [anon_sym_BSLASHTvolcite] = ACTIONS(5380), + [anon_sym_BSLASHavolcite] = ACTIONS(5380), + [anon_sym_BSLASHAvolcite] = ACTIONS(5380), + [anon_sym_BSLASHnotecite] = ACTIONS(5380), + [anon_sym_BSLASHNotecite] = ACTIONS(5380), + [anon_sym_BSLASHpnotecite] = ACTIONS(5380), + [anon_sym_BSLASHPnotecite] = ACTIONS(5380), + [anon_sym_BSLASHfnotecite] = ACTIONS(5380), + [anon_sym_BSLASHlabel] = ACTIONS(5380), + [anon_sym_BSLASHref] = ACTIONS(5380), + [anon_sym_BSLASHeqref] = ACTIONS(5380), + [anon_sym_BSLASHvref] = ACTIONS(5380), + [anon_sym_BSLASHVref] = ACTIONS(5380), + [anon_sym_BSLASHautoref] = ACTIONS(5380), + [anon_sym_BSLASHpageref] = ACTIONS(5380), + [anon_sym_BSLASHcref] = ACTIONS(5380), + [anon_sym_BSLASHCref] = ACTIONS(5380), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnameCref] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5380), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5380), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5380), + [anon_sym_BSLASHlabelcref] = ACTIONS(5380), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange] = ACTIONS(5380), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCrefrange] = ACTIONS(5380), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5378), + [anon_sym_BSLASHnewlabel] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand] = ACTIONS(5380), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5380), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5380), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5378), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5380), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdef] = ACTIONS(5380), + [anon_sym_BSLASHlet] = ACTIONS(5380), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5380), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5380), + [anon_sym_BSLASHgls] = ACTIONS(5380), + [anon_sym_BSLASHGls] = ACTIONS(5380), + [anon_sym_BSLASHGLS] = ACTIONS(5380), + [anon_sym_BSLASHglspl] = ACTIONS(5380), + [anon_sym_BSLASHGlspl] = ACTIONS(5380), + [anon_sym_BSLASHGLSpl] = ACTIONS(5380), + [anon_sym_BSLASHglsdisp] = ACTIONS(5380), + [anon_sym_BSLASHglslink] = ACTIONS(5380), + [anon_sym_BSLASHglstext] = ACTIONS(5380), + [anon_sym_BSLASHGlstext] = ACTIONS(5380), + [anon_sym_BSLASHGLStext] = ACTIONS(5380), + [anon_sym_BSLASHglsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5380), + [anon_sym_BSLASHglsplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSplural] = ACTIONS(5380), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5380), + [anon_sym_BSLASHglsname] = ACTIONS(5380), + [anon_sym_BSLASHGlsname] = ACTIONS(5380), + [anon_sym_BSLASHGLSname] = ACTIONS(5380), + [anon_sym_BSLASHglssymbol] = ACTIONS(5380), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5380), + [anon_sym_BSLASHglsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5380), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5380), + [anon_sym_BSLASHglsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5380), + [anon_sym_BSLASHglsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5380), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5380), + [anon_sym_BSLASHglsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5380), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5380), + [anon_sym_BSLASHglsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5380), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5380), + [anon_sym_BSLASHnewacronym] = ACTIONS(5380), + [anon_sym_BSLASHacrshort] = ACTIONS(5380), + [anon_sym_BSLASHAcrshort] = ACTIONS(5380), + [anon_sym_BSLASHACRshort] = ACTIONS(5380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5380), + [anon_sym_BSLASHacrlong] = ACTIONS(5380), + [anon_sym_BSLASHAcrlong] = ACTIONS(5380), + [anon_sym_BSLASHACRlong] = ACTIONS(5380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5380), + [anon_sym_BSLASHacrfull] = ACTIONS(5380), + [anon_sym_BSLASHAcrfull] = ACTIONS(5380), + [anon_sym_BSLASHACRfull] = ACTIONS(5380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5380), + [anon_sym_BSLASHacs] = ACTIONS(5380), + [anon_sym_BSLASHAcs] = ACTIONS(5380), + [anon_sym_BSLASHacsp] = ACTIONS(5380), + [anon_sym_BSLASHAcsp] = ACTIONS(5380), + [anon_sym_BSLASHacl] = ACTIONS(5380), + [anon_sym_BSLASHAcl] = ACTIONS(5380), + [anon_sym_BSLASHaclp] = ACTIONS(5380), + [anon_sym_BSLASHAclp] = ACTIONS(5380), + [anon_sym_BSLASHacf] = ACTIONS(5380), + [anon_sym_BSLASHAcf] = ACTIONS(5380), + [anon_sym_BSLASHacfp] = ACTIONS(5380), + [anon_sym_BSLASHAcfp] = ACTIONS(5380), + [anon_sym_BSLASHac] = ACTIONS(5380), + [anon_sym_BSLASHAc] = ACTIONS(5380), + [anon_sym_BSLASHacp] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5380), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5380), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5378), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5380), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5380), + [anon_sym_BSLASHcolor] = ACTIONS(5380), + [anon_sym_BSLASHcolorbox] = ACTIONS(5380), + [anon_sym_BSLASHtextcolor] = ACTIONS(5380), + [anon_sym_BSLASHpagecolor] = ACTIONS(5380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5380), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5380), }, [1551] = { - [sym_command_name] = ACTIONS(4939), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [sym_word] = ACTIONS(4939), - [sym_placeholder] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4939), - [anon_sym__] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4939), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), - [anon_sym_BSLASHinclude] = ACTIONS(4939), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), - [anon_sym_BSLASHinput] = ACTIONS(4939), - [anon_sym_BSLASHsubfile] = ACTIONS(4939), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), - [anon_sym_BSLASHbibliography] = ACTIONS(4939), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), - [anon_sym_BSLASHincludesvg] = ACTIONS(4939), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), - [anon_sym_BSLASHimport] = ACTIONS(4939), - [anon_sym_BSLASHsubimport] = ACTIONS(4939), - [anon_sym_BSLASHinputfrom] = ACTIONS(4939), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), - [anon_sym_BSLASHincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), - [anon_sym_BSLASHcaption] = ACTIONS(4939), - [anon_sym_BSLASHcite] = ACTIONS(4939), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCite] = ACTIONS(4939), - [anon_sym_BSLASHnocite] = ACTIONS(4939), - [anon_sym_BSLASHcitet] = ACTIONS(4939), - [anon_sym_BSLASHcitep] = ACTIONS(4939), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteauthor] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitetitle] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteyear] = ACTIONS(4939), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), - [anon_sym_BSLASHcitedate] = ACTIONS(4939), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), - [anon_sym_BSLASHciteurl] = ACTIONS(4939), - [anon_sym_BSLASHfullcite] = ACTIONS(4939), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), - [anon_sym_BSLASHcitealt] = ACTIONS(4939), - [anon_sym_BSLASHcitealp] = ACTIONS(4939), - [anon_sym_BSLASHcitetext] = ACTIONS(4939), - [anon_sym_BSLASHparencite] = ACTIONS(4939), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHParencite] = ACTIONS(4939), - [anon_sym_BSLASHfootcite] = ACTIONS(4939), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), - [anon_sym_BSLASHtextcite] = ACTIONS(4939), - [anon_sym_BSLASHTextcite] = ACTIONS(4939), - [anon_sym_BSLASHsmartcite] = ACTIONS(4939), - [anon_sym_BSLASHSmartcite] = ACTIONS(4939), - [anon_sym_BSLASHsupercite] = ACTIONS(4939), - [anon_sym_BSLASHautocite] = ACTIONS(4939), - [anon_sym_BSLASHAutocite] = ACTIONS(4939), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), - [anon_sym_BSLASHvolcite] = ACTIONS(4939), - [anon_sym_BSLASHVolcite] = ACTIONS(4939), - [anon_sym_BSLASHpvolcite] = ACTIONS(4939), - [anon_sym_BSLASHPvolcite] = ACTIONS(4939), - [anon_sym_BSLASHfvolcite] = ACTIONS(4939), - [anon_sym_BSLASHftvolcite] = ACTIONS(4939), - [anon_sym_BSLASHsvolcite] = ACTIONS(4939), - [anon_sym_BSLASHSvolcite] = ACTIONS(4939), - [anon_sym_BSLASHtvolcite] = ACTIONS(4939), - [anon_sym_BSLASHTvolcite] = ACTIONS(4939), - [anon_sym_BSLASHavolcite] = ACTIONS(4939), - [anon_sym_BSLASHAvolcite] = ACTIONS(4939), - [anon_sym_BSLASHnotecite] = ACTIONS(4939), - [anon_sym_BSLASHNotecite] = ACTIONS(4939), - [anon_sym_BSLASHpnotecite] = ACTIONS(4939), - [anon_sym_BSLASHPnotecite] = ACTIONS(4939), - [anon_sym_BSLASHfnotecite] = ACTIONS(4939), - [anon_sym_BSLASHlabel] = ACTIONS(4939), - [anon_sym_BSLASHref] = ACTIONS(4939), - [anon_sym_BSLASHeqref] = ACTIONS(4939), - [anon_sym_BSLASHvref] = ACTIONS(4939), - [anon_sym_BSLASHVref] = ACTIONS(4939), - [anon_sym_BSLASHautoref] = ACTIONS(4939), - [anon_sym_BSLASHpageref] = ACTIONS(4939), - [anon_sym_BSLASHcref] = ACTIONS(4939), - [anon_sym_BSLASHCref] = ACTIONS(4939), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnameCref] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), - [anon_sym_BSLASHlabelcref] = ACTIONS(4939), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange] = ACTIONS(4939), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHCrefrange] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), - [anon_sym_BSLASHnewlabel] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand] = ACTIONS(4939), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), - [anon_sym_BSLASHdef] = ACTIONS(4939), - [anon_sym_BSLASHlet] = ACTIONS(4939), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), - [anon_sym_BSLASHgls] = ACTIONS(4939), - [anon_sym_BSLASHGls] = ACTIONS(4939), - [anon_sym_BSLASHGLS] = ACTIONS(4939), - [anon_sym_BSLASHglspl] = ACTIONS(4939), - [anon_sym_BSLASHGlspl] = ACTIONS(4939), - [anon_sym_BSLASHGLSpl] = ACTIONS(4939), - [anon_sym_BSLASHglsdisp] = ACTIONS(4939), - [anon_sym_BSLASHglslink] = ACTIONS(4939), - [anon_sym_BSLASHglstext] = ACTIONS(4939), - [anon_sym_BSLASHGlstext] = ACTIONS(4939), - [anon_sym_BSLASHGLStext] = ACTIONS(4939), - [anon_sym_BSLASHglsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), - [anon_sym_BSLASHglsplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSplural] = ACTIONS(4939), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), - [anon_sym_BSLASHglsname] = ACTIONS(4939), - [anon_sym_BSLASHGlsname] = ACTIONS(4939), - [anon_sym_BSLASHGLSname] = ACTIONS(4939), - [anon_sym_BSLASHglssymbol] = ACTIONS(4939), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), - [anon_sym_BSLASHglsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), - [anon_sym_BSLASHglsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), - [anon_sym_BSLASHglsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), - [anon_sym_BSLASHglsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), - [anon_sym_BSLASHglsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), - [anon_sym_BSLASHnewacronym] = ACTIONS(4939), - [anon_sym_BSLASHacrshort] = ACTIONS(4939), - [anon_sym_BSLASHAcrshort] = ACTIONS(4939), - [anon_sym_BSLASHACRshort] = ACTIONS(4939), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), - [anon_sym_BSLASHacrlong] = ACTIONS(4939), - [anon_sym_BSLASHAcrlong] = ACTIONS(4939), - [anon_sym_BSLASHACRlong] = ACTIONS(4939), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), - [anon_sym_BSLASHacrfull] = ACTIONS(4939), - [anon_sym_BSLASHAcrfull] = ACTIONS(4939), - [anon_sym_BSLASHACRfull] = ACTIONS(4939), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), - [anon_sym_BSLASHacs] = ACTIONS(4939), - [anon_sym_BSLASHAcs] = ACTIONS(4939), - [anon_sym_BSLASHacsp] = ACTIONS(4939), - [anon_sym_BSLASHAcsp] = ACTIONS(4939), - [anon_sym_BSLASHacl] = ACTIONS(4939), - [anon_sym_BSLASHAcl] = ACTIONS(4939), - [anon_sym_BSLASHaclp] = ACTIONS(4939), - [anon_sym_BSLASHAclp] = ACTIONS(4939), - [anon_sym_BSLASHacf] = ACTIONS(4939), - [anon_sym_BSLASHAcf] = ACTIONS(4939), - [anon_sym_BSLASHacfp] = ACTIONS(4939), - [anon_sym_BSLASHAcfp] = ACTIONS(4939), - [anon_sym_BSLASHac] = ACTIONS(4939), - [anon_sym_BSLASHAc] = ACTIONS(4939), - [anon_sym_BSLASHacp] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), - [anon_sym_BSLASHcolor] = ACTIONS(4939), - [anon_sym_BSLASHcolorbox] = ACTIONS(4939), - [anon_sym_BSLASHtextcolor] = ACTIONS(4939), - [anon_sym_BSLASHpagecolor] = ACTIONS(4939), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [sym_command_name] = ACTIONS(5018), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5018), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [sym_word] = ACTIONS(5018), + [sym_placeholder] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5018), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5018), + [anon_sym_BSLASHinclude] = ACTIONS(5018), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5018), + [anon_sym_BSLASHinput] = ACTIONS(5018), + [anon_sym_BSLASHsubfile] = ACTIONS(5018), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5018), + [anon_sym_BSLASHbibliography] = ACTIONS(5018), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5018), + [anon_sym_BSLASHincludesvg] = ACTIONS(5018), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5018), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5018), + [anon_sym_BSLASHimport] = ACTIONS(5018), + [anon_sym_BSLASHsubimport] = ACTIONS(5018), + [anon_sym_BSLASHinputfrom] = ACTIONS(5018), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5018), + [anon_sym_BSLASHincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5018), + [anon_sym_BSLASHcaption] = ACTIONS(5018), + [anon_sym_BSLASHcite] = ACTIONS(5018), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCite] = ACTIONS(5018), + [anon_sym_BSLASHnocite] = ACTIONS(5018), + [anon_sym_BSLASHcitet] = ACTIONS(5018), + [anon_sym_BSLASHcitep] = ACTIONS(5018), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteauthor] = ACTIONS(5018), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5018), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitetitle] = ACTIONS(5018), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteyear] = ACTIONS(5018), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5016), + [anon_sym_BSLASHcitedate] = ACTIONS(5018), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5016), + [anon_sym_BSLASHciteurl] = ACTIONS(5018), + [anon_sym_BSLASHfullcite] = ACTIONS(5018), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5018), + [anon_sym_BSLASHcitealt] = ACTIONS(5018), + [anon_sym_BSLASHcitealp] = ACTIONS(5018), + [anon_sym_BSLASHcitetext] = ACTIONS(5018), + [anon_sym_BSLASHparencite] = ACTIONS(5018), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHParencite] = ACTIONS(5018), + [anon_sym_BSLASHfootcite] = ACTIONS(5018), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5018), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5018), + [anon_sym_BSLASHtextcite] = ACTIONS(5018), + [anon_sym_BSLASHTextcite] = ACTIONS(5018), + [anon_sym_BSLASHsmartcite] = ACTIONS(5018), + [anon_sym_BSLASHSmartcite] = ACTIONS(5018), + [anon_sym_BSLASHsupercite] = ACTIONS(5018), + [anon_sym_BSLASHautocite] = ACTIONS(5018), + [anon_sym_BSLASHAutocite] = ACTIONS(5018), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5016), + [anon_sym_BSLASHvolcite] = ACTIONS(5018), + [anon_sym_BSLASHVolcite] = ACTIONS(5018), + [anon_sym_BSLASHpvolcite] = ACTIONS(5018), + [anon_sym_BSLASHPvolcite] = ACTIONS(5018), + [anon_sym_BSLASHfvolcite] = ACTIONS(5018), + [anon_sym_BSLASHftvolcite] = ACTIONS(5018), + [anon_sym_BSLASHsvolcite] = ACTIONS(5018), + [anon_sym_BSLASHSvolcite] = ACTIONS(5018), + [anon_sym_BSLASHtvolcite] = ACTIONS(5018), + [anon_sym_BSLASHTvolcite] = ACTIONS(5018), + [anon_sym_BSLASHavolcite] = ACTIONS(5018), + [anon_sym_BSLASHAvolcite] = ACTIONS(5018), + [anon_sym_BSLASHnotecite] = ACTIONS(5018), + [anon_sym_BSLASHNotecite] = ACTIONS(5018), + [anon_sym_BSLASHpnotecite] = ACTIONS(5018), + [anon_sym_BSLASHPnotecite] = ACTIONS(5018), + [anon_sym_BSLASHfnotecite] = ACTIONS(5018), + [anon_sym_BSLASHlabel] = ACTIONS(5018), + [anon_sym_BSLASHref] = ACTIONS(5018), + [anon_sym_BSLASHeqref] = ACTIONS(5018), + [anon_sym_BSLASHvref] = ACTIONS(5018), + [anon_sym_BSLASHVref] = ACTIONS(5018), + [anon_sym_BSLASHautoref] = ACTIONS(5018), + [anon_sym_BSLASHpageref] = ACTIONS(5018), + [anon_sym_BSLASHcref] = ACTIONS(5018), + [anon_sym_BSLASHCref] = ACTIONS(5018), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnameCref] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5018), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5018), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5018), + [anon_sym_BSLASHlabelcref] = ACTIONS(5018), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange] = ACTIONS(5018), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHCrefrange] = ACTIONS(5018), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5016), + [anon_sym_BSLASHnewlabel] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand] = ACTIONS(5018), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5018), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5018), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5016), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5018), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdef] = ACTIONS(5018), + [anon_sym_BSLASHlet] = ACTIONS(5018), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5018), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5018), + [anon_sym_BSLASHgls] = ACTIONS(5018), + [anon_sym_BSLASHGls] = ACTIONS(5018), + [anon_sym_BSLASHGLS] = ACTIONS(5018), + [anon_sym_BSLASHglspl] = ACTIONS(5018), + [anon_sym_BSLASHGlspl] = ACTIONS(5018), + [anon_sym_BSLASHGLSpl] = ACTIONS(5018), + [anon_sym_BSLASHglsdisp] = ACTIONS(5018), + [anon_sym_BSLASHglslink] = ACTIONS(5018), + [anon_sym_BSLASHglstext] = ACTIONS(5018), + [anon_sym_BSLASHGlstext] = ACTIONS(5018), + [anon_sym_BSLASHGLStext] = ACTIONS(5018), + [anon_sym_BSLASHglsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5018), + [anon_sym_BSLASHglsplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSplural] = ACTIONS(5018), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5018), + [anon_sym_BSLASHglsname] = ACTIONS(5018), + [anon_sym_BSLASHGlsname] = ACTIONS(5018), + [anon_sym_BSLASHGLSname] = ACTIONS(5018), + [anon_sym_BSLASHglssymbol] = ACTIONS(5018), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5018), + [anon_sym_BSLASHglsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5018), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5018), + [anon_sym_BSLASHglsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5018), + [anon_sym_BSLASHglsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5018), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5018), + [anon_sym_BSLASHglsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5018), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5018), + [anon_sym_BSLASHglsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5018), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5018), + [anon_sym_BSLASHnewacronym] = ACTIONS(5018), + [anon_sym_BSLASHacrshort] = ACTIONS(5018), + [anon_sym_BSLASHAcrshort] = ACTIONS(5018), + [anon_sym_BSLASHACRshort] = ACTIONS(5018), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5018), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5018), + [anon_sym_BSLASHacrlong] = ACTIONS(5018), + [anon_sym_BSLASHAcrlong] = ACTIONS(5018), + [anon_sym_BSLASHACRlong] = ACTIONS(5018), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5018), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5018), + [anon_sym_BSLASHacrfull] = ACTIONS(5018), + [anon_sym_BSLASHAcrfull] = ACTIONS(5018), + [anon_sym_BSLASHACRfull] = ACTIONS(5018), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5018), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5018), + [anon_sym_BSLASHacs] = ACTIONS(5018), + [anon_sym_BSLASHAcs] = ACTIONS(5018), + [anon_sym_BSLASHacsp] = ACTIONS(5018), + [anon_sym_BSLASHAcsp] = ACTIONS(5018), + [anon_sym_BSLASHacl] = ACTIONS(5018), + [anon_sym_BSLASHAcl] = ACTIONS(5018), + [anon_sym_BSLASHaclp] = ACTIONS(5018), + [anon_sym_BSLASHAclp] = ACTIONS(5018), + [anon_sym_BSLASHacf] = ACTIONS(5018), + [anon_sym_BSLASHAcf] = ACTIONS(5018), + [anon_sym_BSLASHacfp] = ACTIONS(5018), + [anon_sym_BSLASHAcfp] = ACTIONS(5018), + [anon_sym_BSLASHac] = ACTIONS(5018), + [anon_sym_BSLASHAc] = ACTIONS(5018), + [anon_sym_BSLASHacp] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5018), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5018), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5018), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5018), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5018), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5016), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5018), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5018), + [anon_sym_BSLASHcolor] = ACTIONS(5018), + [anon_sym_BSLASHcolorbox] = ACTIONS(5018), + [anon_sym_BSLASHtextcolor] = ACTIONS(5018), + [anon_sym_BSLASHpagecolor] = ACTIONS(5018), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5018), }, [1552] = { - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [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_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_BSLASHdeclaretheorem] = ACTIONS(5045), - [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), + [sym_command_name] = ACTIONS(5124), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_RBRACE] = ACTIONS(5122), + [sym_word] = ACTIONS(5124), + [sym_placeholder] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym__] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_SQUOTE] = ACTIONS(5124), + [anon_sym_BSLASHusepackage] = ACTIONS(5124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5124), + [anon_sym_BSLASHinclude] = ACTIONS(5124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5124), + [anon_sym_BSLASHinput] = ACTIONS(5124), + [anon_sym_BSLASHsubfile] = ACTIONS(5124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5124), + [anon_sym_BSLASHbibliography] = ACTIONS(5124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5124), + [anon_sym_BSLASHincludesvg] = ACTIONS(5124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5124), + [anon_sym_BSLASHimport] = ACTIONS(5124), + [anon_sym_BSLASHsubimport] = ACTIONS(5124), + [anon_sym_BSLASHinputfrom] = ACTIONS(5124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5124), + [anon_sym_BSLASHincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5124), + [anon_sym_BSLASHcaption] = ACTIONS(5124), + [anon_sym_BSLASHcite] = ACTIONS(5124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCite] = ACTIONS(5124), + [anon_sym_BSLASHnocite] = ACTIONS(5124), + [anon_sym_BSLASHcitet] = ACTIONS(5124), + [anon_sym_BSLASHcitep] = ACTIONS(5124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteauthor] = ACTIONS(5124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitetitle] = ACTIONS(5124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteyear] = ACTIONS(5124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5122), + [anon_sym_BSLASHcitedate] = ACTIONS(5124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5122), + [anon_sym_BSLASHciteurl] = ACTIONS(5124), + [anon_sym_BSLASHfullcite] = ACTIONS(5124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5124), + [anon_sym_BSLASHcitealt] = ACTIONS(5124), + [anon_sym_BSLASHcitealp] = ACTIONS(5124), + [anon_sym_BSLASHcitetext] = ACTIONS(5124), + [anon_sym_BSLASHparencite] = ACTIONS(5124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHParencite] = ACTIONS(5124), + [anon_sym_BSLASHfootcite] = ACTIONS(5124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5124), + [anon_sym_BSLASHtextcite] = ACTIONS(5124), + [anon_sym_BSLASHTextcite] = ACTIONS(5124), + [anon_sym_BSLASHsmartcite] = ACTIONS(5124), + [anon_sym_BSLASHSmartcite] = ACTIONS(5124), + [anon_sym_BSLASHsupercite] = ACTIONS(5124), + [anon_sym_BSLASHautocite] = ACTIONS(5124), + [anon_sym_BSLASHAutocite] = ACTIONS(5124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5122), + [anon_sym_BSLASHvolcite] = ACTIONS(5124), + [anon_sym_BSLASHVolcite] = ACTIONS(5124), + [anon_sym_BSLASHpvolcite] = ACTIONS(5124), + [anon_sym_BSLASHPvolcite] = ACTIONS(5124), + [anon_sym_BSLASHfvolcite] = ACTIONS(5124), + [anon_sym_BSLASHftvolcite] = ACTIONS(5124), + [anon_sym_BSLASHsvolcite] = ACTIONS(5124), + [anon_sym_BSLASHSvolcite] = ACTIONS(5124), + [anon_sym_BSLASHtvolcite] = ACTIONS(5124), + [anon_sym_BSLASHTvolcite] = ACTIONS(5124), + [anon_sym_BSLASHavolcite] = ACTIONS(5124), + [anon_sym_BSLASHAvolcite] = ACTIONS(5124), + [anon_sym_BSLASHnotecite] = ACTIONS(5124), + [anon_sym_BSLASHNotecite] = ACTIONS(5124), + [anon_sym_BSLASHpnotecite] = ACTIONS(5124), + [anon_sym_BSLASHPnotecite] = ACTIONS(5124), + [anon_sym_BSLASHfnotecite] = ACTIONS(5124), + [anon_sym_BSLASHlabel] = ACTIONS(5124), + [anon_sym_BSLASHref] = ACTIONS(5124), + [anon_sym_BSLASHeqref] = ACTIONS(5124), + [anon_sym_BSLASHvref] = ACTIONS(5124), + [anon_sym_BSLASHVref] = ACTIONS(5124), + [anon_sym_BSLASHautoref] = ACTIONS(5124), + [anon_sym_BSLASHpageref] = ACTIONS(5124), + [anon_sym_BSLASHcref] = ACTIONS(5124), + [anon_sym_BSLASHCref] = ACTIONS(5124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnameCref] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5124), + [anon_sym_BSLASHlabelcref] = ACTIONS(5124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange] = ACTIONS(5124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHCrefrange] = ACTIONS(5124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5122), + [anon_sym_BSLASHnewlabel] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand] = ACTIONS(5124), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5124), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5124), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5122), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdef] = ACTIONS(5124), + [anon_sym_BSLASHlet] = ACTIONS(5124), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5124), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5124), + [anon_sym_BSLASHgls] = ACTIONS(5124), + [anon_sym_BSLASHGls] = ACTIONS(5124), + [anon_sym_BSLASHGLS] = ACTIONS(5124), + [anon_sym_BSLASHglspl] = ACTIONS(5124), + [anon_sym_BSLASHGlspl] = ACTIONS(5124), + [anon_sym_BSLASHGLSpl] = ACTIONS(5124), + [anon_sym_BSLASHglsdisp] = ACTIONS(5124), + [anon_sym_BSLASHglslink] = ACTIONS(5124), + [anon_sym_BSLASHglstext] = ACTIONS(5124), + [anon_sym_BSLASHGlstext] = ACTIONS(5124), + [anon_sym_BSLASHGLStext] = ACTIONS(5124), + [anon_sym_BSLASHglsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5124), + [anon_sym_BSLASHglsplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSplural] = ACTIONS(5124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5124), + [anon_sym_BSLASHglsname] = ACTIONS(5124), + [anon_sym_BSLASHGlsname] = ACTIONS(5124), + [anon_sym_BSLASHGLSname] = ACTIONS(5124), + [anon_sym_BSLASHglssymbol] = ACTIONS(5124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5124), + [anon_sym_BSLASHglsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5124), + [anon_sym_BSLASHglsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5124), + [anon_sym_BSLASHglsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5124), + [anon_sym_BSLASHglsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5124), + [anon_sym_BSLASHglsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5124), + [anon_sym_BSLASHnewacronym] = ACTIONS(5124), + [anon_sym_BSLASHacrshort] = ACTIONS(5124), + [anon_sym_BSLASHAcrshort] = ACTIONS(5124), + [anon_sym_BSLASHACRshort] = ACTIONS(5124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5124), + [anon_sym_BSLASHacrlong] = ACTIONS(5124), + [anon_sym_BSLASHAcrlong] = ACTIONS(5124), + [anon_sym_BSLASHACRlong] = ACTIONS(5124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5124), + [anon_sym_BSLASHacrfull] = ACTIONS(5124), + [anon_sym_BSLASHAcrfull] = ACTIONS(5124), + [anon_sym_BSLASHACRfull] = ACTIONS(5124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5124), + [anon_sym_BSLASHacs] = ACTIONS(5124), + [anon_sym_BSLASHAcs] = ACTIONS(5124), + [anon_sym_BSLASHacsp] = ACTIONS(5124), + [anon_sym_BSLASHAcsp] = ACTIONS(5124), + [anon_sym_BSLASHacl] = ACTIONS(5124), + [anon_sym_BSLASHAcl] = ACTIONS(5124), + [anon_sym_BSLASHaclp] = ACTIONS(5124), + [anon_sym_BSLASHAclp] = ACTIONS(5124), + [anon_sym_BSLASHacf] = ACTIONS(5124), + [anon_sym_BSLASHAcf] = ACTIONS(5124), + [anon_sym_BSLASHacfp] = ACTIONS(5124), + [anon_sym_BSLASHAcfp] = ACTIONS(5124), + [anon_sym_BSLASHac] = ACTIONS(5124), + [anon_sym_BSLASHAc] = ACTIONS(5124), + [anon_sym_BSLASHacp] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5124), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5124), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5122), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5124), + [anon_sym_BSLASHcolor] = ACTIONS(5124), + [anon_sym_BSLASHcolorbox] = ACTIONS(5124), + [anon_sym_BSLASHtextcolor] = ACTIONS(5124), + [anon_sym_BSLASHpagecolor] = ACTIONS(5124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5124), }, [1553] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5053), - [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), + [sym_command_name] = ACTIONS(5132), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5132), + [anon_sym_RBRACK] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(5130), + [anon_sym_RBRACE] = ACTIONS(5130), + [sym_word] = ACTIONS(5132), + [sym_placeholder] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5132), + [anon_sym_SLASH] = ACTIONS(5132), + [anon_sym_CARET] = ACTIONS(5132), + [anon_sym__] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_SQUOTE] = ACTIONS(5132), + [anon_sym_BSLASHusepackage] = ACTIONS(5132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5132), + [anon_sym_BSLASHinclude] = ACTIONS(5132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5132), + [anon_sym_BSLASHinput] = ACTIONS(5132), + [anon_sym_BSLASHsubfile] = ACTIONS(5132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5132), + [anon_sym_BSLASHbibliography] = ACTIONS(5132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5132), + [anon_sym_BSLASHincludesvg] = ACTIONS(5132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5132), + [anon_sym_BSLASHimport] = ACTIONS(5132), + [anon_sym_BSLASHsubimport] = ACTIONS(5132), + [anon_sym_BSLASHinputfrom] = ACTIONS(5132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5132), + [anon_sym_BSLASHincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5132), + [anon_sym_BSLASHcaption] = ACTIONS(5132), + [anon_sym_BSLASHcite] = ACTIONS(5132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCite] = ACTIONS(5132), + [anon_sym_BSLASHnocite] = ACTIONS(5132), + [anon_sym_BSLASHcitet] = ACTIONS(5132), + [anon_sym_BSLASHcitep] = ACTIONS(5132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteauthor] = ACTIONS(5132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitetitle] = ACTIONS(5132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteyear] = ACTIONS(5132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5130), + [anon_sym_BSLASHcitedate] = ACTIONS(5132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5130), + [anon_sym_BSLASHciteurl] = ACTIONS(5132), + [anon_sym_BSLASHfullcite] = ACTIONS(5132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5132), + [anon_sym_BSLASHcitealt] = ACTIONS(5132), + [anon_sym_BSLASHcitealp] = ACTIONS(5132), + [anon_sym_BSLASHcitetext] = ACTIONS(5132), + [anon_sym_BSLASHparencite] = ACTIONS(5132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHParencite] = ACTIONS(5132), + [anon_sym_BSLASHfootcite] = ACTIONS(5132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5132), + [anon_sym_BSLASHtextcite] = ACTIONS(5132), + [anon_sym_BSLASHTextcite] = ACTIONS(5132), + [anon_sym_BSLASHsmartcite] = ACTIONS(5132), + [anon_sym_BSLASHSmartcite] = ACTIONS(5132), + [anon_sym_BSLASHsupercite] = ACTIONS(5132), + [anon_sym_BSLASHautocite] = ACTIONS(5132), + [anon_sym_BSLASHAutocite] = ACTIONS(5132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5130), + [anon_sym_BSLASHvolcite] = ACTIONS(5132), + [anon_sym_BSLASHVolcite] = ACTIONS(5132), + [anon_sym_BSLASHpvolcite] = ACTIONS(5132), + [anon_sym_BSLASHPvolcite] = ACTIONS(5132), + [anon_sym_BSLASHfvolcite] = ACTIONS(5132), + [anon_sym_BSLASHftvolcite] = ACTIONS(5132), + [anon_sym_BSLASHsvolcite] = ACTIONS(5132), + [anon_sym_BSLASHSvolcite] = ACTIONS(5132), + [anon_sym_BSLASHtvolcite] = ACTIONS(5132), + [anon_sym_BSLASHTvolcite] = ACTIONS(5132), + [anon_sym_BSLASHavolcite] = ACTIONS(5132), + [anon_sym_BSLASHAvolcite] = ACTIONS(5132), + [anon_sym_BSLASHnotecite] = ACTIONS(5132), + [anon_sym_BSLASHNotecite] = ACTIONS(5132), + [anon_sym_BSLASHpnotecite] = ACTIONS(5132), + [anon_sym_BSLASHPnotecite] = ACTIONS(5132), + [anon_sym_BSLASHfnotecite] = ACTIONS(5132), + [anon_sym_BSLASHlabel] = ACTIONS(5132), + [anon_sym_BSLASHref] = ACTIONS(5132), + [anon_sym_BSLASHeqref] = ACTIONS(5132), + [anon_sym_BSLASHvref] = ACTIONS(5132), + [anon_sym_BSLASHVref] = ACTIONS(5132), + [anon_sym_BSLASHautoref] = ACTIONS(5132), + [anon_sym_BSLASHpageref] = ACTIONS(5132), + [anon_sym_BSLASHcref] = ACTIONS(5132), + [anon_sym_BSLASHCref] = ACTIONS(5132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnameCref] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5132), + [anon_sym_BSLASHlabelcref] = ACTIONS(5132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange] = ACTIONS(5132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHCrefrange] = ACTIONS(5132), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5130), + [anon_sym_BSLASHnewlabel] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand] = ACTIONS(5132), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5132), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5132), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5130), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdef] = ACTIONS(5132), + [anon_sym_BSLASHlet] = ACTIONS(5132), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5132), + [anon_sym_BSLASHgls] = ACTIONS(5132), + [anon_sym_BSLASHGls] = ACTIONS(5132), + [anon_sym_BSLASHGLS] = ACTIONS(5132), + [anon_sym_BSLASHglspl] = ACTIONS(5132), + [anon_sym_BSLASHGlspl] = ACTIONS(5132), + [anon_sym_BSLASHGLSpl] = ACTIONS(5132), + [anon_sym_BSLASHglsdisp] = ACTIONS(5132), + [anon_sym_BSLASHglslink] = ACTIONS(5132), + [anon_sym_BSLASHglstext] = ACTIONS(5132), + [anon_sym_BSLASHGlstext] = ACTIONS(5132), + [anon_sym_BSLASHGLStext] = ACTIONS(5132), + [anon_sym_BSLASHglsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5132), + [anon_sym_BSLASHglsplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSplural] = ACTIONS(5132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5132), + [anon_sym_BSLASHglsname] = ACTIONS(5132), + [anon_sym_BSLASHGlsname] = ACTIONS(5132), + [anon_sym_BSLASHGLSname] = ACTIONS(5132), + [anon_sym_BSLASHglssymbol] = ACTIONS(5132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5132), + [anon_sym_BSLASHglsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5132), + [anon_sym_BSLASHglsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5132), + [anon_sym_BSLASHglsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5132), + [anon_sym_BSLASHglsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5132), + [anon_sym_BSLASHglsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5132), + [anon_sym_BSLASHnewacronym] = ACTIONS(5132), + [anon_sym_BSLASHacrshort] = ACTIONS(5132), + [anon_sym_BSLASHAcrshort] = ACTIONS(5132), + [anon_sym_BSLASHACRshort] = ACTIONS(5132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5132), + [anon_sym_BSLASHacrlong] = ACTIONS(5132), + [anon_sym_BSLASHAcrlong] = ACTIONS(5132), + [anon_sym_BSLASHACRlong] = ACTIONS(5132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5132), + [anon_sym_BSLASHacrfull] = ACTIONS(5132), + [anon_sym_BSLASHAcrfull] = ACTIONS(5132), + [anon_sym_BSLASHACRfull] = ACTIONS(5132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5132), + [anon_sym_BSLASHacs] = ACTIONS(5132), + [anon_sym_BSLASHAcs] = ACTIONS(5132), + [anon_sym_BSLASHacsp] = ACTIONS(5132), + [anon_sym_BSLASHAcsp] = ACTIONS(5132), + [anon_sym_BSLASHacl] = ACTIONS(5132), + [anon_sym_BSLASHAcl] = ACTIONS(5132), + [anon_sym_BSLASHaclp] = ACTIONS(5132), + [anon_sym_BSLASHAclp] = ACTIONS(5132), + [anon_sym_BSLASHacf] = ACTIONS(5132), + [anon_sym_BSLASHAcf] = ACTIONS(5132), + [anon_sym_BSLASHacfp] = ACTIONS(5132), + [anon_sym_BSLASHAcfp] = ACTIONS(5132), + [anon_sym_BSLASHac] = ACTIONS(5132), + [anon_sym_BSLASHAc] = ACTIONS(5132), + [anon_sym_BSLASHacp] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5132), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5132), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5132), + [anon_sym_BSLASHcolor] = ACTIONS(5132), + [anon_sym_BSLASHcolorbox] = ACTIONS(5132), + [anon_sym_BSLASHtextcolor] = ACTIONS(5132), + [anon_sym_BSLASHpagecolor] = ACTIONS(5132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5132), }, [1554] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5057), - [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(5136), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5136), + [anon_sym_RBRACK] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_RBRACE] = ACTIONS(5134), + [sym_word] = ACTIONS(5136), + [sym_placeholder] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym__] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_SQUOTE] = ACTIONS(5136), + [anon_sym_BSLASHusepackage] = ACTIONS(5136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5136), + [anon_sym_BSLASHinclude] = ACTIONS(5136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5136), + [anon_sym_BSLASHinput] = ACTIONS(5136), + [anon_sym_BSLASHsubfile] = ACTIONS(5136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5136), + [anon_sym_BSLASHbibliography] = ACTIONS(5136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5136), + [anon_sym_BSLASHincludesvg] = ACTIONS(5136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5136), + [anon_sym_BSLASHimport] = ACTIONS(5136), + [anon_sym_BSLASHsubimport] = ACTIONS(5136), + [anon_sym_BSLASHinputfrom] = ACTIONS(5136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5136), + [anon_sym_BSLASHincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5136), + [anon_sym_BSLASHcaption] = ACTIONS(5136), + [anon_sym_BSLASHcite] = ACTIONS(5136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCite] = ACTIONS(5136), + [anon_sym_BSLASHnocite] = ACTIONS(5136), + [anon_sym_BSLASHcitet] = ACTIONS(5136), + [anon_sym_BSLASHcitep] = ACTIONS(5136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteauthor] = ACTIONS(5136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitetitle] = ACTIONS(5136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteyear] = ACTIONS(5136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5134), + [anon_sym_BSLASHcitedate] = ACTIONS(5136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5134), + [anon_sym_BSLASHciteurl] = ACTIONS(5136), + [anon_sym_BSLASHfullcite] = ACTIONS(5136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5136), + [anon_sym_BSLASHcitealt] = ACTIONS(5136), + [anon_sym_BSLASHcitealp] = ACTIONS(5136), + [anon_sym_BSLASHcitetext] = ACTIONS(5136), + [anon_sym_BSLASHparencite] = ACTIONS(5136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHParencite] = ACTIONS(5136), + [anon_sym_BSLASHfootcite] = ACTIONS(5136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5136), + [anon_sym_BSLASHtextcite] = ACTIONS(5136), + [anon_sym_BSLASHTextcite] = ACTIONS(5136), + [anon_sym_BSLASHsmartcite] = ACTIONS(5136), + [anon_sym_BSLASHSmartcite] = ACTIONS(5136), + [anon_sym_BSLASHsupercite] = ACTIONS(5136), + [anon_sym_BSLASHautocite] = ACTIONS(5136), + [anon_sym_BSLASHAutocite] = ACTIONS(5136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5134), + [anon_sym_BSLASHvolcite] = ACTIONS(5136), + [anon_sym_BSLASHVolcite] = ACTIONS(5136), + [anon_sym_BSLASHpvolcite] = ACTIONS(5136), + [anon_sym_BSLASHPvolcite] = ACTIONS(5136), + [anon_sym_BSLASHfvolcite] = ACTIONS(5136), + [anon_sym_BSLASHftvolcite] = ACTIONS(5136), + [anon_sym_BSLASHsvolcite] = ACTIONS(5136), + [anon_sym_BSLASHSvolcite] = ACTIONS(5136), + [anon_sym_BSLASHtvolcite] = ACTIONS(5136), + [anon_sym_BSLASHTvolcite] = ACTIONS(5136), + [anon_sym_BSLASHavolcite] = ACTIONS(5136), + [anon_sym_BSLASHAvolcite] = ACTIONS(5136), + [anon_sym_BSLASHnotecite] = ACTIONS(5136), + [anon_sym_BSLASHNotecite] = ACTIONS(5136), + [anon_sym_BSLASHpnotecite] = ACTIONS(5136), + [anon_sym_BSLASHPnotecite] = ACTIONS(5136), + [anon_sym_BSLASHfnotecite] = ACTIONS(5136), + [anon_sym_BSLASHlabel] = ACTIONS(5136), + [anon_sym_BSLASHref] = ACTIONS(5136), + [anon_sym_BSLASHeqref] = ACTIONS(5136), + [anon_sym_BSLASHvref] = ACTIONS(5136), + [anon_sym_BSLASHVref] = ACTIONS(5136), + [anon_sym_BSLASHautoref] = ACTIONS(5136), + [anon_sym_BSLASHpageref] = ACTIONS(5136), + [anon_sym_BSLASHcref] = ACTIONS(5136), + [anon_sym_BSLASHCref] = ACTIONS(5136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnameCref] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5136), + [anon_sym_BSLASHlabelcref] = ACTIONS(5136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange] = ACTIONS(5136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHCrefrange] = ACTIONS(5136), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5134), + [anon_sym_BSLASHnewlabel] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand] = ACTIONS(5136), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5136), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5136), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdef] = ACTIONS(5136), + [anon_sym_BSLASHlet] = ACTIONS(5136), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5136), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5136), + [anon_sym_BSLASHgls] = ACTIONS(5136), + [anon_sym_BSLASHGls] = ACTIONS(5136), + [anon_sym_BSLASHGLS] = ACTIONS(5136), + [anon_sym_BSLASHglspl] = ACTIONS(5136), + [anon_sym_BSLASHGlspl] = ACTIONS(5136), + [anon_sym_BSLASHGLSpl] = ACTIONS(5136), + [anon_sym_BSLASHglsdisp] = ACTIONS(5136), + [anon_sym_BSLASHglslink] = ACTIONS(5136), + [anon_sym_BSLASHglstext] = ACTIONS(5136), + [anon_sym_BSLASHGlstext] = ACTIONS(5136), + [anon_sym_BSLASHGLStext] = ACTIONS(5136), + [anon_sym_BSLASHglsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5136), + [anon_sym_BSLASHglsplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSplural] = ACTIONS(5136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5136), + [anon_sym_BSLASHglsname] = ACTIONS(5136), + [anon_sym_BSLASHGlsname] = ACTIONS(5136), + [anon_sym_BSLASHGLSname] = ACTIONS(5136), + [anon_sym_BSLASHglssymbol] = ACTIONS(5136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5136), + [anon_sym_BSLASHglsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5136), + [anon_sym_BSLASHglsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5136), + [anon_sym_BSLASHglsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5136), + [anon_sym_BSLASHglsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5136), + [anon_sym_BSLASHglsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5136), + [anon_sym_BSLASHnewacronym] = ACTIONS(5136), + [anon_sym_BSLASHacrshort] = ACTIONS(5136), + [anon_sym_BSLASHAcrshort] = ACTIONS(5136), + [anon_sym_BSLASHACRshort] = ACTIONS(5136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5136), + [anon_sym_BSLASHacrlong] = ACTIONS(5136), + [anon_sym_BSLASHAcrlong] = ACTIONS(5136), + [anon_sym_BSLASHACRlong] = ACTIONS(5136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5136), + [anon_sym_BSLASHacrfull] = ACTIONS(5136), + [anon_sym_BSLASHAcrfull] = ACTIONS(5136), + [anon_sym_BSLASHACRfull] = ACTIONS(5136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5136), + [anon_sym_BSLASHacs] = ACTIONS(5136), + [anon_sym_BSLASHAcs] = ACTIONS(5136), + [anon_sym_BSLASHacsp] = ACTIONS(5136), + [anon_sym_BSLASHAcsp] = ACTIONS(5136), + [anon_sym_BSLASHacl] = ACTIONS(5136), + [anon_sym_BSLASHAcl] = ACTIONS(5136), + [anon_sym_BSLASHaclp] = ACTIONS(5136), + [anon_sym_BSLASHAclp] = ACTIONS(5136), + [anon_sym_BSLASHacf] = ACTIONS(5136), + [anon_sym_BSLASHAcf] = ACTIONS(5136), + [anon_sym_BSLASHacfp] = ACTIONS(5136), + [anon_sym_BSLASHAcfp] = ACTIONS(5136), + [anon_sym_BSLASHac] = ACTIONS(5136), + [anon_sym_BSLASHAc] = ACTIONS(5136), + [anon_sym_BSLASHacp] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5136), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5136), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5134), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5136), + [anon_sym_BSLASHcolor] = ACTIONS(5136), + [anon_sym_BSLASHcolorbox] = ACTIONS(5136), + [anon_sym_BSLASHtextcolor] = ACTIONS(5136), + [anon_sym_BSLASHpagecolor] = ACTIONS(5136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5136), }, [1555] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5193), - [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), + [sym_command_name] = ACTIONS(5272), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5272), + [anon_sym_RBRACK] = ACTIONS(5270), + [anon_sym_COMMA] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_RBRACE] = ACTIONS(5270), + [sym_word] = ACTIONS(5272), + [sym_placeholder] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(5272), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym__] = ACTIONS(5272), + [anon_sym_LT] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_SQUOTE] = ACTIONS(5272), + [anon_sym_BSLASHusepackage] = ACTIONS(5272), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5272), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5272), + [anon_sym_BSLASHinclude] = ACTIONS(5272), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5272), + [anon_sym_BSLASHinput] = ACTIONS(5272), + [anon_sym_BSLASHsubfile] = ACTIONS(5272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5272), + [anon_sym_BSLASHbibliography] = ACTIONS(5272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5272), + [anon_sym_BSLASHincludesvg] = ACTIONS(5272), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5272), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5272), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5272), + [anon_sym_BSLASHimport] = ACTIONS(5272), + [anon_sym_BSLASHsubimport] = ACTIONS(5272), + [anon_sym_BSLASHinputfrom] = ACTIONS(5272), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5272), + [anon_sym_BSLASHincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5272), + [anon_sym_BSLASHcaption] = ACTIONS(5272), + [anon_sym_BSLASHcite] = ACTIONS(5272), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCite] = ACTIONS(5272), + [anon_sym_BSLASHnocite] = ACTIONS(5272), + [anon_sym_BSLASHcitet] = ACTIONS(5272), + [anon_sym_BSLASHcitep] = ACTIONS(5272), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteauthor] = ACTIONS(5272), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5272), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitetitle] = ACTIONS(5272), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteyear] = ACTIONS(5272), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5270), + [anon_sym_BSLASHcitedate] = ACTIONS(5272), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5270), + [anon_sym_BSLASHciteurl] = ACTIONS(5272), + [anon_sym_BSLASHfullcite] = ACTIONS(5272), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5272), + [anon_sym_BSLASHcitealt] = ACTIONS(5272), + [anon_sym_BSLASHcitealp] = ACTIONS(5272), + [anon_sym_BSLASHcitetext] = ACTIONS(5272), + [anon_sym_BSLASHparencite] = ACTIONS(5272), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHParencite] = ACTIONS(5272), + [anon_sym_BSLASHfootcite] = ACTIONS(5272), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5272), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5272), + [anon_sym_BSLASHtextcite] = ACTIONS(5272), + [anon_sym_BSLASHTextcite] = ACTIONS(5272), + [anon_sym_BSLASHsmartcite] = ACTIONS(5272), + [anon_sym_BSLASHSmartcite] = ACTIONS(5272), + [anon_sym_BSLASHsupercite] = ACTIONS(5272), + [anon_sym_BSLASHautocite] = ACTIONS(5272), + [anon_sym_BSLASHAutocite] = ACTIONS(5272), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5270), + [anon_sym_BSLASHvolcite] = ACTIONS(5272), + [anon_sym_BSLASHVolcite] = ACTIONS(5272), + [anon_sym_BSLASHpvolcite] = ACTIONS(5272), + [anon_sym_BSLASHPvolcite] = ACTIONS(5272), + [anon_sym_BSLASHfvolcite] = ACTIONS(5272), + [anon_sym_BSLASHftvolcite] = ACTIONS(5272), + [anon_sym_BSLASHsvolcite] = ACTIONS(5272), + [anon_sym_BSLASHSvolcite] = ACTIONS(5272), + [anon_sym_BSLASHtvolcite] = ACTIONS(5272), + [anon_sym_BSLASHTvolcite] = ACTIONS(5272), + [anon_sym_BSLASHavolcite] = ACTIONS(5272), + [anon_sym_BSLASHAvolcite] = ACTIONS(5272), + [anon_sym_BSLASHnotecite] = ACTIONS(5272), + [anon_sym_BSLASHNotecite] = ACTIONS(5272), + [anon_sym_BSLASHpnotecite] = ACTIONS(5272), + [anon_sym_BSLASHPnotecite] = ACTIONS(5272), + [anon_sym_BSLASHfnotecite] = ACTIONS(5272), + [anon_sym_BSLASHlabel] = ACTIONS(5272), + [anon_sym_BSLASHref] = ACTIONS(5272), + [anon_sym_BSLASHeqref] = ACTIONS(5272), + [anon_sym_BSLASHvref] = ACTIONS(5272), + [anon_sym_BSLASHVref] = ACTIONS(5272), + [anon_sym_BSLASHautoref] = ACTIONS(5272), + [anon_sym_BSLASHpageref] = ACTIONS(5272), + [anon_sym_BSLASHcref] = ACTIONS(5272), + [anon_sym_BSLASHCref] = ACTIONS(5272), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnameCref] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5272), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5272), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5272), + [anon_sym_BSLASHlabelcref] = ACTIONS(5272), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange] = ACTIONS(5272), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHCrefrange] = ACTIONS(5272), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5270), + [anon_sym_BSLASHnewlabel] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand] = ACTIONS(5272), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5272), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5272), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5270), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5272), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdef] = ACTIONS(5272), + [anon_sym_BSLASHlet] = ACTIONS(5272), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5272), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5272), + [anon_sym_BSLASHgls] = ACTIONS(5272), + [anon_sym_BSLASHGls] = ACTIONS(5272), + [anon_sym_BSLASHGLS] = ACTIONS(5272), + [anon_sym_BSLASHglspl] = ACTIONS(5272), + [anon_sym_BSLASHGlspl] = ACTIONS(5272), + [anon_sym_BSLASHGLSpl] = ACTIONS(5272), + [anon_sym_BSLASHglsdisp] = ACTIONS(5272), + [anon_sym_BSLASHglslink] = ACTIONS(5272), + [anon_sym_BSLASHglstext] = ACTIONS(5272), + [anon_sym_BSLASHGlstext] = ACTIONS(5272), + [anon_sym_BSLASHGLStext] = ACTIONS(5272), + [anon_sym_BSLASHglsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5272), + [anon_sym_BSLASHglsplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSplural] = ACTIONS(5272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5272), + [anon_sym_BSLASHglsname] = ACTIONS(5272), + [anon_sym_BSLASHGlsname] = ACTIONS(5272), + [anon_sym_BSLASHGLSname] = ACTIONS(5272), + [anon_sym_BSLASHglssymbol] = ACTIONS(5272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5272), + [anon_sym_BSLASHglsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5272), + [anon_sym_BSLASHglsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5272), + [anon_sym_BSLASHglsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5272), + [anon_sym_BSLASHglsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5272), + [anon_sym_BSLASHglsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5272), + [anon_sym_BSLASHnewacronym] = ACTIONS(5272), + [anon_sym_BSLASHacrshort] = ACTIONS(5272), + [anon_sym_BSLASHAcrshort] = ACTIONS(5272), + [anon_sym_BSLASHACRshort] = ACTIONS(5272), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5272), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5272), + [anon_sym_BSLASHacrlong] = ACTIONS(5272), + [anon_sym_BSLASHAcrlong] = ACTIONS(5272), + [anon_sym_BSLASHACRlong] = ACTIONS(5272), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5272), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5272), + [anon_sym_BSLASHacrfull] = ACTIONS(5272), + [anon_sym_BSLASHAcrfull] = ACTIONS(5272), + [anon_sym_BSLASHACRfull] = ACTIONS(5272), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5272), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5272), + [anon_sym_BSLASHacs] = ACTIONS(5272), + [anon_sym_BSLASHAcs] = ACTIONS(5272), + [anon_sym_BSLASHacsp] = ACTIONS(5272), + [anon_sym_BSLASHAcsp] = ACTIONS(5272), + [anon_sym_BSLASHacl] = ACTIONS(5272), + [anon_sym_BSLASHAcl] = ACTIONS(5272), + [anon_sym_BSLASHaclp] = ACTIONS(5272), + [anon_sym_BSLASHAclp] = ACTIONS(5272), + [anon_sym_BSLASHacf] = ACTIONS(5272), + [anon_sym_BSLASHAcf] = ACTIONS(5272), + [anon_sym_BSLASHacfp] = ACTIONS(5272), + [anon_sym_BSLASHAcfp] = ACTIONS(5272), + [anon_sym_BSLASHac] = ACTIONS(5272), + [anon_sym_BSLASHAc] = ACTIONS(5272), + [anon_sym_BSLASHacp] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5272), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5272), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5272), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5272), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5272), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5270), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5272), + [anon_sym_BSLASHcolor] = ACTIONS(5272), + [anon_sym_BSLASHcolorbox] = ACTIONS(5272), + [anon_sym_BSLASHtextcolor] = ACTIONS(5272), + [anon_sym_BSLASHpagecolor] = ACTIONS(5272), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5272), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5272), }, [1556] = { - [sym_command_name] = ACTIONS(4887), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4887), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_EQ] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [sym_word] = ACTIONS(4887), - [sym_placeholder] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_PIPE] = ACTIONS(4887), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_BSLASHusepackage] = ACTIONS(4887), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), - [anon_sym_BSLASHinclude] = ACTIONS(4887), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), - [anon_sym_BSLASHinput] = ACTIONS(4887), - [anon_sym_BSLASHsubfile] = ACTIONS(4887), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), - [anon_sym_BSLASHbibliography] = ACTIONS(4887), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), - [anon_sym_BSLASHincludesvg] = ACTIONS(4887), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), - [anon_sym_BSLASHimport] = ACTIONS(4887), - [anon_sym_BSLASHsubimport] = ACTIONS(4887), - [anon_sym_BSLASHinputfrom] = ACTIONS(4887), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), - [anon_sym_BSLASHincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), - [anon_sym_BSLASHcaption] = ACTIONS(4887), - [anon_sym_BSLASHcite] = ACTIONS(4887), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCite] = ACTIONS(4887), - [anon_sym_BSLASHnocite] = ACTIONS(4887), - [anon_sym_BSLASHcitet] = ACTIONS(4887), - [anon_sym_BSLASHcitep] = ACTIONS(4887), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteauthor] = ACTIONS(4887), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitetitle] = ACTIONS(4887), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteyear] = ACTIONS(4887), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), - [anon_sym_BSLASHcitedate] = ACTIONS(4887), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), - [anon_sym_BSLASHciteurl] = ACTIONS(4887), - [anon_sym_BSLASHfullcite] = ACTIONS(4887), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), - [anon_sym_BSLASHcitealt] = ACTIONS(4887), - [anon_sym_BSLASHcitealp] = ACTIONS(4887), - [anon_sym_BSLASHcitetext] = ACTIONS(4887), - [anon_sym_BSLASHparencite] = ACTIONS(4887), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHParencite] = ACTIONS(4887), - [anon_sym_BSLASHfootcite] = ACTIONS(4887), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), - [anon_sym_BSLASHtextcite] = ACTIONS(4887), - [anon_sym_BSLASHTextcite] = ACTIONS(4887), - [anon_sym_BSLASHsmartcite] = ACTIONS(4887), - [anon_sym_BSLASHSmartcite] = ACTIONS(4887), - [anon_sym_BSLASHsupercite] = ACTIONS(4887), - [anon_sym_BSLASHautocite] = ACTIONS(4887), - [anon_sym_BSLASHAutocite] = ACTIONS(4887), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), - [anon_sym_BSLASHvolcite] = ACTIONS(4887), - [anon_sym_BSLASHVolcite] = ACTIONS(4887), - [anon_sym_BSLASHpvolcite] = ACTIONS(4887), - [anon_sym_BSLASHPvolcite] = ACTIONS(4887), - [anon_sym_BSLASHfvolcite] = ACTIONS(4887), - [anon_sym_BSLASHftvolcite] = ACTIONS(4887), - [anon_sym_BSLASHsvolcite] = ACTIONS(4887), - [anon_sym_BSLASHSvolcite] = ACTIONS(4887), - [anon_sym_BSLASHtvolcite] = ACTIONS(4887), - [anon_sym_BSLASHTvolcite] = ACTIONS(4887), - [anon_sym_BSLASHavolcite] = ACTIONS(4887), - [anon_sym_BSLASHAvolcite] = ACTIONS(4887), - [anon_sym_BSLASHnotecite] = ACTIONS(4887), - [anon_sym_BSLASHNotecite] = ACTIONS(4887), - [anon_sym_BSLASHpnotecite] = ACTIONS(4887), - [anon_sym_BSLASHPnotecite] = ACTIONS(4887), - [anon_sym_BSLASHfnotecite] = ACTIONS(4887), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [anon_sym_BSLASHref] = ACTIONS(4887), - [anon_sym_BSLASHeqref] = ACTIONS(4887), - [anon_sym_BSLASHvref] = ACTIONS(4887), - [anon_sym_BSLASHVref] = ACTIONS(4887), - [anon_sym_BSLASHautoref] = ACTIONS(4887), - [anon_sym_BSLASHpageref] = ACTIONS(4887), - [anon_sym_BSLASHcref] = ACTIONS(4887), - [anon_sym_BSLASHCref] = ACTIONS(4887), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnameCref] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), - [anon_sym_BSLASHlabelcref] = ACTIONS(4887), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange] = ACTIONS(4887), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4887), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand] = ACTIONS(4887), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), - [anon_sym_BSLASHdef] = ACTIONS(4887), - [anon_sym_BSLASHlet] = ACTIONS(4887), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), - [anon_sym_BSLASHgls] = ACTIONS(4887), - [anon_sym_BSLASHGls] = ACTIONS(4887), - [anon_sym_BSLASHGLS] = ACTIONS(4887), - [anon_sym_BSLASHglspl] = ACTIONS(4887), - [anon_sym_BSLASHGlspl] = ACTIONS(4887), - [anon_sym_BSLASHGLSpl] = ACTIONS(4887), - [anon_sym_BSLASHglsdisp] = ACTIONS(4887), - [anon_sym_BSLASHglslink] = ACTIONS(4887), - [anon_sym_BSLASHglstext] = ACTIONS(4887), - [anon_sym_BSLASHGlstext] = ACTIONS(4887), - [anon_sym_BSLASHGLStext] = ACTIONS(4887), - [anon_sym_BSLASHglsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), - [anon_sym_BSLASHglsplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSplural] = ACTIONS(4887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), - [anon_sym_BSLASHglsname] = ACTIONS(4887), - [anon_sym_BSLASHGlsname] = ACTIONS(4887), - [anon_sym_BSLASHGLSname] = ACTIONS(4887), - [anon_sym_BSLASHglssymbol] = ACTIONS(4887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), - [anon_sym_BSLASHglsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), - [anon_sym_BSLASHglsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), - [anon_sym_BSLASHglsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), - [anon_sym_BSLASHglsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), - [anon_sym_BSLASHglsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), - [anon_sym_BSLASHnewacronym] = ACTIONS(4887), - [anon_sym_BSLASHacrshort] = ACTIONS(4887), - [anon_sym_BSLASHAcrshort] = ACTIONS(4887), - [anon_sym_BSLASHACRshort] = ACTIONS(4887), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), - [anon_sym_BSLASHacrlong] = ACTIONS(4887), - [anon_sym_BSLASHAcrlong] = ACTIONS(4887), - [anon_sym_BSLASHACRlong] = ACTIONS(4887), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), - [anon_sym_BSLASHacrfull] = ACTIONS(4887), - [anon_sym_BSLASHAcrfull] = ACTIONS(4887), - [anon_sym_BSLASHACRfull] = ACTIONS(4887), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), - [anon_sym_BSLASHacs] = ACTIONS(4887), - [anon_sym_BSLASHAcs] = ACTIONS(4887), - [anon_sym_BSLASHacsp] = ACTIONS(4887), - [anon_sym_BSLASHAcsp] = ACTIONS(4887), - [anon_sym_BSLASHacl] = ACTIONS(4887), - [anon_sym_BSLASHAcl] = ACTIONS(4887), - [anon_sym_BSLASHaclp] = ACTIONS(4887), - [anon_sym_BSLASHAclp] = ACTIONS(4887), - [anon_sym_BSLASHacf] = ACTIONS(4887), - [anon_sym_BSLASHAcf] = ACTIONS(4887), - [anon_sym_BSLASHacfp] = ACTIONS(4887), - [anon_sym_BSLASHAcfp] = ACTIONS(4887), - [anon_sym_BSLASHac] = ACTIONS(4887), - [anon_sym_BSLASHAc] = ACTIONS(4887), - [anon_sym_BSLASHacp] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), - [anon_sym_BSLASHcolor] = ACTIONS(4887), - [anon_sym_BSLASHcolorbox] = ACTIONS(4887), - [anon_sym_BSLASHtextcolor] = ACTIONS(4887), - [anon_sym_BSLASHpagecolor] = ACTIONS(4887), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [sym_command_name] = ACTIONS(4966), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4966), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [sym_word] = ACTIONS(4966), + [sym_placeholder] = ACTIONS(4964), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym__] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4966), + [anon_sym_SQUOTE] = ACTIONS(4966), + [anon_sym_BSLASHusepackage] = ACTIONS(4966), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4966), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4966), + [anon_sym_BSLASHinclude] = ACTIONS(4966), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4966), + [anon_sym_BSLASHinput] = ACTIONS(4966), + [anon_sym_BSLASHsubfile] = ACTIONS(4966), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4966), + [anon_sym_BSLASHbibliography] = ACTIONS(4966), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4966), + [anon_sym_BSLASHincludesvg] = ACTIONS(4966), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4966), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4966), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4966), + [anon_sym_BSLASHimport] = ACTIONS(4966), + [anon_sym_BSLASHsubimport] = ACTIONS(4966), + [anon_sym_BSLASHinputfrom] = ACTIONS(4966), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4966), + [anon_sym_BSLASHincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4966), + [anon_sym_BSLASHcaption] = ACTIONS(4966), + [anon_sym_BSLASHcite] = ACTIONS(4966), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCite] = ACTIONS(4966), + [anon_sym_BSLASHnocite] = ACTIONS(4966), + [anon_sym_BSLASHcitet] = ACTIONS(4966), + [anon_sym_BSLASHcitep] = ACTIONS(4966), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteauthor] = ACTIONS(4966), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4966), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitetitle] = ACTIONS(4966), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteyear] = ACTIONS(4966), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4964), + [anon_sym_BSLASHcitedate] = ACTIONS(4966), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4964), + [anon_sym_BSLASHciteurl] = ACTIONS(4966), + [anon_sym_BSLASHfullcite] = ACTIONS(4966), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4966), + [anon_sym_BSLASHcitealt] = ACTIONS(4966), + [anon_sym_BSLASHcitealp] = ACTIONS(4966), + [anon_sym_BSLASHcitetext] = ACTIONS(4966), + [anon_sym_BSLASHparencite] = ACTIONS(4966), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHParencite] = ACTIONS(4966), + [anon_sym_BSLASHfootcite] = ACTIONS(4966), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4966), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4966), + [anon_sym_BSLASHtextcite] = ACTIONS(4966), + [anon_sym_BSLASHTextcite] = ACTIONS(4966), + [anon_sym_BSLASHsmartcite] = ACTIONS(4966), + [anon_sym_BSLASHSmartcite] = ACTIONS(4966), + [anon_sym_BSLASHsupercite] = ACTIONS(4966), + [anon_sym_BSLASHautocite] = ACTIONS(4966), + [anon_sym_BSLASHAutocite] = ACTIONS(4966), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4964), + [anon_sym_BSLASHvolcite] = ACTIONS(4966), + [anon_sym_BSLASHVolcite] = ACTIONS(4966), + [anon_sym_BSLASHpvolcite] = ACTIONS(4966), + [anon_sym_BSLASHPvolcite] = ACTIONS(4966), + [anon_sym_BSLASHfvolcite] = ACTIONS(4966), + [anon_sym_BSLASHftvolcite] = ACTIONS(4966), + [anon_sym_BSLASHsvolcite] = ACTIONS(4966), + [anon_sym_BSLASHSvolcite] = ACTIONS(4966), + [anon_sym_BSLASHtvolcite] = ACTIONS(4966), + [anon_sym_BSLASHTvolcite] = ACTIONS(4966), + [anon_sym_BSLASHavolcite] = ACTIONS(4966), + [anon_sym_BSLASHAvolcite] = ACTIONS(4966), + [anon_sym_BSLASHnotecite] = ACTIONS(4966), + [anon_sym_BSLASHNotecite] = ACTIONS(4966), + [anon_sym_BSLASHpnotecite] = ACTIONS(4966), + [anon_sym_BSLASHPnotecite] = ACTIONS(4966), + [anon_sym_BSLASHfnotecite] = ACTIONS(4966), + [anon_sym_BSLASHlabel] = ACTIONS(4966), + [anon_sym_BSLASHref] = ACTIONS(4966), + [anon_sym_BSLASHeqref] = ACTIONS(4966), + [anon_sym_BSLASHvref] = ACTIONS(4966), + [anon_sym_BSLASHVref] = ACTIONS(4966), + [anon_sym_BSLASHautoref] = ACTIONS(4966), + [anon_sym_BSLASHpageref] = ACTIONS(4966), + [anon_sym_BSLASHcref] = ACTIONS(4966), + [anon_sym_BSLASHCref] = ACTIONS(4966), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnameCref] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4966), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4966), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4966), + [anon_sym_BSLASHlabelcref] = ACTIONS(4966), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange] = ACTIONS(4966), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHCrefrange] = ACTIONS(4966), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4964), + [anon_sym_BSLASHnewlabel] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand] = ACTIONS(4966), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4966), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4966), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4964), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4966), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdef] = ACTIONS(4966), + [anon_sym_BSLASHlet] = ACTIONS(4966), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4966), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4966), + [anon_sym_BSLASHgls] = ACTIONS(4966), + [anon_sym_BSLASHGls] = ACTIONS(4966), + [anon_sym_BSLASHGLS] = ACTIONS(4966), + [anon_sym_BSLASHglspl] = ACTIONS(4966), + [anon_sym_BSLASHGlspl] = ACTIONS(4966), + [anon_sym_BSLASHGLSpl] = ACTIONS(4966), + [anon_sym_BSLASHglsdisp] = ACTIONS(4966), + [anon_sym_BSLASHglslink] = ACTIONS(4966), + [anon_sym_BSLASHglstext] = ACTIONS(4966), + [anon_sym_BSLASHGlstext] = ACTIONS(4966), + [anon_sym_BSLASHGLStext] = ACTIONS(4966), + [anon_sym_BSLASHglsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4966), + [anon_sym_BSLASHglsplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSplural] = ACTIONS(4966), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4966), + [anon_sym_BSLASHglsname] = ACTIONS(4966), + [anon_sym_BSLASHGlsname] = ACTIONS(4966), + [anon_sym_BSLASHGLSname] = ACTIONS(4966), + [anon_sym_BSLASHglssymbol] = ACTIONS(4966), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4966), + [anon_sym_BSLASHglsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4966), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4966), + [anon_sym_BSLASHglsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4966), + [anon_sym_BSLASHglsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4966), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4966), + [anon_sym_BSLASHglsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4966), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4966), + [anon_sym_BSLASHglsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4966), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4966), + [anon_sym_BSLASHnewacronym] = ACTIONS(4966), + [anon_sym_BSLASHacrshort] = ACTIONS(4966), + [anon_sym_BSLASHAcrshort] = ACTIONS(4966), + [anon_sym_BSLASHACRshort] = ACTIONS(4966), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4966), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4966), + [anon_sym_BSLASHacrlong] = ACTIONS(4966), + [anon_sym_BSLASHAcrlong] = ACTIONS(4966), + [anon_sym_BSLASHACRlong] = ACTIONS(4966), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4966), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4966), + [anon_sym_BSLASHacrfull] = ACTIONS(4966), + [anon_sym_BSLASHAcrfull] = ACTIONS(4966), + [anon_sym_BSLASHACRfull] = ACTIONS(4966), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4966), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4966), + [anon_sym_BSLASHacs] = ACTIONS(4966), + [anon_sym_BSLASHAcs] = ACTIONS(4966), + [anon_sym_BSLASHacsp] = ACTIONS(4966), + [anon_sym_BSLASHAcsp] = ACTIONS(4966), + [anon_sym_BSLASHacl] = ACTIONS(4966), + [anon_sym_BSLASHAcl] = ACTIONS(4966), + [anon_sym_BSLASHaclp] = ACTIONS(4966), + [anon_sym_BSLASHAclp] = ACTIONS(4966), + [anon_sym_BSLASHacf] = ACTIONS(4966), + [anon_sym_BSLASHAcf] = ACTIONS(4966), + [anon_sym_BSLASHacfp] = ACTIONS(4966), + [anon_sym_BSLASHAcfp] = ACTIONS(4966), + [anon_sym_BSLASHac] = ACTIONS(4966), + [anon_sym_BSLASHAc] = ACTIONS(4966), + [anon_sym_BSLASHacp] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4966), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4966), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4966), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4966), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4966), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4964), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4966), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4966), + [anon_sym_BSLASHcolor] = ACTIONS(4966), + [anon_sym_BSLASHcolorbox] = ACTIONS(4966), + [anon_sym_BSLASHtextcolor] = ACTIONS(4966), + [anon_sym_BSLASHpagecolor] = ACTIONS(4966), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4966), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4966), }, [1557] = { - [sym_command_name] = ACTIONS(5157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_RBRACE] = ACTIONS(5155), - [sym_word] = ACTIONS(5157), - [sym_placeholder] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym__] = ACTIONS(5157), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), - [anon_sym_BSLASHinclude] = ACTIONS(5157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), - [anon_sym_BSLASHinput] = ACTIONS(5157), - [anon_sym_BSLASHsubfile] = ACTIONS(5157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), - [anon_sym_BSLASHbibliography] = ACTIONS(5157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), - [anon_sym_BSLASHincludesvg] = ACTIONS(5157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), - [anon_sym_BSLASHimport] = ACTIONS(5157), - [anon_sym_BSLASHsubimport] = ACTIONS(5157), - [anon_sym_BSLASHinputfrom] = ACTIONS(5157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), - [anon_sym_BSLASHincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), - [anon_sym_BSLASHcaption] = ACTIONS(5157), - [anon_sym_BSLASHcite] = ACTIONS(5157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCite] = ACTIONS(5157), - [anon_sym_BSLASHnocite] = ACTIONS(5157), - [anon_sym_BSLASHcitet] = ACTIONS(5157), - [anon_sym_BSLASHcitep] = ACTIONS(5157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteyear] = ACTIONS(5157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), - [anon_sym_BSLASHcitedate] = ACTIONS(5157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), - [anon_sym_BSLASHciteurl] = ACTIONS(5157), - [anon_sym_BSLASHfullcite] = ACTIONS(5157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), - [anon_sym_BSLASHcitealt] = ACTIONS(5157), - [anon_sym_BSLASHcitealp] = ACTIONS(5157), - [anon_sym_BSLASHcitetext] = ACTIONS(5157), - [anon_sym_BSLASHparencite] = ACTIONS(5157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHParencite] = ACTIONS(5157), - [anon_sym_BSLASHfootcite] = ACTIONS(5157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), - [anon_sym_BSLASHtextcite] = ACTIONS(5157), - [anon_sym_BSLASHTextcite] = ACTIONS(5157), - [anon_sym_BSLASHsmartcite] = ACTIONS(5157), - [anon_sym_BSLASHSmartcite] = ACTIONS(5157), - [anon_sym_BSLASHsupercite] = ACTIONS(5157), - [anon_sym_BSLASHautocite] = ACTIONS(5157), - [anon_sym_BSLASHAutocite] = ACTIONS(5157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), - [anon_sym_BSLASHvolcite] = ACTIONS(5157), - [anon_sym_BSLASHVolcite] = ACTIONS(5157), - [anon_sym_BSLASHpvolcite] = ACTIONS(5157), - [anon_sym_BSLASHPvolcite] = ACTIONS(5157), - [anon_sym_BSLASHfvolcite] = ACTIONS(5157), - [anon_sym_BSLASHftvolcite] = ACTIONS(5157), - [anon_sym_BSLASHsvolcite] = ACTIONS(5157), - [anon_sym_BSLASHSvolcite] = ACTIONS(5157), - [anon_sym_BSLASHtvolcite] = ACTIONS(5157), - [anon_sym_BSLASHTvolcite] = ACTIONS(5157), - [anon_sym_BSLASHavolcite] = ACTIONS(5157), - [anon_sym_BSLASHAvolcite] = ACTIONS(5157), - [anon_sym_BSLASHnotecite] = ACTIONS(5157), - [anon_sym_BSLASHNotecite] = ACTIONS(5157), - [anon_sym_BSLASHpnotecite] = ACTIONS(5157), - [anon_sym_BSLASHPnotecite] = ACTIONS(5157), - [anon_sym_BSLASHfnotecite] = ACTIONS(5157), - [anon_sym_BSLASHlabel] = ACTIONS(5157), - [anon_sym_BSLASHref] = ACTIONS(5157), - [anon_sym_BSLASHeqref] = ACTIONS(5157), - [anon_sym_BSLASHvref] = ACTIONS(5157), - [anon_sym_BSLASHVref] = ACTIONS(5157), - [anon_sym_BSLASHautoref] = ACTIONS(5157), - [anon_sym_BSLASHpageref] = ACTIONS(5157), - [anon_sym_BSLASHcref] = ACTIONS(5157), - [anon_sym_BSLASHCref] = ACTIONS(5157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnameCref] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), - [anon_sym_BSLASHlabelcref] = ACTIONS(5157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange] = ACTIONS(5157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), - [anon_sym_BSLASHnewlabel] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand] = ACTIONS(5157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), - [anon_sym_BSLASHdef] = ACTIONS(5157), - [anon_sym_BSLASHlet] = ACTIONS(5157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), - [anon_sym_BSLASHgls] = ACTIONS(5157), - [anon_sym_BSLASHGls] = ACTIONS(5157), - [anon_sym_BSLASHGLS] = ACTIONS(5157), - [anon_sym_BSLASHglspl] = ACTIONS(5157), - [anon_sym_BSLASHGlspl] = ACTIONS(5157), - [anon_sym_BSLASHGLSpl] = ACTIONS(5157), - [anon_sym_BSLASHglsdisp] = ACTIONS(5157), - [anon_sym_BSLASHglslink] = ACTIONS(5157), - [anon_sym_BSLASHglstext] = ACTIONS(5157), - [anon_sym_BSLASHGlstext] = ACTIONS(5157), - [anon_sym_BSLASHGLStext] = ACTIONS(5157), - [anon_sym_BSLASHglsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), - [anon_sym_BSLASHglsplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSplural] = ACTIONS(5157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), - [anon_sym_BSLASHglsname] = ACTIONS(5157), - [anon_sym_BSLASHGlsname] = ACTIONS(5157), - [anon_sym_BSLASHGLSname] = ACTIONS(5157), - [anon_sym_BSLASHglssymbol] = ACTIONS(5157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), - [anon_sym_BSLASHglsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), - [anon_sym_BSLASHglsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), - [anon_sym_BSLASHglsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), - [anon_sym_BSLASHglsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), - [anon_sym_BSLASHglsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), - [anon_sym_BSLASHnewacronym] = ACTIONS(5157), - [anon_sym_BSLASHacrshort] = ACTIONS(5157), - [anon_sym_BSLASHAcrshort] = ACTIONS(5157), - [anon_sym_BSLASHACRshort] = ACTIONS(5157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), - [anon_sym_BSLASHacrlong] = ACTIONS(5157), - [anon_sym_BSLASHAcrlong] = ACTIONS(5157), - [anon_sym_BSLASHACRlong] = ACTIONS(5157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), - [anon_sym_BSLASHacrfull] = ACTIONS(5157), - [anon_sym_BSLASHAcrfull] = ACTIONS(5157), - [anon_sym_BSLASHACRfull] = ACTIONS(5157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), - [anon_sym_BSLASHacs] = ACTIONS(5157), - [anon_sym_BSLASHAcs] = ACTIONS(5157), - [anon_sym_BSLASHacsp] = ACTIONS(5157), - [anon_sym_BSLASHAcsp] = ACTIONS(5157), - [anon_sym_BSLASHacl] = ACTIONS(5157), - [anon_sym_BSLASHAcl] = ACTIONS(5157), - [anon_sym_BSLASHaclp] = ACTIONS(5157), - [anon_sym_BSLASHAclp] = ACTIONS(5157), - [anon_sym_BSLASHacf] = ACTIONS(5157), - [anon_sym_BSLASHAcf] = ACTIONS(5157), - [anon_sym_BSLASHacfp] = ACTIONS(5157), - [anon_sym_BSLASHAcfp] = ACTIONS(5157), - [anon_sym_BSLASHac] = ACTIONS(5157), - [anon_sym_BSLASHAc] = ACTIONS(5157), - [anon_sym_BSLASHacp] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), - [anon_sym_BSLASHcolor] = ACTIONS(5157), - [anon_sym_BSLASHcolorbox] = ACTIONS(5157), - [anon_sym_BSLASHtextcolor] = ACTIONS(5157), - [anon_sym_BSLASHpagecolor] = ACTIONS(5157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [sym_command_name] = ACTIONS(5236), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5236), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [sym_word] = ACTIONS(5236), + [sym_placeholder] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym__] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_SQUOTE] = ACTIONS(5236), + [anon_sym_BSLASHusepackage] = ACTIONS(5236), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5236), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5236), + [anon_sym_BSLASHinclude] = ACTIONS(5236), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5236), + [anon_sym_BSLASHinput] = ACTIONS(5236), + [anon_sym_BSLASHsubfile] = ACTIONS(5236), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5236), + [anon_sym_BSLASHbibliography] = ACTIONS(5236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5236), + [anon_sym_BSLASHincludesvg] = ACTIONS(5236), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5236), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5236), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5236), + [anon_sym_BSLASHimport] = ACTIONS(5236), + [anon_sym_BSLASHsubimport] = ACTIONS(5236), + [anon_sym_BSLASHinputfrom] = ACTIONS(5236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5236), + [anon_sym_BSLASHincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5236), + [anon_sym_BSLASHcaption] = ACTIONS(5236), + [anon_sym_BSLASHcite] = ACTIONS(5236), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCite] = ACTIONS(5236), + [anon_sym_BSLASHnocite] = ACTIONS(5236), + [anon_sym_BSLASHcitet] = ACTIONS(5236), + [anon_sym_BSLASHcitep] = ACTIONS(5236), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteauthor] = ACTIONS(5236), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5236), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitetitle] = ACTIONS(5236), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteyear] = ACTIONS(5236), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5234), + [anon_sym_BSLASHcitedate] = ACTIONS(5236), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5234), + [anon_sym_BSLASHciteurl] = ACTIONS(5236), + [anon_sym_BSLASHfullcite] = ACTIONS(5236), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5236), + [anon_sym_BSLASHcitealt] = ACTIONS(5236), + [anon_sym_BSLASHcitealp] = ACTIONS(5236), + [anon_sym_BSLASHcitetext] = ACTIONS(5236), + [anon_sym_BSLASHparencite] = ACTIONS(5236), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHParencite] = ACTIONS(5236), + [anon_sym_BSLASHfootcite] = ACTIONS(5236), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5236), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5236), + [anon_sym_BSLASHtextcite] = ACTIONS(5236), + [anon_sym_BSLASHTextcite] = ACTIONS(5236), + [anon_sym_BSLASHsmartcite] = ACTIONS(5236), + [anon_sym_BSLASHSmartcite] = ACTIONS(5236), + [anon_sym_BSLASHsupercite] = ACTIONS(5236), + [anon_sym_BSLASHautocite] = ACTIONS(5236), + [anon_sym_BSLASHAutocite] = ACTIONS(5236), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5234), + [anon_sym_BSLASHvolcite] = ACTIONS(5236), + [anon_sym_BSLASHVolcite] = ACTIONS(5236), + [anon_sym_BSLASHpvolcite] = ACTIONS(5236), + [anon_sym_BSLASHPvolcite] = ACTIONS(5236), + [anon_sym_BSLASHfvolcite] = ACTIONS(5236), + [anon_sym_BSLASHftvolcite] = ACTIONS(5236), + [anon_sym_BSLASHsvolcite] = ACTIONS(5236), + [anon_sym_BSLASHSvolcite] = ACTIONS(5236), + [anon_sym_BSLASHtvolcite] = ACTIONS(5236), + [anon_sym_BSLASHTvolcite] = ACTIONS(5236), + [anon_sym_BSLASHavolcite] = ACTIONS(5236), + [anon_sym_BSLASHAvolcite] = ACTIONS(5236), + [anon_sym_BSLASHnotecite] = ACTIONS(5236), + [anon_sym_BSLASHNotecite] = ACTIONS(5236), + [anon_sym_BSLASHpnotecite] = ACTIONS(5236), + [anon_sym_BSLASHPnotecite] = ACTIONS(5236), + [anon_sym_BSLASHfnotecite] = ACTIONS(5236), + [anon_sym_BSLASHlabel] = ACTIONS(5236), + [anon_sym_BSLASHref] = ACTIONS(5236), + [anon_sym_BSLASHeqref] = ACTIONS(5236), + [anon_sym_BSLASHvref] = ACTIONS(5236), + [anon_sym_BSLASHVref] = ACTIONS(5236), + [anon_sym_BSLASHautoref] = ACTIONS(5236), + [anon_sym_BSLASHpageref] = ACTIONS(5236), + [anon_sym_BSLASHcref] = ACTIONS(5236), + [anon_sym_BSLASHCref] = ACTIONS(5236), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnameCref] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5236), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5236), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5236), + [anon_sym_BSLASHlabelcref] = ACTIONS(5236), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange] = ACTIONS(5236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHCrefrange] = ACTIONS(5236), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5234), + [anon_sym_BSLASHnewlabel] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand] = ACTIONS(5236), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5236), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5236), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5234), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5236), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdef] = ACTIONS(5236), + [anon_sym_BSLASHlet] = ACTIONS(5236), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5236), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5236), + [anon_sym_BSLASHgls] = ACTIONS(5236), + [anon_sym_BSLASHGls] = ACTIONS(5236), + [anon_sym_BSLASHGLS] = ACTIONS(5236), + [anon_sym_BSLASHglspl] = ACTIONS(5236), + [anon_sym_BSLASHGlspl] = ACTIONS(5236), + [anon_sym_BSLASHGLSpl] = ACTIONS(5236), + [anon_sym_BSLASHglsdisp] = ACTIONS(5236), + [anon_sym_BSLASHglslink] = ACTIONS(5236), + [anon_sym_BSLASHglstext] = ACTIONS(5236), + [anon_sym_BSLASHGlstext] = ACTIONS(5236), + [anon_sym_BSLASHGLStext] = ACTIONS(5236), + [anon_sym_BSLASHglsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5236), + [anon_sym_BSLASHglsplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSplural] = ACTIONS(5236), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5236), + [anon_sym_BSLASHglsname] = ACTIONS(5236), + [anon_sym_BSLASHGlsname] = ACTIONS(5236), + [anon_sym_BSLASHGLSname] = ACTIONS(5236), + [anon_sym_BSLASHglssymbol] = ACTIONS(5236), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5236), + [anon_sym_BSLASHglsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5236), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5236), + [anon_sym_BSLASHglsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5236), + [anon_sym_BSLASHglsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5236), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5236), + [anon_sym_BSLASHglsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5236), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5236), + [anon_sym_BSLASHglsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5236), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5236), + [anon_sym_BSLASHnewacronym] = ACTIONS(5236), + [anon_sym_BSLASHacrshort] = ACTIONS(5236), + [anon_sym_BSLASHAcrshort] = ACTIONS(5236), + [anon_sym_BSLASHACRshort] = ACTIONS(5236), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), + [anon_sym_BSLASHacrlong] = ACTIONS(5236), + [anon_sym_BSLASHAcrlong] = ACTIONS(5236), + [anon_sym_BSLASHACRlong] = ACTIONS(5236), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), + [anon_sym_BSLASHacrfull] = ACTIONS(5236), + [anon_sym_BSLASHAcrfull] = ACTIONS(5236), + [anon_sym_BSLASHACRfull] = ACTIONS(5236), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), + [anon_sym_BSLASHacs] = ACTIONS(5236), + [anon_sym_BSLASHAcs] = ACTIONS(5236), + [anon_sym_BSLASHacsp] = ACTIONS(5236), + [anon_sym_BSLASHAcsp] = ACTIONS(5236), + [anon_sym_BSLASHacl] = ACTIONS(5236), + [anon_sym_BSLASHAcl] = ACTIONS(5236), + [anon_sym_BSLASHaclp] = ACTIONS(5236), + [anon_sym_BSLASHAclp] = ACTIONS(5236), + [anon_sym_BSLASHacf] = ACTIONS(5236), + [anon_sym_BSLASHAcf] = ACTIONS(5236), + [anon_sym_BSLASHacfp] = ACTIONS(5236), + [anon_sym_BSLASHAcfp] = ACTIONS(5236), + [anon_sym_BSLASHac] = ACTIONS(5236), + [anon_sym_BSLASHAc] = ACTIONS(5236), + [anon_sym_BSLASHacp] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5236), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5236), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5234), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5236), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5236), + [anon_sym_BSLASHcolor] = ACTIONS(5236), + [anon_sym_BSLASHcolorbox] = ACTIONS(5236), + [anon_sym_BSLASHtextcolor] = ACTIONS(5236), + [anon_sym_BSLASHpagecolor] = ACTIONS(5236), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5236), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5236), }, [1558] = { - [sym_command_name] = ACTIONS(5309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5307), - [anon_sym_COMMA] = ACTIONS(5307), - [anon_sym_EQ] = ACTIONS(5307), - [anon_sym_RBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(5309), - [sym_placeholder] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_SLASH] = ACTIONS(5309), - [anon_sym_CARET] = ACTIONS(5309), - [anon_sym__] = ACTIONS(5309), - [anon_sym_LT] = ACTIONS(5309), - [anon_sym_GT] = ACTIONS(5309), - [anon_sym_BANG] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(5309), - [anon_sym_COLON] = ACTIONS(5309), - [anon_sym_SQUOTE] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), - [anon_sym_BSLASHinclude] = ACTIONS(5309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), - [anon_sym_BSLASHinput] = ACTIONS(5309), - [anon_sym_BSLASHsubfile] = ACTIONS(5309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), - [anon_sym_BSLASHbibliography] = ACTIONS(5309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), - [anon_sym_BSLASHincludesvg] = ACTIONS(5309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), - [anon_sym_BSLASHimport] = ACTIONS(5309), - [anon_sym_BSLASHsubimport] = ACTIONS(5309), - [anon_sym_BSLASHinputfrom] = ACTIONS(5309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), - [anon_sym_BSLASHincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), - [anon_sym_BSLASHcaption] = ACTIONS(5309), - [anon_sym_BSLASHcite] = ACTIONS(5309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCite] = ACTIONS(5309), - [anon_sym_BSLASHnocite] = ACTIONS(5309), - [anon_sym_BSLASHcitet] = ACTIONS(5309), - [anon_sym_BSLASHcitep] = ACTIONS(5309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteyear] = ACTIONS(5309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), - [anon_sym_BSLASHcitedate] = ACTIONS(5309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), - [anon_sym_BSLASHciteurl] = ACTIONS(5309), - [anon_sym_BSLASHfullcite] = ACTIONS(5309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), - [anon_sym_BSLASHcitealt] = ACTIONS(5309), - [anon_sym_BSLASHcitealp] = ACTIONS(5309), - [anon_sym_BSLASHcitetext] = ACTIONS(5309), - [anon_sym_BSLASHparencite] = ACTIONS(5309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHParencite] = ACTIONS(5309), - [anon_sym_BSLASHfootcite] = ACTIONS(5309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), - [anon_sym_BSLASHtextcite] = ACTIONS(5309), - [anon_sym_BSLASHTextcite] = ACTIONS(5309), - [anon_sym_BSLASHsmartcite] = ACTIONS(5309), - [anon_sym_BSLASHSmartcite] = ACTIONS(5309), - [anon_sym_BSLASHsupercite] = ACTIONS(5309), - [anon_sym_BSLASHautocite] = ACTIONS(5309), - [anon_sym_BSLASHAutocite] = ACTIONS(5309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), - [anon_sym_BSLASHvolcite] = ACTIONS(5309), - [anon_sym_BSLASHVolcite] = ACTIONS(5309), - [anon_sym_BSLASHpvolcite] = ACTIONS(5309), - [anon_sym_BSLASHPvolcite] = ACTIONS(5309), - [anon_sym_BSLASHfvolcite] = ACTIONS(5309), - [anon_sym_BSLASHftvolcite] = ACTIONS(5309), - [anon_sym_BSLASHsvolcite] = ACTIONS(5309), - [anon_sym_BSLASHSvolcite] = ACTIONS(5309), - [anon_sym_BSLASHtvolcite] = ACTIONS(5309), - [anon_sym_BSLASHTvolcite] = ACTIONS(5309), - [anon_sym_BSLASHavolcite] = ACTIONS(5309), - [anon_sym_BSLASHAvolcite] = ACTIONS(5309), - [anon_sym_BSLASHnotecite] = ACTIONS(5309), - [anon_sym_BSLASHNotecite] = ACTIONS(5309), - [anon_sym_BSLASHpnotecite] = ACTIONS(5309), - [anon_sym_BSLASHPnotecite] = ACTIONS(5309), - [anon_sym_BSLASHfnotecite] = ACTIONS(5309), - [anon_sym_BSLASHlabel] = ACTIONS(5309), - [anon_sym_BSLASHref] = ACTIONS(5309), - [anon_sym_BSLASHeqref] = ACTIONS(5309), - [anon_sym_BSLASHvref] = ACTIONS(5309), - [anon_sym_BSLASHVref] = ACTIONS(5309), - [anon_sym_BSLASHautoref] = ACTIONS(5309), - [anon_sym_BSLASHpageref] = ACTIONS(5309), - [anon_sym_BSLASHcref] = ACTIONS(5309), - [anon_sym_BSLASHCref] = ACTIONS(5309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnameCref] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), - [anon_sym_BSLASHlabelcref] = ACTIONS(5309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange] = ACTIONS(5309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), - [anon_sym_BSLASHnewlabel] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand] = ACTIONS(5309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), - [anon_sym_BSLASHdef] = ACTIONS(5309), - [anon_sym_BSLASHlet] = ACTIONS(5309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [anon_sym_BSLASHgls] = ACTIONS(5309), - [anon_sym_BSLASHGls] = ACTIONS(5309), - [anon_sym_BSLASHGLS] = ACTIONS(5309), - [anon_sym_BSLASHglspl] = ACTIONS(5309), - [anon_sym_BSLASHGlspl] = ACTIONS(5309), - [anon_sym_BSLASHGLSpl] = ACTIONS(5309), - [anon_sym_BSLASHglsdisp] = ACTIONS(5309), - [anon_sym_BSLASHglslink] = ACTIONS(5309), - [anon_sym_BSLASHglstext] = ACTIONS(5309), - [anon_sym_BSLASHGlstext] = ACTIONS(5309), - [anon_sym_BSLASHGLStext] = ACTIONS(5309), - [anon_sym_BSLASHglsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), - [anon_sym_BSLASHglsplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSplural] = ACTIONS(5309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), - [anon_sym_BSLASHglsname] = ACTIONS(5309), - [anon_sym_BSLASHGlsname] = ACTIONS(5309), - [anon_sym_BSLASHGLSname] = ACTIONS(5309), - [anon_sym_BSLASHglssymbol] = ACTIONS(5309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), - [anon_sym_BSLASHglsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), - [anon_sym_BSLASHglsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), - [anon_sym_BSLASHglsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), - [anon_sym_BSLASHglsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), - [anon_sym_BSLASHglsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), - [anon_sym_BSLASHnewacronym] = ACTIONS(5309), - [anon_sym_BSLASHacrshort] = ACTIONS(5309), - [anon_sym_BSLASHAcrshort] = ACTIONS(5309), - [anon_sym_BSLASHACRshort] = ACTIONS(5309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), - [anon_sym_BSLASHacrlong] = ACTIONS(5309), - [anon_sym_BSLASHAcrlong] = ACTIONS(5309), - [anon_sym_BSLASHACRlong] = ACTIONS(5309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), - [anon_sym_BSLASHacrfull] = ACTIONS(5309), - [anon_sym_BSLASHAcrfull] = ACTIONS(5309), - [anon_sym_BSLASHACRfull] = ACTIONS(5309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), - [anon_sym_BSLASHacs] = ACTIONS(5309), - [anon_sym_BSLASHAcs] = ACTIONS(5309), - [anon_sym_BSLASHacsp] = ACTIONS(5309), - [anon_sym_BSLASHAcsp] = ACTIONS(5309), - [anon_sym_BSLASHacl] = ACTIONS(5309), - [anon_sym_BSLASHAcl] = ACTIONS(5309), - [anon_sym_BSLASHaclp] = ACTIONS(5309), - [anon_sym_BSLASHAclp] = ACTIONS(5309), - [anon_sym_BSLASHacf] = ACTIONS(5309), - [anon_sym_BSLASHAcf] = ACTIONS(5309), - [anon_sym_BSLASHacfp] = ACTIONS(5309), - [anon_sym_BSLASHAcfp] = ACTIONS(5309), - [anon_sym_BSLASHac] = ACTIONS(5309), - [anon_sym_BSLASHAc] = ACTIONS(5309), - [anon_sym_BSLASHacp] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), - [anon_sym_BSLASHcolor] = ACTIONS(5309), - [anon_sym_BSLASHcolorbox] = ACTIONS(5309), - [anon_sym_BSLASHtextcolor] = ACTIONS(5309), - [anon_sym_BSLASHpagecolor] = ACTIONS(5309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [sym_command_name] = ACTIONS(5388), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5388), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_COMMA] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(5386), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5388), + [sym_placeholder] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym__] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_GT] = ACTIONS(5388), + [anon_sym_BANG] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_SQUOTE] = ACTIONS(5388), + [anon_sym_BSLASHusepackage] = ACTIONS(5388), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5388), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5388), + [anon_sym_BSLASHinclude] = ACTIONS(5388), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5388), + [anon_sym_BSLASHinput] = ACTIONS(5388), + [anon_sym_BSLASHsubfile] = ACTIONS(5388), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5388), + [anon_sym_BSLASHbibliography] = ACTIONS(5388), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5388), + [anon_sym_BSLASHincludesvg] = ACTIONS(5388), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5388), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5388), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5388), + [anon_sym_BSLASHimport] = ACTIONS(5388), + [anon_sym_BSLASHsubimport] = ACTIONS(5388), + [anon_sym_BSLASHinputfrom] = ACTIONS(5388), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5388), + [anon_sym_BSLASHincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5388), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [anon_sym_BSLASHcite] = ACTIONS(5388), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCite] = ACTIONS(5388), + [anon_sym_BSLASHnocite] = ACTIONS(5388), + [anon_sym_BSLASHcitet] = ACTIONS(5388), + [anon_sym_BSLASHcitep] = ACTIONS(5388), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteauthor] = ACTIONS(5388), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5388), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitetitle] = ACTIONS(5388), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteyear] = ACTIONS(5388), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5386), + [anon_sym_BSLASHcitedate] = ACTIONS(5388), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5386), + [anon_sym_BSLASHciteurl] = ACTIONS(5388), + [anon_sym_BSLASHfullcite] = ACTIONS(5388), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5388), + [anon_sym_BSLASHcitealt] = ACTIONS(5388), + [anon_sym_BSLASHcitealp] = ACTIONS(5388), + [anon_sym_BSLASHcitetext] = ACTIONS(5388), + [anon_sym_BSLASHparencite] = ACTIONS(5388), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHParencite] = ACTIONS(5388), + [anon_sym_BSLASHfootcite] = ACTIONS(5388), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5388), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5388), + [anon_sym_BSLASHtextcite] = ACTIONS(5388), + [anon_sym_BSLASHTextcite] = ACTIONS(5388), + [anon_sym_BSLASHsmartcite] = ACTIONS(5388), + [anon_sym_BSLASHSmartcite] = ACTIONS(5388), + [anon_sym_BSLASHsupercite] = ACTIONS(5388), + [anon_sym_BSLASHautocite] = ACTIONS(5388), + [anon_sym_BSLASHAutocite] = ACTIONS(5388), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5386), + [anon_sym_BSLASHvolcite] = ACTIONS(5388), + [anon_sym_BSLASHVolcite] = ACTIONS(5388), + [anon_sym_BSLASHpvolcite] = ACTIONS(5388), + [anon_sym_BSLASHPvolcite] = ACTIONS(5388), + [anon_sym_BSLASHfvolcite] = ACTIONS(5388), + [anon_sym_BSLASHftvolcite] = ACTIONS(5388), + [anon_sym_BSLASHsvolcite] = ACTIONS(5388), + [anon_sym_BSLASHSvolcite] = ACTIONS(5388), + [anon_sym_BSLASHtvolcite] = ACTIONS(5388), + [anon_sym_BSLASHTvolcite] = ACTIONS(5388), + [anon_sym_BSLASHavolcite] = ACTIONS(5388), + [anon_sym_BSLASHAvolcite] = ACTIONS(5388), + [anon_sym_BSLASHnotecite] = ACTIONS(5388), + [anon_sym_BSLASHNotecite] = ACTIONS(5388), + [anon_sym_BSLASHpnotecite] = ACTIONS(5388), + [anon_sym_BSLASHPnotecite] = ACTIONS(5388), + [anon_sym_BSLASHfnotecite] = ACTIONS(5388), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5388), + [anon_sym_BSLASHeqref] = ACTIONS(5388), + [anon_sym_BSLASHvref] = ACTIONS(5388), + [anon_sym_BSLASHVref] = ACTIONS(5388), + [anon_sym_BSLASHautoref] = ACTIONS(5388), + [anon_sym_BSLASHpageref] = ACTIONS(5388), + [anon_sym_BSLASHcref] = ACTIONS(5388), + [anon_sym_BSLASHCref] = ACTIONS(5388), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnameCref] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5388), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5388), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5388), + [anon_sym_BSLASHlabelcref] = ACTIONS(5388), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange] = ACTIONS(5388), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHCrefrange] = ACTIONS(5388), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5386), + [anon_sym_BSLASHnewlabel] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand] = ACTIONS(5388), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5388), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5388), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5386), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5388), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdef] = ACTIONS(5388), + [anon_sym_BSLASHlet] = ACTIONS(5388), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5388), + [anon_sym_BSLASHgls] = ACTIONS(5388), + [anon_sym_BSLASHGls] = ACTIONS(5388), + [anon_sym_BSLASHGLS] = ACTIONS(5388), + [anon_sym_BSLASHglspl] = ACTIONS(5388), + [anon_sym_BSLASHGlspl] = ACTIONS(5388), + [anon_sym_BSLASHGLSpl] = ACTIONS(5388), + [anon_sym_BSLASHglsdisp] = ACTIONS(5388), + [anon_sym_BSLASHglslink] = ACTIONS(5388), + [anon_sym_BSLASHglstext] = ACTIONS(5388), + [anon_sym_BSLASHGlstext] = ACTIONS(5388), + [anon_sym_BSLASHGLStext] = ACTIONS(5388), + [anon_sym_BSLASHglsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5388), + [anon_sym_BSLASHglsplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSplural] = ACTIONS(5388), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5388), + [anon_sym_BSLASHglsname] = ACTIONS(5388), + [anon_sym_BSLASHGlsname] = ACTIONS(5388), + [anon_sym_BSLASHGLSname] = ACTIONS(5388), + [anon_sym_BSLASHglssymbol] = ACTIONS(5388), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5388), + [anon_sym_BSLASHglsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5388), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5388), + [anon_sym_BSLASHglsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5388), + [anon_sym_BSLASHglsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5388), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5388), + [anon_sym_BSLASHglsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5388), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5388), + [anon_sym_BSLASHglsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5388), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5388), + [anon_sym_BSLASHnewacronym] = ACTIONS(5388), + [anon_sym_BSLASHacrshort] = ACTIONS(5388), + [anon_sym_BSLASHAcrshort] = ACTIONS(5388), + [anon_sym_BSLASHACRshort] = ACTIONS(5388), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5388), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5388), + [anon_sym_BSLASHacrlong] = ACTIONS(5388), + [anon_sym_BSLASHAcrlong] = ACTIONS(5388), + [anon_sym_BSLASHACRlong] = ACTIONS(5388), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5388), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5388), + [anon_sym_BSLASHacrfull] = ACTIONS(5388), + [anon_sym_BSLASHAcrfull] = ACTIONS(5388), + [anon_sym_BSLASHACRfull] = ACTIONS(5388), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5388), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5388), + [anon_sym_BSLASHacs] = ACTIONS(5388), + [anon_sym_BSLASHAcs] = ACTIONS(5388), + [anon_sym_BSLASHacsp] = ACTIONS(5388), + [anon_sym_BSLASHAcsp] = ACTIONS(5388), + [anon_sym_BSLASHacl] = ACTIONS(5388), + [anon_sym_BSLASHAcl] = ACTIONS(5388), + [anon_sym_BSLASHaclp] = ACTIONS(5388), + [anon_sym_BSLASHAclp] = ACTIONS(5388), + [anon_sym_BSLASHacf] = ACTIONS(5388), + [anon_sym_BSLASHAcf] = ACTIONS(5388), + [anon_sym_BSLASHacfp] = ACTIONS(5388), + [anon_sym_BSLASHAcfp] = ACTIONS(5388), + [anon_sym_BSLASHac] = ACTIONS(5388), + [anon_sym_BSLASHAc] = ACTIONS(5388), + [anon_sym_BSLASHacp] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5388), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5388), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5388), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5388), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5388), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5388), + [anon_sym_BSLASHcolor] = ACTIONS(5388), + [anon_sym_BSLASHcolorbox] = ACTIONS(5388), + [anon_sym_BSLASHtextcolor] = ACTIONS(5388), + [anon_sym_BSLASHpagecolor] = ACTIONS(5388), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5388), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5388), }, [1559] = { - [sym_command_name] = ACTIONS(5281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5279), - [anon_sym_COMMA] = ACTIONS(5279), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_RBRACE] = ACTIONS(5279), - [sym_word] = ACTIONS(5281), - [sym_placeholder] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5281), - [anon_sym_SLASH] = ACTIONS(5281), - [anon_sym_CARET] = ACTIONS(5281), - [anon_sym__] = ACTIONS(5281), - [anon_sym_LT] = ACTIONS(5281), - [anon_sym_GT] = ACTIONS(5281), - [anon_sym_BANG] = ACTIONS(5281), - [anon_sym_PIPE] = ACTIONS(5281), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_SQUOTE] = ACTIONS(5281), - [anon_sym_BSLASHusepackage] = ACTIONS(5281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), - [anon_sym_BSLASHinclude] = ACTIONS(5281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), - [anon_sym_BSLASHinput] = ACTIONS(5281), - [anon_sym_BSLASHsubfile] = ACTIONS(5281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), - [anon_sym_BSLASHbibliography] = ACTIONS(5281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), - [anon_sym_BSLASHincludesvg] = ACTIONS(5281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), - [anon_sym_BSLASHimport] = ACTIONS(5281), - [anon_sym_BSLASHsubimport] = ACTIONS(5281), - [anon_sym_BSLASHinputfrom] = ACTIONS(5281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), - [anon_sym_BSLASHincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), - [anon_sym_BSLASHcaption] = ACTIONS(5281), - [anon_sym_BSLASHcite] = ACTIONS(5281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCite] = ACTIONS(5281), - [anon_sym_BSLASHnocite] = ACTIONS(5281), - [anon_sym_BSLASHcitet] = ACTIONS(5281), - [anon_sym_BSLASHcitep] = ACTIONS(5281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteyear] = ACTIONS(5281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), - [anon_sym_BSLASHcitedate] = ACTIONS(5281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), - [anon_sym_BSLASHciteurl] = ACTIONS(5281), - [anon_sym_BSLASHfullcite] = ACTIONS(5281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), - [anon_sym_BSLASHcitealt] = ACTIONS(5281), - [anon_sym_BSLASHcitealp] = ACTIONS(5281), - [anon_sym_BSLASHcitetext] = ACTIONS(5281), - [anon_sym_BSLASHparencite] = ACTIONS(5281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHParencite] = ACTIONS(5281), - [anon_sym_BSLASHfootcite] = ACTIONS(5281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), - [anon_sym_BSLASHtextcite] = ACTIONS(5281), - [anon_sym_BSLASHTextcite] = ACTIONS(5281), - [anon_sym_BSLASHsmartcite] = ACTIONS(5281), - [anon_sym_BSLASHSmartcite] = ACTIONS(5281), - [anon_sym_BSLASHsupercite] = ACTIONS(5281), - [anon_sym_BSLASHautocite] = ACTIONS(5281), - [anon_sym_BSLASHAutocite] = ACTIONS(5281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), - [anon_sym_BSLASHvolcite] = ACTIONS(5281), - [anon_sym_BSLASHVolcite] = ACTIONS(5281), - [anon_sym_BSLASHpvolcite] = ACTIONS(5281), - [anon_sym_BSLASHPvolcite] = ACTIONS(5281), - [anon_sym_BSLASHfvolcite] = ACTIONS(5281), - [anon_sym_BSLASHftvolcite] = ACTIONS(5281), - [anon_sym_BSLASHsvolcite] = ACTIONS(5281), - [anon_sym_BSLASHSvolcite] = ACTIONS(5281), - [anon_sym_BSLASHtvolcite] = ACTIONS(5281), - [anon_sym_BSLASHTvolcite] = ACTIONS(5281), - [anon_sym_BSLASHavolcite] = ACTIONS(5281), - [anon_sym_BSLASHAvolcite] = ACTIONS(5281), - [anon_sym_BSLASHnotecite] = ACTIONS(5281), - [anon_sym_BSLASHNotecite] = ACTIONS(5281), - [anon_sym_BSLASHpnotecite] = ACTIONS(5281), - [anon_sym_BSLASHPnotecite] = ACTIONS(5281), - [anon_sym_BSLASHfnotecite] = ACTIONS(5281), - [anon_sym_BSLASHlabel] = ACTIONS(5281), - [anon_sym_BSLASHref] = ACTIONS(5281), - [anon_sym_BSLASHeqref] = ACTIONS(5281), - [anon_sym_BSLASHvref] = ACTIONS(5281), - [anon_sym_BSLASHVref] = ACTIONS(5281), - [anon_sym_BSLASHautoref] = ACTIONS(5281), - [anon_sym_BSLASHpageref] = ACTIONS(5281), - [anon_sym_BSLASHcref] = ACTIONS(5281), - [anon_sym_BSLASHCref] = ACTIONS(5281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnameCref] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), - [anon_sym_BSLASHlabelcref] = ACTIONS(5281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange] = ACTIONS(5281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), - [anon_sym_BSLASHnewlabel] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand] = ACTIONS(5281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), - [anon_sym_BSLASHdef] = ACTIONS(5281), - [anon_sym_BSLASHlet] = ACTIONS(5281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), - [anon_sym_BSLASHgls] = ACTIONS(5281), - [anon_sym_BSLASHGls] = ACTIONS(5281), - [anon_sym_BSLASHGLS] = ACTIONS(5281), - [anon_sym_BSLASHglspl] = ACTIONS(5281), - [anon_sym_BSLASHGlspl] = ACTIONS(5281), - [anon_sym_BSLASHGLSpl] = ACTIONS(5281), - [anon_sym_BSLASHglsdisp] = ACTIONS(5281), - [anon_sym_BSLASHglslink] = ACTIONS(5281), - [anon_sym_BSLASHglstext] = ACTIONS(5281), - [anon_sym_BSLASHGlstext] = ACTIONS(5281), - [anon_sym_BSLASHGLStext] = ACTIONS(5281), - [anon_sym_BSLASHglsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), - [anon_sym_BSLASHglsplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSplural] = ACTIONS(5281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), - [anon_sym_BSLASHglsname] = ACTIONS(5281), - [anon_sym_BSLASHGlsname] = ACTIONS(5281), - [anon_sym_BSLASHGLSname] = ACTIONS(5281), - [anon_sym_BSLASHglssymbol] = ACTIONS(5281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), - [anon_sym_BSLASHglsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), - [anon_sym_BSLASHglsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), - [anon_sym_BSLASHglsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), - [anon_sym_BSLASHglsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), - [anon_sym_BSLASHglsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), - [anon_sym_BSLASHnewacronym] = ACTIONS(5281), - [anon_sym_BSLASHacrshort] = ACTIONS(5281), - [anon_sym_BSLASHAcrshort] = ACTIONS(5281), - [anon_sym_BSLASHACRshort] = ACTIONS(5281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), - [anon_sym_BSLASHacrlong] = ACTIONS(5281), - [anon_sym_BSLASHAcrlong] = ACTIONS(5281), - [anon_sym_BSLASHACRlong] = ACTIONS(5281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), - [anon_sym_BSLASHacrfull] = ACTIONS(5281), - [anon_sym_BSLASHAcrfull] = ACTIONS(5281), - [anon_sym_BSLASHACRfull] = ACTIONS(5281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), - [anon_sym_BSLASHacs] = ACTIONS(5281), - [anon_sym_BSLASHAcs] = ACTIONS(5281), - [anon_sym_BSLASHacsp] = ACTIONS(5281), - [anon_sym_BSLASHAcsp] = ACTIONS(5281), - [anon_sym_BSLASHacl] = ACTIONS(5281), - [anon_sym_BSLASHAcl] = ACTIONS(5281), - [anon_sym_BSLASHaclp] = ACTIONS(5281), - [anon_sym_BSLASHAclp] = ACTIONS(5281), - [anon_sym_BSLASHacf] = ACTIONS(5281), - [anon_sym_BSLASHAcf] = ACTIONS(5281), - [anon_sym_BSLASHacfp] = ACTIONS(5281), - [anon_sym_BSLASHAcfp] = ACTIONS(5281), - [anon_sym_BSLASHac] = ACTIONS(5281), - [anon_sym_BSLASHAc] = ACTIONS(5281), - [anon_sym_BSLASHacp] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), - [anon_sym_BSLASHcolor] = ACTIONS(5281), - [anon_sym_BSLASHcolorbox] = ACTIONS(5281), - [anon_sym_BSLASHtextcolor] = ACTIONS(5281), - [anon_sym_BSLASHpagecolor] = ACTIONS(5281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5360), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(5358), + [anon_sym_RBRACE] = ACTIONS(5358), + [sym_word] = ACTIONS(5360), + [sym_placeholder] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_CARET] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_SQUOTE] = ACTIONS(5360), + [anon_sym_BSLASHusepackage] = ACTIONS(5360), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5360), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5360), + [anon_sym_BSLASHinclude] = ACTIONS(5360), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5360), + [anon_sym_BSLASHinput] = ACTIONS(5360), + [anon_sym_BSLASHsubfile] = ACTIONS(5360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5360), + [anon_sym_BSLASHbibliography] = ACTIONS(5360), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5360), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5360), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5360), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5360), + [anon_sym_BSLASHimport] = ACTIONS(5360), + [anon_sym_BSLASHsubimport] = ACTIONS(5360), + [anon_sym_BSLASHinputfrom] = ACTIONS(5360), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5360), + [anon_sym_BSLASHincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5360), + [anon_sym_BSLASHcaption] = ACTIONS(5360), + [anon_sym_BSLASHcite] = ACTIONS(5360), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCite] = ACTIONS(5360), + [anon_sym_BSLASHnocite] = ACTIONS(5360), + [anon_sym_BSLASHcitet] = ACTIONS(5360), + [anon_sym_BSLASHcitep] = ACTIONS(5360), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteauthor] = ACTIONS(5360), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5360), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitetitle] = ACTIONS(5360), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteyear] = ACTIONS(5360), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5358), + [anon_sym_BSLASHcitedate] = ACTIONS(5360), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5358), + [anon_sym_BSLASHciteurl] = ACTIONS(5360), + [anon_sym_BSLASHfullcite] = ACTIONS(5360), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5360), + [anon_sym_BSLASHcitealt] = ACTIONS(5360), + [anon_sym_BSLASHcitealp] = ACTIONS(5360), + [anon_sym_BSLASHcitetext] = ACTIONS(5360), + [anon_sym_BSLASHparencite] = ACTIONS(5360), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHParencite] = ACTIONS(5360), + [anon_sym_BSLASHfootcite] = ACTIONS(5360), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5360), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5360), + [anon_sym_BSLASHtextcite] = ACTIONS(5360), + [anon_sym_BSLASHTextcite] = ACTIONS(5360), + [anon_sym_BSLASHsmartcite] = ACTIONS(5360), + [anon_sym_BSLASHSmartcite] = ACTIONS(5360), + [anon_sym_BSLASHsupercite] = ACTIONS(5360), + [anon_sym_BSLASHautocite] = ACTIONS(5360), + [anon_sym_BSLASHAutocite] = ACTIONS(5360), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5358), + [anon_sym_BSLASHvolcite] = ACTIONS(5360), + [anon_sym_BSLASHVolcite] = ACTIONS(5360), + [anon_sym_BSLASHpvolcite] = ACTIONS(5360), + [anon_sym_BSLASHPvolcite] = ACTIONS(5360), + [anon_sym_BSLASHfvolcite] = ACTIONS(5360), + [anon_sym_BSLASHftvolcite] = ACTIONS(5360), + [anon_sym_BSLASHsvolcite] = ACTIONS(5360), + [anon_sym_BSLASHSvolcite] = ACTIONS(5360), + [anon_sym_BSLASHtvolcite] = ACTIONS(5360), + [anon_sym_BSLASHTvolcite] = ACTIONS(5360), + [anon_sym_BSLASHavolcite] = ACTIONS(5360), + [anon_sym_BSLASHAvolcite] = ACTIONS(5360), + [anon_sym_BSLASHnotecite] = ACTIONS(5360), + [anon_sym_BSLASHNotecite] = ACTIONS(5360), + [anon_sym_BSLASHpnotecite] = ACTIONS(5360), + [anon_sym_BSLASHPnotecite] = ACTIONS(5360), + [anon_sym_BSLASHfnotecite] = ACTIONS(5360), + [anon_sym_BSLASHlabel] = ACTIONS(5360), + [anon_sym_BSLASHref] = ACTIONS(5360), + [anon_sym_BSLASHeqref] = ACTIONS(5360), + [anon_sym_BSLASHvref] = ACTIONS(5360), + [anon_sym_BSLASHVref] = ACTIONS(5360), + [anon_sym_BSLASHautoref] = ACTIONS(5360), + [anon_sym_BSLASHpageref] = ACTIONS(5360), + [anon_sym_BSLASHcref] = ACTIONS(5360), + [anon_sym_BSLASHCref] = ACTIONS(5360), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnameCref] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5360), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5360), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5360), + [anon_sym_BSLASHlabelcref] = ACTIONS(5360), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange] = ACTIONS(5360), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHCrefrange] = ACTIONS(5360), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5358), + [anon_sym_BSLASHnewlabel] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand] = ACTIONS(5360), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5360), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5360), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5358), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5360), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdef] = ACTIONS(5360), + [anon_sym_BSLASHlet] = ACTIONS(5360), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5360), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5360), + [anon_sym_BSLASHgls] = ACTIONS(5360), + [anon_sym_BSLASHGls] = ACTIONS(5360), + [anon_sym_BSLASHGLS] = ACTIONS(5360), + [anon_sym_BSLASHglspl] = ACTIONS(5360), + [anon_sym_BSLASHGlspl] = ACTIONS(5360), + [anon_sym_BSLASHGLSpl] = ACTIONS(5360), + [anon_sym_BSLASHglsdisp] = ACTIONS(5360), + [anon_sym_BSLASHglslink] = ACTIONS(5360), + [anon_sym_BSLASHglstext] = ACTIONS(5360), + [anon_sym_BSLASHGlstext] = ACTIONS(5360), + [anon_sym_BSLASHGLStext] = ACTIONS(5360), + [anon_sym_BSLASHglsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5360), + [anon_sym_BSLASHglsplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSplural] = ACTIONS(5360), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5360), + [anon_sym_BSLASHglsname] = ACTIONS(5360), + [anon_sym_BSLASHGlsname] = ACTIONS(5360), + [anon_sym_BSLASHGLSname] = ACTIONS(5360), + [anon_sym_BSLASHglssymbol] = ACTIONS(5360), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5360), + [anon_sym_BSLASHglsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5360), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5360), + [anon_sym_BSLASHglsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5360), + [anon_sym_BSLASHglsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5360), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5360), + [anon_sym_BSLASHglsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5360), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5360), + [anon_sym_BSLASHglsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5360), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5360), + [anon_sym_BSLASHnewacronym] = ACTIONS(5360), + [anon_sym_BSLASHacrshort] = ACTIONS(5360), + [anon_sym_BSLASHAcrshort] = ACTIONS(5360), + [anon_sym_BSLASHACRshort] = ACTIONS(5360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5360), + [anon_sym_BSLASHacrlong] = ACTIONS(5360), + [anon_sym_BSLASHAcrlong] = ACTIONS(5360), + [anon_sym_BSLASHACRlong] = ACTIONS(5360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5360), + [anon_sym_BSLASHacrfull] = ACTIONS(5360), + [anon_sym_BSLASHAcrfull] = ACTIONS(5360), + [anon_sym_BSLASHACRfull] = ACTIONS(5360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5360), + [anon_sym_BSLASHacs] = ACTIONS(5360), + [anon_sym_BSLASHAcs] = ACTIONS(5360), + [anon_sym_BSLASHacsp] = ACTIONS(5360), + [anon_sym_BSLASHAcsp] = ACTIONS(5360), + [anon_sym_BSLASHacl] = ACTIONS(5360), + [anon_sym_BSLASHAcl] = ACTIONS(5360), + [anon_sym_BSLASHaclp] = ACTIONS(5360), + [anon_sym_BSLASHAclp] = ACTIONS(5360), + [anon_sym_BSLASHacf] = ACTIONS(5360), + [anon_sym_BSLASHAcf] = ACTIONS(5360), + [anon_sym_BSLASHacfp] = ACTIONS(5360), + [anon_sym_BSLASHAcfp] = ACTIONS(5360), + [anon_sym_BSLASHac] = ACTIONS(5360), + [anon_sym_BSLASHAc] = ACTIONS(5360), + [anon_sym_BSLASHacp] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5360), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5360), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5358), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5360), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5360), + [anon_sym_BSLASHcolor] = ACTIONS(5360), + [anon_sym_BSLASHcolorbox] = ACTIONS(5360), + [anon_sym_BSLASHtextcolor] = ACTIONS(5360), + [anon_sym_BSLASHpagecolor] = ACTIONS(5360), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5360), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5360), }, [1560] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5205), - [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), + [sym_command_name] = ACTIONS(5284), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5284), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [sym_placeholder] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(5284), + [anon_sym_CARET] = ACTIONS(5284), + [anon_sym__] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_SQUOTE] = ACTIONS(5284), + [anon_sym_BSLASHusepackage] = ACTIONS(5284), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5284), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5284), + [anon_sym_BSLASHinclude] = ACTIONS(5284), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5284), + [anon_sym_BSLASHinput] = ACTIONS(5284), + [anon_sym_BSLASHsubfile] = ACTIONS(5284), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5284), + [anon_sym_BSLASHbibliography] = ACTIONS(5284), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5284), + [anon_sym_BSLASHincludesvg] = ACTIONS(5284), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5284), + [anon_sym_BSLASHimport] = ACTIONS(5284), + [anon_sym_BSLASHsubimport] = ACTIONS(5284), + [anon_sym_BSLASHinputfrom] = ACTIONS(5284), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5284), + [anon_sym_BSLASHincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5284), + [anon_sym_BSLASHcaption] = ACTIONS(5284), + [anon_sym_BSLASHcite] = ACTIONS(5284), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCite] = ACTIONS(5284), + [anon_sym_BSLASHnocite] = ACTIONS(5284), + [anon_sym_BSLASHcitet] = ACTIONS(5284), + [anon_sym_BSLASHcitep] = ACTIONS(5284), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteauthor] = ACTIONS(5284), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5284), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitetitle] = ACTIONS(5284), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteyear] = ACTIONS(5284), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5282), + [anon_sym_BSLASHcitedate] = ACTIONS(5284), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5282), + [anon_sym_BSLASHciteurl] = ACTIONS(5284), + [anon_sym_BSLASHfullcite] = ACTIONS(5284), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5284), + [anon_sym_BSLASHcitealt] = ACTIONS(5284), + [anon_sym_BSLASHcitealp] = ACTIONS(5284), + [anon_sym_BSLASHcitetext] = ACTIONS(5284), + [anon_sym_BSLASHparencite] = ACTIONS(5284), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHParencite] = ACTIONS(5284), + [anon_sym_BSLASHfootcite] = ACTIONS(5284), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5284), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5284), + [anon_sym_BSLASHtextcite] = ACTIONS(5284), + [anon_sym_BSLASHTextcite] = ACTIONS(5284), + [anon_sym_BSLASHsmartcite] = ACTIONS(5284), + [anon_sym_BSLASHSmartcite] = ACTIONS(5284), + [anon_sym_BSLASHsupercite] = ACTIONS(5284), + [anon_sym_BSLASHautocite] = ACTIONS(5284), + [anon_sym_BSLASHAutocite] = ACTIONS(5284), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5282), + [anon_sym_BSLASHvolcite] = ACTIONS(5284), + [anon_sym_BSLASHVolcite] = ACTIONS(5284), + [anon_sym_BSLASHpvolcite] = ACTIONS(5284), + [anon_sym_BSLASHPvolcite] = ACTIONS(5284), + [anon_sym_BSLASHfvolcite] = ACTIONS(5284), + [anon_sym_BSLASHftvolcite] = ACTIONS(5284), + [anon_sym_BSLASHsvolcite] = ACTIONS(5284), + [anon_sym_BSLASHSvolcite] = ACTIONS(5284), + [anon_sym_BSLASHtvolcite] = ACTIONS(5284), + [anon_sym_BSLASHTvolcite] = ACTIONS(5284), + [anon_sym_BSLASHavolcite] = ACTIONS(5284), + [anon_sym_BSLASHAvolcite] = ACTIONS(5284), + [anon_sym_BSLASHnotecite] = ACTIONS(5284), + [anon_sym_BSLASHNotecite] = ACTIONS(5284), + [anon_sym_BSLASHpnotecite] = ACTIONS(5284), + [anon_sym_BSLASHPnotecite] = ACTIONS(5284), + [anon_sym_BSLASHfnotecite] = ACTIONS(5284), + [anon_sym_BSLASHlabel] = ACTIONS(5284), + [anon_sym_BSLASHref] = ACTIONS(5284), + [anon_sym_BSLASHeqref] = ACTIONS(5284), + [anon_sym_BSLASHvref] = ACTIONS(5284), + [anon_sym_BSLASHVref] = ACTIONS(5284), + [anon_sym_BSLASHautoref] = ACTIONS(5284), + [anon_sym_BSLASHpageref] = ACTIONS(5284), + [anon_sym_BSLASHcref] = ACTIONS(5284), + [anon_sym_BSLASHCref] = ACTIONS(5284), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnameCref] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5284), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5284), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5284), + [anon_sym_BSLASHlabelcref] = ACTIONS(5284), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange] = ACTIONS(5284), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHCrefrange] = ACTIONS(5284), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5282), + [anon_sym_BSLASHnewlabel] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand] = ACTIONS(5284), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5284), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5284), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5282), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5284), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdef] = ACTIONS(5284), + [anon_sym_BSLASHlet] = ACTIONS(5284), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5284), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5284), + [anon_sym_BSLASHgls] = ACTIONS(5284), + [anon_sym_BSLASHGls] = ACTIONS(5284), + [anon_sym_BSLASHGLS] = ACTIONS(5284), + [anon_sym_BSLASHglspl] = ACTIONS(5284), + [anon_sym_BSLASHGlspl] = ACTIONS(5284), + [anon_sym_BSLASHGLSpl] = ACTIONS(5284), + [anon_sym_BSLASHglsdisp] = ACTIONS(5284), + [anon_sym_BSLASHglslink] = ACTIONS(5284), + [anon_sym_BSLASHglstext] = ACTIONS(5284), + [anon_sym_BSLASHGlstext] = ACTIONS(5284), + [anon_sym_BSLASHGLStext] = ACTIONS(5284), + [anon_sym_BSLASHglsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5284), + [anon_sym_BSLASHglsplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSplural] = ACTIONS(5284), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5284), + [anon_sym_BSLASHglsname] = ACTIONS(5284), + [anon_sym_BSLASHGlsname] = ACTIONS(5284), + [anon_sym_BSLASHGLSname] = ACTIONS(5284), + [anon_sym_BSLASHglssymbol] = ACTIONS(5284), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5284), + [anon_sym_BSLASHglsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5284), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5284), + [anon_sym_BSLASHglsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5284), + [anon_sym_BSLASHglsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5284), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5284), + [anon_sym_BSLASHglsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5284), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5284), + [anon_sym_BSLASHglsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5284), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5284), + [anon_sym_BSLASHnewacronym] = ACTIONS(5284), + [anon_sym_BSLASHacrshort] = ACTIONS(5284), + [anon_sym_BSLASHAcrshort] = ACTIONS(5284), + [anon_sym_BSLASHACRshort] = ACTIONS(5284), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5284), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5284), + [anon_sym_BSLASHacrlong] = ACTIONS(5284), + [anon_sym_BSLASHAcrlong] = ACTIONS(5284), + [anon_sym_BSLASHACRlong] = ACTIONS(5284), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5284), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5284), + [anon_sym_BSLASHacrfull] = ACTIONS(5284), + [anon_sym_BSLASHAcrfull] = ACTIONS(5284), + [anon_sym_BSLASHACRfull] = ACTIONS(5284), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5284), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5284), + [anon_sym_BSLASHacs] = ACTIONS(5284), + [anon_sym_BSLASHAcs] = ACTIONS(5284), + [anon_sym_BSLASHacsp] = ACTIONS(5284), + [anon_sym_BSLASHAcsp] = ACTIONS(5284), + [anon_sym_BSLASHacl] = ACTIONS(5284), + [anon_sym_BSLASHAcl] = ACTIONS(5284), + [anon_sym_BSLASHaclp] = ACTIONS(5284), + [anon_sym_BSLASHAclp] = ACTIONS(5284), + [anon_sym_BSLASHacf] = ACTIONS(5284), + [anon_sym_BSLASHAcf] = ACTIONS(5284), + [anon_sym_BSLASHacfp] = ACTIONS(5284), + [anon_sym_BSLASHAcfp] = ACTIONS(5284), + [anon_sym_BSLASHac] = ACTIONS(5284), + [anon_sym_BSLASHAc] = ACTIONS(5284), + [anon_sym_BSLASHacp] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5284), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5284), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5284), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5284), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5284), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5282), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5284), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5284), + [anon_sym_BSLASHcolor] = ACTIONS(5284), + [anon_sym_BSLASHcolorbox] = ACTIONS(5284), + [anon_sym_BSLASHtextcolor] = ACTIONS(5284), + [anon_sym_BSLASHpagecolor] = ACTIONS(5284), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5284), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5284), }, [1561] = { - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5277), - [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), + [sym_command_name] = ACTIONS(5356), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5354), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_word] = ACTIONS(5356), + [sym_placeholder] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_CARET] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_SQUOTE] = ACTIONS(5356), + [anon_sym_BSLASHusepackage] = ACTIONS(5356), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5356), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5356), + [anon_sym_BSLASHinclude] = ACTIONS(5356), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5356), + [anon_sym_BSLASHinput] = ACTIONS(5356), + [anon_sym_BSLASHsubfile] = ACTIONS(5356), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5356), + [anon_sym_BSLASHbibliography] = ACTIONS(5356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5356), + [anon_sym_BSLASHincludesvg] = ACTIONS(5356), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5356), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5356), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5356), + [anon_sym_BSLASHimport] = ACTIONS(5356), + [anon_sym_BSLASHsubimport] = ACTIONS(5356), + [anon_sym_BSLASHinputfrom] = ACTIONS(5356), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5356), + [anon_sym_BSLASHincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5356), + [anon_sym_BSLASHcaption] = ACTIONS(5356), + [anon_sym_BSLASHcite] = ACTIONS(5356), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCite] = ACTIONS(5356), + [anon_sym_BSLASHnocite] = ACTIONS(5356), + [anon_sym_BSLASHcitet] = ACTIONS(5356), + [anon_sym_BSLASHcitep] = ACTIONS(5356), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteauthor] = ACTIONS(5356), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5356), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitetitle] = ACTIONS(5356), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteyear] = ACTIONS(5356), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5354), + [anon_sym_BSLASHcitedate] = ACTIONS(5356), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5354), + [anon_sym_BSLASHciteurl] = ACTIONS(5356), + [anon_sym_BSLASHfullcite] = ACTIONS(5356), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5356), + [anon_sym_BSLASHcitealt] = ACTIONS(5356), + [anon_sym_BSLASHcitealp] = ACTIONS(5356), + [anon_sym_BSLASHcitetext] = ACTIONS(5356), + [anon_sym_BSLASHparencite] = ACTIONS(5356), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHParencite] = ACTIONS(5356), + [anon_sym_BSLASHfootcite] = ACTIONS(5356), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5356), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5356), + [anon_sym_BSLASHtextcite] = ACTIONS(5356), + [anon_sym_BSLASHTextcite] = ACTIONS(5356), + [anon_sym_BSLASHsmartcite] = ACTIONS(5356), + [anon_sym_BSLASHSmartcite] = ACTIONS(5356), + [anon_sym_BSLASHsupercite] = ACTIONS(5356), + [anon_sym_BSLASHautocite] = ACTIONS(5356), + [anon_sym_BSLASHAutocite] = ACTIONS(5356), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5354), + [anon_sym_BSLASHvolcite] = ACTIONS(5356), + [anon_sym_BSLASHVolcite] = ACTIONS(5356), + [anon_sym_BSLASHpvolcite] = ACTIONS(5356), + [anon_sym_BSLASHPvolcite] = ACTIONS(5356), + [anon_sym_BSLASHfvolcite] = ACTIONS(5356), + [anon_sym_BSLASHftvolcite] = ACTIONS(5356), + [anon_sym_BSLASHsvolcite] = ACTIONS(5356), + [anon_sym_BSLASHSvolcite] = ACTIONS(5356), + [anon_sym_BSLASHtvolcite] = ACTIONS(5356), + [anon_sym_BSLASHTvolcite] = ACTIONS(5356), + [anon_sym_BSLASHavolcite] = ACTIONS(5356), + [anon_sym_BSLASHAvolcite] = ACTIONS(5356), + [anon_sym_BSLASHnotecite] = ACTIONS(5356), + [anon_sym_BSLASHNotecite] = ACTIONS(5356), + [anon_sym_BSLASHpnotecite] = ACTIONS(5356), + [anon_sym_BSLASHPnotecite] = ACTIONS(5356), + [anon_sym_BSLASHfnotecite] = ACTIONS(5356), + [anon_sym_BSLASHlabel] = ACTIONS(5356), + [anon_sym_BSLASHref] = ACTIONS(5356), + [anon_sym_BSLASHeqref] = ACTIONS(5356), + [anon_sym_BSLASHvref] = ACTIONS(5356), + [anon_sym_BSLASHVref] = ACTIONS(5356), + [anon_sym_BSLASHautoref] = ACTIONS(5356), + [anon_sym_BSLASHpageref] = ACTIONS(5356), + [anon_sym_BSLASHcref] = ACTIONS(5356), + [anon_sym_BSLASHCref] = ACTIONS(5356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnameCref] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), + [anon_sym_BSLASHlabelcref] = ACTIONS(5356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange] = ACTIONS(5356), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHCrefrange] = ACTIONS(5356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5354), + [anon_sym_BSLASHnewlabel] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand] = ACTIONS(5356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5354), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdef] = ACTIONS(5356), + [anon_sym_BSLASHlet] = ACTIONS(5356), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5356), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5356), + [anon_sym_BSLASHgls] = ACTIONS(5356), + [anon_sym_BSLASHGls] = ACTIONS(5356), + [anon_sym_BSLASHGLS] = ACTIONS(5356), + [anon_sym_BSLASHglspl] = ACTIONS(5356), + [anon_sym_BSLASHGlspl] = ACTIONS(5356), + [anon_sym_BSLASHGLSpl] = ACTIONS(5356), + [anon_sym_BSLASHglsdisp] = ACTIONS(5356), + [anon_sym_BSLASHglslink] = ACTIONS(5356), + [anon_sym_BSLASHglstext] = ACTIONS(5356), + [anon_sym_BSLASHGlstext] = ACTIONS(5356), + [anon_sym_BSLASHGLStext] = ACTIONS(5356), + [anon_sym_BSLASHglsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5356), + [anon_sym_BSLASHglsplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSplural] = ACTIONS(5356), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5356), + [anon_sym_BSLASHglsname] = ACTIONS(5356), + [anon_sym_BSLASHGlsname] = ACTIONS(5356), + [anon_sym_BSLASHGLSname] = ACTIONS(5356), + [anon_sym_BSLASHglssymbol] = ACTIONS(5356), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5356), + [anon_sym_BSLASHglsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5356), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5356), + [anon_sym_BSLASHglsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5356), + [anon_sym_BSLASHglsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5356), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5356), + [anon_sym_BSLASHglsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5356), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5356), + [anon_sym_BSLASHglsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5356), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5356), + [anon_sym_BSLASHnewacronym] = ACTIONS(5356), + [anon_sym_BSLASHacrshort] = ACTIONS(5356), + [anon_sym_BSLASHAcrshort] = ACTIONS(5356), + [anon_sym_BSLASHACRshort] = ACTIONS(5356), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5356), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5356), + [anon_sym_BSLASHacrlong] = ACTIONS(5356), + [anon_sym_BSLASHAcrlong] = ACTIONS(5356), + [anon_sym_BSLASHACRlong] = ACTIONS(5356), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5356), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5356), + [anon_sym_BSLASHacrfull] = ACTIONS(5356), + [anon_sym_BSLASHAcrfull] = ACTIONS(5356), + [anon_sym_BSLASHACRfull] = ACTIONS(5356), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5356), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5356), + [anon_sym_BSLASHacs] = ACTIONS(5356), + [anon_sym_BSLASHAcs] = ACTIONS(5356), + [anon_sym_BSLASHacsp] = ACTIONS(5356), + [anon_sym_BSLASHAcsp] = ACTIONS(5356), + [anon_sym_BSLASHacl] = ACTIONS(5356), + [anon_sym_BSLASHAcl] = ACTIONS(5356), + [anon_sym_BSLASHaclp] = ACTIONS(5356), + [anon_sym_BSLASHAclp] = ACTIONS(5356), + [anon_sym_BSLASHacf] = ACTIONS(5356), + [anon_sym_BSLASHAcf] = ACTIONS(5356), + [anon_sym_BSLASHacfp] = ACTIONS(5356), + [anon_sym_BSLASHAcfp] = ACTIONS(5356), + [anon_sym_BSLASHac] = ACTIONS(5356), + [anon_sym_BSLASHAc] = ACTIONS(5356), + [anon_sym_BSLASHacp] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5356), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5356), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5356), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5356), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5356), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5354), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5356), + [anon_sym_BSLASHcolor] = ACTIONS(5356), + [anon_sym_BSLASHcolorbox] = ACTIONS(5356), + [anon_sym_BSLASHtextcolor] = ACTIONS(5356), + [anon_sym_BSLASHpagecolor] = ACTIONS(5356), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5356), }, [1562] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5189), - [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), + [sym_command_name] = ACTIONS(5268), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5268), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_RBRACE] = ACTIONS(5266), + [sym_word] = ACTIONS(5268), + [sym_placeholder] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5268), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym__] = ACTIONS(5268), + [anon_sym_LT] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5268), + [anon_sym_BANG] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_SQUOTE] = ACTIONS(5268), + [anon_sym_BSLASHusepackage] = ACTIONS(5268), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5268), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5268), + [anon_sym_BSLASHinclude] = ACTIONS(5268), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5268), + [anon_sym_BSLASHinput] = ACTIONS(5268), + [anon_sym_BSLASHsubfile] = ACTIONS(5268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5268), + [anon_sym_BSLASHbibliography] = ACTIONS(5268), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5268), + [anon_sym_BSLASHincludesvg] = ACTIONS(5268), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5268), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5268), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5268), + [anon_sym_BSLASHimport] = ACTIONS(5268), + [anon_sym_BSLASHsubimport] = ACTIONS(5268), + [anon_sym_BSLASHinputfrom] = ACTIONS(5268), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5268), + [anon_sym_BSLASHincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5268), + [anon_sym_BSLASHcaption] = ACTIONS(5268), + [anon_sym_BSLASHcite] = ACTIONS(5268), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCite] = ACTIONS(5268), + [anon_sym_BSLASHnocite] = ACTIONS(5268), + [anon_sym_BSLASHcitet] = ACTIONS(5268), + [anon_sym_BSLASHcitep] = ACTIONS(5268), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteauthor] = ACTIONS(5268), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5268), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitetitle] = ACTIONS(5268), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteyear] = ACTIONS(5268), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5266), + [anon_sym_BSLASHcitedate] = ACTIONS(5268), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5266), + [anon_sym_BSLASHciteurl] = ACTIONS(5268), + [anon_sym_BSLASHfullcite] = ACTIONS(5268), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5268), + [anon_sym_BSLASHcitealt] = ACTIONS(5268), + [anon_sym_BSLASHcitealp] = ACTIONS(5268), + [anon_sym_BSLASHcitetext] = ACTIONS(5268), + [anon_sym_BSLASHparencite] = ACTIONS(5268), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHParencite] = ACTIONS(5268), + [anon_sym_BSLASHfootcite] = ACTIONS(5268), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5268), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5268), + [anon_sym_BSLASHtextcite] = ACTIONS(5268), + [anon_sym_BSLASHTextcite] = ACTIONS(5268), + [anon_sym_BSLASHsmartcite] = ACTIONS(5268), + [anon_sym_BSLASHSmartcite] = ACTIONS(5268), + [anon_sym_BSLASHsupercite] = ACTIONS(5268), + [anon_sym_BSLASHautocite] = ACTIONS(5268), + [anon_sym_BSLASHAutocite] = ACTIONS(5268), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5266), + [anon_sym_BSLASHvolcite] = ACTIONS(5268), + [anon_sym_BSLASHVolcite] = ACTIONS(5268), + [anon_sym_BSLASHpvolcite] = ACTIONS(5268), + [anon_sym_BSLASHPvolcite] = ACTIONS(5268), + [anon_sym_BSLASHfvolcite] = ACTIONS(5268), + [anon_sym_BSLASHftvolcite] = ACTIONS(5268), + [anon_sym_BSLASHsvolcite] = ACTIONS(5268), + [anon_sym_BSLASHSvolcite] = ACTIONS(5268), + [anon_sym_BSLASHtvolcite] = ACTIONS(5268), + [anon_sym_BSLASHTvolcite] = ACTIONS(5268), + [anon_sym_BSLASHavolcite] = ACTIONS(5268), + [anon_sym_BSLASHAvolcite] = ACTIONS(5268), + [anon_sym_BSLASHnotecite] = ACTIONS(5268), + [anon_sym_BSLASHNotecite] = ACTIONS(5268), + [anon_sym_BSLASHpnotecite] = ACTIONS(5268), + [anon_sym_BSLASHPnotecite] = ACTIONS(5268), + [anon_sym_BSLASHfnotecite] = ACTIONS(5268), + [anon_sym_BSLASHlabel] = ACTIONS(5268), + [anon_sym_BSLASHref] = ACTIONS(5268), + [anon_sym_BSLASHeqref] = ACTIONS(5268), + [anon_sym_BSLASHvref] = ACTIONS(5268), + [anon_sym_BSLASHVref] = ACTIONS(5268), + [anon_sym_BSLASHautoref] = ACTIONS(5268), + [anon_sym_BSLASHpageref] = ACTIONS(5268), + [anon_sym_BSLASHcref] = ACTIONS(5268), + [anon_sym_BSLASHCref] = ACTIONS(5268), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnameCref] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5268), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5268), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5268), + [anon_sym_BSLASHlabelcref] = ACTIONS(5268), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange] = ACTIONS(5268), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHCrefrange] = ACTIONS(5268), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5266), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5268), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5268), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5266), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5268), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdef] = ACTIONS(5268), + [anon_sym_BSLASHlet] = ACTIONS(5268), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5268), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5268), + [anon_sym_BSLASHgls] = ACTIONS(5268), + [anon_sym_BSLASHGls] = ACTIONS(5268), + [anon_sym_BSLASHGLS] = ACTIONS(5268), + [anon_sym_BSLASHglspl] = ACTIONS(5268), + [anon_sym_BSLASHGlspl] = ACTIONS(5268), + [anon_sym_BSLASHGLSpl] = ACTIONS(5268), + [anon_sym_BSLASHglsdisp] = ACTIONS(5268), + [anon_sym_BSLASHglslink] = ACTIONS(5268), + [anon_sym_BSLASHglstext] = ACTIONS(5268), + [anon_sym_BSLASHGlstext] = ACTIONS(5268), + [anon_sym_BSLASHGLStext] = ACTIONS(5268), + [anon_sym_BSLASHglsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5268), + [anon_sym_BSLASHglsplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSplural] = ACTIONS(5268), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5268), + [anon_sym_BSLASHglsname] = ACTIONS(5268), + [anon_sym_BSLASHGlsname] = ACTIONS(5268), + [anon_sym_BSLASHGLSname] = ACTIONS(5268), + [anon_sym_BSLASHglssymbol] = ACTIONS(5268), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5268), + [anon_sym_BSLASHglsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5268), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5268), + [anon_sym_BSLASHglsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5268), + [anon_sym_BSLASHglsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5268), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5268), + [anon_sym_BSLASHglsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5268), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5268), + [anon_sym_BSLASHglsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5268), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5268), + [anon_sym_BSLASHnewacronym] = ACTIONS(5268), + [anon_sym_BSLASHacrshort] = ACTIONS(5268), + [anon_sym_BSLASHAcrshort] = ACTIONS(5268), + [anon_sym_BSLASHACRshort] = ACTIONS(5268), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5268), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5268), + [anon_sym_BSLASHacrlong] = ACTIONS(5268), + [anon_sym_BSLASHAcrlong] = ACTIONS(5268), + [anon_sym_BSLASHACRlong] = ACTIONS(5268), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5268), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5268), + [anon_sym_BSLASHacrfull] = ACTIONS(5268), + [anon_sym_BSLASHAcrfull] = ACTIONS(5268), + [anon_sym_BSLASHACRfull] = ACTIONS(5268), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5268), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5268), + [anon_sym_BSLASHacs] = ACTIONS(5268), + [anon_sym_BSLASHAcs] = ACTIONS(5268), + [anon_sym_BSLASHacsp] = ACTIONS(5268), + [anon_sym_BSLASHAcsp] = ACTIONS(5268), + [anon_sym_BSLASHacl] = ACTIONS(5268), + [anon_sym_BSLASHAcl] = ACTIONS(5268), + [anon_sym_BSLASHaclp] = ACTIONS(5268), + [anon_sym_BSLASHAclp] = ACTIONS(5268), + [anon_sym_BSLASHacf] = ACTIONS(5268), + [anon_sym_BSLASHAcf] = ACTIONS(5268), + [anon_sym_BSLASHacfp] = ACTIONS(5268), + [anon_sym_BSLASHAcfp] = ACTIONS(5268), + [anon_sym_BSLASHac] = ACTIONS(5268), + [anon_sym_BSLASHAc] = ACTIONS(5268), + [anon_sym_BSLASHacp] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5268), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5268), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5268), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5268), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5268), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5266), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5268), + [anon_sym_BSLASHcolor] = ACTIONS(5268), + [anon_sym_BSLASHcolorbox] = ACTIONS(5268), + [anon_sym_BSLASHtextcolor] = ACTIONS(5268), + [anon_sym_BSLASHpagecolor] = ACTIONS(5268), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5268), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5268), }, [1563] = { - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [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_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_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_BSLASHdeclaretheorem] = ACTIONS(4995), - [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), + [sym_command_name] = ACTIONS(5074), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5074), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [sym_word] = ACTIONS(5074), + [sym_placeholder] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_CARET] = ACTIONS(5074), + [anon_sym__] = ACTIONS(5074), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_COLON] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [anon_sym_BSLASHusepackage] = ACTIONS(5074), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5074), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5074), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5074), + [anon_sym_BSLASHinput] = ACTIONS(5074), + [anon_sym_BSLASHsubfile] = ACTIONS(5074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5074), + [anon_sym_BSLASHbibliography] = ACTIONS(5074), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5074), + [anon_sym_BSLASHincludesvg] = ACTIONS(5074), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5074), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5074), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5074), + [anon_sym_BSLASHimport] = ACTIONS(5074), + [anon_sym_BSLASHsubimport] = ACTIONS(5074), + [anon_sym_BSLASHinputfrom] = ACTIONS(5074), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5074), + [anon_sym_BSLASHincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5074), + [anon_sym_BSLASHcaption] = ACTIONS(5074), + [anon_sym_BSLASHcite] = ACTIONS(5074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCite] = ACTIONS(5074), + [anon_sym_BSLASHnocite] = ACTIONS(5074), + [anon_sym_BSLASHcitet] = ACTIONS(5074), + [anon_sym_BSLASHcitep] = ACTIONS(5074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteauthor] = ACTIONS(5074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitetitle] = ACTIONS(5074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteyear] = ACTIONS(5074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5072), + [anon_sym_BSLASHcitedate] = ACTIONS(5074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5072), + [anon_sym_BSLASHciteurl] = ACTIONS(5074), + [anon_sym_BSLASHfullcite] = ACTIONS(5074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5074), + [anon_sym_BSLASHcitealt] = ACTIONS(5074), + [anon_sym_BSLASHcitealp] = ACTIONS(5074), + [anon_sym_BSLASHcitetext] = ACTIONS(5074), + [anon_sym_BSLASHparencite] = ACTIONS(5074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHParencite] = ACTIONS(5074), + [anon_sym_BSLASHfootcite] = ACTIONS(5074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5074), + [anon_sym_BSLASHtextcite] = ACTIONS(5074), + [anon_sym_BSLASHTextcite] = ACTIONS(5074), + [anon_sym_BSLASHsmartcite] = ACTIONS(5074), + [anon_sym_BSLASHSmartcite] = ACTIONS(5074), + [anon_sym_BSLASHsupercite] = ACTIONS(5074), + [anon_sym_BSLASHautocite] = ACTIONS(5074), + [anon_sym_BSLASHAutocite] = ACTIONS(5074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5072), + [anon_sym_BSLASHvolcite] = ACTIONS(5074), + [anon_sym_BSLASHVolcite] = ACTIONS(5074), + [anon_sym_BSLASHpvolcite] = ACTIONS(5074), + [anon_sym_BSLASHPvolcite] = ACTIONS(5074), + [anon_sym_BSLASHfvolcite] = ACTIONS(5074), + [anon_sym_BSLASHftvolcite] = ACTIONS(5074), + [anon_sym_BSLASHsvolcite] = ACTIONS(5074), + [anon_sym_BSLASHSvolcite] = ACTIONS(5074), + [anon_sym_BSLASHtvolcite] = ACTIONS(5074), + [anon_sym_BSLASHTvolcite] = ACTIONS(5074), + [anon_sym_BSLASHavolcite] = ACTIONS(5074), + [anon_sym_BSLASHAvolcite] = ACTIONS(5074), + [anon_sym_BSLASHnotecite] = ACTIONS(5074), + [anon_sym_BSLASHNotecite] = ACTIONS(5074), + [anon_sym_BSLASHpnotecite] = ACTIONS(5074), + [anon_sym_BSLASHPnotecite] = ACTIONS(5074), + [anon_sym_BSLASHfnotecite] = ACTIONS(5074), + [anon_sym_BSLASHlabel] = ACTIONS(5074), + [anon_sym_BSLASHref] = ACTIONS(5074), + [anon_sym_BSLASHeqref] = ACTIONS(5074), + [anon_sym_BSLASHvref] = ACTIONS(5074), + [anon_sym_BSLASHVref] = ACTIONS(5074), + [anon_sym_BSLASHautoref] = ACTIONS(5074), + [anon_sym_BSLASHpageref] = ACTIONS(5074), + [anon_sym_BSLASHcref] = ACTIONS(5074), + [anon_sym_BSLASHCref] = ACTIONS(5074), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnameCref] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5074), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5074), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5074), + [anon_sym_BSLASHlabelcref] = ACTIONS(5074), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange] = ACTIONS(5074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHCrefrange] = ACTIONS(5074), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5072), + [anon_sym_BSLASHnewlabel] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand] = ACTIONS(5074), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5074), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5074), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5072), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5074), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdef] = ACTIONS(5074), + [anon_sym_BSLASHlet] = ACTIONS(5074), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5074), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5074), + [anon_sym_BSLASHgls] = ACTIONS(5074), + [anon_sym_BSLASHGls] = ACTIONS(5074), + [anon_sym_BSLASHGLS] = ACTIONS(5074), + [anon_sym_BSLASHglspl] = ACTIONS(5074), + [anon_sym_BSLASHGlspl] = ACTIONS(5074), + [anon_sym_BSLASHGLSpl] = ACTIONS(5074), + [anon_sym_BSLASHglsdisp] = ACTIONS(5074), + [anon_sym_BSLASHglslink] = ACTIONS(5074), + [anon_sym_BSLASHglstext] = ACTIONS(5074), + [anon_sym_BSLASHGlstext] = ACTIONS(5074), + [anon_sym_BSLASHGLStext] = ACTIONS(5074), + [anon_sym_BSLASHglsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5074), + [anon_sym_BSLASHglsplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSplural] = ACTIONS(5074), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5074), + [anon_sym_BSLASHglsname] = ACTIONS(5074), + [anon_sym_BSLASHGlsname] = ACTIONS(5074), + [anon_sym_BSLASHGLSname] = ACTIONS(5074), + [anon_sym_BSLASHglssymbol] = ACTIONS(5074), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5074), + [anon_sym_BSLASHglsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5074), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5074), + [anon_sym_BSLASHglsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5074), + [anon_sym_BSLASHglsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5074), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5074), + [anon_sym_BSLASHglsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5074), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5074), + [anon_sym_BSLASHglsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5074), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5074), + [anon_sym_BSLASHnewacronym] = ACTIONS(5074), + [anon_sym_BSLASHacrshort] = ACTIONS(5074), + [anon_sym_BSLASHAcrshort] = ACTIONS(5074), + [anon_sym_BSLASHACRshort] = ACTIONS(5074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5074), + [anon_sym_BSLASHacrlong] = ACTIONS(5074), + [anon_sym_BSLASHAcrlong] = ACTIONS(5074), + [anon_sym_BSLASHACRlong] = ACTIONS(5074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5074), + [anon_sym_BSLASHacrfull] = ACTIONS(5074), + [anon_sym_BSLASHAcrfull] = ACTIONS(5074), + [anon_sym_BSLASHACRfull] = ACTIONS(5074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5074), + [anon_sym_BSLASHacs] = ACTIONS(5074), + [anon_sym_BSLASHAcs] = ACTIONS(5074), + [anon_sym_BSLASHacsp] = ACTIONS(5074), + [anon_sym_BSLASHAcsp] = ACTIONS(5074), + [anon_sym_BSLASHacl] = ACTIONS(5074), + [anon_sym_BSLASHAcl] = ACTIONS(5074), + [anon_sym_BSLASHaclp] = ACTIONS(5074), + [anon_sym_BSLASHAclp] = ACTIONS(5074), + [anon_sym_BSLASHacf] = ACTIONS(5074), + [anon_sym_BSLASHAcf] = ACTIONS(5074), + [anon_sym_BSLASHacfp] = ACTIONS(5074), + [anon_sym_BSLASHAcfp] = ACTIONS(5074), + [anon_sym_BSLASHac] = ACTIONS(5074), + [anon_sym_BSLASHAc] = ACTIONS(5074), + [anon_sym_BSLASHacp] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5074), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5074), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5074), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5074), + [anon_sym_BSLASHcolor] = ACTIONS(5074), + [anon_sym_BSLASHcolorbox] = ACTIONS(5074), + [anon_sym_BSLASHtextcolor] = ACTIONS(5074), + [anon_sym_BSLASHpagecolor] = ACTIONS(5074), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5074), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5074), }, [1564] = { - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5143), - [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_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(5143), - [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(5143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), - [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(5143), - [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(5143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), - [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(5143), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = 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_BSLASHdeclaretheorem] = ACTIONS(5145), - [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), + [sym_command_name] = ACTIONS(5224), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5224), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [sym_word] = ACTIONS(5224), + [sym_placeholder] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym__] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_SQUOTE] = ACTIONS(5224), + [anon_sym_BSLASHusepackage] = ACTIONS(5224), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5224), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5224), + [anon_sym_BSLASHinclude] = ACTIONS(5224), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5224), + [anon_sym_BSLASHinput] = ACTIONS(5224), + [anon_sym_BSLASHsubfile] = ACTIONS(5224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5224), + [anon_sym_BSLASHbibliography] = ACTIONS(5224), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5224), + [anon_sym_BSLASHincludesvg] = ACTIONS(5224), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5224), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5224), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5224), + [anon_sym_BSLASHimport] = ACTIONS(5224), + [anon_sym_BSLASHsubimport] = ACTIONS(5224), + [anon_sym_BSLASHinputfrom] = ACTIONS(5224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5224), + [anon_sym_BSLASHincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5224), + [anon_sym_BSLASHcaption] = ACTIONS(5224), + [anon_sym_BSLASHcite] = ACTIONS(5224), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCite] = ACTIONS(5224), + [anon_sym_BSLASHnocite] = ACTIONS(5224), + [anon_sym_BSLASHcitet] = ACTIONS(5224), + [anon_sym_BSLASHcitep] = ACTIONS(5224), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteauthor] = ACTIONS(5224), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5224), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitetitle] = ACTIONS(5224), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteyear] = ACTIONS(5224), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5222), + [anon_sym_BSLASHcitedate] = ACTIONS(5224), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5222), + [anon_sym_BSLASHciteurl] = ACTIONS(5224), + [anon_sym_BSLASHfullcite] = ACTIONS(5224), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5224), + [anon_sym_BSLASHcitealt] = ACTIONS(5224), + [anon_sym_BSLASHcitealp] = ACTIONS(5224), + [anon_sym_BSLASHcitetext] = ACTIONS(5224), + [anon_sym_BSLASHparencite] = ACTIONS(5224), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHParencite] = ACTIONS(5224), + [anon_sym_BSLASHfootcite] = ACTIONS(5224), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5224), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5224), + [anon_sym_BSLASHtextcite] = ACTIONS(5224), + [anon_sym_BSLASHTextcite] = ACTIONS(5224), + [anon_sym_BSLASHsmartcite] = ACTIONS(5224), + [anon_sym_BSLASHSmartcite] = ACTIONS(5224), + [anon_sym_BSLASHsupercite] = ACTIONS(5224), + [anon_sym_BSLASHautocite] = ACTIONS(5224), + [anon_sym_BSLASHAutocite] = ACTIONS(5224), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5222), + [anon_sym_BSLASHvolcite] = ACTIONS(5224), + [anon_sym_BSLASHVolcite] = ACTIONS(5224), + [anon_sym_BSLASHpvolcite] = ACTIONS(5224), + [anon_sym_BSLASHPvolcite] = ACTIONS(5224), + [anon_sym_BSLASHfvolcite] = ACTIONS(5224), + [anon_sym_BSLASHftvolcite] = ACTIONS(5224), + [anon_sym_BSLASHsvolcite] = ACTIONS(5224), + [anon_sym_BSLASHSvolcite] = ACTIONS(5224), + [anon_sym_BSLASHtvolcite] = ACTIONS(5224), + [anon_sym_BSLASHTvolcite] = ACTIONS(5224), + [anon_sym_BSLASHavolcite] = ACTIONS(5224), + [anon_sym_BSLASHAvolcite] = ACTIONS(5224), + [anon_sym_BSLASHnotecite] = ACTIONS(5224), + [anon_sym_BSLASHNotecite] = ACTIONS(5224), + [anon_sym_BSLASHpnotecite] = ACTIONS(5224), + [anon_sym_BSLASHPnotecite] = ACTIONS(5224), + [anon_sym_BSLASHfnotecite] = ACTIONS(5224), + [anon_sym_BSLASHlabel] = ACTIONS(5224), + [anon_sym_BSLASHref] = ACTIONS(5224), + [anon_sym_BSLASHeqref] = ACTIONS(5224), + [anon_sym_BSLASHvref] = ACTIONS(5224), + [anon_sym_BSLASHVref] = ACTIONS(5224), + [anon_sym_BSLASHautoref] = ACTIONS(5224), + [anon_sym_BSLASHpageref] = ACTIONS(5224), + [anon_sym_BSLASHcref] = ACTIONS(5224), + [anon_sym_BSLASHCref] = ACTIONS(5224), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnameCref] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5224), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5224), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5224), + [anon_sym_BSLASHlabelcref] = ACTIONS(5224), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange] = ACTIONS(5224), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHCrefrange] = ACTIONS(5224), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5222), + [anon_sym_BSLASHnewlabel] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand] = ACTIONS(5224), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5224), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5224), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5222), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5224), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdef] = ACTIONS(5224), + [anon_sym_BSLASHlet] = ACTIONS(5224), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5224), + [anon_sym_BSLASHgls] = ACTIONS(5224), + [anon_sym_BSLASHGls] = ACTIONS(5224), + [anon_sym_BSLASHGLS] = ACTIONS(5224), + [anon_sym_BSLASHglspl] = ACTIONS(5224), + [anon_sym_BSLASHGlspl] = ACTIONS(5224), + [anon_sym_BSLASHGLSpl] = ACTIONS(5224), + [anon_sym_BSLASHglsdisp] = ACTIONS(5224), + [anon_sym_BSLASHglslink] = ACTIONS(5224), + [anon_sym_BSLASHglstext] = ACTIONS(5224), + [anon_sym_BSLASHGlstext] = ACTIONS(5224), + [anon_sym_BSLASHGLStext] = ACTIONS(5224), + [anon_sym_BSLASHglsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5224), + [anon_sym_BSLASHglsplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSplural] = ACTIONS(5224), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5224), + [anon_sym_BSLASHglsname] = ACTIONS(5224), + [anon_sym_BSLASHGlsname] = ACTIONS(5224), + [anon_sym_BSLASHGLSname] = ACTIONS(5224), + [anon_sym_BSLASHglssymbol] = ACTIONS(5224), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5224), + [anon_sym_BSLASHglsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5224), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5224), + [anon_sym_BSLASHglsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5224), + [anon_sym_BSLASHglsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5224), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5224), + [anon_sym_BSLASHglsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5224), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5224), + [anon_sym_BSLASHglsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5224), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5224), + [anon_sym_BSLASHnewacronym] = ACTIONS(5224), + [anon_sym_BSLASHacrshort] = ACTIONS(5224), + [anon_sym_BSLASHAcrshort] = ACTIONS(5224), + [anon_sym_BSLASHACRshort] = ACTIONS(5224), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5224), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5224), + [anon_sym_BSLASHacrlong] = ACTIONS(5224), + [anon_sym_BSLASHAcrlong] = ACTIONS(5224), + [anon_sym_BSLASHACRlong] = ACTIONS(5224), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5224), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5224), + [anon_sym_BSLASHacrfull] = ACTIONS(5224), + [anon_sym_BSLASHAcrfull] = ACTIONS(5224), + [anon_sym_BSLASHACRfull] = ACTIONS(5224), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5224), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5224), + [anon_sym_BSLASHacs] = ACTIONS(5224), + [anon_sym_BSLASHAcs] = ACTIONS(5224), + [anon_sym_BSLASHacsp] = ACTIONS(5224), + [anon_sym_BSLASHAcsp] = ACTIONS(5224), + [anon_sym_BSLASHacl] = ACTIONS(5224), + [anon_sym_BSLASHAcl] = ACTIONS(5224), + [anon_sym_BSLASHaclp] = ACTIONS(5224), + [anon_sym_BSLASHAclp] = ACTIONS(5224), + [anon_sym_BSLASHacf] = ACTIONS(5224), + [anon_sym_BSLASHAcf] = ACTIONS(5224), + [anon_sym_BSLASHacfp] = ACTIONS(5224), + [anon_sym_BSLASHAcfp] = ACTIONS(5224), + [anon_sym_BSLASHac] = ACTIONS(5224), + [anon_sym_BSLASHAc] = ACTIONS(5224), + [anon_sym_BSLASHacp] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5224), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5224), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5224), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5224), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5224), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5222), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5224), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5224), + [anon_sym_BSLASHcolor] = ACTIONS(5224), + [anon_sym_BSLASHcolorbox] = ACTIONS(5224), + [anon_sym_BSLASHtextcolor] = ACTIONS(5224), + [anon_sym_BSLASHpagecolor] = ACTIONS(5224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5224), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5224), }, [1565] = { - [sym_command_name] = ACTIONS(5273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5271), - [anon_sym_COMMA] = ACTIONS(5271), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5273), - [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), + [sym_command_name] = ACTIONS(5352), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5350), + [sym_word] = ACTIONS(5352), + [sym_placeholder] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_CARET] = ACTIONS(5352), + [anon_sym__] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_SQUOTE] = ACTIONS(5352), + [anon_sym_BSLASHusepackage] = ACTIONS(5352), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5352), + [anon_sym_BSLASHinclude] = ACTIONS(5352), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5352), + [anon_sym_BSLASHinput] = ACTIONS(5352), + [anon_sym_BSLASHsubfile] = ACTIONS(5352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5352), + [anon_sym_BSLASHbibliography] = ACTIONS(5352), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5352), + [anon_sym_BSLASHincludesvg] = ACTIONS(5352), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5352), + [anon_sym_BSLASHimport] = ACTIONS(5352), + [anon_sym_BSLASHsubimport] = ACTIONS(5352), + [anon_sym_BSLASHinputfrom] = ACTIONS(5352), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5352), + [anon_sym_BSLASHincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5352), + [anon_sym_BSLASHcaption] = ACTIONS(5352), + [anon_sym_BSLASHcite] = ACTIONS(5352), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCite] = ACTIONS(5352), + [anon_sym_BSLASHnocite] = ACTIONS(5352), + [anon_sym_BSLASHcitet] = ACTIONS(5352), + [anon_sym_BSLASHcitep] = ACTIONS(5352), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteauthor] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitetitle] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteyear] = ACTIONS(5352), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), + [anon_sym_BSLASHcitedate] = ACTIONS(5352), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), + [anon_sym_BSLASHciteurl] = ACTIONS(5352), + [anon_sym_BSLASHfullcite] = ACTIONS(5352), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5352), + [anon_sym_BSLASHcitealt] = ACTIONS(5352), + [anon_sym_BSLASHcitealp] = ACTIONS(5352), + [anon_sym_BSLASHcitetext] = ACTIONS(5352), + [anon_sym_BSLASHparencite] = ACTIONS(5352), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHParencite] = ACTIONS(5352), + [anon_sym_BSLASHfootcite] = ACTIONS(5352), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5352), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5352), + [anon_sym_BSLASHtextcite] = ACTIONS(5352), + [anon_sym_BSLASHTextcite] = ACTIONS(5352), + [anon_sym_BSLASHsmartcite] = ACTIONS(5352), + [anon_sym_BSLASHSmartcite] = ACTIONS(5352), + [anon_sym_BSLASHsupercite] = ACTIONS(5352), + [anon_sym_BSLASHautocite] = ACTIONS(5352), + [anon_sym_BSLASHAutocite] = ACTIONS(5352), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), + [anon_sym_BSLASHvolcite] = ACTIONS(5352), + [anon_sym_BSLASHVolcite] = ACTIONS(5352), + [anon_sym_BSLASHpvolcite] = ACTIONS(5352), + [anon_sym_BSLASHPvolcite] = ACTIONS(5352), + [anon_sym_BSLASHfvolcite] = ACTIONS(5352), + [anon_sym_BSLASHftvolcite] = ACTIONS(5352), + [anon_sym_BSLASHsvolcite] = ACTIONS(5352), + [anon_sym_BSLASHSvolcite] = ACTIONS(5352), + [anon_sym_BSLASHtvolcite] = ACTIONS(5352), + [anon_sym_BSLASHTvolcite] = ACTIONS(5352), + [anon_sym_BSLASHavolcite] = ACTIONS(5352), + [anon_sym_BSLASHAvolcite] = ACTIONS(5352), + [anon_sym_BSLASHnotecite] = ACTIONS(5352), + [anon_sym_BSLASHNotecite] = ACTIONS(5352), + [anon_sym_BSLASHpnotecite] = ACTIONS(5352), + [anon_sym_BSLASHPnotecite] = ACTIONS(5352), + [anon_sym_BSLASHfnotecite] = ACTIONS(5352), + [anon_sym_BSLASHlabel] = ACTIONS(5352), + [anon_sym_BSLASHref] = ACTIONS(5352), + [anon_sym_BSLASHeqref] = ACTIONS(5352), + [anon_sym_BSLASHvref] = ACTIONS(5352), + [anon_sym_BSLASHVref] = ACTIONS(5352), + [anon_sym_BSLASHautoref] = ACTIONS(5352), + [anon_sym_BSLASHpageref] = ACTIONS(5352), + [anon_sym_BSLASHcref] = ACTIONS(5352), + [anon_sym_BSLASHCref] = ACTIONS(5352), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnameCref] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5352), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5352), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5352), + [anon_sym_BSLASHlabelcref] = ACTIONS(5352), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange] = ACTIONS(5352), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHCrefrange] = ACTIONS(5352), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5350), + [anon_sym_BSLASHnewlabel] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand] = ACTIONS(5352), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5352), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5352), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5350), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5352), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdef] = ACTIONS(5352), + [anon_sym_BSLASHlet] = ACTIONS(5352), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5352), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5352), + [anon_sym_BSLASHgls] = ACTIONS(5352), + [anon_sym_BSLASHGls] = ACTIONS(5352), + [anon_sym_BSLASHGLS] = ACTIONS(5352), + [anon_sym_BSLASHglspl] = ACTIONS(5352), + [anon_sym_BSLASHGlspl] = ACTIONS(5352), + [anon_sym_BSLASHGLSpl] = ACTIONS(5352), + [anon_sym_BSLASHglsdisp] = ACTIONS(5352), + [anon_sym_BSLASHglslink] = ACTIONS(5352), + [anon_sym_BSLASHglstext] = ACTIONS(5352), + [anon_sym_BSLASHGlstext] = ACTIONS(5352), + [anon_sym_BSLASHGLStext] = ACTIONS(5352), + [anon_sym_BSLASHglsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5352), + [anon_sym_BSLASHglsplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSplural] = ACTIONS(5352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5352), + [anon_sym_BSLASHglsname] = ACTIONS(5352), + [anon_sym_BSLASHGlsname] = ACTIONS(5352), + [anon_sym_BSLASHGLSname] = ACTIONS(5352), + [anon_sym_BSLASHglssymbol] = ACTIONS(5352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5352), + [anon_sym_BSLASHglsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5352), + [anon_sym_BSLASHglsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5352), + [anon_sym_BSLASHglsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5352), + [anon_sym_BSLASHglsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5352), + [anon_sym_BSLASHglsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5352), + [anon_sym_BSLASHnewacronym] = ACTIONS(5352), + [anon_sym_BSLASHacrshort] = ACTIONS(5352), + [anon_sym_BSLASHAcrshort] = ACTIONS(5352), + [anon_sym_BSLASHACRshort] = ACTIONS(5352), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5352), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5352), + [anon_sym_BSLASHacrlong] = ACTIONS(5352), + [anon_sym_BSLASHAcrlong] = ACTIONS(5352), + [anon_sym_BSLASHACRlong] = ACTIONS(5352), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5352), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5352), + [anon_sym_BSLASHacrfull] = ACTIONS(5352), + [anon_sym_BSLASHAcrfull] = ACTIONS(5352), + [anon_sym_BSLASHACRfull] = ACTIONS(5352), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5352), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5352), + [anon_sym_BSLASHacs] = ACTIONS(5352), + [anon_sym_BSLASHAcs] = ACTIONS(5352), + [anon_sym_BSLASHacsp] = ACTIONS(5352), + [anon_sym_BSLASHAcsp] = ACTIONS(5352), + [anon_sym_BSLASHacl] = ACTIONS(5352), + [anon_sym_BSLASHAcl] = ACTIONS(5352), + [anon_sym_BSLASHaclp] = ACTIONS(5352), + [anon_sym_BSLASHAclp] = ACTIONS(5352), + [anon_sym_BSLASHacf] = ACTIONS(5352), + [anon_sym_BSLASHAcf] = ACTIONS(5352), + [anon_sym_BSLASHacfp] = ACTIONS(5352), + [anon_sym_BSLASHAcfp] = ACTIONS(5352), + [anon_sym_BSLASHac] = ACTIONS(5352), + [anon_sym_BSLASHAc] = ACTIONS(5352), + [anon_sym_BSLASHacp] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5352), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5352), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5352), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5352), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5352), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5350), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5352), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5352), + [anon_sym_BSLASHcolor] = ACTIONS(5352), + [anon_sym_BSLASHcolorbox] = ACTIONS(5352), + [anon_sym_BSLASHtextcolor] = ACTIONS(5352), + [anon_sym_BSLASHpagecolor] = ACTIONS(5352), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5352), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5352), }, [1566] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5269), - [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), + [sym_command_name] = ACTIONS(5348), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5348), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5346), + [anon_sym_RBRACE] = ACTIONS(5346), + [sym_word] = ACTIONS(5348), + [sym_placeholder] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5348), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_CARET] = ACTIONS(5348), + [anon_sym__] = ACTIONS(5348), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_SQUOTE] = ACTIONS(5348), + [anon_sym_BSLASHusepackage] = ACTIONS(5348), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5348), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5348), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5348), + [anon_sym_BSLASHbibliography] = ACTIONS(5348), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5348), + [anon_sym_BSLASHincludesvg] = ACTIONS(5348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5348), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5348), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5348), + [anon_sym_BSLASHimport] = ACTIONS(5348), + [anon_sym_BSLASHsubimport] = ACTIONS(5348), + [anon_sym_BSLASHinputfrom] = ACTIONS(5348), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5348), + [anon_sym_BSLASHincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5348), + [anon_sym_BSLASHcaption] = ACTIONS(5348), + [anon_sym_BSLASHcite] = ACTIONS(5348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCite] = ACTIONS(5348), + [anon_sym_BSLASHnocite] = ACTIONS(5348), + [anon_sym_BSLASHcitet] = ACTIONS(5348), + [anon_sym_BSLASHcitep] = ACTIONS(5348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteauthor] = ACTIONS(5348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitetitle] = ACTIONS(5348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteyear] = ACTIONS(5348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5346), + [anon_sym_BSLASHcitedate] = ACTIONS(5348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5346), + [anon_sym_BSLASHciteurl] = ACTIONS(5348), + [anon_sym_BSLASHfullcite] = ACTIONS(5348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5348), + [anon_sym_BSLASHcitealt] = ACTIONS(5348), + [anon_sym_BSLASHcitealp] = ACTIONS(5348), + [anon_sym_BSLASHcitetext] = ACTIONS(5348), + [anon_sym_BSLASHparencite] = ACTIONS(5348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHParencite] = ACTIONS(5348), + [anon_sym_BSLASHfootcite] = ACTIONS(5348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5348), + [anon_sym_BSLASHtextcite] = ACTIONS(5348), + [anon_sym_BSLASHTextcite] = ACTIONS(5348), + [anon_sym_BSLASHsmartcite] = ACTIONS(5348), + [anon_sym_BSLASHSmartcite] = ACTIONS(5348), + [anon_sym_BSLASHsupercite] = ACTIONS(5348), + [anon_sym_BSLASHautocite] = ACTIONS(5348), + [anon_sym_BSLASHAutocite] = ACTIONS(5348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5346), + [anon_sym_BSLASHvolcite] = ACTIONS(5348), + [anon_sym_BSLASHVolcite] = ACTIONS(5348), + [anon_sym_BSLASHpvolcite] = ACTIONS(5348), + [anon_sym_BSLASHPvolcite] = ACTIONS(5348), + [anon_sym_BSLASHfvolcite] = ACTIONS(5348), + [anon_sym_BSLASHftvolcite] = ACTIONS(5348), + [anon_sym_BSLASHsvolcite] = ACTIONS(5348), + [anon_sym_BSLASHSvolcite] = ACTIONS(5348), + [anon_sym_BSLASHtvolcite] = ACTIONS(5348), + [anon_sym_BSLASHTvolcite] = ACTIONS(5348), + [anon_sym_BSLASHavolcite] = ACTIONS(5348), + [anon_sym_BSLASHAvolcite] = ACTIONS(5348), + [anon_sym_BSLASHnotecite] = ACTIONS(5348), + [anon_sym_BSLASHNotecite] = ACTIONS(5348), + [anon_sym_BSLASHpnotecite] = ACTIONS(5348), + [anon_sym_BSLASHPnotecite] = ACTIONS(5348), + [anon_sym_BSLASHfnotecite] = ACTIONS(5348), + [anon_sym_BSLASHlabel] = ACTIONS(5348), + [anon_sym_BSLASHref] = ACTIONS(5348), + [anon_sym_BSLASHeqref] = ACTIONS(5348), + [anon_sym_BSLASHvref] = ACTIONS(5348), + [anon_sym_BSLASHVref] = ACTIONS(5348), + [anon_sym_BSLASHautoref] = ACTIONS(5348), + [anon_sym_BSLASHpageref] = ACTIONS(5348), + [anon_sym_BSLASHcref] = ACTIONS(5348), + [anon_sym_BSLASHCref] = ACTIONS(5348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnameCref] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5348), + [anon_sym_BSLASHlabelcref] = ACTIONS(5348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange] = ACTIONS(5348), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHCrefrange] = ACTIONS(5348), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5346), + [anon_sym_BSLASHnewlabel] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand] = ACTIONS(5348), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5348), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5348), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5346), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5348), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdef] = ACTIONS(5348), + [anon_sym_BSLASHlet] = ACTIONS(5348), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5348), + [anon_sym_BSLASHgls] = ACTIONS(5348), + [anon_sym_BSLASHGls] = ACTIONS(5348), + [anon_sym_BSLASHGLS] = ACTIONS(5348), + [anon_sym_BSLASHglspl] = ACTIONS(5348), + [anon_sym_BSLASHGlspl] = ACTIONS(5348), + [anon_sym_BSLASHGLSpl] = ACTIONS(5348), + [anon_sym_BSLASHglsdisp] = ACTIONS(5348), + [anon_sym_BSLASHglslink] = ACTIONS(5348), + [anon_sym_BSLASHglstext] = ACTIONS(5348), + [anon_sym_BSLASHGlstext] = ACTIONS(5348), + [anon_sym_BSLASHGLStext] = ACTIONS(5348), + [anon_sym_BSLASHglsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5348), + [anon_sym_BSLASHglsplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSplural] = ACTIONS(5348), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5348), + [anon_sym_BSLASHglsname] = ACTIONS(5348), + [anon_sym_BSLASHGlsname] = ACTIONS(5348), + [anon_sym_BSLASHGLSname] = ACTIONS(5348), + [anon_sym_BSLASHglssymbol] = ACTIONS(5348), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5348), + [anon_sym_BSLASHglsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5348), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5348), + [anon_sym_BSLASHglsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5348), + [anon_sym_BSLASHglsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5348), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5348), + [anon_sym_BSLASHglsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5348), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5348), + [anon_sym_BSLASHglsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5348), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5348), + [anon_sym_BSLASHnewacronym] = ACTIONS(5348), + [anon_sym_BSLASHacrshort] = ACTIONS(5348), + [anon_sym_BSLASHAcrshort] = ACTIONS(5348), + [anon_sym_BSLASHACRshort] = ACTIONS(5348), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5348), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5348), + [anon_sym_BSLASHacrlong] = ACTIONS(5348), + [anon_sym_BSLASHAcrlong] = ACTIONS(5348), + [anon_sym_BSLASHACRlong] = ACTIONS(5348), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5348), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5348), + [anon_sym_BSLASHacrfull] = ACTIONS(5348), + [anon_sym_BSLASHAcrfull] = ACTIONS(5348), + [anon_sym_BSLASHACRfull] = ACTIONS(5348), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5348), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5348), + [anon_sym_BSLASHacs] = ACTIONS(5348), + [anon_sym_BSLASHAcs] = ACTIONS(5348), + [anon_sym_BSLASHacsp] = ACTIONS(5348), + [anon_sym_BSLASHAcsp] = ACTIONS(5348), + [anon_sym_BSLASHacl] = ACTIONS(5348), + [anon_sym_BSLASHAcl] = ACTIONS(5348), + [anon_sym_BSLASHaclp] = ACTIONS(5348), + [anon_sym_BSLASHAclp] = ACTIONS(5348), + [anon_sym_BSLASHacf] = ACTIONS(5348), + [anon_sym_BSLASHAcf] = ACTIONS(5348), + [anon_sym_BSLASHacfp] = ACTIONS(5348), + [anon_sym_BSLASHAcfp] = ACTIONS(5348), + [anon_sym_BSLASHac] = ACTIONS(5348), + [anon_sym_BSLASHAc] = ACTIONS(5348), + [anon_sym_BSLASHacp] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5348), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5348), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5348), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5348), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5348), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5346), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5348), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5348), + [anon_sym_BSLASHcolor] = ACTIONS(5348), + [anon_sym_BSLASHcolorbox] = ACTIONS(5348), + [anon_sym_BSLASHtextcolor] = ACTIONS(5348), + [anon_sym_BSLASHpagecolor] = ACTIONS(5348), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5348), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5348), }, [1567] = { - [sym_command_name] = ACTIONS(5265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5265), - [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), + [sym_command_name] = ACTIONS(5344), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5344), + [anon_sym_RBRACK] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_RBRACE] = ACTIONS(5342), + [sym_word] = ACTIONS(5344), + [sym_placeholder] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(5344), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_SLASH] = ACTIONS(5344), + [anon_sym_CARET] = ACTIONS(5344), + [anon_sym__] = ACTIONS(5344), + [anon_sym_LT] = ACTIONS(5344), + [anon_sym_GT] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_PIPE] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_SQUOTE] = ACTIONS(5344), + [anon_sym_BSLASHusepackage] = ACTIONS(5344), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5344), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5344), + [anon_sym_BSLASHinclude] = ACTIONS(5344), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5344), + [anon_sym_BSLASHinput] = ACTIONS(5344), + [anon_sym_BSLASHsubfile] = ACTIONS(5344), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5344), + [anon_sym_BSLASHbibliography] = ACTIONS(5344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5344), + [anon_sym_BSLASHincludesvg] = ACTIONS(5344), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5344), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5344), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5344), + [anon_sym_BSLASHimport] = ACTIONS(5344), + [anon_sym_BSLASHsubimport] = ACTIONS(5344), + [anon_sym_BSLASHinputfrom] = ACTIONS(5344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5344), + [anon_sym_BSLASHincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5344), + [anon_sym_BSLASHcaption] = ACTIONS(5344), + [anon_sym_BSLASHcite] = ACTIONS(5344), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCite] = ACTIONS(5344), + [anon_sym_BSLASHnocite] = ACTIONS(5344), + [anon_sym_BSLASHcitet] = ACTIONS(5344), + [anon_sym_BSLASHcitep] = ACTIONS(5344), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteauthor] = ACTIONS(5344), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5344), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitetitle] = ACTIONS(5344), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteyear] = ACTIONS(5344), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5342), + [anon_sym_BSLASHcitedate] = ACTIONS(5344), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5342), + [anon_sym_BSLASHciteurl] = ACTIONS(5344), + [anon_sym_BSLASHfullcite] = ACTIONS(5344), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5344), + [anon_sym_BSLASHcitealt] = ACTIONS(5344), + [anon_sym_BSLASHcitealp] = ACTIONS(5344), + [anon_sym_BSLASHcitetext] = ACTIONS(5344), + [anon_sym_BSLASHparencite] = ACTIONS(5344), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHParencite] = ACTIONS(5344), + [anon_sym_BSLASHfootcite] = ACTIONS(5344), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5344), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5344), + [anon_sym_BSLASHtextcite] = ACTIONS(5344), + [anon_sym_BSLASHTextcite] = ACTIONS(5344), + [anon_sym_BSLASHsmartcite] = ACTIONS(5344), + [anon_sym_BSLASHSmartcite] = ACTIONS(5344), + [anon_sym_BSLASHsupercite] = ACTIONS(5344), + [anon_sym_BSLASHautocite] = ACTIONS(5344), + [anon_sym_BSLASHAutocite] = ACTIONS(5344), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5342), + [anon_sym_BSLASHvolcite] = ACTIONS(5344), + [anon_sym_BSLASHVolcite] = ACTIONS(5344), + [anon_sym_BSLASHpvolcite] = ACTIONS(5344), + [anon_sym_BSLASHPvolcite] = ACTIONS(5344), + [anon_sym_BSLASHfvolcite] = ACTIONS(5344), + [anon_sym_BSLASHftvolcite] = ACTIONS(5344), + [anon_sym_BSLASHsvolcite] = ACTIONS(5344), + [anon_sym_BSLASHSvolcite] = ACTIONS(5344), + [anon_sym_BSLASHtvolcite] = ACTIONS(5344), + [anon_sym_BSLASHTvolcite] = ACTIONS(5344), + [anon_sym_BSLASHavolcite] = ACTIONS(5344), + [anon_sym_BSLASHAvolcite] = ACTIONS(5344), + [anon_sym_BSLASHnotecite] = ACTIONS(5344), + [anon_sym_BSLASHNotecite] = ACTIONS(5344), + [anon_sym_BSLASHpnotecite] = ACTIONS(5344), + [anon_sym_BSLASHPnotecite] = ACTIONS(5344), + [anon_sym_BSLASHfnotecite] = ACTIONS(5344), + [anon_sym_BSLASHlabel] = ACTIONS(5344), + [anon_sym_BSLASHref] = ACTIONS(5344), + [anon_sym_BSLASHeqref] = ACTIONS(5344), + [anon_sym_BSLASHvref] = ACTIONS(5344), + [anon_sym_BSLASHVref] = ACTIONS(5344), + [anon_sym_BSLASHautoref] = ACTIONS(5344), + [anon_sym_BSLASHpageref] = ACTIONS(5344), + [anon_sym_BSLASHcref] = ACTIONS(5344), + [anon_sym_BSLASHCref] = ACTIONS(5344), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnameCref] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5344), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5344), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5344), + [anon_sym_BSLASHlabelcref] = ACTIONS(5344), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange] = ACTIONS(5344), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHCrefrange] = ACTIONS(5344), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5342), + [anon_sym_BSLASHnewlabel] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand] = ACTIONS(5344), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5344), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5344), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5344), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdef] = ACTIONS(5344), + [anon_sym_BSLASHlet] = ACTIONS(5344), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5344), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5344), + [anon_sym_BSLASHgls] = ACTIONS(5344), + [anon_sym_BSLASHGls] = ACTIONS(5344), + [anon_sym_BSLASHGLS] = ACTIONS(5344), + [anon_sym_BSLASHglspl] = ACTIONS(5344), + [anon_sym_BSLASHGlspl] = ACTIONS(5344), + [anon_sym_BSLASHGLSpl] = ACTIONS(5344), + [anon_sym_BSLASHglsdisp] = ACTIONS(5344), + [anon_sym_BSLASHglslink] = ACTIONS(5344), + [anon_sym_BSLASHglstext] = ACTIONS(5344), + [anon_sym_BSLASHGlstext] = ACTIONS(5344), + [anon_sym_BSLASHGLStext] = ACTIONS(5344), + [anon_sym_BSLASHglsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5344), + [anon_sym_BSLASHglsplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSplural] = ACTIONS(5344), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5344), + [anon_sym_BSLASHglsname] = ACTIONS(5344), + [anon_sym_BSLASHGlsname] = ACTIONS(5344), + [anon_sym_BSLASHGLSname] = ACTIONS(5344), + [anon_sym_BSLASHglssymbol] = ACTIONS(5344), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5344), + [anon_sym_BSLASHglsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5344), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5344), + [anon_sym_BSLASHglsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5344), + [anon_sym_BSLASHglsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5344), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5344), + [anon_sym_BSLASHglsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5344), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5344), + [anon_sym_BSLASHglsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5344), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5344), + [anon_sym_BSLASHnewacronym] = ACTIONS(5344), + [anon_sym_BSLASHacrshort] = ACTIONS(5344), + [anon_sym_BSLASHAcrshort] = ACTIONS(5344), + [anon_sym_BSLASHACRshort] = ACTIONS(5344), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5344), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5344), + [anon_sym_BSLASHacrlong] = ACTIONS(5344), + [anon_sym_BSLASHAcrlong] = ACTIONS(5344), + [anon_sym_BSLASHACRlong] = ACTIONS(5344), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5344), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5344), + [anon_sym_BSLASHacrfull] = ACTIONS(5344), + [anon_sym_BSLASHAcrfull] = ACTIONS(5344), + [anon_sym_BSLASHACRfull] = ACTIONS(5344), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5344), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5344), + [anon_sym_BSLASHacs] = ACTIONS(5344), + [anon_sym_BSLASHAcs] = ACTIONS(5344), + [anon_sym_BSLASHacsp] = ACTIONS(5344), + [anon_sym_BSLASHAcsp] = ACTIONS(5344), + [anon_sym_BSLASHacl] = ACTIONS(5344), + [anon_sym_BSLASHAcl] = ACTIONS(5344), + [anon_sym_BSLASHaclp] = ACTIONS(5344), + [anon_sym_BSLASHAclp] = ACTIONS(5344), + [anon_sym_BSLASHacf] = ACTIONS(5344), + [anon_sym_BSLASHAcf] = ACTIONS(5344), + [anon_sym_BSLASHacfp] = ACTIONS(5344), + [anon_sym_BSLASHAcfp] = ACTIONS(5344), + [anon_sym_BSLASHac] = ACTIONS(5344), + [anon_sym_BSLASHAc] = ACTIONS(5344), + [anon_sym_BSLASHacp] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5344), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5344), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5344), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5344), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5344), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5342), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5344), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5344), + [anon_sym_BSLASHcolor] = ACTIONS(5344), + [anon_sym_BSLASHcolorbox] = ACTIONS(5344), + [anon_sym_BSLASHtextcolor] = ACTIONS(5344), + [anon_sym_BSLASHpagecolor] = ACTIONS(5344), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5344), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5344), }, [1568] = { - [sym_command_name] = ACTIONS(5261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5261), - [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), + [sym_command_name] = ACTIONS(5340), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5340), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5338), + [anon_sym_RBRACE] = ACTIONS(5338), + [sym_word] = ACTIONS(5340), + [sym_placeholder] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_SLASH] = ACTIONS(5340), + [anon_sym_CARET] = ACTIONS(5340), + [anon_sym__] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(5340), + [anon_sym_GT] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(5340), + [anon_sym_PIPE] = ACTIONS(5340), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_SQUOTE] = ACTIONS(5340), + [anon_sym_BSLASHusepackage] = ACTIONS(5340), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5340), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5340), + [anon_sym_BSLASHinclude] = ACTIONS(5340), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5340), + [anon_sym_BSLASHinput] = ACTIONS(5340), + [anon_sym_BSLASHsubfile] = ACTIONS(5340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5340), + [anon_sym_BSLASHbibliography] = ACTIONS(5340), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5340), + [anon_sym_BSLASHincludesvg] = ACTIONS(5340), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5340), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5340), + [anon_sym_BSLASHimport] = ACTIONS(5340), + [anon_sym_BSLASHsubimport] = ACTIONS(5340), + [anon_sym_BSLASHinputfrom] = ACTIONS(5340), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5340), + [anon_sym_BSLASHincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5340), + [anon_sym_BSLASHcaption] = ACTIONS(5340), + [anon_sym_BSLASHcite] = ACTIONS(5340), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCite] = ACTIONS(5340), + [anon_sym_BSLASHnocite] = ACTIONS(5340), + [anon_sym_BSLASHcitet] = ACTIONS(5340), + [anon_sym_BSLASHcitep] = ACTIONS(5340), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteauthor] = ACTIONS(5340), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5340), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitetitle] = ACTIONS(5340), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteyear] = ACTIONS(5340), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5338), + [anon_sym_BSLASHcitedate] = ACTIONS(5340), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5338), + [anon_sym_BSLASHciteurl] = ACTIONS(5340), + [anon_sym_BSLASHfullcite] = ACTIONS(5340), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5340), + [anon_sym_BSLASHcitealt] = ACTIONS(5340), + [anon_sym_BSLASHcitealp] = ACTIONS(5340), + [anon_sym_BSLASHcitetext] = ACTIONS(5340), + [anon_sym_BSLASHparencite] = ACTIONS(5340), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHParencite] = ACTIONS(5340), + [anon_sym_BSLASHfootcite] = ACTIONS(5340), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5340), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5340), + [anon_sym_BSLASHtextcite] = ACTIONS(5340), + [anon_sym_BSLASHTextcite] = ACTIONS(5340), + [anon_sym_BSLASHsmartcite] = ACTIONS(5340), + [anon_sym_BSLASHSmartcite] = ACTIONS(5340), + [anon_sym_BSLASHsupercite] = ACTIONS(5340), + [anon_sym_BSLASHautocite] = ACTIONS(5340), + [anon_sym_BSLASHAutocite] = ACTIONS(5340), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5338), + [anon_sym_BSLASHvolcite] = ACTIONS(5340), + [anon_sym_BSLASHVolcite] = ACTIONS(5340), + [anon_sym_BSLASHpvolcite] = ACTIONS(5340), + [anon_sym_BSLASHPvolcite] = ACTIONS(5340), + [anon_sym_BSLASHfvolcite] = ACTIONS(5340), + [anon_sym_BSLASHftvolcite] = ACTIONS(5340), + [anon_sym_BSLASHsvolcite] = ACTIONS(5340), + [anon_sym_BSLASHSvolcite] = ACTIONS(5340), + [anon_sym_BSLASHtvolcite] = ACTIONS(5340), + [anon_sym_BSLASHTvolcite] = ACTIONS(5340), + [anon_sym_BSLASHavolcite] = ACTIONS(5340), + [anon_sym_BSLASHAvolcite] = ACTIONS(5340), + [anon_sym_BSLASHnotecite] = ACTIONS(5340), + [anon_sym_BSLASHNotecite] = ACTIONS(5340), + [anon_sym_BSLASHpnotecite] = ACTIONS(5340), + [anon_sym_BSLASHPnotecite] = ACTIONS(5340), + [anon_sym_BSLASHfnotecite] = ACTIONS(5340), + [anon_sym_BSLASHlabel] = ACTIONS(5340), + [anon_sym_BSLASHref] = ACTIONS(5340), + [anon_sym_BSLASHeqref] = ACTIONS(5340), + [anon_sym_BSLASHvref] = ACTIONS(5340), + [anon_sym_BSLASHVref] = ACTIONS(5340), + [anon_sym_BSLASHautoref] = ACTIONS(5340), + [anon_sym_BSLASHpageref] = ACTIONS(5340), + [anon_sym_BSLASHcref] = ACTIONS(5340), + [anon_sym_BSLASHCref] = ACTIONS(5340), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnameCref] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5340), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5340), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5340), + [anon_sym_BSLASHlabelcref] = ACTIONS(5340), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange] = ACTIONS(5340), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHCrefrange] = ACTIONS(5340), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5338), + [anon_sym_BSLASHnewlabel] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand] = ACTIONS(5340), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5340), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5340), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5338), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5340), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdef] = ACTIONS(5340), + [anon_sym_BSLASHlet] = ACTIONS(5340), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5340), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5340), + [anon_sym_BSLASHgls] = ACTIONS(5340), + [anon_sym_BSLASHGls] = ACTIONS(5340), + [anon_sym_BSLASHGLS] = ACTIONS(5340), + [anon_sym_BSLASHglspl] = ACTIONS(5340), + [anon_sym_BSLASHGlspl] = ACTIONS(5340), + [anon_sym_BSLASHGLSpl] = ACTIONS(5340), + [anon_sym_BSLASHglsdisp] = ACTIONS(5340), + [anon_sym_BSLASHglslink] = ACTIONS(5340), + [anon_sym_BSLASHglstext] = ACTIONS(5340), + [anon_sym_BSLASHGlstext] = ACTIONS(5340), + [anon_sym_BSLASHGLStext] = ACTIONS(5340), + [anon_sym_BSLASHglsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5340), + [anon_sym_BSLASHglsplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSplural] = ACTIONS(5340), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5340), + [anon_sym_BSLASHglsname] = ACTIONS(5340), + [anon_sym_BSLASHGlsname] = ACTIONS(5340), + [anon_sym_BSLASHGLSname] = ACTIONS(5340), + [anon_sym_BSLASHglssymbol] = ACTIONS(5340), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5340), + [anon_sym_BSLASHglsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5340), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5340), + [anon_sym_BSLASHglsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5340), + [anon_sym_BSLASHglsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5340), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5340), + [anon_sym_BSLASHglsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5340), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5340), + [anon_sym_BSLASHglsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5340), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5340), + [anon_sym_BSLASHnewacronym] = ACTIONS(5340), + [anon_sym_BSLASHacrshort] = ACTIONS(5340), + [anon_sym_BSLASHAcrshort] = ACTIONS(5340), + [anon_sym_BSLASHACRshort] = ACTIONS(5340), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5340), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5340), + [anon_sym_BSLASHacrlong] = ACTIONS(5340), + [anon_sym_BSLASHAcrlong] = ACTIONS(5340), + [anon_sym_BSLASHACRlong] = ACTIONS(5340), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5340), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5340), + [anon_sym_BSLASHacrfull] = ACTIONS(5340), + [anon_sym_BSLASHAcrfull] = ACTIONS(5340), + [anon_sym_BSLASHACRfull] = ACTIONS(5340), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5340), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5340), + [anon_sym_BSLASHacs] = ACTIONS(5340), + [anon_sym_BSLASHAcs] = ACTIONS(5340), + [anon_sym_BSLASHacsp] = ACTIONS(5340), + [anon_sym_BSLASHAcsp] = ACTIONS(5340), + [anon_sym_BSLASHacl] = ACTIONS(5340), + [anon_sym_BSLASHAcl] = ACTIONS(5340), + [anon_sym_BSLASHaclp] = ACTIONS(5340), + [anon_sym_BSLASHAclp] = ACTIONS(5340), + [anon_sym_BSLASHacf] = ACTIONS(5340), + [anon_sym_BSLASHAcf] = ACTIONS(5340), + [anon_sym_BSLASHacfp] = ACTIONS(5340), + [anon_sym_BSLASHAcfp] = ACTIONS(5340), + [anon_sym_BSLASHac] = ACTIONS(5340), + [anon_sym_BSLASHAc] = ACTIONS(5340), + [anon_sym_BSLASHacp] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5340), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5340), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5340), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5340), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5340), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5338), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5340), + [anon_sym_BSLASHcolor] = ACTIONS(5340), + [anon_sym_BSLASHcolorbox] = ACTIONS(5340), + [anon_sym_BSLASHtextcolor] = ACTIONS(5340), + [anon_sym_BSLASHpagecolor] = ACTIONS(5340), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5340), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5340), }, [1569] = { - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5257), - [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), + [sym_command_name] = ACTIONS(5336), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5336), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5334), + [anon_sym_RBRACE] = ACTIONS(5334), + [sym_word] = ACTIONS(5336), + [sym_placeholder] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_SLASH] = ACTIONS(5336), + [anon_sym_CARET] = ACTIONS(5336), + [anon_sym__] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5336), + [anon_sym_GT] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5336), + [anon_sym_PIPE] = ACTIONS(5336), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_SQUOTE] = ACTIONS(5336), + [anon_sym_BSLASHusepackage] = ACTIONS(5336), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5336), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5336), + [anon_sym_BSLASHinclude] = ACTIONS(5336), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5336), + [anon_sym_BSLASHinput] = ACTIONS(5336), + [anon_sym_BSLASHsubfile] = ACTIONS(5336), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5336), + [anon_sym_BSLASHbibliography] = ACTIONS(5336), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5336), + [anon_sym_BSLASHincludesvg] = ACTIONS(5336), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5336), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5336), + [anon_sym_BSLASHimport] = ACTIONS(5336), + [anon_sym_BSLASHsubimport] = ACTIONS(5336), + [anon_sym_BSLASHinputfrom] = ACTIONS(5336), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5336), + [anon_sym_BSLASHincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5336), + [anon_sym_BSLASHcaption] = ACTIONS(5336), + [anon_sym_BSLASHcite] = ACTIONS(5336), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCite] = ACTIONS(5336), + [anon_sym_BSLASHnocite] = ACTIONS(5336), + [anon_sym_BSLASHcitet] = ACTIONS(5336), + [anon_sym_BSLASHcitep] = ACTIONS(5336), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteauthor] = ACTIONS(5336), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5336), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitetitle] = ACTIONS(5336), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteyear] = ACTIONS(5336), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5334), + [anon_sym_BSLASHcitedate] = ACTIONS(5336), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5334), + [anon_sym_BSLASHciteurl] = ACTIONS(5336), + [anon_sym_BSLASHfullcite] = ACTIONS(5336), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5336), + [anon_sym_BSLASHcitealt] = ACTIONS(5336), + [anon_sym_BSLASHcitealp] = ACTIONS(5336), + [anon_sym_BSLASHcitetext] = ACTIONS(5336), + [anon_sym_BSLASHparencite] = ACTIONS(5336), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHParencite] = ACTIONS(5336), + [anon_sym_BSLASHfootcite] = ACTIONS(5336), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5336), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5336), + [anon_sym_BSLASHtextcite] = ACTIONS(5336), + [anon_sym_BSLASHTextcite] = ACTIONS(5336), + [anon_sym_BSLASHsmartcite] = ACTIONS(5336), + [anon_sym_BSLASHSmartcite] = ACTIONS(5336), + [anon_sym_BSLASHsupercite] = ACTIONS(5336), + [anon_sym_BSLASHautocite] = ACTIONS(5336), + [anon_sym_BSLASHAutocite] = ACTIONS(5336), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5334), + [anon_sym_BSLASHvolcite] = ACTIONS(5336), + [anon_sym_BSLASHVolcite] = ACTIONS(5336), + [anon_sym_BSLASHpvolcite] = ACTIONS(5336), + [anon_sym_BSLASHPvolcite] = ACTIONS(5336), + [anon_sym_BSLASHfvolcite] = ACTIONS(5336), + [anon_sym_BSLASHftvolcite] = ACTIONS(5336), + [anon_sym_BSLASHsvolcite] = ACTIONS(5336), + [anon_sym_BSLASHSvolcite] = ACTIONS(5336), + [anon_sym_BSLASHtvolcite] = ACTIONS(5336), + [anon_sym_BSLASHTvolcite] = ACTIONS(5336), + [anon_sym_BSLASHavolcite] = ACTIONS(5336), + [anon_sym_BSLASHAvolcite] = ACTIONS(5336), + [anon_sym_BSLASHnotecite] = ACTIONS(5336), + [anon_sym_BSLASHNotecite] = ACTIONS(5336), + [anon_sym_BSLASHpnotecite] = ACTIONS(5336), + [anon_sym_BSLASHPnotecite] = ACTIONS(5336), + [anon_sym_BSLASHfnotecite] = ACTIONS(5336), + [anon_sym_BSLASHlabel] = ACTIONS(5336), + [anon_sym_BSLASHref] = ACTIONS(5336), + [anon_sym_BSLASHeqref] = ACTIONS(5336), + [anon_sym_BSLASHvref] = ACTIONS(5336), + [anon_sym_BSLASHVref] = ACTIONS(5336), + [anon_sym_BSLASHautoref] = ACTIONS(5336), + [anon_sym_BSLASHpageref] = ACTIONS(5336), + [anon_sym_BSLASHcref] = ACTIONS(5336), + [anon_sym_BSLASHCref] = ACTIONS(5336), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnameCref] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5336), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5336), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5336), + [anon_sym_BSLASHlabelcref] = ACTIONS(5336), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange] = ACTIONS(5336), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHCrefrange] = ACTIONS(5336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5334), + [anon_sym_BSLASHnewlabel] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand] = ACTIONS(5336), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5336), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5336), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5336), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdef] = ACTIONS(5336), + [anon_sym_BSLASHlet] = ACTIONS(5336), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5336), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5336), + [anon_sym_BSLASHgls] = ACTIONS(5336), + [anon_sym_BSLASHGls] = ACTIONS(5336), + [anon_sym_BSLASHGLS] = ACTIONS(5336), + [anon_sym_BSLASHglspl] = ACTIONS(5336), + [anon_sym_BSLASHGlspl] = ACTIONS(5336), + [anon_sym_BSLASHGLSpl] = ACTIONS(5336), + [anon_sym_BSLASHglsdisp] = ACTIONS(5336), + [anon_sym_BSLASHglslink] = ACTIONS(5336), + [anon_sym_BSLASHglstext] = ACTIONS(5336), + [anon_sym_BSLASHGlstext] = ACTIONS(5336), + [anon_sym_BSLASHGLStext] = ACTIONS(5336), + [anon_sym_BSLASHglsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5336), + [anon_sym_BSLASHglsplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSplural] = ACTIONS(5336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5336), + [anon_sym_BSLASHglsname] = ACTIONS(5336), + [anon_sym_BSLASHGlsname] = ACTIONS(5336), + [anon_sym_BSLASHGLSname] = ACTIONS(5336), + [anon_sym_BSLASHglssymbol] = ACTIONS(5336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5336), + [anon_sym_BSLASHglsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5336), + [anon_sym_BSLASHglsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5336), + [anon_sym_BSLASHglsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5336), + [anon_sym_BSLASHglsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5336), + [anon_sym_BSLASHglsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5336), + [anon_sym_BSLASHnewacronym] = ACTIONS(5336), + [anon_sym_BSLASHacrshort] = ACTIONS(5336), + [anon_sym_BSLASHAcrshort] = ACTIONS(5336), + [anon_sym_BSLASHACRshort] = ACTIONS(5336), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5336), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5336), + [anon_sym_BSLASHacrlong] = ACTIONS(5336), + [anon_sym_BSLASHAcrlong] = ACTIONS(5336), + [anon_sym_BSLASHACRlong] = ACTIONS(5336), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5336), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5336), + [anon_sym_BSLASHacrfull] = ACTIONS(5336), + [anon_sym_BSLASHAcrfull] = ACTIONS(5336), + [anon_sym_BSLASHACRfull] = ACTIONS(5336), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5336), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5336), + [anon_sym_BSLASHacs] = ACTIONS(5336), + [anon_sym_BSLASHAcs] = ACTIONS(5336), + [anon_sym_BSLASHacsp] = ACTIONS(5336), + [anon_sym_BSLASHAcsp] = ACTIONS(5336), + [anon_sym_BSLASHacl] = ACTIONS(5336), + [anon_sym_BSLASHAcl] = ACTIONS(5336), + [anon_sym_BSLASHaclp] = ACTIONS(5336), + [anon_sym_BSLASHAclp] = ACTIONS(5336), + [anon_sym_BSLASHacf] = ACTIONS(5336), + [anon_sym_BSLASHAcf] = ACTIONS(5336), + [anon_sym_BSLASHacfp] = ACTIONS(5336), + [anon_sym_BSLASHAcfp] = ACTIONS(5336), + [anon_sym_BSLASHac] = ACTIONS(5336), + [anon_sym_BSLASHAc] = ACTIONS(5336), + [anon_sym_BSLASHacp] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5336), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5336), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5336), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5336), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5336), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5334), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5336), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5336), + [anon_sym_BSLASHcolor] = ACTIONS(5336), + [anon_sym_BSLASHcolorbox] = ACTIONS(5336), + [anon_sym_BSLASHtextcolor] = ACTIONS(5336), + [anon_sym_BSLASHpagecolor] = ACTIONS(5336), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5336), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), }, [1570] = { - [sym_command_name] = ACTIONS(5253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5251), - [anon_sym_COMMA] = ACTIONS(5251), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5253), - [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), + [sym_command_name] = ACTIONS(5332), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5330), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_RBRACE] = ACTIONS(5330), + [sym_word] = ACTIONS(5332), + [sym_placeholder] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(5332), + [anon_sym_DASH] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5332), + [anon_sym_SLASH] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5332), + [anon_sym_GT] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5332), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_SQUOTE] = ACTIONS(5332), + [anon_sym_BSLASHusepackage] = ACTIONS(5332), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5332), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5332), + [anon_sym_BSLASHinclude] = ACTIONS(5332), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5332), + [anon_sym_BSLASHinput] = ACTIONS(5332), + [anon_sym_BSLASHsubfile] = ACTIONS(5332), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5332), + [anon_sym_BSLASHbibliography] = ACTIONS(5332), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5332), + [anon_sym_BSLASHincludesvg] = ACTIONS(5332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5332), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5332), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5332), + [anon_sym_BSLASHimport] = ACTIONS(5332), + [anon_sym_BSLASHsubimport] = ACTIONS(5332), + [anon_sym_BSLASHinputfrom] = ACTIONS(5332), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5332), + [anon_sym_BSLASHincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5332), + [anon_sym_BSLASHcaption] = ACTIONS(5332), + [anon_sym_BSLASHcite] = ACTIONS(5332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCite] = ACTIONS(5332), + [anon_sym_BSLASHnocite] = ACTIONS(5332), + [anon_sym_BSLASHcitet] = ACTIONS(5332), + [anon_sym_BSLASHcitep] = ACTIONS(5332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteauthor] = ACTIONS(5332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitetitle] = ACTIONS(5332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteyear] = ACTIONS(5332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5330), + [anon_sym_BSLASHcitedate] = ACTIONS(5332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5330), + [anon_sym_BSLASHciteurl] = ACTIONS(5332), + [anon_sym_BSLASHfullcite] = ACTIONS(5332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5332), + [anon_sym_BSLASHcitealt] = ACTIONS(5332), + [anon_sym_BSLASHcitealp] = ACTIONS(5332), + [anon_sym_BSLASHcitetext] = ACTIONS(5332), + [anon_sym_BSLASHparencite] = ACTIONS(5332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHParencite] = ACTIONS(5332), + [anon_sym_BSLASHfootcite] = ACTIONS(5332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5332), + [anon_sym_BSLASHtextcite] = ACTIONS(5332), + [anon_sym_BSLASHTextcite] = ACTIONS(5332), + [anon_sym_BSLASHsmartcite] = ACTIONS(5332), + [anon_sym_BSLASHSmartcite] = ACTIONS(5332), + [anon_sym_BSLASHsupercite] = ACTIONS(5332), + [anon_sym_BSLASHautocite] = ACTIONS(5332), + [anon_sym_BSLASHAutocite] = ACTIONS(5332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5330), + [anon_sym_BSLASHvolcite] = ACTIONS(5332), + [anon_sym_BSLASHVolcite] = ACTIONS(5332), + [anon_sym_BSLASHpvolcite] = ACTIONS(5332), + [anon_sym_BSLASHPvolcite] = ACTIONS(5332), + [anon_sym_BSLASHfvolcite] = ACTIONS(5332), + [anon_sym_BSLASHftvolcite] = ACTIONS(5332), + [anon_sym_BSLASHsvolcite] = ACTIONS(5332), + [anon_sym_BSLASHSvolcite] = ACTIONS(5332), + [anon_sym_BSLASHtvolcite] = ACTIONS(5332), + [anon_sym_BSLASHTvolcite] = ACTIONS(5332), + [anon_sym_BSLASHavolcite] = ACTIONS(5332), + [anon_sym_BSLASHAvolcite] = ACTIONS(5332), + [anon_sym_BSLASHnotecite] = ACTIONS(5332), + [anon_sym_BSLASHNotecite] = ACTIONS(5332), + [anon_sym_BSLASHpnotecite] = ACTIONS(5332), + [anon_sym_BSLASHPnotecite] = ACTIONS(5332), + [anon_sym_BSLASHfnotecite] = ACTIONS(5332), + [anon_sym_BSLASHlabel] = ACTIONS(5332), + [anon_sym_BSLASHref] = ACTIONS(5332), + [anon_sym_BSLASHeqref] = ACTIONS(5332), + [anon_sym_BSLASHvref] = ACTIONS(5332), + [anon_sym_BSLASHVref] = ACTIONS(5332), + [anon_sym_BSLASHautoref] = ACTIONS(5332), + [anon_sym_BSLASHpageref] = ACTIONS(5332), + [anon_sym_BSLASHcref] = ACTIONS(5332), + [anon_sym_BSLASHCref] = ACTIONS(5332), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnameCref] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5332), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5332), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5332), + [anon_sym_BSLASHlabelcref] = ACTIONS(5332), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange] = ACTIONS(5332), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHCrefrange] = ACTIONS(5332), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5330), + [anon_sym_BSLASHnewlabel] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand] = ACTIONS(5332), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5332), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5332), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5330), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5332), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdef] = ACTIONS(5332), + [anon_sym_BSLASHlet] = ACTIONS(5332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5332), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5332), + [anon_sym_BSLASHgls] = ACTIONS(5332), + [anon_sym_BSLASHGls] = ACTIONS(5332), + [anon_sym_BSLASHGLS] = ACTIONS(5332), + [anon_sym_BSLASHglspl] = ACTIONS(5332), + [anon_sym_BSLASHGlspl] = ACTIONS(5332), + [anon_sym_BSLASHGLSpl] = ACTIONS(5332), + [anon_sym_BSLASHglsdisp] = ACTIONS(5332), + [anon_sym_BSLASHglslink] = ACTIONS(5332), + [anon_sym_BSLASHglstext] = ACTIONS(5332), + [anon_sym_BSLASHGlstext] = ACTIONS(5332), + [anon_sym_BSLASHGLStext] = ACTIONS(5332), + [anon_sym_BSLASHglsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5332), + [anon_sym_BSLASHglsplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSplural] = ACTIONS(5332), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5332), + [anon_sym_BSLASHglsname] = ACTIONS(5332), + [anon_sym_BSLASHGlsname] = ACTIONS(5332), + [anon_sym_BSLASHGLSname] = ACTIONS(5332), + [anon_sym_BSLASHglssymbol] = ACTIONS(5332), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5332), + [anon_sym_BSLASHglsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5332), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5332), + [anon_sym_BSLASHglsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5332), + [anon_sym_BSLASHglsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5332), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5332), + [anon_sym_BSLASHglsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5332), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5332), + [anon_sym_BSLASHglsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5332), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5332), + [anon_sym_BSLASHnewacronym] = ACTIONS(5332), + [anon_sym_BSLASHacrshort] = ACTIONS(5332), + [anon_sym_BSLASHAcrshort] = ACTIONS(5332), + [anon_sym_BSLASHACRshort] = ACTIONS(5332), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5332), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5332), + [anon_sym_BSLASHacrlong] = ACTIONS(5332), + [anon_sym_BSLASHAcrlong] = ACTIONS(5332), + [anon_sym_BSLASHACRlong] = ACTIONS(5332), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5332), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5332), + [anon_sym_BSLASHacrfull] = ACTIONS(5332), + [anon_sym_BSLASHAcrfull] = ACTIONS(5332), + [anon_sym_BSLASHACRfull] = ACTIONS(5332), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5332), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5332), + [anon_sym_BSLASHacs] = ACTIONS(5332), + [anon_sym_BSLASHAcs] = ACTIONS(5332), + [anon_sym_BSLASHacsp] = ACTIONS(5332), + [anon_sym_BSLASHAcsp] = ACTIONS(5332), + [anon_sym_BSLASHacl] = ACTIONS(5332), + [anon_sym_BSLASHAcl] = ACTIONS(5332), + [anon_sym_BSLASHaclp] = ACTIONS(5332), + [anon_sym_BSLASHAclp] = ACTIONS(5332), + [anon_sym_BSLASHacf] = ACTIONS(5332), + [anon_sym_BSLASHAcf] = ACTIONS(5332), + [anon_sym_BSLASHacfp] = ACTIONS(5332), + [anon_sym_BSLASHAcfp] = ACTIONS(5332), + [anon_sym_BSLASHac] = ACTIONS(5332), + [anon_sym_BSLASHAc] = ACTIONS(5332), + [anon_sym_BSLASHacp] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5332), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5332), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5332), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5332), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5332), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5330), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5332), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5332), + [anon_sym_BSLASHcolor] = ACTIONS(5332), + [anon_sym_BSLASHcolorbox] = ACTIONS(5332), + [anon_sym_BSLASHtextcolor] = ACTIONS(5332), + [anon_sym_BSLASHpagecolor] = ACTIONS(5332), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5332), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5332), }, [1571] = { - [sym_command_name] = ACTIONS(5249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5247), - [anon_sym_COMMA] = ACTIONS(5247), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5249), - [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), + [sym_command_name] = ACTIONS(5328), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5328), + [anon_sym_RBRACK] = ACTIONS(5326), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_word] = ACTIONS(5328), + [sym_placeholder] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5328), + [anon_sym_SLASH] = ACTIONS(5328), + [anon_sym_CARET] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5328), + [anon_sym_GT] = ACTIONS(5328), + [anon_sym_BANG] = ACTIONS(5328), + [anon_sym_PIPE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_SQUOTE] = ACTIONS(5328), + [anon_sym_BSLASHusepackage] = ACTIONS(5328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5328), + [anon_sym_BSLASHinclude] = ACTIONS(5328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5328), + [anon_sym_BSLASHinput] = ACTIONS(5328), + [anon_sym_BSLASHsubfile] = ACTIONS(5328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5328), + [anon_sym_BSLASHbibliography] = ACTIONS(5328), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5328), + [anon_sym_BSLASHincludesvg] = ACTIONS(5328), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5328), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5328), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5328), + [anon_sym_BSLASHimport] = ACTIONS(5328), + [anon_sym_BSLASHsubimport] = ACTIONS(5328), + [anon_sym_BSLASHinputfrom] = ACTIONS(5328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5328), + [anon_sym_BSLASHincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5328), + [anon_sym_BSLASHcaption] = ACTIONS(5328), + [anon_sym_BSLASHcite] = ACTIONS(5328), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCite] = ACTIONS(5328), + [anon_sym_BSLASHnocite] = ACTIONS(5328), + [anon_sym_BSLASHcitet] = ACTIONS(5328), + [anon_sym_BSLASHcitep] = ACTIONS(5328), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteauthor] = ACTIONS(5328), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5328), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitetitle] = ACTIONS(5328), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteyear] = ACTIONS(5328), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5326), + [anon_sym_BSLASHcitedate] = ACTIONS(5328), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5326), + [anon_sym_BSLASHciteurl] = ACTIONS(5328), + [anon_sym_BSLASHfullcite] = ACTIONS(5328), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5328), + [anon_sym_BSLASHcitealt] = ACTIONS(5328), + [anon_sym_BSLASHcitealp] = ACTIONS(5328), + [anon_sym_BSLASHcitetext] = ACTIONS(5328), + [anon_sym_BSLASHparencite] = ACTIONS(5328), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHParencite] = ACTIONS(5328), + [anon_sym_BSLASHfootcite] = ACTIONS(5328), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5328), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5328), + [anon_sym_BSLASHtextcite] = ACTIONS(5328), + [anon_sym_BSLASHTextcite] = ACTIONS(5328), + [anon_sym_BSLASHsmartcite] = ACTIONS(5328), + [anon_sym_BSLASHSmartcite] = ACTIONS(5328), + [anon_sym_BSLASHsupercite] = ACTIONS(5328), + [anon_sym_BSLASHautocite] = ACTIONS(5328), + [anon_sym_BSLASHAutocite] = ACTIONS(5328), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5326), + [anon_sym_BSLASHvolcite] = ACTIONS(5328), + [anon_sym_BSLASHVolcite] = ACTIONS(5328), + [anon_sym_BSLASHpvolcite] = ACTIONS(5328), + [anon_sym_BSLASHPvolcite] = ACTIONS(5328), + [anon_sym_BSLASHfvolcite] = ACTIONS(5328), + [anon_sym_BSLASHftvolcite] = ACTIONS(5328), + [anon_sym_BSLASHsvolcite] = ACTIONS(5328), + [anon_sym_BSLASHSvolcite] = ACTIONS(5328), + [anon_sym_BSLASHtvolcite] = ACTIONS(5328), + [anon_sym_BSLASHTvolcite] = ACTIONS(5328), + [anon_sym_BSLASHavolcite] = ACTIONS(5328), + [anon_sym_BSLASHAvolcite] = ACTIONS(5328), + [anon_sym_BSLASHnotecite] = ACTIONS(5328), + [anon_sym_BSLASHNotecite] = ACTIONS(5328), + [anon_sym_BSLASHpnotecite] = ACTIONS(5328), + [anon_sym_BSLASHPnotecite] = ACTIONS(5328), + [anon_sym_BSLASHfnotecite] = ACTIONS(5328), + [anon_sym_BSLASHlabel] = ACTIONS(5328), + [anon_sym_BSLASHref] = ACTIONS(5328), + [anon_sym_BSLASHeqref] = ACTIONS(5328), + [anon_sym_BSLASHvref] = ACTIONS(5328), + [anon_sym_BSLASHVref] = ACTIONS(5328), + [anon_sym_BSLASHautoref] = ACTIONS(5328), + [anon_sym_BSLASHpageref] = ACTIONS(5328), + [anon_sym_BSLASHcref] = ACTIONS(5328), + [anon_sym_BSLASHCref] = ACTIONS(5328), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnameCref] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5328), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5328), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5328), + [anon_sym_BSLASHlabelcref] = ACTIONS(5328), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange] = ACTIONS(5328), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHCrefrange] = ACTIONS(5328), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5326), + [anon_sym_BSLASHnewlabel] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand] = ACTIONS(5328), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5328), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5328), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5326), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5328), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdef] = ACTIONS(5328), + [anon_sym_BSLASHlet] = ACTIONS(5328), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5328), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5328), + [anon_sym_BSLASHgls] = ACTIONS(5328), + [anon_sym_BSLASHGls] = ACTIONS(5328), + [anon_sym_BSLASHGLS] = ACTIONS(5328), + [anon_sym_BSLASHglspl] = ACTIONS(5328), + [anon_sym_BSLASHGlspl] = ACTIONS(5328), + [anon_sym_BSLASHGLSpl] = ACTIONS(5328), + [anon_sym_BSLASHglsdisp] = ACTIONS(5328), + [anon_sym_BSLASHglslink] = ACTIONS(5328), + [anon_sym_BSLASHglstext] = ACTIONS(5328), + [anon_sym_BSLASHGlstext] = ACTIONS(5328), + [anon_sym_BSLASHGLStext] = ACTIONS(5328), + [anon_sym_BSLASHglsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5328), + [anon_sym_BSLASHglsplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSplural] = ACTIONS(5328), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5328), + [anon_sym_BSLASHglsname] = ACTIONS(5328), + [anon_sym_BSLASHGlsname] = ACTIONS(5328), + [anon_sym_BSLASHGLSname] = ACTIONS(5328), + [anon_sym_BSLASHglssymbol] = ACTIONS(5328), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5328), + [anon_sym_BSLASHglsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5328), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5328), + [anon_sym_BSLASHglsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5328), + [anon_sym_BSLASHglsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5328), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5328), + [anon_sym_BSLASHglsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5328), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5328), + [anon_sym_BSLASHglsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5328), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5328), + [anon_sym_BSLASHnewacronym] = ACTIONS(5328), + [anon_sym_BSLASHacrshort] = ACTIONS(5328), + [anon_sym_BSLASHAcrshort] = ACTIONS(5328), + [anon_sym_BSLASHACRshort] = ACTIONS(5328), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5328), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5328), + [anon_sym_BSLASHacrlong] = ACTIONS(5328), + [anon_sym_BSLASHAcrlong] = ACTIONS(5328), + [anon_sym_BSLASHACRlong] = ACTIONS(5328), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5328), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5328), + [anon_sym_BSLASHacrfull] = ACTIONS(5328), + [anon_sym_BSLASHAcrfull] = ACTIONS(5328), + [anon_sym_BSLASHACRfull] = ACTIONS(5328), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5328), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5328), + [anon_sym_BSLASHacs] = ACTIONS(5328), + [anon_sym_BSLASHAcs] = ACTIONS(5328), + [anon_sym_BSLASHacsp] = ACTIONS(5328), + [anon_sym_BSLASHAcsp] = ACTIONS(5328), + [anon_sym_BSLASHacl] = ACTIONS(5328), + [anon_sym_BSLASHAcl] = ACTIONS(5328), + [anon_sym_BSLASHaclp] = ACTIONS(5328), + [anon_sym_BSLASHAclp] = ACTIONS(5328), + [anon_sym_BSLASHacf] = ACTIONS(5328), + [anon_sym_BSLASHAcf] = ACTIONS(5328), + [anon_sym_BSLASHacfp] = ACTIONS(5328), + [anon_sym_BSLASHAcfp] = ACTIONS(5328), + [anon_sym_BSLASHac] = ACTIONS(5328), + [anon_sym_BSLASHAc] = ACTIONS(5328), + [anon_sym_BSLASHacp] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5328), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5328), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5328), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5328), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5328), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5326), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5328), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5328), + [anon_sym_BSLASHcolor] = ACTIONS(5328), + [anon_sym_BSLASHcolorbox] = ACTIONS(5328), + [anon_sym_BSLASHtextcolor] = ACTIONS(5328), + [anon_sym_BSLASHpagecolor] = ACTIONS(5328), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5328), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5328), }, [1572] = { - [sym_command_name] = ACTIONS(5245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5243), - [anon_sym_COMMA] = ACTIONS(5243), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5245), - [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), + [sym_command_name] = ACTIONS(5324), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5324), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [sym_word] = ACTIONS(5324), + [sym_placeholder] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5324), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_CARET] = ACTIONS(5324), + [anon_sym__] = ACTIONS(5324), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_SQUOTE] = ACTIONS(5324), + [anon_sym_BSLASHusepackage] = ACTIONS(5324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5324), + [anon_sym_BSLASHinclude] = ACTIONS(5324), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5324), + [anon_sym_BSLASHinput] = ACTIONS(5324), + [anon_sym_BSLASHsubfile] = ACTIONS(5324), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5324), + [anon_sym_BSLASHbibliography] = ACTIONS(5324), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5324), + [anon_sym_BSLASHincludesvg] = ACTIONS(5324), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5324), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5324), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5324), + [anon_sym_BSLASHimport] = ACTIONS(5324), + [anon_sym_BSLASHsubimport] = ACTIONS(5324), + [anon_sym_BSLASHinputfrom] = ACTIONS(5324), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5324), + [anon_sym_BSLASHincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5324), + [anon_sym_BSLASHcaption] = ACTIONS(5324), + [anon_sym_BSLASHcite] = ACTIONS(5324), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCite] = ACTIONS(5324), + [anon_sym_BSLASHnocite] = ACTIONS(5324), + [anon_sym_BSLASHcitet] = ACTIONS(5324), + [anon_sym_BSLASHcitep] = ACTIONS(5324), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteauthor] = ACTIONS(5324), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5324), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitetitle] = ACTIONS(5324), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteyear] = ACTIONS(5324), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5322), + [anon_sym_BSLASHcitedate] = ACTIONS(5324), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5322), + [anon_sym_BSLASHciteurl] = ACTIONS(5324), + [anon_sym_BSLASHfullcite] = ACTIONS(5324), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5324), + [anon_sym_BSLASHcitealt] = ACTIONS(5324), + [anon_sym_BSLASHcitealp] = ACTIONS(5324), + [anon_sym_BSLASHcitetext] = ACTIONS(5324), + [anon_sym_BSLASHparencite] = ACTIONS(5324), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHParencite] = ACTIONS(5324), + [anon_sym_BSLASHfootcite] = ACTIONS(5324), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5324), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5324), + [anon_sym_BSLASHtextcite] = ACTIONS(5324), + [anon_sym_BSLASHTextcite] = ACTIONS(5324), + [anon_sym_BSLASHsmartcite] = ACTIONS(5324), + [anon_sym_BSLASHSmartcite] = ACTIONS(5324), + [anon_sym_BSLASHsupercite] = ACTIONS(5324), + [anon_sym_BSLASHautocite] = ACTIONS(5324), + [anon_sym_BSLASHAutocite] = ACTIONS(5324), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5322), + [anon_sym_BSLASHvolcite] = ACTIONS(5324), + [anon_sym_BSLASHVolcite] = ACTIONS(5324), + [anon_sym_BSLASHpvolcite] = ACTIONS(5324), + [anon_sym_BSLASHPvolcite] = ACTIONS(5324), + [anon_sym_BSLASHfvolcite] = ACTIONS(5324), + [anon_sym_BSLASHftvolcite] = ACTIONS(5324), + [anon_sym_BSLASHsvolcite] = ACTIONS(5324), + [anon_sym_BSLASHSvolcite] = ACTIONS(5324), + [anon_sym_BSLASHtvolcite] = ACTIONS(5324), + [anon_sym_BSLASHTvolcite] = ACTIONS(5324), + [anon_sym_BSLASHavolcite] = ACTIONS(5324), + [anon_sym_BSLASHAvolcite] = ACTIONS(5324), + [anon_sym_BSLASHnotecite] = ACTIONS(5324), + [anon_sym_BSLASHNotecite] = ACTIONS(5324), + [anon_sym_BSLASHpnotecite] = ACTIONS(5324), + [anon_sym_BSLASHPnotecite] = ACTIONS(5324), + [anon_sym_BSLASHfnotecite] = ACTIONS(5324), + [anon_sym_BSLASHlabel] = ACTIONS(5324), + [anon_sym_BSLASHref] = ACTIONS(5324), + [anon_sym_BSLASHeqref] = ACTIONS(5324), + [anon_sym_BSLASHvref] = ACTIONS(5324), + [anon_sym_BSLASHVref] = ACTIONS(5324), + [anon_sym_BSLASHautoref] = ACTIONS(5324), + [anon_sym_BSLASHpageref] = ACTIONS(5324), + [anon_sym_BSLASHcref] = ACTIONS(5324), + [anon_sym_BSLASHCref] = ACTIONS(5324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnameCref] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5324), + [anon_sym_BSLASHlabelcref] = ACTIONS(5324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange] = ACTIONS(5324), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHCrefrange] = ACTIONS(5324), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5322), + [anon_sym_BSLASHnewlabel] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand] = ACTIONS(5324), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5324), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5324), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5322), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5324), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdef] = ACTIONS(5324), + [anon_sym_BSLASHlet] = ACTIONS(5324), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5324), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5324), + [anon_sym_BSLASHgls] = ACTIONS(5324), + [anon_sym_BSLASHGls] = ACTIONS(5324), + [anon_sym_BSLASHGLS] = ACTIONS(5324), + [anon_sym_BSLASHglspl] = ACTIONS(5324), + [anon_sym_BSLASHGlspl] = ACTIONS(5324), + [anon_sym_BSLASHGLSpl] = ACTIONS(5324), + [anon_sym_BSLASHglsdisp] = ACTIONS(5324), + [anon_sym_BSLASHglslink] = ACTIONS(5324), + [anon_sym_BSLASHglstext] = ACTIONS(5324), + [anon_sym_BSLASHGlstext] = ACTIONS(5324), + [anon_sym_BSLASHGLStext] = ACTIONS(5324), + [anon_sym_BSLASHglsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5324), + [anon_sym_BSLASHglsplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSplural] = ACTIONS(5324), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5324), + [anon_sym_BSLASHglsname] = ACTIONS(5324), + [anon_sym_BSLASHGlsname] = ACTIONS(5324), + [anon_sym_BSLASHGLSname] = ACTIONS(5324), + [anon_sym_BSLASHglssymbol] = ACTIONS(5324), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5324), + [anon_sym_BSLASHglsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5324), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5324), + [anon_sym_BSLASHglsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5324), + [anon_sym_BSLASHglsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5324), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5324), + [anon_sym_BSLASHglsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5324), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5324), + [anon_sym_BSLASHglsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5324), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5324), + [anon_sym_BSLASHnewacronym] = ACTIONS(5324), + [anon_sym_BSLASHacrshort] = ACTIONS(5324), + [anon_sym_BSLASHAcrshort] = ACTIONS(5324), + [anon_sym_BSLASHACRshort] = ACTIONS(5324), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5324), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5324), + [anon_sym_BSLASHacrlong] = ACTIONS(5324), + [anon_sym_BSLASHAcrlong] = ACTIONS(5324), + [anon_sym_BSLASHACRlong] = ACTIONS(5324), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5324), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5324), + [anon_sym_BSLASHacrfull] = ACTIONS(5324), + [anon_sym_BSLASHAcrfull] = ACTIONS(5324), + [anon_sym_BSLASHACRfull] = ACTIONS(5324), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5324), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5324), + [anon_sym_BSLASHacs] = ACTIONS(5324), + [anon_sym_BSLASHAcs] = ACTIONS(5324), + [anon_sym_BSLASHacsp] = ACTIONS(5324), + [anon_sym_BSLASHAcsp] = ACTIONS(5324), + [anon_sym_BSLASHacl] = ACTIONS(5324), + [anon_sym_BSLASHAcl] = ACTIONS(5324), + [anon_sym_BSLASHaclp] = ACTIONS(5324), + [anon_sym_BSLASHAclp] = ACTIONS(5324), + [anon_sym_BSLASHacf] = ACTIONS(5324), + [anon_sym_BSLASHAcf] = ACTIONS(5324), + [anon_sym_BSLASHacfp] = ACTIONS(5324), + [anon_sym_BSLASHAcfp] = ACTIONS(5324), + [anon_sym_BSLASHac] = ACTIONS(5324), + [anon_sym_BSLASHAc] = ACTIONS(5324), + [anon_sym_BSLASHacp] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5324), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5324), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5324), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5324), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5324), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5322), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5324), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5324), + [anon_sym_BSLASHcolor] = ACTIONS(5324), + [anon_sym_BSLASHcolorbox] = ACTIONS(5324), + [anon_sym_BSLASHtextcolor] = ACTIONS(5324), + [anon_sym_BSLASHpagecolor] = ACTIONS(5324), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5324), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5324), }, [1573] = { - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = 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_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_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_BSLASHdeclaretheorem] = ACTIONS(5241), - [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), + [sym_command_name] = ACTIONS(5320), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5320), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), + [sym_word] = ACTIONS(5320), + [sym_placeholder] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_CARET] = ACTIONS(5320), + [anon_sym__] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_SQUOTE] = ACTIONS(5320), + [anon_sym_BSLASHusepackage] = ACTIONS(5320), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5320), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5320), + [anon_sym_BSLASHinclude] = ACTIONS(5320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), + [anon_sym_BSLASHinput] = ACTIONS(5320), + [anon_sym_BSLASHsubfile] = ACTIONS(5320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5320), + [anon_sym_BSLASHbibliography] = ACTIONS(5320), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5320), + [anon_sym_BSLASHincludesvg] = ACTIONS(5320), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5320), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5320), + [anon_sym_BSLASHimport] = ACTIONS(5320), + [anon_sym_BSLASHsubimport] = ACTIONS(5320), + [anon_sym_BSLASHinputfrom] = ACTIONS(5320), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5320), + [anon_sym_BSLASHincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5320), + [anon_sym_BSLASHcaption] = ACTIONS(5320), + [anon_sym_BSLASHcite] = ACTIONS(5320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCite] = ACTIONS(5320), + [anon_sym_BSLASHnocite] = ACTIONS(5320), + [anon_sym_BSLASHcitet] = ACTIONS(5320), + [anon_sym_BSLASHcitep] = ACTIONS(5320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteauthor] = ACTIONS(5320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitetitle] = ACTIONS(5320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteyear] = ACTIONS(5320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5318), + [anon_sym_BSLASHcitedate] = ACTIONS(5320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5318), + [anon_sym_BSLASHciteurl] = ACTIONS(5320), + [anon_sym_BSLASHfullcite] = ACTIONS(5320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5320), + [anon_sym_BSLASHcitealt] = ACTIONS(5320), + [anon_sym_BSLASHcitealp] = ACTIONS(5320), + [anon_sym_BSLASHcitetext] = ACTIONS(5320), + [anon_sym_BSLASHparencite] = ACTIONS(5320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHParencite] = ACTIONS(5320), + [anon_sym_BSLASHfootcite] = ACTIONS(5320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5320), + [anon_sym_BSLASHtextcite] = ACTIONS(5320), + [anon_sym_BSLASHTextcite] = ACTIONS(5320), + [anon_sym_BSLASHsmartcite] = ACTIONS(5320), + [anon_sym_BSLASHSmartcite] = ACTIONS(5320), + [anon_sym_BSLASHsupercite] = ACTIONS(5320), + [anon_sym_BSLASHautocite] = ACTIONS(5320), + [anon_sym_BSLASHAutocite] = ACTIONS(5320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5318), + [anon_sym_BSLASHvolcite] = ACTIONS(5320), + [anon_sym_BSLASHVolcite] = ACTIONS(5320), + [anon_sym_BSLASHpvolcite] = ACTIONS(5320), + [anon_sym_BSLASHPvolcite] = ACTIONS(5320), + [anon_sym_BSLASHfvolcite] = ACTIONS(5320), + [anon_sym_BSLASHftvolcite] = ACTIONS(5320), + [anon_sym_BSLASHsvolcite] = ACTIONS(5320), + [anon_sym_BSLASHSvolcite] = ACTIONS(5320), + [anon_sym_BSLASHtvolcite] = ACTIONS(5320), + [anon_sym_BSLASHTvolcite] = ACTIONS(5320), + [anon_sym_BSLASHavolcite] = ACTIONS(5320), + [anon_sym_BSLASHAvolcite] = ACTIONS(5320), + [anon_sym_BSLASHnotecite] = ACTIONS(5320), + [anon_sym_BSLASHNotecite] = ACTIONS(5320), + [anon_sym_BSLASHpnotecite] = ACTIONS(5320), + [anon_sym_BSLASHPnotecite] = ACTIONS(5320), + [anon_sym_BSLASHfnotecite] = ACTIONS(5320), + [anon_sym_BSLASHlabel] = ACTIONS(5320), + [anon_sym_BSLASHref] = ACTIONS(5320), + [anon_sym_BSLASHeqref] = ACTIONS(5320), + [anon_sym_BSLASHvref] = ACTIONS(5320), + [anon_sym_BSLASHVref] = ACTIONS(5320), + [anon_sym_BSLASHautoref] = ACTIONS(5320), + [anon_sym_BSLASHpageref] = ACTIONS(5320), + [anon_sym_BSLASHcref] = ACTIONS(5320), + [anon_sym_BSLASHCref] = ACTIONS(5320), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnameCref] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5320), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5320), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5320), + [anon_sym_BSLASHlabelcref] = ACTIONS(5320), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange] = ACTIONS(5320), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHCrefrange] = ACTIONS(5320), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5318), + [anon_sym_BSLASHnewlabel] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand] = ACTIONS(5320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5318), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdef] = ACTIONS(5320), + [anon_sym_BSLASHlet] = ACTIONS(5320), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5320), + [anon_sym_BSLASHgls] = ACTIONS(5320), + [anon_sym_BSLASHGls] = ACTIONS(5320), + [anon_sym_BSLASHGLS] = ACTIONS(5320), + [anon_sym_BSLASHglspl] = ACTIONS(5320), + [anon_sym_BSLASHGlspl] = ACTIONS(5320), + [anon_sym_BSLASHGLSpl] = ACTIONS(5320), + [anon_sym_BSLASHglsdisp] = ACTIONS(5320), + [anon_sym_BSLASHglslink] = ACTIONS(5320), + [anon_sym_BSLASHglstext] = ACTIONS(5320), + [anon_sym_BSLASHGlstext] = ACTIONS(5320), + [anon_sym_BSLASHGLStext] = ACTIONS(5320), + [anon_sym_BSLASHglsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5320), + [anon_sym_BSLASHglsplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSplural] = ACTIONS(5320), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5320), + [anon_sym_BSLASHglsname] = ACTIONS(5320), + [anon_sym_BSLASHGlsname] = ACTIONS(5320), + [anon_sym_BSLASHGLSname] = ACTIONS(5320), + [anon_sym_BSLASHglssymbol] = ACTIONS(5320), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5320), + [anon_sym_BSLASHglsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5320), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5320), + [anon_sym_BSLASHglsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5320), + [anon_sym_BSLASHglsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5320), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5320), + [anon_sym_BSLASHglsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5320), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5320), + [anon_sym_BSLASHglsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5320), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5320), + [anon_sym_BSLASHnewacronym] = ACTIONS(5320), + [anon_sym_BSLASHacrshort] = ACTIONS(5320), + [anon_sym_BSLASHAcrshort] = ACTIONS(5320), + [anon_sym_BSLASHACRshort] = ACTIONS(5320), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5320), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5320), + [anon_sym_BSLASHacrlong] = ACTIONS(5320), + [anon_sym_BSLASHAcrlong] = ACTIONS(5320), + [anon_sym_BSLASHACRlong] = ACTIONS(5320), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5320), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5320), + [anon_sym_BSLASHacrfull] = ACTIONS(5320), + [anon_sym_BSLASHAcrfull] = ACTIONS(5320), + [anon_sym_BSLASHACRfull] = ACTIONS(5320), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5320), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5320), + [anon_sym_BSLASHacs] = ACTIONS(5320), + [anon_sym_BSLASHAcs] = ACTIONS(5320), + [anon_sym_BSLASHacsp] = ACTIONS(5320), + [anon_sym_BSLASHAcsp] = ACTIONS(5320), + [anon_sym_BSLASHacl] = ACTIONS(5320), + [anon_sym_BSLASHAcl] = ACTIONS(5320), + [anon_sym_BSLASHaclp] = ACTIONS(5320), + [anon_sym_BSLASHAclp] = ACTIONS(5320), + [anon_sym_BSLASHacf] = ACTIONS(5320), + [anon_sym_BSLASHAcf] = ACTIONS(5320), + [anon_sym_BSLASHacfp] = ACTIONS(5320), + [anon_sym_BSLASHAcfp] = ACTIONS(5320), + [anon_sym_BSLASHac] = ACTIONS(5320), + [anon_sym_BSLASHAc] = ACTIONS(5320), + [anon_sym_BSLASHacp] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5320), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5320), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5320), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5320), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5320), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5318), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5320), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5320), + [anon_sym_BSLASHcolor] = ACTIONS(5320), + [anon_sym_BSLASHcolorbox] = ACTIONS(5320), + [anon_sym_BSLASHtextcolor] = ACTIONS(5320), + [anon_sym_BSLASHpagecolor] = ACTIONS(5320), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5320), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5320), }, [1574] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [sym_command_name] = ACTIONS(5120), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(5118), + [sym_word] = ACTIONS(5120), + [sym_placeholder] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym__] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_SQUOTE] = ACTIONS(5120), + [anon_sym_BSLASHusepackage] = ACTIONS(5120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5120), + [anon_sym_BSLASHinclude] = ACTIONS(5120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5120), + [anon_sym_BSLASHinput] = ACTIONS(5120), + [anon_sym_BSLASHsubfile] = ACTIONS(5120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5120), + [anon_sym_BSLASHbibliography] = ACTIONS(5120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5120), + [anon_sym_BSLASHincludesvg] = ACTIONS(5120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5120), + [anon_sym_BSLASHimport] = ACTIONS(5120), + [anon_sym_BSLASHsubimport] = ACTIONS(5120), + [anon_sym_BSLASHinputfrom] = ACTIONS(5120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5120), + [anon_sym_BSLASHincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5120), + [anon_sym_BSLASHcaption] = ACTIONS(5120), + [anon_sym_BSLASHcite] = ACTIONS(5120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCite] = ACTIONS(5120), + [anon_sym_BSLASHnocite] = ACTIONS(5120), + [anon_sym_BSLASHcitet] = ACTIONS(5120), + [anon_sym_BSLASHcitep] = ACTIONS(5120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteauthor] = ACTIONS(5120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitetitle] = ACTIONS(5120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteyear] = ACTIONS(5120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5118), + [anon_sym_BSLASHcitedate] = ACTIONS(5120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5118), + [anon_sym_BSLASHciteurl] = ACTIONS(5120), + [anon_sym_BSLASHfullcite] = ACTIONS(5120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5120), + [anon_sym_BSLASHcitealt] = ACTIONS(5120), + [anon_sym_BSLASHcitealp] = ACTIONS(5120), + [anon_sym_BSLASHcitetext] = ACTIONS(5120), + [anon_sym_BSLASHparencite] = ACTIONS(5120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHParencite] = ACTIONS(5120), + [anon_sym_BSLASHfootcite] = ACTIONS(5120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5120), + [anon_sym_BSLASHtextcite] = ACTIONS(5120), + [anon_sym_BSLASHTextcite] = ACTIONS(5120), + [anon_sym_BSLASHsmartcite] = ACTIONS(5120), + [anon_sym_BSLASHSmartcite] = ACTIONS(5120), + [anon_sym_BSLASHsupercite] = ACTIONS(5120), + [anon_sym_BSLASHautocite] = ACTIONS(5120), + [anon_sym_BSLASHAutocite] = ACTIONS(5120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5118), + [anon_sym_BSLASHvolcite] = ACTIONS(5120), + [anon_sym_BSLASHVolcite] = ACTIONS(5120), + [anon_sym_BSLASHpvolcite] = ACTIONS(5120), + [anon_sym_BSLASHPvolcite] = ACTIONS(5120), + [anon_sym_BSLASHfvolcite] = ACTIONS(5120), + [anon_sym_BSLASHftvolcite] = ACTIONS(5120), + [anon_sym_BSLASHsvolcite] = ACTIONS(5120), + [anon_sym_BSLASHSvolcite] = ACTIONS(5120), + [anon_sym_BSLASHtvolcite] = ACTIONS(5120), + [anon_sym_BSLASHTvolcite] = ACTIONS(5120), + [anon_sym_BSLASHavolcite] = ACTIONS(5120), + [anon_sym_BSLASHAvolcite] = ACTIONS(5120), + [anon_sym_BSLASHnotecite] = ACTIONS(5120), + [anon_sym_BSLASHNotecite] = ACTIONS(5120), + [anon_sym_BSLASHpnotecite] = ACTIONS(5120), + [anon_sym_BSLASHPnotecite] = ACTIONS(5120), + [anon_sym_BSLASHfnotecite] = ACTIONS(5120), + [anon_sym_BSLASHlabel] = ACTIONS(5120), + [anon_sym_BSLASHref] = ACTIONS(5120), + [anon_sym_BSLASHeqref] = ACTIONS(5120), + [anon_sym_BSLASHvref] = ACTIONS(5120), + [anon_sym_BSLASHVref] = ACTIONS(5120), + [anon_sym_BSLASHautoref] = ACTIONS(5120), + [anon_sym_BSLASHpageref] = ACTIONS(5120), + [anon_sym_BSLASHcref] = ACTIONS(5120), + [anon_sym_BSLASHCref] = ACTIONS(5120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnameCref] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5120), + [anon_sym_BSLASHlabelcref] = ACTIONS(5120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange] = ACTIONS(5120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHCrefrange] = ACTIONS(5120), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5118), + [anon_sym_BSLASHnewlabel] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand] = ACTIONS(5120), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5120), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5120), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5118), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdef] = ACTIONS(5120), + [anon_sym_BSLASHlet] = ACTIONS(5120), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5120), + [anon_sym_BSLASHgls] = ACTIONS(5120), + [anon_sym_BSLASHGls] = ACTIONS(5120), + [anon_sym_BSLASHGLS] = ACTIONS(5120), + [anon_sym_BSLASHglspl] = ACTIONS(5120), + [anon_sym_BSLASHGlspl] = ACTIONS(5120), + [anon_sym_BSLASHGLSpl] = ACTIONS(5120), + [anon_sym_BSLASHglsdisp] = ACTIONS(5120), + [anon_sym_BSLASHglslink] = ACTIONS(5120), + [anon_sym_BSLASHglstext] = ACTIONS(5120), + [anon_sym_BSLASHGlstext] = ACTIONS(5120), + [anon_sym_BSLASHGLStext] = ACTIONS(5120), + [anon_sym_BSLASHglsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5120), + [anon_sym_BSLASHglsplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSplural] = ACTIONS(5120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5120), + [anon_sym_BSLASHglsname] = ACTIONS(5120), + [anon_sym_BSLASHGlsname] = ACTIONS(5120), + [anon_sym_BSLASHGLSname] = ACTIONS(5120), + [anon_sym_BSLASHglssymbol] = ACTIONS(5120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5120), + [anon_sym_BSLASHglsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5120), + [anon_sym_BSLASHglsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5120), + [anon_sym_BSLASHglsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5120), + [anon_sym_BSLASHglsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5120), + [anon_sym_BSLASHglsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5120), + [anon_sym_BSLASHnewacronym] = ACTIONS(5120), + [anon_sym_BSLASHacrshort] = ACTIONS(5120), + [anon_sym_BSLASHAcrshort] = ACTIONS(5120), + [anon_sym_BSLASHACRshort] = ACTIONS(5120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5120), + [anon_sym_BSLASHacrlong] = ACTIONS(5120), + [anon_sym_BSLASHAcrlong] = ACTIONS(5120), + [anon_sym_BSLASHACRlong] = ACTIONS(5120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5120), + [anon_sym_BSLASHacrfull] = ACTIONS(5120), + [anon_sym_BSLASHAcrfull] = ACTIONS(5120), + [anon_sym_BSLASHACRfull] = ACTIONS(5120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5120), + [anon_sym_BSLASHacs] = ACTIONS(5120), + [anon_sym_BSLASHAcs] = ACTIONS(5120), + [anon_sym_BSLASHacsp] = ACTIONS(5120), + [anon_sym_BSLASHAcsp] = ACTIONS(5120), + [anon_sym_BSLASHacl] = ACTIONS(5120), + [anon_sym_BSLASHAcl] = ACTIONS(5120), + [anon_sym_BSLASHaclp] = ACTIONS(5120), + [anon_sym_BSLASHAclp] = ACTIONS(5120), + [anon_sym_BSLASHacf] = ACTIONS(5120), + [anon_sym_BSLASHAcf] = ACTIONS(5120), + [anon_sym_BSLASHacfp] = ACTIONS(5120), + [anon_sym_BSLASHAcfp] = ACTIONS(5120), + [anon_sym_BSLASHac] = ACTIONS(5120), + [anon_sym_BSLASHAc] = ACTIONS(5120), + [anon_sym_BSLASHacp] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5120), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5120), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5118), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5120), + [anon_sym_BSLASHcolor] = ACTIONS(5120), + [anon_sym_BSLASHcolorbox] = ACTIONS(5120), + [anon_sym_BSLASHtextcolor] = ACTIONS(5120), + [anon_sym_BSLASHpagecolor] = ACTIONS(5120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), }, [1575] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = 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_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_BSLASHdeclaretheorem] = ACTIONS(5237), - [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), + [sym_command_name] = ACTIONS(5316), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5316), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [sym_word] = ACTIONS(5316), + [sym_placeholder] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_SLASH] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5316), + [anon_sym__] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_SQUOTE] = ACTIONS(5316), + [anon_sym_BSLASHusepackage] = ACTIONS(5316), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5316), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5316), + [anon_sym_BSLASHinclude] = ACTIONS(5316), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5316), + [anon_sym_BSLASHinput] = ACTIONS(5316), + [anon_sym_BSLASHsubfile] = ACTIONS(5316), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5316), + [anon_sym_BSLASHbibliography] = ACTIONS(5316), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5316), + [anon_sym_BSLASHincludesvg] = ACTIONS(5316), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5316), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5316), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5316), + [anon_sym_BSLASHimport] = ACTIONS(5316), + [anon_sym_BSLASHsubimport] = ACTIONS(5316), + [anon_sym_BSLASHinputfrom] = ACTIONS(5316), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5316), + [anon_sym_BSLASHincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5316), + [anon_sym_BSLASHcaption] = ACTIONS(5316), + [anon_sym_BSLASHcite] = ACTIONS(5316), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCite] = ACTIONS(5316), + [anon_sym_BSLASHnocite] = ACTIONS(5316), + [anon_sym_BSLASHcitet] = ACTIONS(5316), + [anon_sym_BSLASHcitep] = ACTIONS(5316), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteauthor] = ACTIONS(5316), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5316), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitetitle] = ACTIONS(5316), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteyear] = ACTIONS(5316), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5314), + [anon_sym_BSLASHcitedate] = ACTIONS(5316), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5314), + [anon_sym_BSLASHciteurl] = ACTIONS(5316), + [anon_sym_BSLASHfullcite] = ACTIONS(5316), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5316), + [anon_sym_BSLASHcitealt] = ACTIONS(5316), + [anon_sym_BSLASHcitealp] = ACTIONS(5316), + [anon_sym_BSLASHcitetext] = ACTIONS(5316), + [anon_sym_BSLASHparencite] = ACTIONS(5316), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHParencite] = ACTIONS(5316), + [anon_sym_BSLASHfootcite] = ACTIONS(5316), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5316), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5316), + [anon_sym_BSLASHtextcite] = ACTIONS(5316), + [anon_sym_BSLASHTextcite] = ACTIONS(5316), + [anon_sym_BSLASHsmartcite] = ACTIONS(5316), + [anon_sym_BSLASHSmartcite] = ACTIONS(5316), + [anon_sym_BSLASHsupercite] = ACTIONS(5316), + [anon_sym_BSLASHautocite] = ACTIONS(5316), + [anon_sym_BSLASHAutocite] = ACTIONS(5316), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5314), + [anon_sym_BSLASHvolcite] = ACTIONS(5316), + [anon_sym_BSLASHVolcite] = ACTIONS(5316), + [anon_sym_BSLASHpvolcite] = ACTIONS(5316), + [anon_sym_BSLASHPvolcite] = ACTIONS(5316), + [anon_sym_BSLASHfvolcite] = ACTIONS(5316), + [anon_sym_BSLASHftvolcite] = ACTIONS(5316), + [anon_sym_BSLASHsvolcite] = ACTIONS(5316), + [anon_sym_BSLASHSvolcite] = ACTIONS(5316), + [anon_sym_BSLASHtvolcite] = ACTIONS(5316), + [anon_sym_BSLASHTvolcite] = ACTIONS(5316), + [anon_sym_BSLASHavolcite] = ACTIONS(5316), + [anon_sym_BSLASHAvolcite] = ACTIONS(5316), + [anon_sym_BSLASHnotecite] = ACTIONS(5316), + [anon_sym_BSLASHNotecite] = ACTIONS(5316), + [anon_sym_BSLASHpnotecite] = ACTIONS(5316), + [anon_sym_BSLASHPnotecite] = ACTIONS(5316), + [anon_sym_BSLASHfnotecite] = ACTIONS(5316), + [anon_sym_BSLASHlabel] = ACTIONS(5316), + [anon_sym_BSLASHref] = ACTIONS(5316), + [anon_sym_BSLASHeqref] = ACTIONS(5316), + [anon_sym_BSLASHvref] = ACTIONS(5316), + [anon_sym_BSLASHVref] = ACTIONS(5316), + [anon_sym_BSLASHautoref] = ACTIONS(5316), + [anon_sym_BSLASHpageref] = ACTIONS(5316), + [anon_sym_BSLASHcref] = ACTIONS(5316), + [anon_sym_BSLASHCref] = ACTIONS(5316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnameCref] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5316), + [anon_sym_BSLASHlabelcref] = ACTIONS(5316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange] = ACTIONS(5316), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHCrefrange] = ACTIONS(5316), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5314), + [anon_sym_BSLASHnewlabel] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand] = ACTIONS(5316), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5316), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5316), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5314), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdef] = ACTIONS(5316), + [anon_sym_BSLASHlet] = ACTIONS(5316), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5316), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5316), + [anon_sym_BSLASHgls] = ACTIONS(5316), + [anon_sym_BSLASHGls] = ACTIONS(5316), + [anon_sym_BSLASHGLS] = ACTIONS(5316), + [anon_sym_BSLASHglspl] = ACTIONS(5316), + [anon_sym_BSLASHGlspl] = ACTIONS(5316), + [anon_sym_BSLASHGLSpl] = ACTIONS(5316), + [anon_sym_BSLASHglsdisp] = ACTIONS(5316), + [anon_sym_BSLASHglslink] = ACTIONS(5316), + [anon_sym_BSLASHglstext] = ACTIONS(5316), + [anon_sym_BSLASHGlstext] = ACTIONS(5316), + [anon_sym_BSLASHGLStext] = ACTIONS(5316), + [anon_sym_BSLASHglsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5316), + [anon_sym_BSLASHglsplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSplural] = ACTIONS(5316), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5316), + [anon_sym_BSLASHglsname] = ACTIONS(5316), + [anon_sym_BSLASHGlsname] = ACTIONS(5316), + [anon_sym_BSLASHGLSname] = ACTIONS(5316), + [anon_sym_BSLASHglssymbol] = ACTIONS(5316), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5316), + [anon_sym_BSLASHglsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5316), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5316), + [anon_sym_BSLASHglsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5316), + [anon_sym_BSLASHglsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5316), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5316), + [anon_sym_BSLASHglsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5316), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5316), + [anon_sym_BSLASHglsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5316), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5316), + [anon_sym_BSLASHnewacronym] = ACTIONS(5316), + [anon_sym_BSLASHacrshort] = ACTIONS(5316), + [anon_sym_BSLASHAcrshort] = ACTIONS(5316), + [anon_sym_BSLASHACRshort] = ACTIONS(5316), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5316), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5316), + [anon_sym_BSLASHacrlong] = ACTIONS(5316), + [anon_sym_BSLASHAcrlong] = ACTIONS(5316), + [anon_sym_BSLASHACRlong] = ACTIONS(5316), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5316), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5316), + [anon_sym_BSLASHacrfull] = ACTIONS(5316), + [anon_sym_BSLASHAcrfull] = ACTIONS(5316), + [anon_sym_BSLASHACRfull] = ACTIONS(5316), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5316), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5316), + [anon_sym_BSLASHacs] = ACTIONS(5316), + [anon_sym_BSLASHAcs] = ACTIONS(5316), + [anon_sym_BSLASHacsp] = ACTIONS(5316), + [anon_sym_BSLASHAcsp] = ACTIONS(5316), + [anon_sym_BSLASHacl] = ACTIONS(5316), + [anon_sym_BSLASHAcl] = ACTIONS(5316), + [anon_sym_BSLASHaclp] = ACTIONS(5316), + [anon_sym_BSLASHAclp] = ACTIONS(5316), + [anon_sym_BSLASHacf] = ACTIONS(5316), + [anon_sym_BSLASHAcf] = ACTIONS(5316), + [anon_sym_BSLASHacfp] = ACTIONS(5316), + [anon_sym_BSLASHAcfp] = ACTIONS(5316), + [anon_sym_BSLASHac] = ACTIONS(5316), + [anon_sym_BSLASHAc] = ACTIONS(5316), + [anon_sym_BSLASHacp] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5316), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5316), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5316), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5316), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5316), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5314), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5316), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5316), + [anon_sym_BSLASHcolor] = ACTIONS(5316), + [anon_sym_BSLASHcolorbox] = ACTIONS(5316), + [anon_sym_BSLASHtextcolor] = ACTIONS(5316), + [anon_sym_BSLASHpagecolor] = ACTIONS(5316), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5316), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5316), }, [1576] = { - [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_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_BSLASHdeclaretheorem] = ACTIONS(5209), - [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), + [sym_command_name] = ACTIONS(5288), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5288), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_COMMA] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [sym_word] = ACTIONS(5288), + [sym_placeholder] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_SLASH] = ACTIONS(5288), + [anon_sym_CARET] = ACTIONS(5288), + [anon_sym__] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_SQUOTE] = ACTIONS(5288), + [anon_sym_BSLASHusepackage] = ACTIONS(5288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5288), + [anon_sym_BSLASHinclude] = ACTIONS(5288), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5288), + [anon_sym_BSLASHinput] = ACTIONS(5288), + [anon_sym_BSLASHsubfile] = ACTIONS(5288), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5288), + [anon_sym_BSLASHbibliography] = ACTIONS(5288), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5288), + [anon_sym_BSLASHincludesvg] = ACTIONS(5288), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5288), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5288), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5288), + [anon_sym_BSLASHimport] = ACTIONS(5288), + [anon_sym_BSLASHsubimport] = ACTIONS(5288), + [anon_sym_BSLASHinputfrom] = ACTIONS(5288), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5288), + [anon_sym_BSLASHincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5288), + [anon_sym_BSLASHcaption] = ACTIONS(5288), + [anon_sym_BSLASHcite] = ACTIONS(5288), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCite] = ACTIONS(5288), + [anon_sym_BSLASHnocite] = ACTIONS(5288), + [anon_sym_BSLASHcitet] = ACTIONS(5288), + [anon_sym_BSLASHcitep] = ACTIONS(5288), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteauthor] = ACTIONS(5288), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5288), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitetitle] = ACTIONS(5288), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteyear] = ACTIONS(5288), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5286), + [anon_sym_BSLASHcitedate] = ACTIONS(5288), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5286), + [anon_sym_BSLASHciteurl] = ACTIONS(5288), + [anon_sym_BSLASHfullcite] = ACTIONS(5288), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5288), + [anon_sym_BSLASHcitealt] = ACTIONS(5288), + [anon_sym_BSLASHcitealp] = ACTIONS(5288), + [anon_sym_BSLASHcitetext] = ACTIONS(5288), + [anon_sym_BSLASHparencite] = ACTIONS(5288), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHParencite] = ACTIONS(5288), + [anon_sym_BSLASHfootcite] = ACTIONS(5288), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5288), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5288), + [anon_sym_BSLASHtextcite] = ACTIONS(5288), + [anon_sym_BSLASHTextcite] = ACTIONS(5288), + [anon_sym_BSLASHsmartcite] = ACTIONS(5288), + [anon_sym_BSLASHSmartcite] = ACTIONS(5288), + [anon_sym_BSLASHsupercite] = ACTIONS(5288), + [anon_sym_BSLASHautocite] = ACTIONS(5288), + [anon_sym_BSLASHAutocite] = ACTIONS(5288), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5286), + [anon_sym_BSLASHvolcite] = ACTIONS(5288), + [anon_sym_BSLASHVolcite] = ACTIONS(5288), + [anon_sym_BSLASHpvolcite] = ACTIONS(5288), + [anon_sym_BSLASHPvolcite] = ACTIONS(5288), + [anon_sym_BSLASHfvolcite] = ACTIONS(5288), + [anon_sym_BSLASHftvolcite] = ACTIONS(5288), + [anon_sym_BSLASHsvolcite] = ACTIONS(5288), + [anon_sym_BSLASHSvolcite] = ACTIONS(5288), + [anon_sym_BSLASHtvolcite] = ACTIONS(5288), + [anon_sym_BSLASHTvolcite] = ACTIONS(5288), + [anon_sym_BSLASHavolcite] = ACTIONS(5288), + [anon_sym_BSLASHAvolcite] = ACTIONS(5288), + [anon_sym_BSLASHnotecite] = ACTIONS(5288), + [anon_sym_BSLASHNotecite] = ACTIONS(5288), + [anon_sym_BSLASHpnotecite] = ACTIONS(5288), + [anon_sym_BSLASHPnotecite] = ACTIONS(5288), + [anon_sym_BSLASHfnotecite] = ACTIONS(5288), + [anon_sym_BSLASHlabel] = ACTIONS(5288), + [anon_sym_BSLASHref] = ACTIONS(5288), + [anon_sym_BSLASHeqref] = ACTIONS(5288), + [anon_sym_BSLASHvref] = ACTIONS(5288), + [anon_sym_BSLASHVref] = ACTIONS(5288), + [anon_sym_BSLASHautoref] = ACTIONS(5288), + [anon_sym_BSLASHpageref] = ACTIONS(5288), + [anon_sym_BSLASHcref] = ACTIONS(5288), + [anon_sym_BSLASHCref] = ACTIONS(5288), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnameCref] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5288), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5288), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5288), + [anon_sym_BSLASHlabelcref] = ACTIONS(5288), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange] = ACTIONS(5288), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHCrefrange] = ACTIONS(5288), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5286), + [anon_sym_BSLASHnewlabel] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand] = ACTIONS(5288), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5288), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5288), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5286), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5288), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdef] = ACTIONS(5288), + [anon_sym_BSLASHlet] = ACTIONS(5288), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5288), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5288), + [anon_sym_BSLASHgls] = ACTIONS(5288), + [anon_sym_BSLASHGls] = ACTIONS(5288), + [anon_sym_BSLASHGLS] = ACTIONS(5288), + [anon_sym_BSLASHglspl] = ACTIONS(5288), + [anon_sym_BSLASHGlspl] = ACTIONS(5288), + [anon_sym_BSLASHGLSpl] = ACTIONS(5288), + [anon_sym_BSLASHglsdisp] = ACTIONS(5288), + [anon_sym_BSLASHglslink] = ACTIONS(5288), + [anon_sym_BSLASHglstext] = ACTIONS(5288), + [anon_sym_BSLASHGlstext] = ACTIONS(5288), + [anon_sym_BSLASHGLStext] = ACTIONS(5288), + [anon_sym_BSLASHglsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5288), + [anon_sym_BSLASHglsplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSplural] = ACTIONS(5288), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5288), + [anon_sym_BSLASHglsname] = ACTIONS(5288), + [anon_sym_BSLASHGlsname] = ACTIONS(5288), + [anon_sym_BSLASHGLSname] = ACTIONS(5288), + [anon_sym_BSLASHglssymbol] = ACTIONS(5288), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5288), + [anon_sym_BSLASHglsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5288), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5288), + [anon_sym_BSLASHglsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5288), + [anon_sym_BSLASHglsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5288), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5288), + [anon_sym_BSLASHglsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5288), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5288), + [anon_sym_BSLASHglsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5288), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5288), + [anon_sym_BSLASHnewacronym] = ACTIONS(5288), + [anon_sym_BSLASHacrshort] = ACTIONS(5288), + [anon_sym_BSLASHAcrshort] = ACTIONS(5288), + [anon_sym_BSLASHACRshort] = ACTIONS(5288), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5288), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5288), + [anon_sym_BSLASHacrlong] = ACTIONS(5288), + [anon_sym_BSLASHAcrlong] = ACTIONS(5288), + [anon_sym_BSLASHACRlong] = ACTIONS(5288), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5288), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5288), + [anon_sym_BSLASHacrfull] = ACTIONS(5288), + [anon_sym_BSLASHAcrfull] = ACTIONS(5288), + [anon_sym_BSLASHACRfull] = ACTIONS(5288), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5288), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5288), + [anon_sym_BSLASHacs] = ACTIONS(5288), + [anon_sym_BSLASHAcs] = ACTIONS(5288), + [anon_sym_BSLASHacsp] = ACTIONS(5288), + [anon_sym_BSLASHAcsp] = ACTIONS(5288), + [anon_sym_BSLASHacl] = ACTIONS(5288), + [anon_sym_BSLASHAcl] = ACTIONS(5288), + [anon_sym_BSLASHaclp] = ACTIONS(5288), + [anon_sym_BSLASHAclp] = ACTIONS(5288), + [anon_sym_BSLASHacf] = ACTIONS(5288), + [anon_sym_BSLASHAcf] = ACTIONS(5288), + [anon_sym_BSLASHacfp] = ACTIONS(5288), + [anon_sym_BSLASHAcfp] = ACTIONS(5288), + [anon_sym_BSLASHac] = ACTIONS(5288), + [anon_sym_BSLASHAc] = ACTIONS(5288), + [anon_sym_BSLASHacp] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5288), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5288), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5288), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5288), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5288), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5286), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5288), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5288), + [anon_sym_BSLASHcolor] = ACTIONS(5288), + [anon_sym_BSLASHcolorbox] = ACTIONS(5288), + [anon_sym_BSLASHtextcolor] = ACTIONS(5288), + [anon_sym_BSLASHpagecolor] = ACTIONS(5288), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5288), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5288), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 8, - ACTIONS(5523), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, STATE(707), 1, sym_curly_group_text, @@ -457410,165 +460584,165 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [26] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2412), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [44] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2326), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [62] = 5, - ACTIONS(5531), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - ACTIONS(5534), 1, + ACTIONS(5616), 1, anon_sym_RBRACE, - ACTIONS(5536), 1, + ACTIONS(5618), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1580), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [80] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2373), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [98] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2444), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [116] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5539), 1, + ACTIONS(5621), 1, anon_sym_RBRACE, - ACTIONS(5541), 1, + ACTIONS(5623), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1580), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [134] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2466), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [152] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2338), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [170] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5541), 1, + ACTIONS(5623), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5543), 1, + ACTIONS(5625), 1, anon_sym_RBRACE, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1580), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [188] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2463), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [206] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5611), 1, aux_sym__glob_pattern_fragment_token1, STATE(2391), 1, sym_glob_pattern, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [224] = 5, - ACTIONS(5527), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(5545), 1, + ACTIONS(5627), 1, anon_sym_RBRACE, - ACTIONS(5547), 1, + ACTIONS(5629), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, STATE(1583), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [242] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2010), 1, sym_brack_group_key_value, @@ -457578,9 +460752,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [259] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1409), 1, sym_curly_group_path, @@ -457590,9 +460764,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [276] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5555), 1, + ACTIONS(5637), 1, anon_sym_LBRACE, STATE(910), 1, sym_curly_group_text_list, @@ -457602,9 +460776,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [293] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2042), 1, sym_brack_group_key_value, @@ -457614,9 +460788,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [310] = 5, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(909), 1, sym_curly_group, @@ -457626,9 +460800,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [327] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2308), 1, sym_brack_group_argc, @@ -457640,7 +460814,7 @@ static const uint16_t ts_small_parse_table[] = { [344] = 5, ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(800), 1, sym_curly_group, @@ -457650,9 +460824,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [361] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(1867), 1, sym_curly_group_impl, @@ -457662,9 +460836,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [378] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2041), 1, sym_brack_group_text, @@ -457674,9 +460848,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [395] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(907), 1, sym_curly_group_path, @@ -457686,9 +460860,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [412] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(906), 1, sym_curly_group_path, @@ -457698,9 +460872,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [429] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(905), 1, sym_curly_group_path, @@ -457710,9 +460884,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [446] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1882), 1, sym_brack_group_text, @@ -457722,9 +460896,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [463] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(662), 1, sym_curly_group_text, @@ -457734,9 +460908,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [480] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5565), 1, + ACTIONS(5647), 1, anon_sym_LBRACE, STATE(903), 1, sym_curly_group_glob_pattern, @@ -457746,9 +460920,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [497] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5567), 1, + ACTIONS(5649), 1, anon_sym_LBRACE, STATE(1161), 1, sym_curly_group_path_list, @@ -457758,9 +460932,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [514] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1160), 1, sym_curly_group_path, @@ -457770,9 +460944,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [531] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(1862), 1, sym_curly_group_impl, @@ -457782,9 +460956,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [548] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5571), 1, + ACTIONS(5653), 1, anon_sym_LBRACE, STATE(1158), 1, sym_curly_group_glob_pattern, @@ -457794,9 +460968,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [565] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2009), 1, sym_brack_group_text, @@ -457806,9 +460980,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [582] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1156), 1, sym_curly_group_path, @@ -457818,9 +460992,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [599] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1155), 1, sym_curly_group_path, @@ -457830,9 +461004,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [616] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1154), 1, sym_curly_group_path, @@ -457842,9 +461016,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [633] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2047), 1, sym_brack_group_text, @@ -457854,9 +461028,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [650] = 5, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1152), 1, sym_curly_group, @@ -457866,9 +461040,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [667] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5573), 1, + ACTIONS(5655), 1, anon_sym_LBRACE, STATE(1151), 1, sym_curly_group_text_list, @@ -457878,9 +461052,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [684] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1986), 1, sym_brack_group_key_value, @@ -457890,9 +461064,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [701] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5575), 1, + ACTIONS(5657), 1, anon_sym_LBRACE, STATE(815), 1, sym_curly_group_path_list, @@ -457902,9 +461076,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [718] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(688), 1, sym_curly_group_path, @@ -457914,9 +461088,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [735] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1147), 1, sym_curly_group_text, @@ -457926,9 +461100,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [752] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1146), 1, sym_curly_group_text, @@ -457938,9 +461112,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [769] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(663), 1, sym_curly_group_text, @@ -457950,9 +461124,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [786] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2122), 1, sym_curly_group_impl, @@ -457962,9 +461136,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [803] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1972), 1, sym_brack_group_text, @@ -457974,9 +461148,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [820] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(1962), 1, sym_curly_group_impl, @@ -457986,9 +461160,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [837] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2048), 1, sym_brack_group_key_value, @@ -457998,9 +461172,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [854] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1951), 1, sym_brack_group_key_value, @@ -458010,9 +461184,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [871] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(915), 1, sym_curly_group_text, @@ -458022,9 +461196,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [888] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5581), 1, + ACTIONS(5663), 1, anon_sym_LBRACE, STATE(680), 1, sym_curly_group_glob_pattern, @@ -458034,9 +461208,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [905] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(901), 1, sym_curly_group_path, @@ -458046,9 +461220,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [922] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(678), 1, sym_curly_group_path, @@ -458058,9 +461232,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [939] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(677), 1, sym_curly_group_path, @@ -458070,9 +461244,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [956] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5583), 1, + ACTIONS(5665), 1, anon_sym_LBRACE, STATE(900), 1, sym_curly_group_path_list, @@ -458082,9 +461256,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [973] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(914), 1, sym_curly_group_text, @@ -458094,9 +461268,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [990] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(676), 1, sym_curly_group_path, @@ -458106,9 +461280,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1007] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5555), 1, + ACTIONS(5637), 1, anon_sym_LBRACE, STATE(986), 1, sym_curly_group_text_list, @@ -458118,9 +461292,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1024] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2143), 1, sym_curly_group_impl, @@ -458130,9 +461304,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1041] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1950), 1, sym_brack_group_text, @@ -458142,9 +461316,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1058] = 5, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1435), 1, sym_curly_group, @@ -458154,9 +461328,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1075] = 5, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(989), 1, sym_curly_group, @@ -458168,7 +461342,7 @@ static const uint16_t ts_small_parse_table[] = { [1092] = 5, ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(725), 1, sym_curly_group, @@ -458178,9 +461352,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1109] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1901), 1, sym_brack_group_key_value, @@ -458190,9 +461364,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1126] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5573), 1, + ACTIONS(5655), 1, anon_sym_LBRACE, STATE(1091), 1, sym_curly_group_text_list, @@ -458202,9 +461376,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1143] = 5, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(1451), 1, sym_curly_group, @@ -458214,9 +461388,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1160] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5585), 1, + ACTIONS(5667), 1, anon_sym_LBRACE, STATE(1412), 1, sym_curly_group_text_list, @@ -458226,9 +461400,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1177] = 5, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(1088), 1, sym_curly_group, @@ -458238,9 +461412,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1194] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1900), 1, sym_brack_group_text, @@ -458252,7 +461426,7 @@ static const uint16_t ts_small_parse_table[] = { [1211] = 5, ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(787), 1, sym_curly_group, @@ -458262,9 +461436,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1228] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(811), 1, sym_curly_group_text_list, @@ -458274,9 +461448,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1245] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1305), 1, sym_curly_group_text, @@ -458286,9 +461460,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1262] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1888), 1, sym_brack_group_key_value, @@ -458298,9 +461472,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1279] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1472), 1, sym_curly_group_text, @@ -458310,9 +461484,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1296] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1838), 1, sym_brack_group_text, @@ -458322,9 +461496,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1313] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1473), 1, sym_curly_group_text, @@ -458334,9 +461508,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1330] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5585), 1, + ACTIONS(5667), 1, anon_sym_LBRACE, STATE(1477), 1, sym_curly_group_text_list, @@ -458346,9 +461520,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1347] = 5, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1478), 1, sym_curly_group, @@ -458358,9 +461532,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1364] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1484), 1, sym_curly_group_path, @@ -458370,9 +461544,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1381] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1485), 1, sym_curly_group_path, @@ -458382,9 +461556,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1398] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1486), 1, sym_curly_group_path, @@ -458394,9 +461568,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1415] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5593), 1, + ACTIONS(5675), 1, anon_sym_LBRACE, STATE(1488), 1, sym_curly_group_glob_pattern, @@ -458406,9 +461580,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1432] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1490), 1, sym_curly_group_path, @@ -458418,9 +461592,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1449] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5595), 1, + ACTIONS(5677), 1, anon_sym_LBRACE, STATE(1491), 1, sym_curly_group_path_list, @@ -458430,9 +461604,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1466] = 5, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1045), 1, sym_curly_group, @@ -458442,9 +461616,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1483] = 5, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(833), 1, sym_curly_group, @@ -458454,9 +461628,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1500] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(721), 1, sym_curly_group_text_list, @@ -458466,9 +461640,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1517] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1852), 1, sym_brack_group_text, @@ -458478,9 +461652,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1534] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5597), 1, + ACTIONS(5679), 1, anon_sym_LBRACE, STATE(1120), 1, sym_curly_group_path_list, @@ -458490,9 +461664,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1551] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1860), 1, sym_brack_group_text, @@ -458502,9 +461676,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1568] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2057), 1, sym_curly_group_impl, @@ -458514,9 +461688,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1585] = 5, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1322), 1, sym_curly_group, @@ -458526,9 +461700,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1602] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1121), 1, sym_curly_group_path, @@ -458538,9 +461712,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1619] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5601), 1, + ACTIONS(5683), 1, anon_sym_LBRACE, STATE(1123), 1, sym_curly_group_glob_pattern, @@ -458550,9 +461724,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1636] = 5, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1018), 1, sym_curly_group, @@ -458562,9 +461736,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1653] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1125), 1, sym_curly_group_path, @@ -458574,9 +461748,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1670] = 5, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(1347), 1, sym_curly_group, @@ -458586,9 +461760,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1687] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5603), 1, + ACTIONS(5685), 1, anon_sym_LBRACE, STATE(1350), 1, sym_curly_group_text_list, @@ -458598,9 +461772,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1704] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1819), 1, sym_brack_group_text, @@ -458610,9 +461784,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1721] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1126), 1, sym_curly_group_path, @@ -458622,9 +461796,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1738] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(810), 1, sym_curly_group_text, @@ -458634,9 +461808,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1755] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1823), 1, sym_curly_group_text, @@ -458646,9 +461820,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1772] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(809), 1, sym_curly_group_text, @@ -458658,9 +461832,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1789] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(644), 1, sym_curly_group_text, @@ -458670,9 +461844,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1806] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1296), 1, sym_curly_group_text, @@ -458682,9 +461856,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1823] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1382), 1, sym_curly_group_text, @@ -458694,9 +461868,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1840] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1383), 1, sym_curly_group_text, @@ -458706,9 +461880,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1857] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1127), 1, sym_curly_group_path, @@ -458718,9 +461892,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1874] = 5, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1129), 1, sym_curly_group, @@ -458730,9 +461904,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1891] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5603), 1, + ACTIONS(5685), 1, anon_sym_LBRACE, STATE(1387), 1, sym_curly_group_text_list, @@ -458742,9 +461916,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1908] = 5, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1388), 1, sym_curly_group, @@ -458754,9 +461928,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1925] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1368), 1, sym_curly_group_path, @@ -458766,9 +461940,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1942] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5609), 1, + ACTIONS(5691), 1, anon_sym_LBRACE, STATE(1130), 1, sym_curly_group_text_list, @@ -458778,9 +461952,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1959] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1410), 1, sym_curly_group_path, @@ -458790,9 +461964,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1976] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1134), 1, sym_curly_group_text, @@ -458802,9 +461976,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [1993] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5611), 1, + ACTIONS(5693), 1, anon_sym_LBRACE, STATE(1407), 1, sym_curly_group_glob_pattern, @@ -458814,9 +461988,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2010] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1405), 1, sym_curly_group_path, @@ -458826,9 +462000,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2027] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5613), 1, + ACTIONS(5695), 1, anon_sym_LBRACE, STATE(1404), 1, sym_curly_group_path_list, @@ -458838,9 +462012,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2044] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1135), 1, sym_curly_group_text, @@ -458850,9 +462024,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2061] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1810), 1, sym_brack_group_text, @@ -458862,9 +462036,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2078] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1802), 1, sym_curly_group_text_list, @@ -458874,9 +462048,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2095] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(647), 1, sym_curly_group_text, @@ -458886,9 +462060,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2112] = 5, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2078), 1, sym_brack_group_argc, @@ -458898,9 +462072,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2129] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5609), 1, + ACTIONS(5691), 1, anon_sym_LBRACE, STATE(1206), 1, sym_curly_group_text_list, @@ -458910,9 +462084,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2146] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5615), 1, + ACTIONS(5697), 1, anon_sym_LBRACE, STATE(951), 1, sym_curly_group_path_list, @@ -458922,9 +462096,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2163] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(950), 1, sym_curly_group_path, @@ -458934,9 +462108,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2180] = 5, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(1209), 1, sym_curly_group, @@ -458946,9 +462120,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2197] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5619), 1, + ACTIONS(5701), 1, anon_sym_LBRACE, STATE(948), 1, sym_curly_group_glob_pattern, @@ -458958,9 +462132,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2214] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1857), 1, sym_brack_group_text, @@ -458970,9 +462144,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2231] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(946), 1, sym_curly_group_path, @@ -458982,9 +462156,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2248] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(945), 1, sym_curly_group_path, @@ -458994,9 +462168,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2265] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(944), 1, sym_curly_group_path, @@ -459006,9 +462180,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2282] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1566), 1, sym_curly_group, @@ -459018,9 +462192,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2299] = 5, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(942), 1, sym_curly_group, @@ -459030,9 +462204,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2316] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5621), 1, + ACTIONS(5703), 1, anon_sym_LBRACE, STATE(941), 1, sym_curly_group_text_list, @@ -459042,9 +462216,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2333] = 5, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(878), 1, sym_curly_group, @@ -459054,9 +462228,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2350] = 5, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, STATE(1233), 1, sym_curly_group, @@ -459066,9 +462240,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2367] = 5, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5639), 1, anon_sym_LBRACK, STATE(1529), 1, sym_curly_group, @@ -459078,9 +462252,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2384] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(937), 1, sym_curly_group_text, @@ -459090,9 +462264,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2401] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(936), 1, sym_curly_group_text, @@ -459102,9 +462276,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2418] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(669), 1, sym_curly_group_text, @@ -459114,9 +462288,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2435] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5625), 1, + ACTIONS(5707), 1, anon_sym_LBRACE, STATE(1547), 1, sym_curly_group_text_list, @@ -459126,9 +462300,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2452] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1854), 1, sym_brack_group_text, @@ -459138,9 +462312,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2469] = 5, - ACTIONS(4693), 1, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1856), 1, sym_brack_group_text, @@ -459150,9 +462324,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2486] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1497), 1, sym_curly_group_text, @@ -459162,9 +462336,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2503] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1530), 1, sym_curly_group_text, @@ -459174,9 +462348,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2520] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1550), 1, sym_curly_group_text, @@ -459186,9 +462360,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2537] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5625), 1, + ACTIONS(5707), 1, anon_sym_LBRACE, STATE(1525), 1, sym_curly_group_text_list, @@ -459198,9 +462372,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2554] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1524), 1, sym_curly_group, @@ -459210,9 +462384,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2571] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1522), 1, sym_curly_group_path, @@ -459222,9 +462396,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2588] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1521), 1, sym_curly_group_path, @@ -459234,9 +462408,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2605] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1519), 1, sym_curly_group_path, @@ -459246,9 +462420,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2622] = 5, - ACTIONS(5549), 1, - anon_sym_LBRACK, ACTIONS(5631), 1, + anon_sym_LBRACK, + ACTIONS(5713), 1, anon_sym_LBRACE, STATE(1515), 1, sym_curly_group_glob_pattern, @@ -459258,9 +462432,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2639] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1551), 1, sym_curly_group_path, @@ -459270,9 +462444,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2656] = 5, - ACTIONS(5549), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - ACTIONS(5633), 1, + ACTIONS(5715), 1, anon_sym_LBRACE, STATE(1545), 1, sym_curly_group_path_list, @@ -459282,9 +462456,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2673] = 5, - ACTIONS(4979), 1, + ACTIONS(5058), 1, anon_sym_LBRACK, - ACTIONS(5621), 1, + ACTIONS(5703), 1, anon_sym_LBRACE, STATE(881), 1, sym_curly_group_text_list, @@ -459294,9 +462468,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2690] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5637), 1, + ACTIONS(5719), 1, anon_sym_RBRACE, STATE(1738), 1, aux_sym_curly_group_key_value_repeat1, @@ -459304,9 +462478,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2704] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5641), 1, + ACTIONS(5723), 1, anon_sym_RBRACE, STATE(1760), 1, aux_sym_curly_group_path_list_repeat1, @@ -459314,9 +462488,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2718] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5645), 1, + ACTIONS(5727), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459324,9 +462498,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2732] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5647), 1, + ACTIONS(5729), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459334,9 +462508,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2746] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5649), 1, + ACTIONS(5731), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459344,9 +462518,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2760] = 4, - ACTIONS(5651), 1, + ACTIONS(5733), 1, anon_sym_COMMA, - ACTIONS(5654), 1, + ACTIONS(5736), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459354,9 +462528,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2774] = 4, - ACTIONS(5656), 1, + ACTIONS(5738), 1, anon_sym_RBRACK, - ACTIONS(5658), 1, + ACTIONS(5740), 1, anon_sym_COMMA, STATE(1740), 1, aux_sym_curly_group_key_value_repeat1, @@ -459364,9 +462538,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2788] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5661), 1, + ACTIONS(5743), 1, anon_sym_RBRACE, STATE(1745), 1, aux_sym_curly_group_path_list_repeat1, @@ -459374,9 +462548,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2802] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5663), 1, + ACTIONS(5745), 1, anon_sym_RBRACE, STATE(1746), 1, aux_sym_curly_group_text_list_repeat1, @@ -459384,9 +462558,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2816] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(5747), 1, anon_sym_RBRACE, STATE(1736), 1, aux_sym_curly_group_text_list_repeat1, @@ -459394,9 +462568,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2830] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5667), 1, + ACTIONS(5749), 1, anon_sym_RBRACE, STATE(1737), 1, aux_sym_curly_group_path_list_repeat1, @@ -459404,9 +462578,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2844] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5669), 1, + ACTIONS(5751), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459414,9 +462588,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2858] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5671), 1, + ACTIONS(5753), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459424,9 +462598,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2872] = 4, - ACTIONS(5673), 1, + ACTIONS(5755), 1, anon_sym_COMMA, - ACTIONS(5676), 1, + ACTIONS(5758), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459434,9 +462608,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2886] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5678), 1, + ACTIONS(5760), 1, anon_sym_RBRACE, STATE(1749), 1, aux_sym_curly_group_key_value_repeat1, @@ -459444,9 +462618,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2900] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5680), 1, + ACTIONS(5762), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459454,9 +462628,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2914] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5682), 1, + ACTIONS(5764), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459464,9 +462638,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2928] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5684), 1, + ACTIONS(5766), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459474,9 +462648,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2942] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5686), 1, + ACTIONS(5768), 1, anon_sym_RBRACE, STATE(1750), 1, aux_sym_curly_group_key_value_repeat1, @@ -459484,9 +462658,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2956] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5688), 1, + ACTIONS(5770), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459494,9 +462668,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [2970] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5690), 1, + ACTIONS(5772), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459507,14 +462681,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5692), 3, + ACTIONS(5774), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RBRACE, [2994] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5694), 1, + ACTIONS(5776), 1, anon_sym_RBRACE, STATE(1782), 1, aux_sym_curly_group_path_list_repeat1, @@ -459522,9 +462696,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3008] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5696), 1, + ACTIONS(5778), 1, anon_sym_RBRACE, STATE(1761), 1, aux_sym_curly_group_text_list_repeat1, @@ -459532,9 +462706,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3022] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5698), 1, + ACTIONS(5780), 1, anon_sym_RBRACE, STATE(1753), 1, aux_sym_curly_group_text_list_repeat1, @@ -459542,9 +462716,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3036] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5700), 1, + ACTIONS(5782), 1, anon_sym_RBRACE, STATE(1754), 1, aux_sym_curly_group_path_list_repeat1, @@ -459552,9 +462726,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3050] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5702), 1, + ACTIONS(5784), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459562,9 +462736,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3064] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5704), 1, + ACTIONS(5786), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459572,18 +462746,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3078] = 3, - ACTIONS(5708), 1, + ACTIONS(5790), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, - ACTIONS(5706), 2, + ACTIONS(5788), 2, anon_sym_LBRACE, anon_sym_RBRACE, [3090] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5710), 1, + ACTIONS(5792), 1, anon_sym_RBRACE, STATE(1769), 1, aux_sym_curly_group_key_value_repeat1, @@ -459591,9 +462765,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3104] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5712), 1, + ACTIONS(5794), 1, anon_sym_RBRACE, STATE(1770), 1, aux_sym_curly_group_key_value_repeat1, @@ -459601,9 +462775,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3118] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5714), 1, + ACTIONS(5796), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459611,9 +462785,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3132] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5716), 1, + ACTIONS(5798), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459621,9 +462795,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3146] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5718), 1, + ACTIONS(5800), 1, anon_sym_RBRACE, STATE(1783), 1, aux_sym_curly_group_text_list_repeat1, @@ -459631,9 +462805,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3160] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5720), 1, + ACTIONS(5802), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459641,9 +462815,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3174] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5722), 1, + ACTIONS(5804), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459651,9 +462825,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3188] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5724), 1, + ACTIONS(5806), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459661,9 +462835,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3202] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5726), 1, + ACTIONS(5808), 1, anon_sym_RBRACE, STATE(1765), 1, aux_sym_curly_group_text_list_repeat1, @@ -459671,9 +462845,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3216] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5728), 1, + ACTIONS(5810), 1, anon_sym_RBRACE, STATE(1766), 1, aux_sym_curly_group_path_list_repeat1, @@ -459684,14 +462858,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5730), 3, + ACTIONS(5812), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RBRACE, [3240] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5732), 1, + ACTIONS(5814), 1, anon_sym_RBRACE, STATE(1776), 1, aux_sym_curly_group_path_list_repeat1, @@ -459699,9 +462873,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3254] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5734), 1, + ACTIONS(5816), 1, anon_sym_RBRACE, STATE(1777), 1, aux_sym_curly_group_text_list_repeat1, @@ -459709,9 +462883,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3268] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5736), 1, + ACTIONS(5818), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459719,9 +462893,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3282] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5738), 1, + ACTIONS(5820), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459729,9 +462903,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3296] = 4, - ACTIONS(5740), 1, + ACTIONS(5822), 1, anon_sym_RBRACK, - ACTIONS(5742), 1, + ACTIONS(5824), 1, anon_sym_COMMA, STATE(1740), 1, aux_sym_curly_group_key_value_repeat1, @@ -459739,9 +462913,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3310] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5744), 1, + ACTIONS(5826), 1, anon_sym_RBRACE, STATE(1780), 1, aux_sym_curly_group_key_value_repeat1, @@ -459749,9 +462923,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3324] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5746), 1, + ACTIONS(5828), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459759,18 +462933,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3338] = 3, - ACTIONS(5750), 1, + ACTIONS(5832), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5748), 2, + ACTIONS(5830), 2, anon_sym_RBRACK, anon_sym_COMMA, [3350] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5752), 1, + ACTIONS(5834), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459778,9 +462952,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3364] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5754), 1, + ACTIONS(5836), 1, anon_sym_RBRACE, STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, @@ -459788,9 +462962,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3378] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5756), 1, + ACTIONS(5838), 1, anon_sym_RBRACE, STATE(1789), 1, aux_sym_curly_group_path_list_repeat1, @@ -459798,9 +462972,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3392] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5758), 1, + ACTIONS(5840), 1, anon_sym_RBRACE, STATE(1768), 1, aux_sym_curly_group_key_value_repeat1, @@ -459808,18 +462982,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3406] = 3, - ACTIONS(5760), 1, + ACTIONS(5842), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5748), 2, + ACTIONS(5830), 2, anon_sym_COMMA, anon_sym_RBRACE, [3418] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5762), 1, + ACTIONS(5844), 1, anon_sym_RBRACE, STATE(1793), 1, aux_sym_curly_group_key_value_repeat1, @@ -459827,9 +463001,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3432] = 4, - ACTIONS(5643), 1, + ACTIONS(5725), 1, anon_sym_COMMA, - ACTIONS(5764), 1, + ACTIONS(5846), 1, anon_sym_RBRACE, STATE(1751), 1, aux_sym_curly_group_text_list_repeat1, @@ -459837,9 +463011,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3446] = 4, - ACTIONS(5639), 1, + ACTIONS(5721), 1, anon_sym_COMMA, - ACTIONS(5766), 1, + ACTIONS(5848), 1, anon_sym_RBRACE, STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, @@ -459847,18 +463021,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3460] = 3, - ACTIONS(5770), 1, + ACTIONS(5852), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, - ACTIONS(5768), 2, + ACTIONS(5850), 2, anon_sym_LBRACE, anon_sym_RBRACE, [3472] = 4, - ACTIONS(5742), 1, + ACTIONS(5824), 1, anon_sym_COMMA, - ACTIONS(5772), 1, + ACTIONS(5854), 1, anon_sym_RBRACK, STATE(1778), 1, aux_sym_curly_group_key_value_repeat1, @@ -459866,9 +463040,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3486] = 4, - ACTIONS(5656), 1, + ACTIONS(5738), 1, anon_sym_RBRACE, - ACTIONS(5774), 1, + ACTIONS(5856), 1, anon_sym_COMMA, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459876,9 +463050,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3500] = 4, - ACTIONS(5635), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(5777), 1, + ACTIONS(5859), 1, anon_sym_RBRACE, STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, @@ -459886,7 +463060,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3514] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(664), 1, sym_curly_group_text, @@ -459894,7 +463068,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3525] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1571), 1, sym_curly_group, @@ -459902,7 +463076,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3536] = 3, - ACTIONS(5779), 1, + ACTIONS(5861), 1, anon_sym_LBRACE, STATE(842), 1, sym__trivia_curly_group_comment, @@ -459910,7 +463084,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3547] = 3, - ACTIONS(5781), 1, + ACTIONS(5863), 1, anon_sym_LBRACE, STATE(843), 1, sym__trivia_curly_group_verbatim, @@ -459918,7 +463092,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3558] = 3, - ACTIONS(5783), 1, + ACTIONS(5865), 1, anon_sym_LBRACE, STATE(844), 1, sym__trivia_curly_group_listing, @@ -459926,7 +463100,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3569] = 3, - ACTIONS(5785), 1, + ACTIONS(5867), 1, anon_sym_LBRACE, STATE(845), 1, sym__trivia_curly_group_minted, @@ -459934,7 +463108,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3580] = 3, - ACTIONS(5787), 1, + ACTIONS(5869), 1, anon_sym_LBRACE, STATE(846), 1, sym__trivia_curly_group_pycode, @@ -459942,7 +463116,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3591] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(849), 1, sym_curly_group, @@ -459958,7 +463132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3613] = 3, - ACTIONS(5789), 1, + ACTIONS(5871), 1, anon_sym_LBRACE, STATE(851), 1, sym_curly_group_impl, @@ -459966,7 +463140,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3624] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(853), 1, sym_curly_group, @@ -459974,7 +463148,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3635] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(855), 1, sym_curly_group, @@ -459982,7 +463156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3646] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(856), 1, sym_curly_group_text, @@ -459990,7 +463164,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3657] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(857), 1, sym_curly_group, @@ -459998,7 +463172,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3668] = 3, - ACTIONS(5791), 1, + ACTIONS(5873), 1, anon_sym_minted, STATE(2459), 1, sym__trivia_text_minted, @@ -460006,7 +463180,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3679] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(859), 1, sym_curly_group, @@ -460014,7 +463188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3690] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2246), 1, sym_curly_group_text, @@ -460022,7 +463196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3701] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2247), 1, sym_curly_group_text, @@ -460030,7 +463204,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3712] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(483), 1, sym_curly_group_text, @@ -460038,7 +463212,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3723] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(730), 1, sym_curly_group_text, @@ -460046,7 +463220,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3734] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(902), 1, sym_curly_group_path, @@ -460054,7 +463228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3745] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(904), 1, sym_curly_group_path, @@ -460062,7 +463236,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3756] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(908), 1, sym_curly_group_path, @@ -460070,7 +463244,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3767] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(911), 1, sym_curly_group_text, @@ -460078,7 +463252,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3778] = 3, - ACTIONS(5555), 1, + ACTIONS(5637), 1, anon_sym_LBRACE, STATE(912), 1, sym_curly_group_text_list, @@ -460086,7 +463260,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3789] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1865), 1, sym_curly_group_text_list, @@ -460094,7 +463268,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3800] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(917), 1, sym_curly_group_text, @@ -460102,7 +463276,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3811] = 3, - ACTIONS(5583), 1, + ACTIONS(5665), 1, anon_sym_LBRACE, STATE(918), 1, sym_curly_group_path_list, @@ -460110,7 +463284,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3822] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(919), 1, sym_curly_group, @@ -460126,7 +463300,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3844] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(729), 1, sym_curly_group_text, @@ -460134,7 +463308,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3855] = 3, - ACTIONS(5793), 1, + ACTIONS(5875), 1, anon_sym_LBRACE, STATE(727), 1, sym_curly_group_key_value, @@ -460142,23 +463316,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3866] = 3, - ACTIONS(5795), 1, + ACTIONS(5877), 1, sym_command_name, - ACTIONS(5797), 1, + ACTIONS(5879), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3877] = 3, - ACTIONS(5799), 1, + ACTIONS(5881), 1, anon_sym_RBRACE, - ACTIONS(5801), 1, + ACTIONS(5883), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [3888] = 3, - ACTIONS(5583), 1, + ACTIONS(5665), 1, anon_sym_LBRACE, STATE(977), 1, sym_curly_group_path_list, @@ -460166,7 +463340,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3899] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(978), 1, sym_curly_group_path, @@ -460174,7 +463348,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3910] = 3, - ACTIONS(5565), 1, + ACTIONS(5647), 1, anon_sym_LBRACE, STATE(979), 1, sym_curly_group_glob_pattern, @@ -460182,7 +463356,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3921] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(980), 1, sym_curly_group_path, @@ -460190,7 +463364,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3932] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(981), 1, sym_curly_group_path, @@ -460198,7 +463372,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3943] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(982), 1, sym_curly_group_path, @@ -460206,7 +463380,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3954] = 3, - ACTIONS(5561), 1, + ACTIONS(5643), 1, anon_sym_LBRACE, STATE(983), 1, sym_curly_group_path, @@ -460214,7 +463388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3965] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(984), 1, sym_curly_group, @@ -460222,7 +463396,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3976] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(987), 1, sym_curly_group_text, @@ -460230,7 +463404,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3987] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(988), 1, sym_curly_group, @@ -460238,7 +463412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3998] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1897), 1, sym_curly_group_text_list, @@ -460246,15 +463420,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4009] = 3, - ACTIONS(5803), 1, + ACTIONS(5885), 1, sym_command_name, - ACTIONS(5805), 1, + ACTIONS(5887), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4020] = 3, - ACTIONS(5807), 1, + ACTIONS(5889), 1, anon_sym_LBRACE, STATE(991), 1, sym_curly_group_key_value, @@ -460262,7 +463436,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4031] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(992), 1, sym_curly_group_text, @@ -460270,7 +463444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4042] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(993), 1, sym_curly_group_text, @@ -460278,7 +463452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4053] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(668), 1, sym_curly_group_text, @@ -460286,7 +463460,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4064] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(1025), 1, sym_curly_group_text, @@ -460294,7 +463468,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4075] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(840), 1, sym_curly_group, @@ -460302,7 +463476,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4086] = 3, - ACTIONS(5809), 1, + ACTIONS(5891), 1, anon_sym_BSLASHend, STATE(1027), 1, sym__trivia_end_comment, @@ -460310,7 +463484,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4097] = 3, - ACTIONS(5811), 1, + ACTIONS(5893), 1, anon_sym_BSLASHend, STATE(1028), 1, sym__trivia_end_verbatim, @@ -460318,7 +463492,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4108] = 3, - ACTIONS(5813), 1, + ACTIONS(5895), 1, anon_sym_BSLASHend, STATE(1029), 1, sym__trivia_end_listing, @@ -460326,7 +463500,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4119] = 3, - ACTIONS(5815), 1, + ACTIONS(5897), 1, anon_sym_BSLASHend, STATE(1030), 1, sym__trivia_end_minted, @@ -460334,7 +463508,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4130] = 3, - ACTIONS(5817), 1, + ACTIONS(5899), 1, anon_sym_BSLASHend, STATE(1031), 1, sym__trivia_end_pycode, @@ -460345,11 +463519,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5819), 2, + ACTIONS(5901), 2, anon_sym_LBRACK, anon_sym_LBRACE, [4150] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1948), 1, sym_curly_group_text_list, @@ -460360,11 +463534,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5821), 2, + ACTIONS(5903), 2, anon_sym_COMMA, anon_sym_RBRACE, [4170] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(1956), 1, sym_curly_group_text_list, @@ -460375,11 +463549,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5823), 2, + ACTIONS(5905), 2, anon_sym_COMMA, anon_sym_RBRACE, [4190] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(2004), 1, sym_curly_group_text_list, @@ -460387,7 +463561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4201] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(2014), 1, sym_curly_group_text_list, @@ -460395,7 +463569,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4212] = 3, - ACTIONS(5825), 1, + ACTIONS(5907), 1, anon_sym_pycode, STATE(2387), 1, sym__trivia_text_pycode, @@ -460403,7 +463577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4223] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(838), 1, sym_curly_group, @@ -460411,7 +463585,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4234] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(2045), 1, sym_curly_group_text_list, @@ -460419,7 +463593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4245] = 3, - ACTIONS(5791), 1, + ACTIONS(5873), 1, anon_sym_minted, STATE(2392), 1, sym__trivia_text_minted, @@ -460427,7 +463601,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4256] = 3, - ACTIONS(5789), 1, + ACTIONS(5871), 1, anon_sym_LBRACE, STATE(836), 1, sym_curly_group_impl, @@ -460435,7 +463609,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4267] = 3, - ACTIONS(5555), 1, + ACTIONS(5637), 1, anon_sym_LBRACE, STATE(1044), 1, sym_curly_group_text_list, @@ -460443,7 +463617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4278] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(2158), 1, sym_curly_group_text_list, @@ -460467,7 +463641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4311] = 3, - ACTIONS(5827), 1, + ACTIONS(5909), 1, anon_sym_LBRACE, STATE(1048), 1, sym_curly_group_impl, @@ -460483,7 +463657,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4333] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1050), 1, sym_curly_group, @@ -460491,7 +463665,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4344] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1052), 1, sym_curly_group, @@ -460499,7 +463673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4355] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(1054), 1, sym_curly_group_text, @@ -460507,7 +463681,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4366] = 3, - ACTIONS(5829), 1, + ACTIONS(5911), 1, anon_sym_LBRACE, STATE(1055), 1, sym__trivia_curly_group_comment, @@ -460515,7 +463689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4377] = 3, - ACTIONS(5831), 1, + ACTIONS(5913), 1, anon_sym_LBRACE, STATE(1056), 1, sym__trivia_curly_group_verbatim, @@ -460523,7 +463697,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4388] = 3, - ACTIONS(5833), 1, + ACTIONS(5915), 1, anon_sym_LBRACE, STATE(1057), 1, sym__trivia_curly_group_listing, @@ -460531,7 +463705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4399] = 3, - ACTIONS(5835), 1, + ACTIONS(5917), 1, anon_sym_LBRACE, STATE(1058), 1, sym__trivia_curly_group_minted, @@ -460539,7 +463713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4410] = 3, - ACTIONS(5837), 1, + ACTIONS(5919), 1, anon_sym_LBRACE, STATE(1059), 1, sym__trivia_curly_group_pycode, @@ -460547,7 +463721,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4421] = 3, - ACTIONS(5621), 1, + ACTIONS(5703), 1, anon_sym_LBRACE, STATE(832), 1, sym_curly_group_text_list, @@ -460555,7 +463729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4432] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(736), 1, sym_curly_group_text, @@ -460563,7 +463737,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4443] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1062), 1, sym_curly_group, @@ -460571,7 +463745,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4454] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(748), 1, sym_curly_group_text, @@ -460579,7 +463753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4465] = 3, - ACTIONS(5827), 1, + ACTIONS(5909), 1, anon_sym_LBRACE, STATE(1064), 1, sym_curly_group_impl, @@ -460587,7 +463761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4476] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2056), 1, sym_curly_group_text, @@ -460595,7 +463769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4487] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1066), 1, sym_curly_group, @@ -460603,7 +463777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4498] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1068), 1, sym_curly_group, @@ -460611,7 +463785,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4509] = 3, - ACTIONS(5563), 1, + ACTIONS(5645), 1, anon_sym_LBRACE, STATE(1069), 1, sym_curly_group_text, @@ -460619,7 +463793,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4520] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1070), 1, sym_curly_group, @@ -460627,7 +463801,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4531] = 3, - ACTIONS(5791), 1, + ACTIONS(5873), 1, anon_sym_minted, STATE(2471), 1, sym__trivia_text_minted, @@ -460635,7 +463809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4542] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2072), 1, sym_curly_group_text, @@ -460643,7 +463817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4553] = 3, - ACTIONS(683), 1, + ACTIONS(692), 1, anon_sym_LBRACE, STATE(1072), 1, sym_curly_group, @@ -460651,7 +463825,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4564] = 3, - ACTIONS(5839), 1, + ACTIONS(5921), 1, anon_sym_lstlisting, STATE(2384), 1, sym__trivia_text_listing, @@ -460659,7 +463833,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4575] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2250), 1, sym_curly_group_text, @@ -460667,7 +463841,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4586] = 3, - ACTIONS(5841), 1, + ACTIONS(5923), 1, anon_sym_verbatim, STATE(2382), 1, sym__trivia_text_verbatim, @@ -460683,7 +463857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4608] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1700), 1, sym_curly_group_text, @@ -460691,7 +463865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4619] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(880), 1, sym_curly_group_text, @@ -460699,7 +463873,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4630] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1122), 1, sym_curly_group_path, @@ -460715,7 +463889,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4652] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1124), 1, sym_curly_group_path, @@ -460731,7 +463905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4674] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2142), 1, sym_curly_group_text, @@ -460739,7 +463913,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4685] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2144), 1, sym_curly_group_text, @@ -460747,7 +463921,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4696] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1128), 1, sym_curly_group_path, @@ -460755,7 +463929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4707] = 3, - ACTIONS(5843), 1, + ACTIONS(5925), 1, anon_sym_BSLASHend, STATE(867), 1, sym__trivia_end_pycode, @@ -460763,7 +463937,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4718] = 3, - ACTIONS(5845), 1, + ACTIONS(5927), 1, anon_sym_BSLASHend, STATE(868), 1, sym__trivia_end_minted, @@ -460771,7 +463945,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4729] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1131), 1, sym_curly_group_text, @@ -460779,7 +463953,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4740] = 3, - ACTIONS(5609), 1, + ACTIONS(5691), 1, anon_sym_LBRACE, STATE(1132), 1, sym_curly_group_text_list, @@ -460787,7 +463961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4751] = 3, - ACTIONS(5847), 1, + ACTIONS(5929), 1, anon_sym_comment, STATE(2381), 1, sym__trivia_text_comment, @@ -460795,7 +463969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4762] = 3, - ACTIONS(5849), 1, + ACTIONS(5931), 1, anon_sym_BSLASHend, STATE(869), 1, sym__trivia_end_listing, @@ -460803,7 +463977,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4773] = 3, - ACTIONS(5851), 1, + ACTIONS(5933), 1, anon_sym_BSLASHend, STATE(870), 1, sym__trivia_end_verbatim, @@ -460811,7 +463985,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4784] = 3, - ACTIONS(5853), 1, + ACTIONS(5935), 1, anon_sym_BSLASHend, STATE(871), 1, sym__trivia_end_comment, @@ -460819,7 +463993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4795] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1137), 1, sym_curly_group_text, @@ -460827,7 +464001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4806] = 3, - ACTIONS(5597), 1, + ACTIONS(5679), 1, anon_sym_LBRACE, STATE(1138), 1, sym_curly_group_path_list, @@ -460835,7 +464009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4817] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1139), 1, sym_curly_group, @@ -460843,7 +464017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4828] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(717), 1, sym_curly_group_path, @@ -460851,7 +464025,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4839] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(716), 1, sym_curly_group_path, @@ -460859,7 +464033,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4850] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(713), 1, sym_curly_group_path, @@ -460867,7 +464041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4861] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(712), 1, sym_curly_group_path, @@ -460875,7 +464049,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4872] = 3, - ACTIONS(5581), 1, + ACTIONS(5663), 1, anon_sym_LBRACE, STATE(711), 1, sym_curly_group_glob_pattern, @@ -460883,7 +464057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4883] = 3, - ACTIONS(5855), 1, + ACTIONS(5937), 1, anon_sym_BSLASHend, STATE(739), 1, sym__trivia_end_verbatim, @@ -460891,15 +464065,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4894] = 3, - ACTIONS(5857), 1, + ACTIONS(5939), 1, anon_sym_RBRACE, - ACTIONS(5859), 1, + ACTIONS(5941), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [4905] = 3, - ACTIONS(5597), 1, + ACTIONS(5679), 1, anon_sym_LBRACE, STATE(1197), 1, sym_curly_group_path_list, @@ -460907,7 +464081,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4916] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1198), 1, sym_curly_group_path, @@ -460915,7 +464089,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4927] = 3, - ACTIONS(5601), 1, + ACTIONS(5683), 1, anon_sym_LBRACE, STATE(1199), 1, sym_curly_group_glob_pattern, @@ -460923,7 +464097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4938] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1200), 1, sym_curly_group_path, @@ -460931,7 +464105,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4949] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1201), 1, sym_curly_group_path, @@ -460939,7 +464113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4960] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1202), 1, sym_curly_group_path, @@ -460947,7 +464121,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4971] = 3, - ACTIONS(5599), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, STATE(1203), 1, sym_curly_group_path, @@ -460955,7 +464129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4982] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1204), 1, sym_curly_group, @@ -460963,7 +464137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [4993] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(860), 1, sym_curly_group_text, @@ -460971,7 +464145,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5004] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(659), 1, sym_curly_group_text, @@ -460979,7 +464153,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5015] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1207), 1, sym_curly_group_text, @@ -460987,7 +464161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5026] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1208), 1, sym_curly_group, @@ -460995,7 +464169,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5037] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(874), 1, sym_curly_group_text, @@ -461003,15 +464177,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5048] = 3, - ACTIONS(5861), 1, + ACTIONS(5943), 1, sym_command_name, - ACTIONS(5863), 1, + ACTIONS(5945), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5059] = 3, - ACTIONS(5865), 1, + ACTIONS(5947), 1, anon_sym_LBRACE, STATE(1211), 1, sym_curly_group_key_value, @@ -461019,7 +464193,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5070] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1212), 1, sym_curly_group_text, @@ -461027,7 +464201,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5081] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1213), 1, sym_curly_group_text, @@ -461035,7 +464209,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5092] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(658), 1, sym_curly_group_text, @@ -461043,7 +464217,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5103] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1245), 1, sym_curly_group_text, @@ -461051,7 +464225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5114] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(710), 1, sym_curly_group_path, @@ -461059,7 +464233,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5125] = 3, - ACTIONS(5867), 1, + ACTIONS(5949), 1, anon_sym_BSLASHend, STATE(1247), 1, sym__trivia_end_comment, @@ -461067,7 +464241,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5136] = 3, - ACTIONS(5869), 1, + ACTIONS(5951), 1, anon_sym_BSLASHend, STATE(1248), 1, sym__trivia_end_verbatim, @@ -461075,7 +464249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5147] = 3, - ACTIONS(5871), 1, + ACTIONS(5953), 1, anon_sym_BSLASHend, STATE(1249), 1, sym__trivia_end_listing, @@ -461083,7 +464257,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5158] = 3, - ACTIONS(5873), 1, + ACTIONS(5955), 1, anon_sym_BSLASHend, STATE(1250), 1, sym__trivia_end_minted, @@ -461091,7 +464265,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5169] = 3, - ACTIONS(5875), 1, + ACTIONS(5957), 1, anon_sym_BSLASHend, STATE(1251), 1, sym__trivia_end_pycode, @@ -461107,7 +464281,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5191] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1636), 1, sym_curly_group_text, @@ -461131,7 +464305,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5224] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2236), 1, sym_curly_group_text, @@ -461139,7 +464313,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5235] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2237), 1, sym_curly_group_text, @@ -461155,7 +464329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5257] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(771), 1, sym_curly_group_text, @@ -461163,7 +464337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5268] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(875), 1, sym_curly_group_text, @@ -461171,7 +464345,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5279] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1668), 1, sym_curly_group_text, @@ -461187,7 +464361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5301] = 3, - ACTIONS(5877), 1, + ACTIONS(5959), 1, anon_sym_LBRACE, STATE(876), 1, sym_curly_group_key_value, @@ -461195,7 +464369,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5312] = 3, - ACTIONS(5609), 1, + ACTIONS(5691), 1, anon_sym_LBRACE, STATE(1234), 1, sym_curly_group_text_list, @@ -461203,9 +464377,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5323] = 3, - ACTIONS(5879), 1, + ACTIONS(5961), 1, sym_command_name, - ACTIONS(5881), 1, + ACTIONS(5963), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, @@ -461219,7 +464393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5345] = 3, - ACTIONS(5575), 1, + ACTIONS(5657), 1, anon_sym_LBRACE, STATE(709), 1, sym_curly_group_path_list, @@ -461227,7 +464401,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5356] = 3, - ACTIONS(5883), 1, + ACTIONS(5965), 1, anon_sym_LBRACE, STATE(1229), 1, sym_curly_group_impl, @@ -461235,7 +464409,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5367] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(879), 1, sym_curly_group, @@ -461243,7 +464417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5378] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1227), 1, sym_curly_group, @@ -461251,7 +464425,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5389] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1224), 1, sym_curly_group, @@ -461259,7 +464433,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5400] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1222), 1, sym_curly_group_text, @@ -461267,7 +464441,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5411] = 3, - ACTIONS(5885), 1, + ACTIONS(5967), 1, anon_sym_LBRACE, STATE(1221), 1, sym__trivia_curly_group_comment, @@ -461275,7 +464449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5422] = 3, - ACTIONS(5887), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, STATE(1220), 1, sym__trivia_curly_group_verbatim, @@ -461283,7 +464457,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5433] = 3, - ACTIONS(5889), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, STATE(1219), 1, sym__trivia_curly_group_listing, @@ -461291,7 +464465,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5444] = 3, - ACTIONS(5891), 1, + ACTIONS(5973), 1, anon_sym_LBRACE, STATE(1218), 1, sym__trivia_curly_group_minted, @@ -461299,7 +464473,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5455] = 3, - ACTIONS(5893), 1, + ACTIONS(5975), 1, anon_sym_LBRACE, STATE(1217), 1, sym__trivia_curly_group_pycode, @@ -461307,7 +464481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5466] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2302), 1, sym_curly_group_text, @@ -461315,7 +464489,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5477] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(893), 1, sym_curly_group, @@ -461323,7 +464497,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5488] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1194), 1, sym_curly_group, @@ -461331,15 +464505,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5499] = 3, - ACTIONS(5895), 1, + ACTIONS(5977), 1, anon_sym_RBRACE, - ACTIONS(5897), 1, + ACTIONS(5979), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [5510] = 3, - ACTIONS(5883), 1, + ACTIONS(5965), 1, anon_sym_LBRACE, STATE(1189), 1, sym_curly_group_impl, @@ -461347,7 +464521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5521] = 3, - ACTIONS(5899), 1, + ACTIONS(5981), 1, anon_sym_BSLASHend, STATE(740), 1, sym__trivia_end_listing, @@ -461355,7 +464529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5532] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1185), 1, sym_curly_group, @@ -461363,7 +464537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5543] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1183), 1, sym_curly_group, @@ -461371,7 +464545,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5554] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1182), 1, sym_curly_group_text, @@ -461379,7 +464553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5565] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1181), 1, sym_curly_group, @@ -461387,7 +464561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5576] = 3, - ACTIONS(5791), 1, + ACTIONS(5873), 1, anon_sym_minted, STATE(2448), 1, sym__trivia_text_minted, @@ -461395,7 +464569,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5587] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(899), 1, sym_curly_group_path, @@ -461403,7 +464577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5598] = 3, - ACTIONS(223), 1, + ACTIONS(225), 1, anon_sym_LBRACE, STATE(1179), 1, sym_curly_group, @@ -461411,7 +464585,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5609] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(916), 1, sym_curly_group_path, @@ -461419,7 +464593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5620] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2303), 1, sym_curly_group_text, @@ -461427,7 +464601,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5631] = 3, - ACTIONS(5901), 1, + ACTIONS(5983), 1, anon_sym_LBRACE, STATE(2372), 1, sym_curly_group_text, @@ -461443,7 +464617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5653] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(920), 1, sym_curly_group_path, @@ -461451,7 +464625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5664] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(921), 1, sym_curly_group_path, @@ -461459,7 +464633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5675] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1511), 1, sym_curly_group_path, @@ -461467,7 +464641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5686] = 3, - ACTIONS(5619), 1, + ACTIONS(5701), 1, anon_sym_LBRACE, STATE(922), 1, sym_curly_group_glob_pattern, @@ -461475,7 +464649,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5697] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1516), 1, sym_curly_group_path, @@ -461483,7 +464657,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5708] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(923), 1, sym_curly_group_path, @@ -461491,7 +464665,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5719] = 3, - ACTIONS(5615), 1, + ACTIONS(5697), 1, anon_sym_LBRACE, STATE(924), 1, sym_curly_group_path_list, @@ -461499,15 +464673,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5730] = 3, - ACTIONS(5903), 1, + ACTIONS(5985), 1, anon_sym_RBRACE, - ACTIONS(5905), 1, + ACTIONS(5987), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [5741] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1523), 1, sym_curly_group_path, @@ -461515,7 +464689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5752] = 3, - ACTIONS(5907), 1, + ACTIONS(5989), 1, anon_sym_BSLASHend, STATE(741), 1, sym__trivia_end_minted, @@ -461523,7 +464697,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5763] = 3, - ACTIONS(5909), 1, + ACTIONS(5991), 1, anon_sym_BSLASHend, STATE(743), 1, sym__trivia_end_pycode, @@ -461531,7 +464705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5774] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1526), 1, sym_curly_group_text, @@ -461539,7 +464713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5785] = 3, - ACTIONS(5625), 1, + ACTIONS(5707), 1, anon_sym_LBRACE, STATE(1527), 1, sym_curly_group_text_list, @@ -461555,7 +464729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5807] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1624), 1, sym_curly_group_text, @@ -461579,7 +464753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5840] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1531), 1, sym_curly_group_text, @@ -461587,7 +464761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5851] = 3, - ACTIONS(5633), 1, + ACTIONS(5715), 1, anon_sym_LBRACE, STATE(1532), 1, sym_curly_group_path_list, @@ -461595,7 +464769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5862] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1328), 1, sym_curly_group, @@ -461603,7 +464777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5873] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2315), 1, sym_curly_group_text, @@ -461611,7 +464785,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5884] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2314), 1, sym_curly_group_text, @@ -461619,7 +464793,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5895] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(778), 1, sym_curly_group_impl, @@ -461635,7 +464809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5917] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1597), 1, sym_curly_group_text, @@ -461651,15 +464825,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5939] = 3, - ACTIONS(5911), 1, + ACTIONS(5993), 1, anon_sym_RBRACE, - ACTIONS(5913), 1, + ACTIONS(5995), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [5950] = 3, - ACTIONS(5633), 1, + ACTIONS(5715), 1, anon_sym_LBRACE, STATE(1536), 1, sym_curly_group_path_list, @@ -461667,7 +464841,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5961] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1537), 1, sym_curly_group_path, @@ -461675,7 +464849,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5972] = 3, - ACTIONS(5631), 1, + ACTIONS(5713), 1, anon_sym_LBRACE, STATE(1563), 1, sym_curly_group_glob_pattern, @@ -461683,7 +464857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5983] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1539), 1, sym_curly_group_path, @@ -461691,7 +464865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [5994] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1540), 1, sym_curly_group_path, @@ -461699,7 +464873,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6005] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1542), 1, sym_curly_group_path, @@ -461707,7 +464881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6016] = 3, - ACTIONS(5629), 1, + ACTIONS(5711), 1, anon_sym_LBRACE, STATE(1543), 1, sym_curly_group_path, @@ -461715,7 +464889,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6027] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1509), 1, sym_curly_group, @@ -461723,7 +464897,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6038] = 3, - ACTIONS(559), 1, + ACTIONS(566), 1, anon_sym_LBRACE, STATE(933), 1, sym_curly_group, @@ -461731,7 +464905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6049] = 3, - ACTIONS(5615), 1, + ACTIONS(5697), 1, anon_sym_LBRACE, STATE(934), 1, sym_curly_group_path_list, @@ -461739,7 +464913,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6060] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1548), 1, sym_curly_group_text, @@ -461747,7 +464921,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6071] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1541), 1, sym_curly_group, @@ -461755,7 +464929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6082] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(935), 1, sym_curly_group_text, @@ -461763,15 +464937,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6093] = 3, - ACTIONS(5915), 1, + ACTIONS(5997), 1, sym_command_name, - ACTIONS(5917), 1, + ACTIONS(5999), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6104] = 3, - ACTIONS(5919), 1, + ACTIONS(6001), 1, anon_sym_LBRACE, STATE(1552), 1, sym_curly_group_key_value, @@ -461779,7 +464953,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6115] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1553), 1, sym_curly_group_text, @@ -461787,7 +464961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6126] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1554), 1, sym_curly_group_text, @@ -461795,7 +464969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6137] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1498), 1, sym_curly_group_text, @@ -461803,7 +464977,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6148] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1359), 1, sym_curly_group_text, @@ -461819,7 +464993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6170] = 3, - ACTIONS(5921), 1, + ACTIONS(6003), 1, anon_sym_BSLASHend, STATE(1361), 1, sym__trivia_end_comment, @@ -461827,7 +465001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6181] = 3, - ACTIONS(5923), 1, + ACTIONS(6005), 1, anon_sym_BSLASHend, STATE(1362), 1, sym__trivia_end_verbatim, @@ -461835,7 +465009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6192] = 3, - ACTIONS(5925), 1, + ACTIONS(6007), 1, anon_sym_BSLASHend, STATE(1363), 1, sym__trivia_end_listing, @@ -461843,7 +465017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6203] = 3, - ACTIONS(5927), 1, + ACTIONS(6009), 1, anon_sym_BSLASHend, STATE(1364), 1, sym__trivia_end_minted, @@ -461851,7 +465025,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6214] = 3, - ACTIONS(5929), 1, + ACTIONS(6011), 1, anon_sym_BSLASHend, STATE(1365), 1, sym__trivia_end_pycode, @@ -461859,7 +465033,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6225] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2288), 1, sym_curly_group_text, @@ -461867,7 +465041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6236] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2287), 1, sym_curly_group_text, @@ -461878,11 +465052,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5931), 2, + ACTIONS(6013), 2, anon_sym_LBRACK, anon_sym_LBRACE, [6256] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1607), 1, sym_curly_group_text, @@ -461906,7 +465080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6289] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2258), 1, sym_curly_group_text, @@ -461914,7 +465088,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6300] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2257), 1, sym_curly_group_text, @@ -461922,7 +465096,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6311] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1622), 1, sym_curly_group_text, @@ -461930,7 +465104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6322] = 3, - ACTIONS(5933), 1, + ACTIONS(6015), 1, anon_sym_LBRACE, STATE(790), 1, sym__trivia_curly_group_comment, @@ -461946,7 +465120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6344] = 3, - ACTIONS(5621), 1, + ACTIONS(5703), 1, anon_sym_LBRACE, STATE(939), 1, sym_curly_group_text_list, @@ -461954,7 +465128,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6355] = 3, - ACTIONS(5625), 1, + ACTIONS(5707), 1, anon_sym_LBRACE, STATE(1565), 1, sym_curly_group_text_list, @@ -461962,7 +465136,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6366] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(940), 1, sym_curly_group_text, @@ -461978,7 +465152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6388] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2229), 1, sym_curly_group_text, @@ -461986,7 +465160,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6399] = 3, - ACTIONS(5935), 1, + ACTIONS(6017), 1, anon_sym_LBRACE, STATE(1569), 1, sym_curly_group_impl, @@ -461994,7 +465168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6410] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(943), 1, sym_curly_group_path, @@ -462002,7 +465176,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6421] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1935), 1, sym_curly_group_text, @@ -462010,7 +465184,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6432] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1573), 1, sym_curly_group, @@ -462018,7 +465192,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6443] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1575), 1, sym_curly_group_text, @@ -462026,7 +465200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6454] = 3, - ACTIONS(5937), 1, + ACTIONS(6019), 1, anon_sym_LBRACE, STATE(1389), 1, sym__trivia_curly_group_comment, @@ -462034,7 +465208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6465] = 3, - ACTIONS(5939), 1, + ACTIONS(6021), 1, anon_sym_LBRACE, STATE(1390), 1, sym__trivia_curly_group_verbatim, @@ -462042,7 +465216,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6476] = 3, - ACTIONS(5941), 1, + ACTIONS(6023), 1, anon_sym_LBRACE, STATE(1391), 1, sym__trivia_curly_group_listing, @@ -462050,7 +465224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6487] = 3, - ACTIONS(5943), 1, + ACTIONS(6025), 1, anon_sym_LBRACE, STATE(1392), 1, sym__trivia_curly_group_minted, @@ -462058,7 +465232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6498] = 3, - ACTIONS(5945), 1, + ACTIONS(6027), 1, anon_sym_LBRACE, STATE(1393), 1, sym__trivia_curly_group_pycode, @@ -462066,7 +465240,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6509] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(947), 1, sym_curly_group_path, @@ -462074,7 +465248,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6520] = 3, - ACTIONS(5617), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, STATE(949), 1, sym_curly_group_path, @@ -462082,7 +465256,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6531] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1549), 1, sym_curly_group, @@ -462098,7 +465272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6553] = 3, - ACTIONS(5935), 1, + ACTIONS(6017), 1, anon_sym_LBRACE, STATE(1562), 1, sym_curly_group_impl, @@ -462114,7 +465288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6575] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1510), 1, sym_curly_group, @@ -462122,7 +465296,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6586] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1514), 1, sym_curly_group, @@ -462130,7 +465304,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6597] = 3, - ACTIONS(5627), 1, + ACTIONS(5709), 1, anon_sym_LBRACE, STATE(1517), 1, sym_curly_group_text, @@ -462138,7 +465312,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6608] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1518), 1, sym_curly_group, @@ -462146,7 +465320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6619] = 3, - ACTIONS(5791), 1, + ACTIONS(5873), 1, anon_sym_minted, STATE(2420), 1, sym__trivia_text_minted, @@ -462154,7 +465328,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6630] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2225), 1, sym_curly_group_impl, @@ -462162,7 +465336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6641] = 3, - ACTIONS(5513), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, STATE(1538), 1, sym_curly_group, @@ -462170,7 +465344,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6652] = 3, - ACTIONS(5575), 1, + ACTIONS(5657), 1, anon_sym_LBRACE, STATE(807), 1, sym_curly_group_path_list, @@ -462178,7 +465352,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6663] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(808), 1, sym_curly_group_text, @@ -462186,7 +465360,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6674] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2220), 1, sym_curly_group_text, @@ -462202,7 +465376,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6696] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(975), 1, sym_curly_group, @@ -462210,7 +465384,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6707] = 3, - ACTIONS(5791), 1, + ACTIONS(5873), 1, anon_sym_minted, STATE(2385), 1, sym__trivia_text_minted, @@ -462218,7 +465392,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6718] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1406), 1, sym_curly_group_path, @@ -462226,7 +465400,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6729] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(995), 1, sym_curly_group, @@ -462234,7 +465408,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6740] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1408), 1, sym_curly_group_path, @@ -462242,7 +465416,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6751] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(996), 1, sym_curly_group_text, @@ -462250,7 +465424,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6762] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(997), 1, sym_curly_group, @@ -462258,7 +465432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6773] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(999), 1, sym_curly_group, @@ -462266,7 +465440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6784] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1394), 1, sym_curly_group_path, @@ -462274,7 +465448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6795] = 3, - ACTIONS(5947), 1, + ACTIONS(6029), 1, anon_sym_LBRACE, STATE(1001), 1, sym_curly_group_impl, @@ -462282,7 +465456,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6806] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1097), 1, sym_curly_group_path, @@ -462290,7 +465464,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6817] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1386), 1, sym_curly_group_text, @@ -462298,7 +465472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6828] = 3, - ACTIONS(5603), 1, + ACTIONS(5685), 1, anon_sym_LBRACE, STATE(1385), 1, sym_curly_group_text_list, @@ -462314,7 +465488,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6850] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(1003), 1, sym_curly_group, @@ -462322,7 +465496,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6861] = 3, - ACTIONS(5949), 1, + ACTIONS(6031), 1, anon_sym_LBRACE, STATE(1005), 1, sym__trivia_curly_group_pycode, @@ -462330,7 +465504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6872] = 3, - ACTIONS(5951), 1, + ACTIONS(6033), 1, anon_sym_LBRACE, STATE(1006), 1, sym__trivia_curly_group_minted, @@ -462338,7 +465512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6883] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1380), 1, sym_curly_group_text, @@ -462346,7 +465520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6894] = 3, - ACTIONS(5613), 1, + ACTIONS(5695), 1, anon_sym_LBRACE, STATE(1379), 1, sym_curly_group_path_list, @@ -462354,7 +465528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6905] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1440), 1, sym_curly_group, @@ -462362,7 +465536,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6916] = 3, - ACTIONS(5953), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, STATE(1007), 1, sym__trivia_curly_group_listing, @@ -462370,7 +465544,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6927] = 3, - ACTIONS(5955), 1, + ACTIONS(6037), 1, anon_sym_LBRACE, STATE(1008), 1, sym__trivia_curly_group_verbatim, @@ -462378,7 +465552,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6938] = 3, - ACTIONS(5957), 1, + ACTIONS(6039), 1, anon_sym_LBRACE, STATE(1009), 1, sym__trivia_curly_group_comment, @@ -462386,7 +465560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6949] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1010), 1, sym_curly_group_text, @@ -462394,7 +465568,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6960] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1825), 1, sym_curly_group_text, @@ -462402,15 +465576,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6971] = 3, - ACTIONS(5959), 1, + ACTIONS(6041), 1, anon_sym_RBRACE, - ACTIONS(5961), 1, + ACTIONS(6043), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [6982] = 3, - ACTIONS(5613), 1, + ACTIONS(5695), 1, anon_sym_LBRACE, STATE(1366), 1, sym_curly_group_path_list, @@ -462418,7 +465592,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [6993] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1308), 1, sym_curly_group_path, @@ -462426,7 +465600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7004] = 3, - ACTIONS(5611), 1, + ACTIONS(5693), 1, anon_sym_LBRACE, STATE(1357), 1, sym_curly_group_glob_pattern, @@ -462434,7 +465608,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7015] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1356), 1, sym_curly_group_path, @@ -462442,7 +465616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7026] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1355), 1, sym_curly_group_path, @@ -462450,7 +465624,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7037] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1354), 1, sym_curly_group_path, @@ -462458,7 +465632,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7048] = 3, - ACTIONS(5553), 1, + ACTIONS(5635), 1, anon_sym_LBRACE, STATE(1353), 1, sym_curly_group_path, @@ -462466,7 +465640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7059] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1352), 1, sym_curly_group, @@ -462474,7 +465648,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7070] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(1011), 1, sym_curly_group, @@ -462482,7 +465656,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7081] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(1013), 1, sym_curly_group, @@ -462490,7 +465664,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7092] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1349), 1, sym_curly_group_text, @@ -462498,7 +465672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7103] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1348), 1, sym_curly_group, @@ -462506,7 +465680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7114] = 3, - ACTIONS(5947), 1, + ACTIONS(6029), 1, anon_sym_LBRACE, STATE(1015), 1, sym_curly_group_impl, @@ -462514,15 +465688,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7125] = 3, - ACTIONS(5963), 1, + ACTIONS(6045), 1, sym_command_name, - ACTIONS(5965), 1, + ACTIONS(6047), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7136] = 3, - ACTIONS(5967), 1, + ACTIONS(6049), 1, anon_sym_LBRACE, STATE(1345), 1, sym_curly_group_key_value, @@ -462530,7 +465704,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7147] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1344), 1, sym_curly_group_text, @@ -462538,7 +465712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7158] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1343), 1, sym_curly_group_text, @@ -462546,7 +465720,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7169] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1298), 1, sym_curly_group_text, @@ -462554,7 +465728,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7180] = 3, - ACTIONS(5969), 1, + ACTIONS(6051), 1, anon_sym_LBRACE, STATE(786), 1, sym__trivia_curly_group_minted, @@ -462562,7 +465736,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7191] = 3, - ACTIONS(5971), 1, + ACTIONS(6053), 1, anon_sym_LBRACE, STATE(788), 1, sym__trivia_curly_group_listing, @@ -462570,7 +465744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7202] = 3, - ACTIONS(5973), 1, + ACTIONS(6055), 1, anon_sym_LBRACE, STATE(789), 1, sym__trivia_curly_group_verbatim, @@ -462578,7 +465752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7213] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2201), 1, sym_curly_group_text, @@ -462586,7 +465760,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7224] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1643), 1, sym_curly_group_command_name, @@ -462594,7 +465768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7235] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2198), 1, sym_curly_group_text, @@ -462602,7 +465776,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7246] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1595), 1, sym_curly_group_text, @@ -462610,7 +465784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7257] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2197), 1, sym_curly_group_text, @@ -462618,7 +465792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7268] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(2193), 1, sym_curly_group_path, @@ -462626,7 +465800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7279] = 3, - ACTIONS(5623), 1, + ACTIONS(5705), 1, anon_sym_LBRACE, STATE(841), 1, sym_curly_group_text, @@ -462642,7 +465816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7301] = 3, - ACTIONS(5603), 1, + ACTIONS(5685), 1, anon_sym_LBRACE, STATE(1323), 1, sym_curly_group_text_list, @@ -462650,7 +465824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7312] = 3, - ACTIONS(5573), 1, + ACTIONS(5655), 1, anon_sym_LBRACE, STATE(1019), 1, sym_curly_group_text_list, @@ -462666,7 +465840,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7334] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2156), 1, sym_curly_group_text, @@ -462674,7 +465848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7345] = 3, - ACTIONS(5977), 1, + ACTIONS(6059), 1, anon_sym_LBRACE, STATE(1319), 1, sym_curly_group_impl, @@ -462690,7 +465864,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7367] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1317), 1, sym_curly_group, @@ -462698,7 +465872,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7378] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1315), 1, sym_curly_group, @@ -462706,7 +465880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7389] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1314), 1, sym_curly_group_text, @@ -462714,7 +465888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7400] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2152), 1, sym_curly_group_impl, @@ -462722,7 +465896,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7411] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2147), 1, sym_curly_group_text, @@ -462730,7 +465904,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7422] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1311), 1, sym_curly_group, @@ -462746,7 +465920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7444] = 3, - ACTIONS(5977), 1, + ACTIONS(6059), 1, anon_sym_LBRACE, STATE(1309), 1, sym_curly_group_impl, @@ -462754,7 +465928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7455] = 3, - ACTIONS(5979), 1, + ACTIONS(6061), 1, anon_sym_LBRACE, STATE(784), 1, sym__trivia_curly_group_pycode, @@ -462762,7 +465936,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7466] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1341), 1, sym_curly_group, @@ -462770,7 +465944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7477] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1373), 1, sym_curly_group, @@ -462778,7 +465952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7488] = 3, - ACTIONS(5607), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, STATE(1375), 1, sym_curly_group_text, @@ -462786,7 +465960,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7499] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1376), 1, sym_curly_group, @@ -462802,7 +465976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7521] = 3, - ACTIONS(3263), 1, + ACTIONS(3318), 1, anon_sym_LBRACE, STATE(1381), 1, sym_curly_group, @@ -462810,7 +465984,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7532] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1640), 1, sym_curly_group_command_name, @@ -462818,7 +465992,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7543] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1866), 1, sym_curly_group_text, @@ -462826,7 +466000,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7554] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1880), 1, sym_curly_group_text, @@ -462842,7 +466016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7576] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2124), 1, sym_curly_group_text, @@ -462850,7 +466024,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7587] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1489), 1, sym_curly_group_path, @@ -462858,7 +466032,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7598] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1674), 1, sym_curly_group_command_name, @@ -462866,7 +466040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7609] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1487), 1, sym_curly_group_path, @@ -462874,7 +466048,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7620] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2121), 1, sym_curly_group_text, @@ -462882,7 +466056,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7631] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2120), 1, sym_curly_group_text, @@ -462890,7 +466064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7642] = 3, - ACTIONS(5981), 1, + ACTIONS(6063), 1, anon_sym_BSLASHend, STATE(1075), 1, sym__trivia_end_pycode, @@ -462898,7 +466072,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7653] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1483), 1, sym_curly_group_path, @@ -462906,7 +466080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7664] = 3, - ACTIONS(5983), 1, + ACTIONS(6065), 1, anon_sym_BSLASHend, STATE(1076), 1, sym__trivia_end_minted, @@ -462914,7 +466088,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7675] = 3, - ACTIONS(5985), 1, + ACTIONS(6067), 1, anon_sym_BSLASHend, STATE(1077), 1, sym__trivia_end_listing, @@ -462922,7 +466096,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7686] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1476), 1, sym_curly_group_text, @@ -462930,7 +466104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7697] = 3, - ACTIONS(5585), 1, + ACTIONS(5667), 1, anon_sym_LBRACE, STATE(1475), 1, sym_curly_group_text_list, @@ -462938,7 +466112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7708] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(2116), 1, sym_curly_group_path, @@ -462946,7 +466120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7719] = 3, - ACTIONS(5987), 1, + ACTIONS(6069), 1, anon_sym_BSLASHend, STATE(1078), 1, sym__trivia_end_verbatim, @@ -462954,7 +466128,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7730] = 3, - ACTIONS(5989), 1, + ACTIONS(6071), 1, anon_sym_BSLASHend, STATE(1079), 1, sym__trivia_end_comment, @@ -462962,7 +466136,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7741] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1081), 1, sym_curly_group_text, @@ -462970,7 +466144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7752] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1470), 1, sym_curly_group_text, @@ -462978,7 +466152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7763] = 3, - ACTIONS(5595), 1, + ACTIONS(5677), 1, anon_sym_LBRACE, STATE(1468), 1, sym_curly_group_path_list, @@ -462986,7 +466160,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7774] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(734), 1, sym_curly_group_text_list, @@ -462994,7 +466168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7785] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(701), 1, sym_curly_group_text, @@ -463002,7 +466176,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7796] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1084), 1, sym_curly_group_text, @@ -463010,7 +466184,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7807] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1085), 1, sym_curly_group_text, @@ -463018,15 +466192,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7818] = 3, - ACTIONS(5991), 1, + ACTIONS(6073), 1, anon_sym_RBRACE, - ACTIONS(5993), 1, + ACTIONS(6075), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [7829] = 3, - ACTIONS(5595), 1, + ACTIONS(5677), 1, anon_sym_LBRACE, STATE(1462), 1, sym_curly_group_path_list, @@ -463034,7 +466208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7840] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1461), 1, sym_curly_group_path, @@ -463042,7 +466216,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7851] = 3, - ACTIONS(5593), 1, + ACTIONS(5675), 1, anon_sym_LBRACE, STATE(1460), 1, sym_curly_group_glob_pattern, @@ -463050,7 +466224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7862] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1411), 1, sym_curly_group_path, @@ -463058,7 +466232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7873] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1459), 1, sym_curly_group_path, @@ -463066,7 +466240,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7884] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1458), 1, sym_curly_group_path, @@ -463074,7 +466248,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7895] = 3, - ACTIONS(5591), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, STATE(1457), 1, sym_curly_group_path, @@ -463082,7 +466256,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7906] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1456), 1, sym_curly_group, @@ -463090,7 +466264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7917] = 3, - ACTIONS(5995), 1, + ACTIONS(6077), 1, anon_sym_LBRACE, STATE(1086), 1, sym_curly_group_key_value, @@ -463098,15 +466272,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7928] = 3, - ACTIONS(5997), 1, + ACTIONS(6079), 1, sym_command_name, - ACTIONS(5999), 1, + ACTIONS(6081), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7939] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1453), 1, sym_curly_group_text, @@ -463114,7 +466288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7950] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1452), 1, sym_curly_group, @@ -463122,7 +466296,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7961] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(1089), 1, sym_curly_group, @@ -463130,15 +466304,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7972] = 3, - ACTIONS(6001), 1, + ACTIONS(6083), 1, sym_command_name, - ACTIONS(6003), 1, + ACTIONS(6085), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7983] = 3, - ACTIONS(6005), 1, + ACTIONS(6087), 1, anon_sym_LBRACE, STATE(1449), 1, sym_curly_group_key_value, @@ -463146,7 +466320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [7994] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1446), 1, sym_curly_group_text, @@ -463154,7 +466328,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8005] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1444), 1, sym_curly_group_text, @@ -463162,7 +466336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8016] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1303), 1, sym_curly_group_text, @@ -463170,7 +466344,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8027] = 3, - ACTIONS(5825), 1, + ACTIONS(5907), 1, anon_sym_pycode, STATE(2397), 1, sym__trivia_text_pycode, @@ -463178,7 +466352,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8038] = 3, - ACTIONS(5839), 1, + ACTIONS(5921), 1, anon_sym_lstlisting, STATE(2399), 1, sym__trivia_text_listing, @@ -463186,7 +466360,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8049] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(1914), 1, sym_curly_group_path, @@ -463194,7 +466368,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8060] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1090), 1, sym_curly_group_text, @@ -463202,7 +466376,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8071] = 3, - ACTIONS(5841), 1, + ACTIONS(5923), 1, anon_sym_verbatim, STATE(2400), 1, sym__trivia_text_verbatim, @@ -463210,7 +466384,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8082] = 3, - ACTIONS(5847), 1, + ACTIONS(5929), 1, anon_sym_comment, STATE(2402), 1, sym__trivia_text_comment, @@ -463218,7 +466392,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8093] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(1093), 1, sym_curly_group, @@ -463226,7 +466400,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8104] = 3, - ACTIONS(5585), 1, + ACTIONS(5667), 1, anon_sym_LBRACE, STATE(1436), 1, sym_curly_group_text_list, @@ -463250,7 +466424,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8137] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(675), 1, sym_curly_group_path, @@ -463258,7 +466432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8148] = 3, - ACTIONS(6007), 1, + ACTIONS(6089), 1, anon_sym_LBRACE, STATE(1432), 1, sym_curly_group_impl, @@ -463266,7 +466440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8159] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1095), 1, sym_curly_group_path, @@ -463274,7 +466448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8170] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1430), 1, sym_curly_group, @@ -463282,7 +466456,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8181] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1428), 1, sym_curly_group, @@ -463290,7 +466464,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8192] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1427), 1, sym_curly_group_text, @@ -463298,7 +466472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8203] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1096), 1, sym_curly_group_path, @@ -463306,15 +466480,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8214] = 3, - ACTIONS(6009), 1, + ACTIONS(6091), 1, anon_sym_RBRACE, - ACTIONS(6011), 1, + ACTIONS(6093), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [8225] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1424), 1, sym_curly_group, @@ -463322,7 +466496,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8236] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1098), 1, sym_curly_group_path, @@ -463330,7 +466504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8247] = 3, - ACTIONS(6007), 1, + ACTIONS(6089), 1, anon_sym_LBRACE, STATE(1422), 1, sym_curly_group_impl, @@ -463338,7 +466512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8258] = 3, - ACTIONS(5571), 1, + ACTIONS(5653), 1, anon_sym_LBRACE, STATE(1099), 1, sym_curly_group_glob_pattern, @@ -463346,7 +466520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8269] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1420), 1, sym_curly_group, @@ -463354,7 +466528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8280] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1414), 1, sym_curly_group, @@ -463362,7 +466536,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8291] = 3, - ACTIONS(5589), 1, + ACTIONS(5671), 1, anon_sym_LBRACE, STATE(1413), 1, sym_curly_group_text, @@ -463370,7 +466544,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8302] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1454), 1, sym_curly_group, @@ -463378,7 +466552,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8313] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1100), 1, sym_curly_group_path, @@ -463386,7 +466560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8324] = 3, - ACTIONS(3711), 1, + ACTIONS(3774), 1, anon_sym_LBRACE, STATE(1465), 1, sym_curly_group, @@ -463394,7 +466568,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8335] = 3, - ACTIONS(5567), 1, + ACTIONS(5649), 1, anon_sym_LBRACE, STATE(1101), 1, sym_curly_group_path_list, @@ -463410,7 +466584,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8357] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(679), 1, sym_curly_group_path, @@ -463418,7 +466592,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8368] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2075), 1, sym_curly_group_text, @@ -463434,7 +466608,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8390] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(2217), 1, sym_curly_group_path, @@ -463442,7 +466616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8401] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2208), 1, sym_curly_group_text, @@ -463450,7 +466624,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8412] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2199), 1, sym_curly_group_text, @@ -463458,7 +466632,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8423] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1645), 1, sym_curly_group_command_name, @@ -463466,7 +466640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8434] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2071), 1, sym_curly_group_impl, @@ -463474,7 +466648,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8445] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2195), 1, sym_curly_group_text, @@ -463482,7 +466656,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8456] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2061), 1, sym_curly_group_text, @@ -463498,7 +466672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8478] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1953), 1, sym_curly_group_text, @@ -463506,7 +466680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8489] = 3, - ACTIONS(5605), 1, + ACTIONS(5687), 1, anon_sym_LBRACE, STATE(791), 1, sym_curly_group_text, @@ -463522,7 +466696,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8511] = 3, - ACTIONS(6013), 1, + ACTIONS(6095), 1, anon_sym_BSLASHend, STATE(738), 1, sym__trivia_end_comment, @@ -463538,7 +466712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8533] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2030), 1, sym_curly_group_text, @@ -463546,7 +466720,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8544] = 3, - ACTIONS(789), 1, + ACTIONS(800), 1, anon_sym_LBRACE, STATE(1143), 1, sym_curly_group, @@ -463554,7 +466728,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8555] = 3, - ACTIONS(5567), 1, + ACTIONS(5649), 1, anon_sym_LBRACE, STATE(1144), 1, sym_curly_group_path_list, @@ -463570,7 +466744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8577] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2107), 1, sym_curly_group_text, @@ -463578,7 +466752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8588] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2093), 1, sym_curly_group_impl, @@ -463594,7 +466768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8610] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2089), 1, sym_curly_group_text, @@ -463610,7 +466784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8632] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(684), 1, sym_curly_group_path, @@ -463626,7 +466800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8654] = 3, - ACTIONS(5847), 1, + ACTIONS(5929), 1, anon_sym_comment, STATE(2457), 1, sym__trivia_text_comment, @@ -463634,7 +466808,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8665] = 3, - ACTIONS(5841), 1, + ACTIONS(5923), 1, anon_sym_verbatim, STATE(2458), 1, sym__trivia_text_verbatim, @@ -463642,7 +466816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8676] = 3, - ACTIONS(5839), 1, + ACTIONS(5921), 1, anon_sym_lstlisting, STATE(2478), 1, sym__trivia_text_listing, @@ -463650,7 +466824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8687] = 3, - ACTIONS(5825), 1, + ACTIONS(5907), 1, anon_sym_pycode, STATE(2460), 1, sym__trivia_text_pycode, @@ -463658,7 +466832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8698] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1145), 1, sym_curly_group_text, @@ -463666,7 +466840,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8709] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1715), 1, sym_curly_group_command_name, @@ -463674,7 +466848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8720] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(1983), 1, sym_curly_group_path, @@ -463682,7 +466856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8731] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1895), 1, sym_curly_group_text, @@ -463690,7 +466864,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8742] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1963), 1, sym_curly_group_text, @@ -463698,7 +466872,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8753] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1713), 1, sym_curly_group_command_name, @@ -463706,7 +466880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8764] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2027), 1, sym_curly_group_text, @@ -463714,7 +466888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8775] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1957), 1, sym_curly_group_text, @@ -463722,7 +466896,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8786] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2026), 1, sym_curly_group_text, @@ -463730,7 +466904,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8797] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(2022), 1, sym_curly_group_path, @@ -463738,7 +466912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8808] = 3, - ACTIONS(5825), 1, + ACTIONS(5907), 1, anon_sym_pycode, STATE(2418), 1, sym__trivia_text_pycode, @@ -463746,7 +466920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8819] = 3, - ACTIONS(5839), 1, + ACTIONS(5921), 1, anon_sym_lstlisting, STATE(2423), 1, sym__trivia_text_listing, @@ -463754,7 +466928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8830] = 3, - ACTIONS(5841), 1, + ACTIONS(5923), 1, anon_sym_verbatim, STATE(2424), 1, sym__trivia_text_verbatim, @@ -463762,7 +466936,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8841] = 3, - ACTIONS(5573), 1, + ACTIONS(5655), 1, anon_sym_LBRACE, STATE(1149), 1, sym_curly_group_text_list, @@ -463770,7 +466944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8852] = 3, - ACTIONS(5847), 1, + ACTIONS(5929), 1, anon_sym_comment, STATE(2426), 1, sym__trivia_text_comment, @@ -463778,7 +466952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8863] = 3, - ACTIONS(5579), 1, + ACTIONS(5661), 1, anon_sym_LBRACE, STATE(1150), 1, sym_curly_group_text, @@ -463786,7 +466960,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8874] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1153), 1, sym_curly_group_path, @@ -463794,7 +466968,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8885] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1157), 1, sym_curly_group_path, @@ -463810,7 +466984,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8907] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(2137), 1, sym_curly_group_text, @@ -463818,7 +466992,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8918] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(1803), 1, sym_curly_group_impl, @@ -463834,7 +467008,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8940] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1806), 1, sym_curly_group_text, @@ -463858,7 +467032,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8973] = 3, - ACTIONS(5847), 1, + ACTIONS(5929), 1, anon_sym_comment, STATE(2474), 1, sym__trivia_text_comment, @@ -463866,7 +467040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8984] = 3, - ACTIONS(5841), 1, + ACTIONS(5923), 1, anon_sym_verbatim, STATE(2473), 1, sym__trivia_text_verbatim, @@ -463874,7 +467048,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [8995] = 3, - ACTIONS(5839), 1, + ACTIONS(5921), 1, anon_sym_lstlisting, STATE(2472), 1, sym__trivia_text_listing, @@ -463882,7 +467056,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9006] = 3, - ACTIONS(5825), 1, + ACTIONS(5907), 1, anon_sym_pycode, STATE(2470), 1, sym__trivia_text_pycode, @@ -463890,7 +467064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9017] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(1834), 1, sym_curly_group_path, @@ -463898,7 +467072,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9028] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1836), 1, sym_curly_group_text, @@ -463906,7 +467080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9039] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1837), 1, sym_curly_group_text, @@ -463914,7 +467088,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9050] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1639), 1, sym_curly_group_command_name, @@ -463930,7 +467104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9072] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1840), 1, sym_curly_group_text, @@ -463946,7 +467120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9094] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1980), 1, sym_curly_group_text, @@ -463962,7 +467136,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9116] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(1976), 1, sym_curly_group_impl, @@ -463970,7 +467144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9127] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1966), 1, sym_curly_group_text, @@ -463978,7 +467152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9138] = 3, - ACTIONS(5569), 1, + ACTIONS(5651), 1, anon_sym_LBRACE, STATE(1159), 1, sym_curly_group_path, @@ -463994,7 +467168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9160] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(2011), 1, sym_curly_group_impl, @@ -464002,7 +467176,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9171] = 3, - ACTIONS(5587), 1, + ACTIONS(5669), 1, anon_sym_LBRACE, STATE(801), 1, sym_curly_group_text_list, @@ -464010,7 +467184,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9182] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(797), 1, sym_curly_group_impl, @@ -464026,7 +467200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9204] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1871), 1, sym_curly_group_text, @@ -464034,7 +467208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9215] = 3, - ACTIONS(5559), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, STATE(1881), 1, sym_curly_group_impl, @@ -464050,7 +467224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9237] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1885), 1, sym_curly_group_text, @@ -464074,7 +467248,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9270] = 3, - ACTIONS(5847), 1, + ACTIONS(5929), 1, anon_sym_comment, STATE(2451), 1, sym__trivia_text_comment, @@ -464082,7 +467256,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9281] = 3, - ACTIONS(5841), 1, + ACTIONS(5923), 1, anon_sym_verbatim, STATE(2450), 1, sym__trivia_text_verbatim, @@ -464090,7 +467264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9292] = 3, - ACTIONS(5839), 1, + ACTIONS(5921), 1, anon_sym_lstlisting, STATE(2449), 1, sym__trivia_text_listing, @@ -464098,7 +467272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9303] = 3, - ACTIONS(5825), 1, + ACTIONS(5907), 1, anon_sym_pycode, STATE(2447), 1, sym__trivia_text_pycode, @@ -464106,7 +467280,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9314] = 3, - ACTIONS(5577), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, STATE(1927), 1, sym_curly_group_path, @@ -464114,7 +467288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9325] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1931), 1, sym_curly_group_text, @@ -464122,7 +467296,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9336] = 3, - ACTIONS(5551), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, STATE(1932), 1, sym_curly_group_text, @@ -464130,7 +467304,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9347] = 3, - ACTIONS(5975), 1, + ACTIONS(6057), 1, anon_sym_LBRACE, STATE(1704), 1, sym_curly_group_command_name, @@ -464138,919 +467312,919 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [9358] = 2, - ACTIONS(6015), 1, + ACTIONS(6097), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9366] = 2, - ACTIONS(6017), 1, + ACTIONS(6099), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9374] = 2, - ACTIONS(6019), 1, + ACTIONS(6101), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9382] = 2, - ACTIONS(6021), 1, + ACTIONS(6103), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9390] = 2, - ACTIONS(6023), 1, + ACTIONS(6105), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9398] = 2, - ACTIONS(6025), 1, + ACTIONS(6107), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9406] = 2, - ACTIONS(6027), 1, + ACTIONS(6109), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9414] = 2, - ACTIONS(6029), 1, + ACTIONS(6111), 1, sym_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9422] = 2, - ACTIONS(6031), 1, + ACTIONS(6113), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9430] = 2, - ACTIONS(6033), 1, + ACTIONS(6115), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9438] = 2, - ACTIONS(6035), 1, + ACTIONS(6117), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9446] = 2, - ACTIONS(6037), 1, + ACTIONS(6119), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9454] = 2, - ACTIONS(6039), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9462] = 2, - ACTIONS(6041), 1, + ACTIONS(6123), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9470] = 2, - ACTIONS(6043), 1, + ACTIONS(6125), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9478] = 2, - ACTIONS(6045), 1, + ACTIONS(6127), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9486] = 2, - ACTIONS(6047), 1, + ACTIONS(6129), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9494] = 2, - ACTIONS(6049), 1, + ACTIONS(6131), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9502] = 2, - ACTIONS(6051), 1, + ACTIONS(6133), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9510] = 2, - ACTIONS(6053), 1, + ACTIONS(6135), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9518] = 2, - ACTIONS(6055), 1, + ACTIONS(6137), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9526] = 2, - ACTIONS(6057), 1, + ACTIONS(6139), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9534] = 2, - ACTIONS(6059), 1, + ACTIONS(6141), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9542] = 2, - ACTIONS(6061), 1, + ACTIONS(6143), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9550] = 2, - ACTIONS(6063), 1, + ACTIONS(6145), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9558] = 2, - ACTIONS(6065), 1, + ACTIONS(6147), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9566] = 2, - ACTIONS(6067), 1, + ACTIONS(6149), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9574] = 2, - ACTIONS(6069), 1, + ACTIONS(6151), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9582] = 2, - ACTIONS(6071), 1, + ACTIONS(6153), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9590] = 2, - ACTIONS(6073), 1, + ACTIONS(6155), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9598] = 2, - ACTIONS(6075), 1, + ACTIONS(6157), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9606] = 2, - ACTIONS(6077), 1, + ACTIONS(6159), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9614] = 2, - ACTIONS(6079), 1, + ACTIONS(6161), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9622] = 2, - ACTIONS(6081), 1, + ACTIONS(6163), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9630] = 2, - ACTIONS(6083), 1, + ACTIONS(6165), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9638] = 2, - ACTIONS(6085), 1, + ACTIONS(6167), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9646] = 2, - ACTIONS(6087), 1, + ACTIONS(6169), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9654] = 2, - ACTIONS(6089), 1, + ACTIONS(6171), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9662] = 2, - ACTIONS(6091), 1, + ACTIONS(6173), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9670] = 2, - ACTIONS(6093), 1, + ACTIONS(6175), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9678] = 2, - ACTIONS(6095), 1, + ACTIONS(6177), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9686] = 2, - ACTIONS(6097), 1, + ACTIONS(6179), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9694] = 2, - ACTIONS(6099), 1, + ACTIONS(6181), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9702] = 2, - ACTIONS(6101), 1, + ACTIONS(6183), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9710] = 2, - ACTIONS(6103), 1, + ACTIONS(6185), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9718] = 2, - ACTIONS(6105), 1, + ACTIONS(6187), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9726] = 2, - ACTIONS(6107), 1, + ACTIONS(6189), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9734] = 2, - ACTIONS(6109), 1, + ACTIONS(6191), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9742] = 2, - ACTIONS(6111), 1, + ACTIONS(6193), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9750] = 2, - ACTIONS(6113), 1, + ACTIONS(6195), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9758] = 2, - ACTIONS(6115), 1, + ACTIONS(6197), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9766] = 2, - ACTIONS(6117), 1, + ACTIONS(6199), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9774] = 2, - ACTIONS(6119), 1, + ACTIONS(6201), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9782] = 2, - ACTIONS(6121), 1, + ACTIONS(6203), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9790] = 2, - ACTIONS(6123), 1, + ACTIONS(6205), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9798] = 2, - ACTIONS(6125), 1, + ACTIONS(6207), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9806] = 2, - ACTIONS(6127), 1, + ACTIONS(6209), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9814] = 2, - ACTIONS(6129), 1, + ACTIONS(6211), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9822] = 2, - ACTIONS(6131), 1, + ACTIONS(6213), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9830] = 2, - ACTIONS(6133), 1, + ACTIONS(6215), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9838] = 2, - ACTIONS(4953), 1, + ACTIONS(5032), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9846] = 2, - ACTIONS(6135), 1, + ACTIONS(6217), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9854] = 2, - ACTIONS(6137), 1, + ACTIONS(6219), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9862] = 2, - ACTIONS(6139), 1, + ACTIONS(6221), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9870] = 2, - ACTIONS(6141), 1, + ACTIONS(6223), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9878] = 2, - ACTIONS(6143), 1, + ACTIONS(6225), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9886] = 2, - ACTIONS(6145), 1, + ACTIONS(6227), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9894] = 2, - ACTIONS(6147), 1, + ACTIONS(6229), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9902] = 2, - ACTIONS(6149), 1, + ACTIONS(6231), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9910] = 2, - ACTIONS(6151), 1, + ACTIONS(6233), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9918] = 2, - ACTIONS(6153), 1, + ACTIONS(6235), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9926] = 2, - ACTIONS(6155), 1, + ACTIONS(6237), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9934] = 2, - ACTIONS(6157), 1, + ACTIONS(6239), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9942] = 2, - ACTIONS(6159), 1, + ACTIONS(6241), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9950] = 2, - ACTIONS(6161), 1, + ACTIONS(6243), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9958] = 2, - ACTIONS(6163), 1, + ACTIONS(6245), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [9966] = 2, - ACTIONS(6165), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9974] = 2, - ACTIONS(6167), 1, + ACTIONS(6249), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9982] = 2, - ACTIONS(6169), 1, + ACTIONS(6251), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9990] = 2, - ACTIONS(6171), 1, + ACTIONS(6253), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [9998] = 2, - ACTIONS(6173), 1, + ACTIONS(6255), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10006] = 2, - ACTIONS(6175), 1, + ACTIONS(6257), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10014] = 2, - ACTIONS(6177), 1, + ACTIONS(6259), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10022] = 2, - ACTIONS(6179), 1, + ACTIONS(6261), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10030] = 2, - ACTIONS(6181), 1, + ACTIONS(6263), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10038] = 2, - ACTIONS(6183), 1, + ACTIONS(6265), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10046] = 2, - ACTIONS(6185), 1, + ACTIONS(6267), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10054] = 2, - ACTIONS(6187), 1, + ACTIONS(6269), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10062] = 2, - ACTIONS(4945), 1, + ACTIONS(5024), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10070] = 2, - ACTIONS(4941), 1, + ACTIONS(5020), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10078] = 2, - ACTIONS(6189), 1, + ACTIONS(6271), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10086] = 2, - ACTIONS(6191), 1, + ACTIONS(6273), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10094] = 2, - ACTIONS(6193), 1, + ACTIONS(6275), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10102] = 2, - ACTIONS(4933), 1, + ACTIONS(5012), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10110] = 2, - ACTIONS(6195), 1, + ACTIONS(6277), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10118] = 2, - ACTIONS(6197), 1, + ACTIONS(6279), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10126] = 2, - ACTIONS(6199), 1, + ACTIONS(6281), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [10134] = 2, - ACTIONS(6201), 1, + ACTIONS(6283), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10142] = 2, - ACTIONS(6203), 1, + ACTIONS(6285), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10150] = 2, - ACTIONS(6205), 1, + ACTIONS(6287), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10158] = 2, - ACTIONS(6207), 1, + ACTIONS(6289), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10166] = 2, - ACTIONS(6209), 1, + ACTIONS(6291), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10174] = 2, - ACTIONS(6211), 1, + ACTIONS(6293), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10182] = 2, - ACTIONS(6213), 1, + ACTIONS(6295), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10190] = 2, - ACTIONS(6215), 1, + ACTIONS(6297), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10198] = 2, - ACTIONS(6217), 1, + ACTIONS(6299), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10206] = 2, - ACTIONS(6219), 1, + ACTIONS(6301), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10214] = 2, - ACTIONS(6221), 1, + ACTIONS(6303), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10222] = 2, - ACTIONS(6223), 1, + ACTIONS(6305), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10230] = 2, - ACTIONS(6225), 1, + ACTIONS(6307), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10238] = 2, - ACTIONS(6227), 1, + ACTIONS(6309), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10246] = 2, - ACTIONS(6229), 1, + ACTIONS(6311), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10254] = 2, - ACTIONS(6231), 1, + ACTIONS(6313), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10262] = 2, - ACTIONS(6233), 1, + ACTIONS(6315), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10270] = 2, - ACTIONS(6235), 1, + ACTIONS(6317), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10278] = 2, - ACTIONS(6237), 1, + ACTIONS(6319), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10286] = 2, - ACTIONS(6239), 1, + ACTIONS(6321), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10294] = 2, - ACTIONS(6241), 1, + ACTIONS(6323), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10302] = 2, - ACTIONS(6243), 1, + ACTIONS(6325), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10310] = 2, - ACTIONS(6245), 1, + ACTIONS(6327), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10318] = 2, - ACTIONS(6247), 1, + ACTIONS(6329), 1, sym_path, - ACTIONS(5525), 2, + ACTIONS(5607), 2, sym__whitespace, sym_line_comment, [10326] = 2, - ACTIONS(6249), 1, + ACTIONS(6331), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10334] = 2, - ACTIONS(6251), 1, + ACTIONS(6333), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10342] = 2, - ACTIONS(6253), 1, + ACTIONS(6335), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10350] = 2, - ACTIONS(6255), 1, + ACTIONS(6337), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10358] = 2, - ACTIONS(6257), 1, + ACTIONS(6339), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10366] = 2, - ACTIONS(6259), 1, + ACTIONS(6341), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10374] = 2, - ACTIONS(6261), 1, + ACTIONS(6343), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10382] = 2, - ACTIONS(6263), 1, + ACTIONS(6345), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10390] = 2, - ACTIONS(6265), 1, + ACTIONS(6347), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10398] = 2, - ACTIONS(6267), 1, + ACTIONS(6349), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10406] = 2, - ACTIONS(6269), 1, + ACTIONS(6351), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10414] = 2, - ACTIONS(6271), 1, + ACTIONS(6353), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10422] = 2, - ACTIONS(6273), 1, + ACTIONS(6355), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10430] = 2, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10438] = 2, - ACTIONS(6277), 1, + ACTIONS(6359), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10446] = 2, - ACTIONS(6279), 1, + ACTIONS(6361), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10454] = 2, - ACTIONS(6281), 1, + ACTIONS(6363), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10462] = 2, - ACTIONS(6283), 1, + ACTIONS(6365), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10470] = 2, - ACTIONS(6285), 1, + ACTIONS(6367), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10478] = 2, - ACTIONS(6287), 1, + ACTIONS(6369), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10486] = 2, - ACTIONS(6289), 1, + ACTIONS(6371), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10494] = 2, - ACTIONS(6291), 1, + ACTIONS(6373), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10502] = 2, - ACTIONS(6293), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10510] = 2, - ACTIONS(6295), 1, + ACTIONS(6377), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10518] = 2, - ACTIONS(6297), 1, + ACTIONS(6379), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10526] = 2, - ACTIONS(6299), 1, + ACTIONS(6381), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10534] = 2, - ACTIONS(6301), 1, + ACTIONS(6383), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10542] = 2, - ACTIONS(6303), 1, + ACTIONS(6385), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10550] = 2, - ACTIONS(6305), 1, + ACTIONS(6387), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10558] = 2, - ACTIONS(6307), 1, + ACTIONS(6389), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10566] = 2, - ACTIONS(4949), 1, + ACTIONS(5028), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [10574] = 2, - ACTIONS(6309), 1, + ACTIONS(6391), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, @@ -466024,2538 +469198,2568 @@ static const TSParseActionEntry ts_parse_actions[] = { [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), - [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), - [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(954), - [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}}, SHIFT(65), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(330), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(651), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(651), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(652), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(652), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(111), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(105), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1577), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1617), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1618), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2260), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1628), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2235), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1630), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1631), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1634), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2215), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2207), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1647), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2183), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2388), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2432), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2134), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2108), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1678), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1679), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1680), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1681), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1697), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1698), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2081), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2080), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2070), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(666), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(672), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(672), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(971), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(971), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(969), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1702), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1703), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2068), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1705), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2067), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1707), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1708), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1709), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2058), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2268), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1711), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1712), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1712), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2054), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2269), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2269), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2270), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2416), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2352), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2044), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2273), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1716), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1593), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1717), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1718), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1598), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2028), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2025), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2024), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(420), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(104), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(756), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(756), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(753), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(753), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1178), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1178), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1177), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1605), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1606), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2306), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1608), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2283), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1610), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1612), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1614), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1615), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1615), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2281), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2239), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2239), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2354), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2368), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2049), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2243), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1619), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1625), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1620), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1621), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1613), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1667), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2266), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2253), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2252), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(346), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(115), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(862), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(862), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(863), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(69), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1632), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1629), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1814), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1604), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1815), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1601), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1600), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1599), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1816), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2295), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1594), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1817), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2297), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2452), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2345), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2013), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2300), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1633), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1590), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1627), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1603), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1609), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1721), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1820), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1821), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1822), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(549), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(665), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1082), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1082), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1083), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(102), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(118), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1666), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1670), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1896), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1671), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1898), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1673), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1677), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1685), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1902), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2322), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1686), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1690), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1690), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1905), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2323), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2323), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2324), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2454), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2327), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2003), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2059), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1692), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1616), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1696), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1699), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1623), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1720), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1912), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(330), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(589), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(193), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(116), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(782), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(782), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(764), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(111), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(105), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1577), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1617), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1618), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2260), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1628), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1630), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1631), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1634), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2215), - [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2207), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1647), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2183), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2161), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2388), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2432), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2134), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2108), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1678), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1679), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1680), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1681), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1697), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1698), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2081), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2080), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2070), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(420), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(660), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(198), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(113), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1177), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(55), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(91), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(91), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(88), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1605), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1606), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2306), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1608), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2283), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1610), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1611), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1612), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2282), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2238), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1614), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2281), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2239), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2239), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2240), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2354), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2368), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2049), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2243), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1619), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1625), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1620), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1621), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1613), - [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1667), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2266), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2253), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2252), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(346), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(648), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(200), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(60), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(862), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(862), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(863), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(66), - [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(69), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1632), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1629), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1814), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1604), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1815), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1601), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1600), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1599), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1816), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2295), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1594), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1817), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2297), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2452), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2345), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2013), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2300), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1633), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1590), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1627), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1603), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1609), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1721), - [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1820), - [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1821), - [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1822), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(549), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(665), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(62), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1082), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1082), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1083), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(102), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(118), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1666), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1670), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1896), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1671), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1898), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1673), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1677), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1685), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1902), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2322), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1686), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1905), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2323), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2323), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2324), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2454), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2327), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2003), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2059), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1692), - [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1616), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1696), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1699), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1623), - [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1720), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1911), - [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1912), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1913), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(642), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(666), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(206), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(42), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(971), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(971), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(969), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(84), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(87), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1703), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2068), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1705), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2067), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1707), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1708), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1709), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2058), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2268), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1711), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1712), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1712), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2054), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2052), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2052), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2269), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2269), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2270), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2416), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2352), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2044), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2273), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1716), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1593), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1717), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1718), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1598), - [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1706), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2028), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2025), - [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2024), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(330), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(589), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(782), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(782), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(764), - [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1617), - [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1618), - [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2260), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1628), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2235), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1630), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1631), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1634), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2215), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2207), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1647), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2183), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2182), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2182), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2162), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2162), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2161), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2160), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2160), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2388), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2432), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2134), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2108), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1678), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1679), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1680), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1681), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1697), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1698), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2081), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2080), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(420), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(660), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1178), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1178), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1177), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1605), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1606), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2306), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1608), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2283), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1610), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1611), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1612), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2282), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2238), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1614), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1615), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1615), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2281), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2279), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2279), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2240), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2241), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2241), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2354), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2368), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2049), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2243), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1619), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1625), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1620), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1621), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1613), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1667), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2266), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2253), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(346), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(648), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(862), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(862), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(863), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1632), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1629), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1814), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1604), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1815), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1601), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1600), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1599), - [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1816), - [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2295), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1594), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1592), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1592), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1817), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), - [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2297), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2452), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2345), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2013), - [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2300), - [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1633), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1590), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1627), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1603), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1609), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1721), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1820), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1821), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(549), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(665), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1082), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1082), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1083), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1666), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1670), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1896), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1671), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1898), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1673), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1677), - [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1685), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1902), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2322), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1686), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1690), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1690), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1905), - [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), - [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2323), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2323), - [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2324), - [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), - [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2454), - [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2327), - [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2003), - [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2059), - [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1692), - [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1616), - [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1696), - [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1699), - [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1623), - [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1720), - [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1911), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1912), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(642), - [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(666), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(971), - [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(971), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(969), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1702), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1703), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2068), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1705), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2067), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1707), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1708), - [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1709), - [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2058), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2268), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1711), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), - [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2054), - [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2052), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2052), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2269), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2269), - [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2270), - [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), - [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2416), - [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2352), - [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2044), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2273), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1716), - [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1593), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1717), - [3238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1718), - [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1598), - [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1706), - [3247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2028), - [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2025), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1294), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1299), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(219), - [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(230), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(100), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1396), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1396), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1397), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(99), - [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(98), - [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(98), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(97), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1577), - [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1695), - [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1694), - [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2086), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1693), - [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2088), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1591), - [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1691), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1689), - [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2092), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2176), - [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1688), - [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1687), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1687), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2095), - [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2096), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2096), - [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), - [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2168), - [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), - [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2405), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2380), - [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1947), - [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2164), - [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1684), - [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1641), - [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1683), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1682), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1646), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1652), - [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2101), - [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2102), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2008), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1294), - [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1299), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(225), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), - [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(226), - [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(100), - [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1396), - [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1396), - [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1397), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(99), - [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(98), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(98), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(97), - [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1577), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1695), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1694), - [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2086), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1693), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2088), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1591), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1691), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1689), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2092), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2176), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1688), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1687), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1687), - [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2095), - [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2096), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2096), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2169), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2169), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2168), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2166), - [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2166), - [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2405), - [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2380), - [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1947), - [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2164), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1684), - [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1641), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1683), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1682), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1646), - [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1652), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2101), - [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2102), - [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2008), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1300), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1306), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(243), - [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(235), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(41), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1480), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1480), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1481), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(82), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(67), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(67), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(50), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1661), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1660), - [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2165), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1659), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2167), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1658), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1657), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1656), - [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2171), - [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2136), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1655), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2174), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2175), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2175), - [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2135), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2135), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2133), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2132), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2132), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2377), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2398), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1894), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2131), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1653), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1650), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1651), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1649), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1602), - [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1676), - [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2180), - [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2181), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2103), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(244), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(90), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(93), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(93), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1300), - [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1306), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(41), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), - [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1480), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1480), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1481), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(52), - [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(51), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(51), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(50), - [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1661), - [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1660), - [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2165), - [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1659), - [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2167), - [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1658), - [4045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1657), - [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1656), - [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2171), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2136), - [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1655), - [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), - [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2174), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2175), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2175), - [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2135), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2135), - [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2133), - [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2132), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2132), - [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2377), - [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2398), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1894), - [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2131), - [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1653), - [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1650), - [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1651), - [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1649), - [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1602), - [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1676), - [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2180), - [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2181), - [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2103), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1294), - [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1299), - [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1396), - [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1396), - [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1397), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1695), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1694), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2086), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1693), - [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2088), - [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1591), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1691), - [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1689), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2092), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2176), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1688), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2095), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2096), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2096), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2169), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2169), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2168), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2166), - [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2166), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2405), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2380), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1947), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2164), - [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1684), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1641), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1683), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1682), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1646), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1652), - [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2101), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2102), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1300), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1306), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1480), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1480), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1481), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1661), - [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1660), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2165), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1659), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2167), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1658), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1657), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1656), - [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2171), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2136), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1655), - [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), - [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2174), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2175), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2175), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), - [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2133), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2132), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2132), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2377), - [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2398), - [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1894), - [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2131), - [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1653), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1650), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1651), - [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1649), - [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1602), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1676), - [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2180), - [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2181), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 14), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 14), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(222), - [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(116), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), - [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(656), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(656), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), - [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(655), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(655), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), - [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(654), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(654), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), - [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(653), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(653), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), - [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(652), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(652), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), - [4547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(651), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(651), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), - [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(650), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(650), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), - [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(649), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(649), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(229), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(62), - [4585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(703), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(703), - [4591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(700), - [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(700), - [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(699), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(699), - [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(697), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(697), - [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(696), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(696), - [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(693), - [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(693), - [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(239), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(42), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(805), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(805), - [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(804), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(804), - [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(792), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(792), - [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(766), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(766), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(762), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(762), - [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(759), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(759), - [4677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(745), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(745), - [4683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(672), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(672), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(765), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(765), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(760), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(760), - [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(758), - [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(758), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(757), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(757), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(756), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(756), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(755), - [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(755), - [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(754), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(754), - [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(753), - [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(753), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(231), - [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(113), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(816), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(816), - [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(240), - [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(60), - [4773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(818), - [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(818), - [4779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(819), - [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(819), - [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), - [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), - [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(821), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(821), - [4797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(683), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(683), - [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(814), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(814), - [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(813), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(813), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), - [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), - [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 16), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 16), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 16), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 16), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 24), - [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 24), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 16), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 16), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_pycode, 3), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_pycode, 3), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 16), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 16), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), - [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 11), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 11), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 3), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 3), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 11), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 11), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 29), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 29), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 30), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 30), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 30), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 30), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 30), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 30), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 2), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 2), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 32), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 32), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 33), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 33), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 34), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 34), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 36), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 36), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 20), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 20), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 11), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 11), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 40), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 40), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 41), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 41), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 43), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 43), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 44), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 44), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 76), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 76), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 62), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 62), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 75), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 75), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 74), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 74), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 73), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 73), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 71), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 71), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 70), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 70), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), - [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 69), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 69), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 66), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 66), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 64), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 64), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_pycode, 2), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_pycode, 2), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 18), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 18), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), - [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 60), - [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 60), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), - [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 56), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 56), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 55), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 55), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), - [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 51), - [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 51), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), - [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_mode, 2, .production_id = 22), - [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text_mode, 2, .production_id = 22), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 11), - [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 11), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), - [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), - [5301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 19), - [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 19), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), - [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 15), - [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 15), - [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 25), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 25), - [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), - [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), - [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1495), - [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1507), - [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1560), - [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1560), - [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1564), - [5342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1732), - [5345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1731), - [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1991), - [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1730), - [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1993), - [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1729), - [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1728), - [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1727), - [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1997), - [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2275), - [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1726), - [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1725), - [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1725), - [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2000), - [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2001), - [5387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2001), - [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2274), - [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2274), - [5396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2272), - [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2267), - [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2267), - [5405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2439), - [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2353), - [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1955), - [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2251), - [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1724), - [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1626), - [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1723), - [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1722), - [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1637), - [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1665), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2006), - [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2007), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(225), - [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(100), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(232), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(41), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(221), - [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(53), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1589), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1580), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 65), SHIFT_REPEAT(2422), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 65), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), - [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1267), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1287), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 67), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 48), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 61), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 28), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1270), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 68), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 46), - [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 49), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 52), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 2), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_minted, 3, .production_id = 26), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_pycode, 1), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_minted, 1, .production_id = 3), - [6181] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 48), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_listing, 1, .production_id = 3), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_comment, 2, .production_id = 12), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_verbatim, 2, .production_id = 12), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_verbatim, 1, .production_id = 3), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_comment, 1, .production_id = 3), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_listing, 2, .production_id = 12), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_pycode, 2), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 62), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), + [135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), + [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), + [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), + [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(330), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(651), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(651), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(652), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(652), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(111), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(105), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1577), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1617), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1618), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2260), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1628), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2235), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1630), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1631), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1634), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2215), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2207), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1647), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2183), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2388), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2432), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2134), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2108), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1678), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1679), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1680), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1681), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1681), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1697), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1698), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2081), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2080), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2070), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(666), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(672), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(672), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(971), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(971), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(969), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1702), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1703), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2068), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1705), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2067), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1707), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1708), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1709), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2058), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2268), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1711), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1712), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1712), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2054), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2269), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2269), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2270), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2416), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2352), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2044), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2273), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1716), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1593), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1717), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1718), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1718), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1598), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2028), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2025), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2024), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(420), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(104), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(756), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(756), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(753), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(753), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1178), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1178), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1177), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1605), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1606), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2306), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1608), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2283), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1610), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1612), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1614), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1615), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1615), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2281), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2239), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2239), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2354), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2368), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2049), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2243), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1619), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1625), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1620), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1621), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1621), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1613), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1667), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2266), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2253), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2252), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(346), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(115), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), + [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(862), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(862), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(863), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(69), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1632), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1629), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1814), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1604), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1815), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1601), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1600), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1599), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1816), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2295), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1594), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1817), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2297), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2452), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2345), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2013), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2300), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1633), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1590), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1627), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1603), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1603), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1609), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1721), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1820), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1821), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1822), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(549), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(665), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1082), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1082), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1083), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(102), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(118), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1666), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1670), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1896), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1671), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1898), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1673), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1677), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1685), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1902), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2322), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1686), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1690), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1690), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1905), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2323), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2323), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2324), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2454), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2327), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2003), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2059), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1692), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1616), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1696), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1699), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1699), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1623), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1720), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1912), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(330), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(589), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(193), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(116), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(782), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(782), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(764), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(111), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(105), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1577), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1617), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1618), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2260), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1628), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1630), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1631), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1634), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2215), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2207), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1647), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2183), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2161), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2388), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2432), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2134), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2108), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1678), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1679), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1680), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1681), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1681), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1697), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1698), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2081), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2080), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2070), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(420), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(660), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(198), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(113), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1177), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(55), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(91), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(91), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(88), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1605), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1606), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2306), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1608), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2283), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1610), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1611), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1612), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2282), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2238), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1614), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2281), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2239), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2239), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2240), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2354), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2368), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2049), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2243), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1619), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1625), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1620), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1621), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1621), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1613), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1667), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2266), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2253), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2252), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(346), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(648), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(200), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(60), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(862), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(862), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(863), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(66), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(69), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1632), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1629), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1814), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1604), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1815), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1601), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1600), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1599), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1816), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2295), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1594), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1817), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2297), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2452), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2345), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2013), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2300), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1633), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1590), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1627), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1603), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1603), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1609), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1721), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1820), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1821), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1822), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(549), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(665), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(62), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1082), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1082), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1083), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(102), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(118), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1666), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1670), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1896), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1671), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1898), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1673), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1677), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1685), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1902), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2322), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1686), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1905), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2323), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2323), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2324), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2454), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2327), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2003), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2059), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1692), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1616), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1696), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1699), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1699), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1623), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1720), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1911), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1912), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1913), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(642), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(666), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(206), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(42), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(971), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(971), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(969), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(84), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), + [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(87), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1703), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2068), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1705), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2067), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1707), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1708), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1709), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2058), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2268), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1711), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1712), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1712), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2054), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2052), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2052), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2269), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2269), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2270), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2416), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2352), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2044), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2273), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1716), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1593), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1717), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1718), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1718), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1598), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1706), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2028), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2025), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2024), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), + [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(330), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(589), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(782), + [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(782), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(764), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1617), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1618), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2260), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1628), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2235), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1630), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1631), + [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1634), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2215), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2207), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1647), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2183), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2182), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2182), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2162), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2162), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2161), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2160), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2160), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2388), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2432), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2134), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2108), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1678), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1679), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1680), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1681), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1681), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1697), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1698), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2081), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2080), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(420), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(660), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1178), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1178), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1177), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1605), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1606), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2306), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1608), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2283), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1610), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1611), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1612), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2282), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2238), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1614), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1615), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1615), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2281), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2279), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2279), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2240), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2241), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2241), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2354), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2368), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2049), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2243), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1619), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1625), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1620), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1621), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1621), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1613), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1667), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2266), + [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2253), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(346), + [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(648), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(862), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(862), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(863), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1632), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1629), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1814), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1604), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1815), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1601), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1600), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1599), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1816), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2295), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1594), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1592), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1592), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1817), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2297), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), + [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2452), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2345), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2013), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2300), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1633), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1590), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1627), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1603), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1603), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1609), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1721), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1820), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1821), + [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(549), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(665), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1082), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1082), + [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1083), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1666), + [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1670), + [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1896), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1671), + [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1898), + [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1673), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1677), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1685), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1902), + [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2322), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1686), + [3122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1690), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1690), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1905), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2323), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2323), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2324), + [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2454), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2327), + [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2003), + [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2059), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1692), + [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1616), + [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1696), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1699), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1699), + [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1623), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1720), + [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1911), + [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1912), + [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(642), + [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(666), + [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(971), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(971), + [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(969), + [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1702), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1703), + [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2068), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1705), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2067), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1707), + [3224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1708), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1709), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2058), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2268), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1711), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2054), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2052), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2052), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2269), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2269), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2270), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), + [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2416), + [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2352), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2044), + [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2273), + [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1716), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1593), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1717), + [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1718), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1718), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1598), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1706), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2028), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2025), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1294), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1299), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(219), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(230), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(100), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1396), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1396), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1397), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(99), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(98), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(98), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(97), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1577), + [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1695), + [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1694), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2086), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1693), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2088), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1591), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1691), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1689), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2092), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2176), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1688), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1687), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1687), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2095), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2096), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2096), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2168), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2405), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2380), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1947), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2164), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1684), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1641), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1683), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1682), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1682), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1646), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1652), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2101), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2102), + [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2008), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1294), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1299), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(225), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(226), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(100), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1396), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1396), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1397), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(99), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(98), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(98), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(97), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1577), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1695), + [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1694), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2086), + [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1693), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2088), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1591), + [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1691), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1689), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2092), + [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2176), + [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1688), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1687), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1687), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2095), + [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2096), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2096), + [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2169), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2169), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2168), + [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2166), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2166), + [3674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2405), + [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2380), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1947), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2164), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1684), + [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1641), + [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1683), + [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1682), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1682), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1646), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1652), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2101), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2102), + [3713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2008), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1300), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1306), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(243), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(235), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(41), + [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1480), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1480), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1481), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(82), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(67), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(67), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(50), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1661), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1660), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2165), + [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1659), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2167), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1658), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1657), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1656), + [3930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2171), + [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2136), + [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1655), + [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), + [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2174), + [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2175), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2175), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2135), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2135), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2133), + [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2132), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2132), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2377), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2398), + [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1894), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2131), + [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1653), + [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1650), + [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1651), + [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1649), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1649), + [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1602), + [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1676), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2180), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2181), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2103), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(244), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(90), + [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(93), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(93), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1300), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1306), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(41), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1480), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1480), + [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1481), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(52), + [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(51), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(51), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(50), + [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1661), + [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1660), + [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2165), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1659), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2167), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1658), + [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1657), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1656), + [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2171), + [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2136), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1655), + [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2174), + [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2175), + [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2175), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2135), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2135), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2133), + [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2132), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2132), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2377), + [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2398), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1894), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2131), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1653), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1650), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1651), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1649), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1649), + [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1602), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1676), + [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2180), + [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2181), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2103), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1294), + [4205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1299), + [4208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1396), + [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1396), + [4214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1397), + [4217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1695), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1694), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2086), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1693), + [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2088), + [4232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1591), + [4235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1691), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1689), + [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2092), + [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2176), + [4247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1688), + [4250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), + [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2095), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2096), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2096), + [4265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2169), + [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2169), + [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2168), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2166), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2166), + [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2405), + [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2380), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1947), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2164), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1684), + [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1641), + [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1683), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1682), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1682), + [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1646), + [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1652), + [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2101), + [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2102), + [4319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1300), + [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1306), + [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1480), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1480), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1481), + [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1661), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1660), + [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2165), + [4343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1659), + [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2167), + [4349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1658), + [4352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1657), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1656), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2171), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2136), + [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1655), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), + [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2174), + [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2175), + [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2175), + [4382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), + [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2133), + [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2132), + [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2132), + [4397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2377), + [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2398), + [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1894), + [4406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2131), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1653), + [4412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1650), + [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1651), + [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1649), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1649), + [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1602), + [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1676), + [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2180), + [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2181), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 14), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 14), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(222), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(116), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), + [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), + [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), + [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), + [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), + [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), + [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), + [4576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(656), + [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(656), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(655), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(655), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), + [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(654), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(654), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), + [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(653), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(653), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(652), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(652), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), + [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(651), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(651), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), + [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(650), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(650), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), + [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(649), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(649), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(229), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(62), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(703), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(703), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(700), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(700), + [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(699), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(699), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(697), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(697), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(696), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(696), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), + [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(693), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(693), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(239), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(42), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(805), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(805), + [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(804), + [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(804), + [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(792), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(792), + [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(766), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(766), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(762), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(762), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(759), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(759), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(745), + [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(745), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(672), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(672), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(765), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(765), + [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(760), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(760), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(758), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(758), + [4792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(757), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(757), + [4798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(756), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(756), + [4804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(755), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(755), + [4810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(754), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(754), + [4816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(753), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(753), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(231), + [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(113), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(816), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(816), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(240), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(60), + [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(818), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(818), + [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(819), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(819), + [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), + [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(821), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(821), + [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(683), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(683), + [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(814), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(814), + [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(813), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(813), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 16), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 16), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 16), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 16), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 24), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 24), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 16), + [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 16), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_pycode, 3), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_pycode, 3), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 16), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 16), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 11), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 11), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 3), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 3), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 11), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 11), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 29), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 29), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 30), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 30), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 30), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 30), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 30), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 30), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 2), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 2), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 32), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 32), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 33), + [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 33), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 34), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 34), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 36), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 36), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 20), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 20), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), + [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 11), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 11), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 40), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 40), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 41), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 41), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 43), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 43), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 44), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 44), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), + [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), + [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), + [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), + [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), + [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), + [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), + [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 76), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 76), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 62), + [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 62), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 75), + [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 75), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 74), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 74), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 73), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 73), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), + [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 71), + [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 71), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 70), + [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 70), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), + [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), + [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 69), + [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 69), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 66), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 66), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), + [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 64), + [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 64), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_pycode, 2), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_pycode, 2), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 18), + [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 18), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), + [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 60), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 60), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 56), + [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 56), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 55), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 55), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), + [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), + [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 51), + [5352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 51), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_mode, 2, .production_id = 22), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text_mode, 2, .production_id = 22), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), + [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), + [5370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 11), + [5372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 11), + [5374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), + [5376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), + [5378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), + [5380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 19), + [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 19), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), + [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 15), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 15), + [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 25), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 25), + [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), + [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1495), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1507), + [5412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1560), + [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1560), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1564), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1732), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1731), + [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1991), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1730), + [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1993), + [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1729), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1728), + [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1727), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1997), + [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2275), + [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1726), + [5454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1725), + [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1725), + [5460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2000), + [5463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2001), + [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2001), + [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2274), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2274), + [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2272), + [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2267), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2267), + [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2439), + [5487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2353), + [5490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1955), + [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2251), + [5496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1724), + [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1626), + [5502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1723), + [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1722), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1722), + [5511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1637), + [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1665), + [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2006), + [5520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2007), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(225), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(100), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(232), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(41), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(221), + [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(53), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1589), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), + [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1580), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 65), SHIFT_REPEAT(2422), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 65), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), + [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1267), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1287), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 67), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 48), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 61), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 28), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1270), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 68), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 46), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 49), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 52), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 2), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_minted, 3, .production_id = 26), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_pycode, 1), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_minted, 1, .production_id = 3), + [6263] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 48), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_listing, 1, .production_id = 3), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_comment, 2, .production_id = 12), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_verbatim, 2, .production_id = 12), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_verbatim, 1, .production_id = 3), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_comment, 1, .production_id = 3), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_listing, 2, .production_id = 12), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_pycode, 2), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 62), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), }; #ifdef __cplusplus